idx
int64 0
2.11M
| name
stringlengths 1
118k
| code
stringlengths 6
516k
| asm
stringlengths 21
4.64M
| file
stringlengths 39
143
| opt
stringclasses 1
value | path
stringlengths 20
133
|
|---|---|---|---|---|---|---|
2,112,800
|
int ncnn::binary_op<ncnn::binary_op_add>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int size = w * h * d;
size_t elemsize = a.elemsize;
int w1 = b.w;
int h1 = b.h;
int d1 = b.d;
int channels1 = b.c;
int size1 = w1 * h1 * d1;
if (a.dims == 4)
{
if (b.dims == 4)
{
// type 29
c.create(w, h, d, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], ptr1[i]);
}
}
return 0;
}
c.create(w, h, d, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 3)
{
// type 28
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
for (int y = 0; y < h; y++)
{
const float b0 = ptr1[y];
for (int x = 0; x < w; x++)
{
outptr[x] = op(ptr[x], b0);
}
ptr += w;
outptr += w;
}
ptr1 += h;
}
}
return 0;
}
if (b.dims == 2)
{
// type 27
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
const float b0 = ptr1[z];
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
outptr[x] = op(ptr[x], b0);
}
ptr += w;
outptr += w;
}
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1)
{
// type 25
const float b0 = b[0];
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], b0);
}
}
return 0;
}
// type 26
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float b0 = b[q];
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], b0);
}
}
return 0;
}
}
else if (a.dims == 3)
{
if (b.dims == 4)
{
// type 23
c.create(w1, h1, d1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
for (int y = 0; y < h1; y++)
{
const float a0 = ptr[y];
for (int x = 0; x < w1; x++)
{
outptr[x] = op(a0, ptr1[x]);
}
ptr1 += w1;
outptr += w1;
}
ptr += h1;
}
}
return 0;
}
if (b.dims == 3)
{
if (w1 == 1 && h1 == 1 && channels1 == channels)
{
// special type 1
c.create(w, h, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* b0 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], b0[0]);
}
}
return 0;
}
if (w1 == w && h1 == h && channels1 == 1)
{
// special type 2
c.create(w, h, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b;
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], ptr1[i]);
}
}
return 0;
}
if (w == 1 && h == 1 && channels1 == channels)
{
// special type 3
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* a0 = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
outptr[i] = op(a0[0], ptr1[i]);
}
}
return 0;
}
if (w1 == w && h1 == h && channels == 1)
{
// special type 4
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a;
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
outptr[i] = op(ptr[i], ptr1[i]);
}
}
return 0;
}
if (w != 1 && w1 == 1 && h1 == h && channels1 == channels)
{
// special type 5
c.create(w, h, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
const float b0 = ptr1[y];
for (int x = 0; x < w; x++)
{
outptr[x] = op(ptr[x], b0);
}
ptr += w;
outptr += w;
}
}
return 0;
}
if (w1 == w && h != 1 && h1 == 1 && channels1 == channels)
{
// special type 6
c.create(w, h, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
outptr[x] = op(ptr[x], ptr1[x]);
}
ptr += w;
outptr += w;
}
}
return 0;
}
if (w1 != 1 && w == 1 && h1 == h && channels1 == channels)
{
// special type 7
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
const float a0 = ptr[y];
for (int x = 0; x < w1; x++)
{
outptr[x] = op(a0, ptr1[x]);
}
ptr1 += w1;
outptr += w1;
}
}
return 0;
}
if (w1 == w && h1 != 1 && h == 1 && channels1 == channels)
{
// special type 8
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
outptr[x] = op(ptr[x], ptr1[x]);
}
ptr1 += w1;
outptr += w1;
}
}
return 0;
}
// type 19
c.create(w, h, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], ptr1[i]);
}
}
return 0;
}
c.create(w, h, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 18
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
const float b0 = ptr1[y];
for (int x = 0; x < w; x++)
{
outptr[x] = op(ptr[x], b0);
}
ptr += w;
outptr += w;
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1)
{
// type 16
const float b0 = b[0];
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], b0);
}
}
return 0;
}
// type 17
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float b0 = b[q];
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], b0);
}
}
return 0;
}
}
else if (a.dims == 2)
{
if (b.dims == 4)
{
// type 22
c.create(w1, h1, d1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
const float a0 = ptr[z];
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
outptr[x] = op(a0, ptr1[x]);
}
ptr1 += w1;
outptr += w1;
}
}
}
return 0;
}
if (b.dims == 3)
{
// type 14
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
const float a0 = ptr[y];
for (int x = 0; x < w1; x++)
{
outptr[x] = op(a0, ptr1[x]);
}
ptr1 += w1;
outptr += w1;
}
}
return 0;
}
c.create(w, h, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 13
for (int i = 0; i < size; i++)
{
c[i] = op(a[i], b[i]);
}
return 0;
}
if (b.dims == 1)
{
c.create(w, h, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1)
{
// type 11
const float b0 = b[0];
for (int i = 0; i < size; i++)
{
c[i] = op(a[i], b0);
}
return 0;
}
// type 12
const float* ptr = a;
float* outptr = c;
for (int y = 0; y < h; y++)
{
const float b0 = b[y];
for (int x = 0; x < w; x++)
{
outptr[x] = op(ptr[x], b0);
}
ptr += w;
outptr += w;
}
return 0;
}
}
else if (a.dims == 1)
{
if (a.w == 1)
{
if (b.dims == 4)
{
// type 20
c.create(w1, h1, d1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
const float a0 = a[0];
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
outptr[i] = op(a0, ptr1[i]);
}
}
return 0;
}
if (b.dims == 3)
{
// type 4
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
const float a0 = a[0];
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
outptr[i] = op(a0, ptr1[i]);
}
}
return 0;
}
if (b.dims == 2)
{
// type 3
c.create(w1, h1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
const float a0 = a[0];
for (int i = 0; i < size1; i++)
{
c[i] = op(a0, b[i]);
}
return 0;
}
if (b.dims == 1)
{
// type 2
c.create(w1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
const float a0 = a[0];
for (int i = 0; i < w1; i++)
{
c[i] = op(a0, b[i]);
}
return 0;
}
}
if (b.dims == 4)
{
// type 21
c.create(w1, h1, d1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float a0 = a[q];
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
outptr[i] = op(a0, ptr1[i]);
}
}
return 0;
}
if (b.dims == 3)
{
// type 9
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float a0 = a[q];
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
outptr[i] = op(a0, ptr1[i]);
}
}
return 0;
}
if (b.dims == 2)
{
// type 8
c.create(w1, h1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
const float* ptr1 = b;
float* outptr = c;
for (int y = 0; y < h1; y++)
{
const float a0 = a[y];
for (int x = 0; x < w1; x++)
{
outptr[x] = op(a0, ptr1[x]);
}
ptr1 += w1;
outptr += w1;
}
return 0;
}
if (b.dims == 1)
{
c.create(w, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1)
{
// type 6
const float b0 = b[0];
for (int i = 0; i < w; i++)
{
c[i] = op(a[i], b0);
}
return 0;
}
// type 7
for (int i = 0; i < w; i++)
{
c[i] = op(a[i], b[i]);
}
}
}
return 0;
}
|
subq $0x5048, %rsp # imm = 0x5048
movq %rdi, 0x1f28(%rsp)
movq %rsi, 0x1f20(%rsp)
movq %rdx, 0x1f18(%rsp)
movq %rcx, 0x1f10(%rsp)
movq 0x1f28(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x1f08(%rsp)
movq 0x1f28(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x1f04(%rsp)
movq 0x1f28(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x1f00(%rsp)
movq 0x1f28(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x1efc(%rsp)
movl 0x1f08(%rsp), %eax
imull 0x1f04(%rsp), %eax
imull 0x1f00(%rsp), %eax
movl %eax, 0x1ef8(%rsp)
movq 0x1f28(%rsp), %rax
movq 0x10(%rax), %rax
movq %rax, 0x1ef0(%rsp)
movq 0x1f20(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x1eec(%rsp)
movq 0x1f20(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x1ee8(%rsp)
movq 0x1f20(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x1ee4(%rsp)
movq 0x1f20(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x1ee0(%rsp)
movl 0x1eec(%rsp), %eax
imull 0x1ee8(%rsp), %eax
imull 0x1ee4(%rsp), %eax
movl %eax, 0x1edc(%rsp)
movq 0x1f28(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x11f1e2f
movq 0x1f20(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x11ef117
movq 0x1f18(%rsp), %rdi
movl 0x1f08(%rsp), %esi
movl 0x1f04(%rsp), %edx
movl 0x1f00(%rsp), %ecx
movl 0x1efc(%rsp), %r8d
movq 0x1ef0(%rsp), %r9
movq 0x1f10(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6fb30
movq 0x1f18(%rsp), %rax
movq %rax, 0x1ff8(%rsp)
movq 0x1ff8(%rsp), %rcx
movq %rcx, 0xaa0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xaaf(%rsp)
je 0x11ee34e
movq 0xaa0(%rsp), %rax
movq %rax, 0x2ee0(%rsp)
movq 0x2ee0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xaaf(%rsp)
movb 0xaaf(%rsp), %al
testb $0x1, %al
jne 0x11ee35b
jmp 0x11ee36b
movl $0xffffff9c, 0x1f34(%rsp) # imm = 0xFFFFFF9C
jmp 0x12015a5
movl $0x0, 0x1ed8(%rsp)
movl 0x1ed8(%rsp), %eax
cmpl 0x1efc(%rsp), %eax
jge 0x11ef107
movq 0x1f28(%rsp), %rcx
movl 0x1ed8(%rsp), %eax
leaq 0x1e88(%rsp), %rdx
movq %rdx, 0x2328(%rsp)
movq %rcx, 0x2320(%rsp)
movl %eax, 0x231c(%rsp)
movq 0x2320(%rsp), %rax
movq %rax, 0xa98(%rsp)
movb $0x0, 0x231b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x231c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1e88(%rsp), %r10
movq %r10, 0x3518(%rsp)
movl %r9d, 0x3514(%rsp)
movl %r8d, 0x3510(%rsp)
movl %edi, 0x350c(%rsp)
movq %rsi, 0x3500(%rsp)
movq %rdx, 0x34f8(%rsp)
movl %ecx, 0x34f4(%rsp)
movq %rax, 0x34e8(%rsp)
movq 0x3518(%rsp), %rcx
movq %rcx, 0xa90(%rsp)
movq 0x3500(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x34f8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x34f4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x34e8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3514(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3510(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x350c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3e70(%rsp)
movl $0x10, 0x3e6c(%rsp)
movq 0x3e70(%rsp), %rax
movslq 0x3e6c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3e6c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xa98(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1eb0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11ee546
movq 0xa98(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1ec8(%rsp)
movb $0x1, 0x231b(%rsp)
testb $0x1, 0x231b(%rsp)
jne 0x11ee681
leaq 0x1e88(%rsp), %rax
movq %rax, 0x2460(%rsp)
movq 0x2460(%rsp), %rax
movq %rax, 0x4ad0(%rsp)
movq 0x4ad0(%rsp), %rax
movq %rax, 0xa88(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11ee624
movq 0xa88(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4acc(%rsp) # imm = 0xFFFFFFFF
movl 0x4acc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4ac8(%rsp)
cmpl $0x1, 0x4ac8(%rsp)
jne 0x11ee624
movq 0xa88(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11ee5f5
movq 0xa88(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11ee5f3
jmp 0x11ee622
movq 0xa88(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4ad8(%rsp)
cmpq $0x0, 0x4ad8(%rsp)
je 0x11ee620
movq 0x4ad8(%rsp), %rdi
callq 0x5f480
jmp 0x11ee622
jmp 0x11ee624
movq 0xa88(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11ee67f
movq %rax, %rdi
callq 0x678a0
jmp 0x11ee681
leaq 0x1e88(%rsp), %rax
movq %rax, 0x2458(%rsp)
movq 0x2458(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xa80(%rsp)
leaq 0x1e88(%rsp), %rax
movq %rax, 0x2570(%rsp)
movq 0x2570(%rsp), %rax
movq %rax, 0x48b0(%rsp)
movq 0x48b0(%rsp), %rax
movq %rax, 0xa78(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11ee76c
movq 0xa78(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x48ac(%rsp) # imm = 0xFFFFFFFF
movl 0x48ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x48a8(%rsp)
cmpl $0x1, 0x48a8(%rsp)
jne 0x11ee76c
movq 0xa78(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11ee73d
movq 0xa78(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11ee73b
jmp 0x11ee76a
movq 0xa78(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4be8(%rsp)
cmpq $0x0, 0x4be8(%rsp)
je 0x11ee768
movq 0x4be8(%rsp), %rdi
callq 0x5f480
jmp 0x11ee76a
jmp 0x11ee76c
movq 0xa78(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11ee7c7
movq %rax, %rdi
callq 0x678a0
movq 0xa80(%rsp), %rax
movq %rax, 0x1ed0(%rsp)
movq 0x1f20(%rsp), %rcx
movl 0x1ed8(%rsp), %eax
leaq 0x1e28(%rsp), %rdx
movq %rdx, 0x2310(%rsp)
movq %rcx, 0x2308(%rsp)
movl %eax, 0x2304(%rsp)
movq 0x2308(%rsp), %rax
movq %rax, 0xa70(%rsp)
movb $0x0, 0x2303(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2304(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1e28(%rsp), %r10
movq %r10, 0x3550(%rsp)
movl %r9d, 0x354c(%rsp)
movl %r8d, 0x3548(%rsp)
movl %edi, 0x3544(%rsp)
movq %rsi, 0x3538(%rsp)
movq %rdx, 0x3530(%rsp)
movl %ecx, 0x352c(%rsp)
movq %rax, 0x3520(%rsp)
movq 0x3550(%rsp), %rcx
movq %rcx, 0xa68(%rsp)
movq 0x3538(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3530(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x352c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3520(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x354c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3548(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3544(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3e60(%rsp)
movl $0x10, 0x3e5c(%rsp)
movq 0x3e60(%rsp), %rax
movslq 0x3e5c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3e5c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xa70(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1e50(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11ee993
movq 0xa70(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1e68(%rsp)
movb $0x1, 0x2303(%rsp)
testb $0x1, 0x2303(%rsp)
jne 0x11eeace
leaq 0x1e28(%rsp), %rax
movq %rax, 0x2468(%rsp)
movq 0x2468(%rsp), %rax
movq %rax, 0x4ac0(%rsp)
movq 0x4ac0(%rsp), %rax
movq %rax, 0xa60(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11eea71
movq 0xa60(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4abc(%rsp) # imm = 0xFFFFFFFF
movl 0x4abc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4ab8(%rsp)
cmpl $0x1, 0x4ab8(%rsp)
jne 0x11eea71
movq 0xa60(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11eea42
movq 0xa60(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11eea40
jmp 0x11eea6f
movq 0xa60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4ae0(%rsp)
cmpq $0x0, 0x4ae0(%rsp)
je 0x11eea6d
movq 0x4ae0(%rsp), %rdi
callq 0x5f480
jmp 0x11eea6f
jmp 0x11eea71
movq 0xa60(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11eeacc
movq %rax, %rdi
callq 0x678a0
jmp 0x11eeace
leaq 0x1e28(%rsp), %rax
movq %rax, 0x2450(%rsp)
movq 0x2450(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xa58(%rsp)
leaq 0x1e28(%rsp), %rax
movq %rax, 0x2580(%rsp)
movq 0x2580(%rsp), %rax
movq %rax, 0x4890(%rsp)
movq 0x4890(%rsp), %rax
movq %rax, 0xa50(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11eebb9
movq 0xa50(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x488c(%rsp) # imm = 0xFFFFFFFF
movl 0x488c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4888(%rsp)
cmpl $0x1, 0x4888(%rsp)
jne 0x11eebb9
movq 0xa50(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11eeb8a
movq 0xa50(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11eeb88
jmp 0x11eebb7
movq 0xa50(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4bf8(%rsp)
cmpq $0x0, 0x4bf8(%rsp)
je 0x11eebb5
movq 0x4bf8(%rsp), %rdi
callq 0x5f480
jmp 0x11eebb7
jmp 0x11eebb9
movq 0xa50(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11eec14
movq %rax, %rdi
callq 0x678a0
movq 0xa58(%rsp), %rax
movq %rax, 0x1e70(%rsp)
movq 0x1f18(%rsp), %rcx
movl 0x1ed8(%rsp), %eax
leaq 0x1dd8(%rsp), %rdx
movq %rdx, 0x2c00(%rsp)
movq %rcx, 0x2bf8(%rsp)
movl %eax, 0x2bf4(%rsp)
movq 0x2bf8(%rsp), %rax
movq %rax, 0xa48(%rsp)
movb $0x0, 0x2bf3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2bf4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1dd8(%rsp), %r10
movq %r10, 0x2fd8(%rsp)
movl %r9d, 0x2fd4(%rsp)
movl %r8d, 0x2fd0(%rsp)
movl %edi, 0x2fcc(%rsp)
movq %rsi, 0x2fc0(%rsp)
movq %rdx, 0x2fb8(%rsp)
movl %ecx, 0x2fb4(%rsp)
movq %rax, 0x2fa8(%rsp)
movq 0x2fd8(%rsp), %rcx
movq %rcx, 0xa40(%rsp)
movq 0x2fc0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2fb8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2fb4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2fa8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2fd4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2fd0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2fcc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ff0(%rsp)
movl $0x10, 0x3fec(%rsp)
movq 0x3ff0(%rsp), %rax
movslq 0x3fec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3fec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xa48(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1e00(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11eede0
movq 0xa48(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1e18(%rsp)
movb $0x1, 0x2bf3(%rsp)
testb $0x1, 0x2bf3(%rsp)
jne 0x11eef1b
leaq 0x1dd8(%rsp), %rax
movq %rax, 0x2c08(%rsp)
movq 0x2c08(%rsp), %rax
movq %rax, 0x4000(%rsp)
movq 0x4000(%rsp), %rax
movq %rax, 0xa38(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11eeebe
movq 0xa38(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ffc(%rsp) # imm = 0xFFFFFFFF
movl 0x3ffc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ff8(%rsp)
cmpl $0x1, 0x3ff8(%rsp)
jne 0x11eeebe
movq 0xa38(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11eee8f
movq 0xa38(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11eee8d
jmp 0x11eeebc
movq 0xa38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5040(%rsp)
cmpq $0x0, 0x5040(%rsp)
je 0x11eeeba
movq 0x5040(%rsp), %rdi
callq 0x5f480
jmp 0x11eeebc
jmp 0x11eeebe
movq 0xa38(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11eef19
movq %rax, %rdi
callq 0x678a0
jmp 0x11eef1b
leaq 0x1dd8(%rsp), %rax
movq %rax, 0x2cd8(%rsp)
movq 0x2cd8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xa30(%rsp)
leaq 0x1dd8(%rsp), %rax
movq %rax, 0x2590(%rsp)
movq 0x2590(%rsp), %rax
movq %rax, 0x4870(%rsp)
movq 0x4870(%rsp), %rax
movq %rax, 0xa28(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11ef006
movq 0xa28(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x486c(%rsp) # imm = 0xFFFFFFFF
movl 0x486c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4868(%rsp)
cmpl $0x1, 0x4868(%rsp)
jne 0x11ef006
movq 0xa28(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11eefd7
movq 0xa28(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11eefd5
jmp 0x11ef004
movq 0xa28(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4c08(%rsp)
cmpq $0x0, 0x4c08(%rsp)
je 0x11ef002
movq 0x4c08(%rsp), %rdi
callq 0x5f480
jmp 0x11ef004
jmp 0x11ef006
movq 0xa28(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11ef061
movq %rax, %rdi
callq 0x678a0
movq 0xa30(%rsp), %rax
movq %rax, 0x1e20(%rsp)
movl $0x0, 0x1dd4(%rsp)
movl 0x1dd4(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x11ef0ef
movq 0x1ed0(%rsp), %rsi
movslq 0x1dd4(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1e70(%rsp), %rdx
movslq 0x1dd4(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1f0f(%rsp), %rdi
callq 0x1278000
movq 0x1e20(%rsp), %rax
movslq 0x1dd4(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1dd4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1dd4(%rsp)
jmp 0x11ef07c
jmp 0x11ef0f1
movl 0x1ed8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1ed8(%rsp)
jmp 0x11ee376
movl $0x0, 0x1f34(%rsp)
jmp 0x12015a5
movq 0x1f18(%rsp), %rdi
movl 0x1f08(%rsp), %esi
movl 0x1f04(%rsp), %edx
movl 0x1f00(%rsp), %ecx
movl 0x1efc(%rsp), %r8d
movq 0x1ef0(%rsp), %r9
movq 0x1f10(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6fb30
movq 0x1f18(%rsp), %rax
movq %rax, 0x1ff0(%rsp)
movq 0x1ff0(%rsp), %rcx
movq %rcx, 0xa18(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xa27(%rsp)
je 0x11ef1ba
movq 0xa18(%rsp), %rax
movq %rax, 0x2ee8(%rsp)
movq 0x2ee8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xa27(%rsp)
movb 0xa27(%rsp), %al
testb $0x1, %al
jne 0x11ef1c7
jmp 0x11ef1d7
movl $0xffffff9c, 0x1f34(%rsp) # imm = 0xFFFFFF9C
jmp 0x12015a5
movq 0x1f20(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x11f0071
movl $0x0, 0x1dd0(%rsp)
movl 0x1dd0(%rsp), %eax
cmpl 0x1efc(%rsp), %eax
jge 0x11f0061
movq 0x1f28(%rsp), %rcx
movl 0x1dd0(%rsp), %eax
leaq 0x1d80(%rsp), %rdx
movq %rdx, 0x22f8(%rsp)
movq %rcx, 0x22f0(%rsp)
movl %eax, 0x22ec(%rsp)
movq 0x22f0(%rsp), %rax
movq %rax, 0xa10(%rsp)
movb $0x0, 0x22eb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22ec(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1d80(%rsp), %r10
movq %r10, 0x3588(%rsp)
movl %r9d, 0x3584(%rsp)
movl %r8d, 0x3580(%rsp)
movl %edi, 0x357c(%rsp)
movq %rsi, 0x3570(%rsp)
movq %rdx, 0x3568(%rsp)
movl %ecx, 0x3564(%rsp)
movq %rax, 0x3558(%rsp)
movq 0x3588(%rsp), %rcx
movq %rcx, 0xa08(%rsp)
movq 0x3570(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3568(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3564(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3558(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3584(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3580(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x357c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3e50(%rsp)
movl $0x10, 0x3e4c(%rsp)
movq 0x3e50(%rsp), %rax
movslq 0x3e4c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3e4c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xa10(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1da8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11ef3c4
movq 0xa10(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1dc0(%rsp)
movb $0x1, 0x22eb(%rsp)
testb $0x1, 0x22eb(%rsp)
jne 0x11ef4ff
leaq 0x1d80(%rsp), %rax
movq %rax, 0x2470(%rsp)
movq 0x2470(%rsp), %rax
movq %rax, 0x4ab0(%rsp)
movq 0x4ab0(%rsp), %rax
movq %rax, 0xa00(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11ef4a2
movq 0xa00(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4aac(%rsp) # imm = 0xFFFFFFFF
movl 0x4aac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4aa8(%rsp)
cmpl $0x1, 0x4aa8(%rsp)
jne 0x11ef4a2
movq 0xa00(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11ef473
movq 0xa00(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11ef471
jmp 0x11ef4a0
movq 0xa00(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4ae8(%rsp)
cmpq $0x0, 0x4ae8(%rsp)
je 0x11ef49e
movq 0x4ae8(%rsp), %rdi
callq 0x5f480
jmp 0x11ef4a0
jmp 0x11ef4a2
movq 0xa00(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11ef4fd
movq %rax, %rdi
callq 0x678a0
jmp 0x11ef4ff
leaq 0x1d80(%rsp), %rax
movq %rax, 0x2448(%rsp)
movq 0x2448(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x9f8(%rsp)
leaq 0x1d80(%rsp), %rax
movq %rax, 0x25a0(%rsp)
movq 0x25a0(%rsp), %rax
movq %rax, 0x4850(%rsp)
movq 0x4850(%rsp), %rax
movq %rax, 0x9f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11ef5ea
movq 0x9f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x484c(%rsp) # imm = 0xFFFFFFFF
movl 0x484c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4848(%rsp)
cmpl $0x1, 0x4848(%rsp)
jne 0x11ef5ea
movq 0x9f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11ef5bb
movq 0x9f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11ef5b9
jmp 0x11ef5e8
movq 0x9f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4c18(%rsp)
cmpq $0x0, 0x4c18(%rsp)
je 0x11ef5e6
movq 0x4c18(%rsp), %rdi
callq 0x5f480
jmp 0x11ef5e8
jmp 0x11ef5ea
movq 0x9f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11ef645
movq %rax, %rdi
callq 0x678a0
movq 0x9f8(%rsp), %rax
movq %rax, 0x1dc8(%rsp)
movq 0x1f20(%rsp), %rcx
movl 0x1dd0(%rsp), %eax
leaq 0x1d30(%rsp), %rdx
movq %rdx, 0x22e0(%rsp)
movq %rcx, 0x22d8(%rsp)
movl %eax, 0x22d4(%rsp)
movq 0x22d8(%rsp), %rax
movq %rax, 0x9e8(%rsp)
movb $0x0, 0x22d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1d30(%rsp), %r10
movq %r10, 0x35c0(%rsp)
movl %r9d, 0x35bc(%rsp)
movl %r8d, 0x35b8(%rsp)
movl %edi, 0x35b4(%rsp)
movq %rsi, 0x35a8(%rsp)
movq %rdx, 0x35a0(%rsp)
movl %ecx, 0x359c(%rsp)
movq %rax, 0x3590(%rsp)
movq 0x35c0(%rsp), %rcx
movq %rcx, 0x9e0(%rsp)
movq 0x35a8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x35a0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x359c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3590(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x35bc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x35b8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x35b4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3e40(%rsp)
movl $0x10, 0x3e3c(%rsp)
movq 0x3e40(%rsp), %rax
movslq 0x3e3c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3e3c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x9e8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1d58(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11ef811
movq 0x9e8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1d70(%rsp)
movb $0x1, 0x22d3(%rsp)
testb $0x1, 0x22d3(%rsp)
jne 0x11ef94c
leaq 0x1d30(%rsp), %rax
movq %rax, 0x2478(%rsp)
movq 0x2478(%rsp), %rax
movq %rax, 0x4aa0(%rsp)
movq 0x4aa0(%rsp), %rax
movq %rax, 0x9d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11ef8ef
movq 0x9d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4a9c(%rsp) # imm = 0xFFFFFFFF
movl 0x4a9c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4a98(%rsp)
cmpl $0x1, 0x4a98(%rsp)
jne 0x11ef8ef
movq 0x9d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11ef8c0
movq 0x9d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11ef8be
jmp 0x11ef8ed
movq 0x9d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4af0(%rsp)
cmpq $0x0, 0x4af0(%rsp)
je 0x11ef8eb
movq 0x4af0(%rsp), %rdi
callq 0x5f480
jmp 0x11ef8ed
jmp 0x11ef8ef
movq 0x9d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11ef94a
movq %rax, %rdi
callq 0x678a0
jmp 0x11ef94c
leaq 0x1d30(%rsp), %rax
movq %rax, 0x2440(%rsp)
movq 0x2440(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x9d0(%rsp)
leaq 0x1d30(%rsp), %rax
movq %rax, 0x25b0(%rsp)
movq 0x25b0(%rsp), %rax
movq %rax, 0x4830(%rsp)
movq 0x4830(%rsp), %rax
movq %rax, 0x9c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11efa37
movq 0x9c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x482c(%rsp) # imm = 0xFFFFFFFF
movl 0x482c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4828(%rsp)
cmpl $0x1, 0x4828(%rsp)
jne 0x11efa37
movq 0x9c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11efa08
movq 0x9c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11efa06
jmp 0x11efa35
movq 0x9c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4c28(%rsp)
cmpq $0x0, 0x4c28(%rsp)
je 0x11efa33
movq 0x4c28(%rsp), %rdi
callq 0x5f480
jmp 0x11efa35
jmp 0x11efa37
movq 0x9c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11efa92
movq %rax, %rdi
callq 0x678a0
movq 0x9d0(%rsp), %rax
movq %rax, 0x1d78(%rsp)
movq 0x1f18(%rsp), %rcx
movl 0x1dd0(%rsp), %eax
leaq 0x1ce0(%rsp), %rdx
movq %rdx, 0x2be0(%rsp)
movq %rcx, 0x2bd8(%rsp)
movl %eax, 0x2bd4(%rsp)
movq 0x2bd8(%rsp), %rax
movq %rax, 0x9c0(%rsp)
movb $0x0, 0x2bd3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2bd4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1ce0(%rsp), %r10
movq %r10, 0x3010(%rsp)
movl %r9d, 0x300c(%rsp)
movl %r8d, 0x3008(%rsp)
movl %edi, 0x3004(%rsp)
movq %rsi, 0x2ff8(%rsp)
movq %rdx, 0x2ff0(%rsp)
movl %ecx, 0x2fec(%rsp)
movq %rax, 0x2fe0(%rsp)
movq 0x3010(%rsp), %rcx
movq %rcx, 0x9b8(%rsp)
movq 0x2ff8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2ff0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2fec(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2fe0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x300c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3008(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3004(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3fe0(%rsp)
movl $0x10, 0x3fdc(%rsp)
movq 0x3fe0(%rsp), %rax
movslq 0x3fdc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3fdc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x9c0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1d08(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11efc5e
movq 0x9c0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1d20(%rsp)
movb $0x1, 0x2bd3(%rsp)
testb $0x1, 0x2bd3(%rsp)
jne 0x11efd99
leaq 0x1ce0(%rsp), %rax
movq %rax, 0x2be8(%rsp)
movq 0x2be8(%rsp), %rax
movq %rax, 0x4010(%rsp)
movq 0x4010(%rsp), %rax
movq %rax, 0x9b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11efd3c
movq 0x9b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x400c(%rsp) # imm = 0xFFFFFFFF
movl 0x400c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4008(%rsp)
cmpl $0x1, 0x4008(%rsp)
jne 0x11efd3c
movq 0x9b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11efd0d
movq 0x9b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11efd0b
jmp 0x11efd3a
movq 0x9b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5038(%rsp)
cmpq $0x0, 0x5038(%rsp)
je 0x11efd38
movq 0x5038(%rsp), %rdi
callq 0x5f480
jmp 0x11efd3a
jmp 0x11efd3c
movq 0x9b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11efd97
movq %rax, %rdi
callq 0x678a0
jmp 0x11efd99
leaq 0x1ce0(%rsp), %rax
movq %rax, 0x2cd0(%rsp)
movq 0x2cd0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x9a8(%rsp)
leaq 0x1ce0(%rsp), %rax
movq %rax, 0x25c0(%rsp)
movq 0x25c0(%rsp), %rax
movq %rax, 0x4810(%rsp)
movq 0x4810(%rsp), %rax
movq %rax, 0x9a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11efe84
movq 0x9a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x480c(%rsp) # imm = 0xFFFFFFFF
movl 0x480c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4808(%rsp)
cmpl $0x1, 0x4808(%rsp)
jne 0x11efe84
movq 0x9a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11efe55
movq 0x9a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11efe53
jmp 0x11efe82
movq 0x9a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4c38(%rsp)
cmpq $0x0, 0x4c38(%rsp)
je 0x11efe80
movq 0x4c38(%rsp), %rdi
callq 0x5f480
jmp 0x11efe82
jmp 0x11efe84
movq 0x9a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11efedf
movq %rax, %rdi
callq 0x678a0
movq 0x9a8(%rsp), %rax
movq %rax, 0x1d28(%rsp)
movl $0x0, 0x1cdc(%rsp)
movl 0x1cdc(%rsp), %eax
cmpl 0x1f00(%rsp), %eax
jge 0x11f0049
movl $0x0, 0x1cd8(%rsp)
movl 0x1cd8(%rsp), %eax
cmpl 0x1f04(%rsp), %eax
jge 0x11f0012
movq 0x1d78(%rsp), %rax
movslq 0x1cd8(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x1cd4(%rsp)
movl $0x0, 0x1cd0(%rsp)
movl 0x1cd0(%rsp), %eax
cmpl 0x1f08(%rsp), %eax
jge 0x11effba
movq 0x1dc8(%rsp), %rsi
movslq 0x1cd0(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1f0f(%rsp), %rdi
leaq 0x1cd4(%rsp), %rdx
callq 0x1278000
movq 0x1d28(%rsp), %rax
movslq 0x1cd0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1cd0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1cd0(%rsp)
jmp 0x11eff56
movl 0x1f08(%rsp), %ecx
movq 0x1dc8(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1dc8(%rsp)
movl 0x1f08(%rsp), %ecx
movq 0x1d28(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1d28(%rsp)
movl 0x1cd8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1cd8(%rsp)
jmp 0x11eff19
movl 0x1f04(%rsp), %ecx
movq 0x1d78(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1d78(%rsp)
movl 0x1cdc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1cdc(%rsp)
jmp 0x11efefa
jmp 0x11f004b
movl 0x1dd0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1dd0(%rsp)
jmp 0x11ef1f4
movl $0x0, 0x1f34(%rsp)
jmp 0x12015a5
movq 0x1f20(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x11f0ae8
movl $0x0, 0x1ccc(%rsp)
movl 0x1ccc(%rsp), %eax
cmpl 0x1efc(%rsp), %eax
jge 0x11f0ad8
movq 0x1f28(%rsp), %rcx
movl 0x1ccc(%rsp), %eax
leaq 0x1c78(%rsp), %rdx
movq %rdx, 0x22c8(%rsp)
movq %rcx, 0x22c0(%rsp)
movl %eax, 0x22bc(%rsp)
movq 0x22c0(%rsp), %rax
movq %rax, 0x998(%rsp)
movb $0x0, 0x22bb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22bc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1c78(%rsp), %r10
movq %r10, 0x35f8(%rsp)
movl %r9d, 0x35f4(%rsp)
movl %r8d, 0x35f0(%rsp)
movl %edi, 0x35ec(%rsp)
movq %rsi, 0x35e0(%rsp)
movq %rdx, 0x35d8(%rsp)
movl %ecx, 0x35d4(%rsp)
movq %rax, 0x35c8(%rsp)
movq 0x35f8(%rsp), %rcx
movq %rcx, 0x990(%rsp)
movq 0x35e0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x35d8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x35d4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x35c8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x35f4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x35f0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x35ec(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3e30(%rsp)
movl $0x10, 0x3e2c(%rsp)
movq 0x3e30(%rsp), %rax
movslq 0x3e2c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3e2c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x998(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1ca0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11f025e
movq 0x998(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1cb8(%rsp)
movb $0x1, 0x22bb(%rsp)
testb $0x1, 0x22bb(%rsp)
jne 0x11f0399
leaq 0x1c78(%rsp), %rax
movq %rax, 0x2480(%rsp)
movq 0x2480(%rsp), %rax
movq %rax, 0x4a90(%rsp)
movq 0x4a90(%rsp), %rax
movq %rax, 0x988(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f033c
movq 0x988(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4a8c(%rsp) # imm = 0xFFFFFFFF
movl 0x4a8c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4a88(%rsp)
cmpl $0x1, 0x4a88(%rsp)
jne 0x11f033c
movq 0x988(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f030d
movq 0x988(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f030b
jmp 0x11f033a
movq 0x988(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4af8(%rsp)
cmpq $0x0, 0x4af8(%rsp)
je 0x11f0338
movq 0x4af8(%rsp), %rdi
callq 0x5f480
jmp 0x11f033a
jmp 0x11f033c
movq 0x988(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f0397
movq %rax, %rdi
callq 0x678a0
jmp 0x11f0399
leaq 0x1c78(%rsp), %rax
movq %rax, 0x2438(%rsp)
movq 0x2438(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x980(%rsp)
leaq 0x1c78(%rsp), %rax
movq %rax, 0x25d0(%rsp)
movq 0x25d0(%rsp), %rax
movq %rax, 0x47f0(%rsp)
movq 0x47f0(%rsp), %rax
movq %rax, 0x978(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f0484
movq 0x978(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x47ec(%rsp) # imm = 0xFFFFFFFF
movl 0x47ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x47e8(%rsp)
cmpl $0x1, 0x47e8(%rsp)
jne 0x11f0484
movq 0x978(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f0455
movq 0x978(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f0453
jmp 0x11f0482
movq 0x978(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4c48(%rsp)
cmpq $0x0, 0x4c48(%rsp)
je 0x11f0480
movq 0x4c48(%rsp), %rdi
callq 0x5f480
jmp 0x11f0482
jmp 0x11f0484
movq 0x978(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f04df
movq %rax, %rdi
callq 0x678a0
movq 0x980(%rsp), %rax
movq %rax, 0x1cc0(%rsp)
movq 0x1f20(%rsp), %rcx
movl 0x1ccc(%rsp), %eax
movq %rcx, 0x2d18(%rsp)
movl %eax, 0x2d14(%rsp)
movq 0x2d18(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2d14(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x1c70(%rsp)
movq 0x1f18(%rsp), %rcx
movl 0x1ccc(%rsp), %eax
leaq 0x1c20(%rsp), %rdx
movq %rdx, 0x2bc0(%rsp)
movq %rcx, 0x2bb8(%rsp)
movl %eax, 0x2bb4(%rsp)
movq 0x2bb8(%rsp), %rax
movq %rax, 0x970(%rsp)
movb $0x0, 0x2bb3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2bb4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1c20(%rsp), %r10
movq %r10, 0x3048(%rsp)
movl %r9d, 0x3044(%rsp)
movl %r8d, 0x3040(%rsp)
movl %edi, 0x303c(%rsp)
movq %rsi, 0x3030(%rsp)
movq %rdx, 0x3028(%rsp)
movl %ecx, 0x3024(%rsp)
movq %rax, 0x3018(%rsp)
movq 0x3048(%rsp), %rcx
movq %rcx, 0x968(%rsp)
movq 0x3030(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3028(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3024(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3018(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3044(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3040(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x303c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3fd0(%rsp)
movl $0x10, 0x3fcc(%rsp)
movq 0x3fd0(%rsp), %rax
movslq 0x3fcc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3fcc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x970(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1c48(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11f06f4
movq 0x970(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1c60(%rsp)
movb $0x1, 0x2bb3(%rsp)
testb $0x1, 0x2bb3(%rsp)
jne 0x11f082f
leaq 0x1c20(%rsp), %rax
movq %rax, 0x2bc8(%rsp)
movq 0x2bc8(%rsp), %rax
movq %rax, 0x4020(%rsp)
movq 0x4020(%rsp), %rax
movq %rax, 0x960(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f07d2
movq 0x960(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x401c(%rsp) # imm = 0xFFFFFFFF
movl 0x401c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4018(%rsp)
cmpl $0x1, 0x4018(%rsp)
jne 0x11f07d2
movq 0x960(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f07a3
movq 0x960(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f07a1
jmp 0x11f07d0
movq 0x960(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5030(%rsp)
cmpq $0x0, 0x5030(%rsp)
je 0x11f07ce
movq 0x5030(%rsp), %rdi
callq 0x5f480
jmp 0x11f07d0
jmp 0x11f07d2
movq 0x960(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f082d
movq %rax, %rdi
callq 0x678a0
jmp 0x11f082f
leaq 0x1c20(%rsp), %rax
movq %rax, 0x2cc8(%rsp)
movq 0x2cc8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x958(%rsp)
leaq 0x1c20(%rsp), %rax
movq %rax, 0x25e0(%rsp)
movq 0x25e0(%rsp), %rax
movq %rax, 0x47d0(%rsp)
movq 0x47d0(%rsp), %rax
movq %rax, 0x950(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f091a
movq 0x950(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x47cc(%rsp) # imm = 0xFFFFFFFF
movl 0x47cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x47c8(%rsp)
cmpl $0x1, 0x47c8(%rsp)
jne 0x11f091a
movq 0x950(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f08eb
movq 0x950(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f08e9
jmp 0x11f0918
movq 0x950(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4c58(%rsp)
cmpq $0x0, 0x4c58(%rsp)
je 0x11f0916
movq 0x4c58(%rsp), %rdi
callq 0x5f480
jmp 0x11f0918
jmp 0x11f091a
movq 0x950(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f0975
movq %rax, %rdi
callq 0x678a0
movq 0x958(%rsp), %rax
movq %rax, 0x1c68(%rsp)
movl $0x0, 0x1c1c(%rsp)
movl 0x1c1c(%rsp), %eax
cmpl 0x1f00(%rsp), %eax
jge 0x11f0ac0
movq 0x1c70(%rsp), %rax
movslq 0x1c1c(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x1c18(%rsp)
movl $0x0, 0x1c14(%rsp)
movl 0x1c14(%rsp), %eax
cmpl 0x1f04(%rsp), %eax
jge 0x11f0aa8
movl $0x0, 0x1c10(%rsp)
movl 0x1c10(%rsp), %eax
cmpl 0x1f08(%rsp), %eax
jge 0x11f0a50
movq 0x1cc0(%rsp), %rsi
movslq 0x1c10(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1f0f(%rsp), %rdi
leaq 0x1c18(%rsp), %rdx
callq 0x1278000
movq 0x1c68(%rsp), %rax
movslq 0x1c10(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1c10(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c10(%rsp)
jmp 0x11f09ec
movl 0x1f08(%rsp), %ecx
movq 0x1cc0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1cc0(%rsp)
movl 0x1f08(%rsp), %ecx
movq 0x1c68(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1c68(%rsp)
movl 0x1c14(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c14(%rsp)
jmp 0x11f09cd
jmp 0x11f0aaa
movl 0x1c1c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c1c(%rsp)
jmp 0x11f0990
jmp 0x11f0ac2
movl 0x1ccc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1ccc(%rsp)
jmp 0x11f008e
movl $0x0, 0x1f34(%rsp)
jmp 0x12015a5
movq 0x1f20(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x11f1e2a
movq 0x1f20(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x11f1499
movq 0x1f20(%rsp), %rax
movq %rax, 0x2e78(%rsp)
movq $0x0, 0x2e70(%rsp)
movq 0x2e78(%rsp), %rax
movq (%rax), %rax
movq 0x2e70(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x1c0c(%rsp)
movl $0x0, 0x1c08(%rsp)
movl 0x1c08(%rsp), %eax
cmpl 0x1efc(%rsp), %eax
jge 0x11f1489
movq 0x1f28(%rsp), %rcx
movl 0x1c08(%rsp), %eax
leaq 0x1bb8(%rsp), %rdx
movq %rdx, 0x22b0(%rsp)
movq %rcx, 0x22a8(%rsp)
movl %eax, 0x22a4(%rsp)
movq 0x22a8(%rsp), %rax
movq %rax, 0x948(%rsp)
movb $0x0, 0x22a3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22a4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1bb8(%rsp), %r10
movq %r10, 0x3630(%rsp)
movl %r9d, 0x362c(%rsp)
movl %r8d, 0x3628(%rsp)
movl %edi, 0x3624(%rsp)
movq %rsi, 0x3618(%rsp)
movq %rdx, 0x3610(%rsp)
movl %ecx, 0x360c(%rsp)
movq %rax, 0x3600(%rsp)
movq 0x3630(%rsp), %rcx
movq %rcx, 0x940(%rsp)
movq 0x3618(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3610(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x360c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3600(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x362c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3628(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3624(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3e20(%rsp)
movl $0x10, 0x3e1c(%rsp)
movq 0x3e20(%rsp), %rax
movslq 0x3e1c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3e1c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x948(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1be0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11f0d24
movq 0x948(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1bf8(%rsp)
movb $0x1, 0x22a3(%rsp)
testb $0x1, 0x22a3(%rsp)
jne 0x11f0e5f
leaq 0x1bb8(%rsp), %rax
movq %rax, 0x2488(%rsp)
movq 0x2488(%rsp), %rax
movq %rax, 0x4a80(%rsp)
movq 0x4a80(%rsp), %rax
movq %rax, 0x938(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f0e02
movq 0x938(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4a7c(%rsp) # imm = 0xFFFFFFFF
movl 0x4a7c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4a78(%rsp)
cmpl $0x1, 0x4a78(%rsp)
jne 0x11f0e02
movq 0x938(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f0dd3
movq 0x938(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f0dd1
jmp 0x11f0e00
movq 0x938(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4b00(%rsp)
cmpq $0x0, 0x4b00(%rsp)
je 0x11f0dfe
movq 0x4b00(%rsp), %rdi
callq 0x5f480
jmp 0x11f0e00
jmp 0x11f0e02
movq 0x938(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f0e5d
movq %rax, %rdi
callq 0x678a0
jmp 0x11f0e5f
leaq 0x1bb8(%rsp), %rax
movq %rax, 0x2430(%rsp)
movq 0x2430(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x930(%rsp)
leaq 0x1bb8(%rsp), %rax
movq %rax, 0x25f0(%rsp)
movq 0x25f0(%rsp), %rax
movq %rax, 0x47b0(%rsp)
movq 0x47b0(%rsp), %rax
movq %rax, 0x928(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f0f4a
movq 0x928(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x47ac(%rsp) # imm = 0xFFFFFFFF
movl 0x47ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x47a8(%rsp)
cmpl $0x1, 0x47a8(%rsp)
jne 0x11f0f4a
movq 0x928(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f0f1b
movq 0x928(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f0f19
jmp 0x11f0f48
movq 0x928(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4c68(%rsp)
cmpq $0x0, 0x4c68(%rsp)
je 0x11f0f46
movq 0x4c68(%rsp), %rdi
callq 0x5f480
jmp 0x11f0f48
jmp 0x11f0f4a
movq 0x928(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f0fa5
movq %rax, %rdi
callq 0x678a0
movq 0x930(%rsp), %rax
movq %rax, 0x1c00(%rsp)
movq 0x1f18(%rsp), %rcx
movl 0x1c08(%rsp), %eax
leaq 0x1b68(%rsp), %rdx
movq %rdx, 0x2ba0(%rsp)
movq %rcx, 0x2b98(%rsp)
movl %eax, 0x2b94(%rsp)
movq 0x2b98(%rsp), %rax
movq %rax, 0x920(%rsp)
movb $0x0, 0x2b93(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2b94(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1b68(%rsp), %r10
movq %r10, 0x3080(%rsp)
movl %r9d, 0x307c(%rsp)
movl %r8d, 0x3078(%rsp)
movl %edi, 0x3074(%rsp)
movq %rsi, 0x3068(%rsp)
movq %rdx, 0x3060(%rsp)
movl %ecx, 0x305c(%rsp)
movq %rax, 0x3050(%rsp)
movq 0x3080(%rsp), %rcx
movq %rcx, 0x918(%rsp)
movq 0x3068(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3060(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x305c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3050(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x307c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3078(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3074(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3fc0(%rsp)
movl $0x10, 0x3fbc(%rsp)
movq 0x3fc0(%rsp), %rax
movslq 0x3fbc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3fbc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x920(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1b90(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11f1171
movq 0x920(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1ba8(%rsp)
movb $0x1, 0x2b93(%rsp)
testb $0x1, 0x2b93(%rsp)
jne 0x11f12ac
leaq 0x1b68(%rsp), %rax
movq %rax, 0x2ba8(%rsp)
movq 0x2ba8(%rsp), %rax
movq %rax, 0x4030(%rsp)
movq 0x4030(%rsp), %rax
movq %rax, 0x910(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f124f
movq 0x910(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x402c(%rsp) # imm = 0xFFFFFFFF
movl 0x402c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4028(%rsp)
cmpl $0x1, 0x4028(%rsp)
jne 0x11f124f
movq 0x910(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f1220
movq 0x910(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f121e
jmp 0x11f124d
movq 0x910(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5028(%rsp)
cmpq $0x0, 0x5028(%rsp)
je 0x11f124b
movq 0x5028(%rsp), %rdi
callq 0x5f480
jmp 0x11f124d
jmp 0x11f124f
movq 0x910(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f12aa
movq %rax, %rdi
callq 0x678a0
jmp 0x11f12ac
leaq 0x1b68(%rsp), %rax
movq %rax, 0x2cc0(%rsp)
movq 0x2cc0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x908(%rsp)
leaq 0x1b68(%rsp), %rax
movq %rax, 0x2600(%rsp)
movq 0x2600(%rsp), %rax
movq %rax, 0x4790(%rsp)
movq 0x4790(%rsp), %rax
movq %rax, 0x900(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f1397
movq 0x900(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x478c(%rsp) # imm = 0xFFFFFFFF
movl 0x478c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4788(%rsp)
cmpl $0x1, 0x4788(%rsp)
jne 0x11f1397
movq 0x900(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f1368
movq 0x900(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f1366
jmp 0x11f1395
movq 0x900(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4c78(%rsp)
cmpq $0x0, 0x4c78(%rsp)
je 0x11f1393
movq 0x4c78(%rsp), %rdi
callq 0x5f480
jmp 0x11f1395
jmp 0x11f1397
movq 0x900(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f13f2
movq %rax, %rdi
callq 0x678a0
movq 0x908(%rsp), %rax
movq %rax, 0x1bb0(%rsp)
movl $0x0, 0x1b64(%rsp)
movl 0x1b64(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x11f1471
movq 0x1c00(%rsp), %rsi
movslq 0x1b64(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1f0f(%rsp), %rdi
leaq 0x1c0c(%rsp), %rdx
callq 0x1278000
movq 0x1bb0(%rsp), %rax
movslq 0x1b64(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1b64(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b64(%rsp)
jmp 0x11f140d
jmp 0x11f1473
movl 0x1c08(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c08(%rsp)
jmp 0x11f0b54
movl $0x0, 0x1f34(%rsp)
jmp 0x12015a5
movl $0x0, 0x1b60(%rsp)
movl 0x1b60(%rsp), %eax
cmpl 0x1efc(%rsp), %eax
jge 0x11f1e1a
movq 0x1f28(%rsp), %rcx
movl 0x1b60(%rsp), %eax
leaq 0x1b10(%rsp), %rdx
movq %rdx, 0x2298(%rsp)
movq %rcx, 0x2290(%rsp)
movl %eax, 0x228c(%rsp)
movq 0x2290(%rsp), %rax
movq %rax, 0x8f8(%rsp)
movb $0x0, 0x228b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x228c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1b10(%rsp), %r10
movq %r10, 0x3668(%rsp)
movl %r9d, 0x3664(%rsp)
movl %r8d, 0x3660(%rsp)
movl %edi, 0x365c(%rsp)
movq %rsi, 0x3650(%rsp)
movq %rdx, 0x3648(%rsp)
movl %ecx, 0x3644(%rsp)
movq %rax, 0x3638(%rsp)
movq 0x3668(%rsp), %rcx
movq %rcx, 0x8f0(%rsp)
movq 0x3650(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3648(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3644(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3638(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3664(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3660(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x365c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3e10(%rsp)
movl $0x10, 0x3e0c(%rsp)
movq 0x3e10(%rsp), %rax
movslq 0x3e0c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3e0c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x8f8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1b38(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11f1674
movq 0x8f8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1b50(%rsp)
movb $0x1, 0x228b(%rsp)
testb $0x1, 0x228b(%rsp)
jne 0x11f17af
leaq 0x1b10(%rsp), %rax
movq %rax, 0x2490(%rsp)
movq 0x2490(%rsp), %rax
movq %rax, 0x4a70(%rsp)
movq 0x4a70(%rsp), %rax
movq %rax, 0x8e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f1752
movq 0x8e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4a6c(%rsp) # imm = 0xFFFFFFFF
movl 0x4a6c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4a68(%rsp)
cmpl $0x1, 0x4a68(%rsp)
jne 0x11f1752
movq 0x8e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f1723
movq 0x8e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f1721
jmp 0x11f1750
movq 0x8e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4b08(%rsp)
cmpq $0x0, 0x4b08(%rsp)
je 0x11f174e
movq 0x4b08(%rsp), %rdi
callq 0x5f480
jmp 0x11f1750
jmp 0x11f1752
movq 0x8e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f17ad
movq %rax, %rdi
callq 0x678a0
jmp 0x11f17af
leaq 0x1b10(%rsp), %rax
movq %rax, 0x2428(%rsp)
movq 0x2428(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8e0(%rsp)
leaq 0x1b10(%rsp), %rax
movq %rax, 0x2610(%rsp)
movq 0x2610(%rsp), %rax
movq %rax, 0x4770(%rsp)
movq 0x4770(%rsp), %rax
movq %rax, 0x8d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f189a
movq 0x8d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x476c(%rsp) # imm = 0xFFFFFFFF
movl 0x476c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4768(%rsp)
cmpl $0x1, 0x4768(%rsp)
jne 0x11f189a
movq 0x8d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f186b
movq 0x8d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f1869
jmp 0x11f1898
movq 0x8d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4c88(%rsp)
cmpq $0x0, 0x4c88(%rsp)
je 0x11f1896
movq 0x4c88(%rsp), %rdi
callq 0x5f480
jmp 0x11f1898
jmp 0x11f189a
movq 0x8d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f18f5
movq %rax, %rdi
callq 0x678a0
movq 0x8e0(%rsp), %rax
movq %rax, 0x1b58(%rsp)
movq 0x1f20(%rsp), %rcx
movslq 0x1b60(%rsp), %rax
movq %rcx, 0x2e68(%rsp)
movq %rax, 0x2e60(%rsp)
movq 0x2e68(%rsp), %rax
movq (%rax), %rax
movq 0x2e60(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x1b0c(%rsp)
movq 0x1f18(%rsp), %rcx
movl 0x1b60(%rsp), %eax
leaq 0x1ab8(%rsp), %rdx
movq %rdx, 0x2b80(%rsp)
movq %rcx, 0x2b78(%rsp)
movl %eax, 0x2b74(%rsp)
movq 0x2b78(%rsp), %rax
movq %rax, 0x8d0(%rsp)
movb $0x0, 0x2b73(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2b74(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1ab8(%rsp), %r10
movq %r10, 0x30b8(%rsp)
movl %r9d, 0x30b4(%rsp)
movl %r8d, 0x30b0(%rsp)
movl %edi, 0x30ac(%rsp)
movq %rsi, 0x30a0(%rsp)
movq %rdx, 0x3098(%rsp)
movl %ecx, 0x3094(%rsp)
movq %rax, 0x3088(%rsp)
movq 0x30b8(%rsp), %rcx
movq %rcx, 0x8c8(%rsp)
movq 0x30a0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3098(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3094(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3088(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x30b4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x30b0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x30ac(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3fb0(%rsp)
movl $0x10, 0x3fac(%rsp)
movq 0x3fb0(%rsp), %rax
movslq 0x3fac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3fac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x8d0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1ae0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11f1b02
movq 0x8d0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1af8(%rsp)
movb $0x1, 0x2b73(%rsp)
testb $0x1, 0x2b73(%rsp)
jne 0x11f1c3d
leaq 0x1ab8(%rsp), %rax
movq %rax, 0x2b88(%rsp)
movq 0x2b88(%rsp), %rax
movq %rax, 0x4040(%rsp)
movq 0x4040(%rsp), %rax
movq %rax, 0x8c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f1be0
movq 0x8c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x403c(%rsp) # imm = 0xFFFFFFFF
movl 0x403c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4038(%rsp)
cmpl $0x1, 0x4038(%rsp)
jne 0x11f1be0
movq 0x8c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f1bb1
movq 0x8c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f1baf
jmp 0x11f1bde
movq 0x8c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5020(%rsp)
cmpq $0x0, 0x5020(%rsp)
je 0x11f1bdc
movq 0x5020(%rsp), %rdi
callq 0x5f480
jmp 0x11f1bde
jmp 0x11f1be0
movq 0x8c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f1c3b
movq %rax, %rdi
callq 0x678a0
jmp 0x11f1c3d
leaq 0x1ab8(%rsp), %rax
movq %rax, 0x2cb8(%rsp)
movq 0x2cb8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8b8(%rsp)
leaq 0x1ab8(%rsp), %rax
movq %rax, 0x2620(%rsp)
movq 0x2620(%rsp), %rax
movq %rax, 0x4750(%rsp)
movq 0x4750(%rsp), %rax
movq %rax, 0x8b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f1d28
movq 0x8b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x474c(%rsp) # imm = 0xFFFFFFFF
movl 0x474c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4748(%rsp)
cmpl $0x1, 0x4748(%rsp)
jne 0x11f1d28
movq 0x8b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f1cf9
movq 0x8b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f1cf7
jmp 0x11f1d26
movq 0x8b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4c98(%rsp)
cmpq $0x0, 0x4c98(%rsp)
je 0x11f1d24
movq 0x4c98(%rsp), %rdi
callq 0x5f480
jmp 0x11f1d26
jmp 0x11f1d28
movq 0x8b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f1d83
movq %rax, %rdi
callq 0x678a0
movq 0x8b8(%rsp), %rax
movq %rax, 0x1b00(%rsp)
movl $0x0, 0x1ab4(%rsp)
movl 0x1ab4(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x11f1e02
movq 0x1b58(%rsp), %rsi
movslq 0x1ab4(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1f0f(%rsp), %rdi
leaq 0x1b0c(%rsp), %rdx
callq 0x1278000
movq 0x1b00(%rsp), %rax
movslq 0x1ab4(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1ab4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1ab4(%rsp)
jmp 0x11f1d9e
jmp 0x11f1e04
movl 0x1b60(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b60(%rsp)
jmp 0x11f14a4
movl $0x0, 0x1f34(%rsp)
jmp 0x12015a5
jmp 0x120159a
movq 0x1f28(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x11fc8ac
movq 0x1f20(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x11f2d9b
movq 0x1f18(%rsp), %rdi
movl 0x1eec(%rsp), %esi
movl 0x1ee8(%rsp), %edx
movl 0x1ee4(%rsp), %ecx
movl 0x1ee0(%rsp), %r8d
movq 0x1ef0(%rsp), %r9
movq 0x1f10(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6fb30
movq 0x1f18(%rsp), %rax
movq %rax, 0x1fe8(%rsp)
movq 0x1fe8(%rsp), %rcx
movq %rcx, 0x8a0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x8af(%rsp)
je 0x11f1ef6
movq 0x8a0(%rsp), %rax
movq %rax, 0x2ef0(%rsp)
movq 0x2ef0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x8af(%rsp)
movb 0x8af(%rsp), %al
testb $0x1, %al
jne 0x11f1f03
jmp 0x11f1f13
movl $0xffffff9c, 0x1f34(%rsp) # imm = 0xFFFFFF9C
jmp 0x12015a5
movl $0x0, 0x1ab0(%rsp)
movl 0x1ab0(%rsp), %eax
cmpl 0x1ee0(%rsp), %eax
jge 0x11f2d8b
movq 0x1f28(%rsp), %rcx
movl 0x1ab0(%rsp), %eax
leaq 0x1a60(%rsp), %rdx
movq %rdx, 0x2280(%rsp)
movq %rcx, 0x2278(%rsp)
movl %eax, 0x2274(%rsp)
movq 0x2278(%rsp), %rax
movq %rax, 0x898(%rsp)
movb $0x0, 0x2273(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2274(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1a60(%rsp), %r10
movq %r10, 0x36a0(%rsp)
movl %r9d, 0x369c(%rsp)
movl %r8d, 0x3698(%rsp)
movl %edi, 0x3694(%rsp)
movq %rsi, 0x3688(%rsp)
movq %rdx, 0x3680(%rsp)
movl %ecx, 0x367c(%rsp)
movq %rax, 0x3670(%rsp)
movq 0x36a0(%rsp), %rcx
movq %rcx, 0x890(%rsp)
movq 0x3688(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3680(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x367c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3670(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x369c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3698(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3694(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3e00(%rsp)
movl $0x10, 0x3dfc(%rsp)
movq 0x3e00(%rsp), %rax
movslq 0x3dfc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3dfc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x898(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1a88(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11f20ee
movq 0x898(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1aa0(%rsp)
movb $0x1, 0x2273(%rsp)
testb $0x1, 0x2273(%rsp)
jne 0x11f2229
leaq 0x1a60(%rsp), %rax
movq %rax, 0x2498(%rsp)
movq 0x2498(%rsp), %rax
movq %rax, 0x4a60(%rsp)
movq 0x4a60(%rsp), %rax
movq %rax, 0x888(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f21cc
movq 0x888(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4a5c(%rsp) # imm = 0xFFFFFFFF
movl 0x4a5c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4a58(%rsp)
cmpl $0x1, 0x4a58(%rsp)
jne 0x11f21cc
movq 0x888(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f219d
movq 0x888(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f219b
jmp 0x11f21ca
movq 0x888(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4b10(%rsp)
cmpq $0x0, 0x4b10(%rsp)
je 0x11f21c8
movq 0x4b10(%rsp), %rdi
callq 0x5f480
jmp 0x11f21ca
jmp 0x11f21cc
movq 0x888(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f2227
movq %rax, %rdi
callq 0x678a0
jmp 0x11f2229
leaq 0x1a60(%rsp), %rax
movq %rax, 0x2420(%rsp)
movq 0x2420(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x880(%rsp)
leaq 0x1a60(%rsp), %rax
movq %rax, 0x2630(%rsp)
movq 0x2630(%rsp), %rax
movq %rax, 0x4730(%rsp)
movq 0x4730(%rsp), %rax
movq %rax, 0x878(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f2314
movq 0x878(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x472c(%rsp) # imm = 0xFFFFFFFF
movl 0x472c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4728(%rsp)
cmpl $0x1, 0x4728(%rsp)
jne 0x11f2314
movq 0x878(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f22e5
movq 0x878(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f22e3
jmp 0x11f2312
movq 0x878(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4ca8(%rsp)
cmpq $0x0, 0x4ca8(%rsp)
je 0x11f2310
movq 0x4ca8(%rsp), %rdi
callq 0x5f480
jmp 0x11f2312
jmp 0x11f2314
movq 0x878(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f236f
movq %rax, %rdi
callq 0x678a0
movq 0x880(%rsp), %rax
movq %rax, 0x1aa8(%rsp)
movq 0x1f20(%rsp), %rcx
movl 0x1ab0(%rsp), %eax
leaq 0x1a10(%rsp), %rdx
movq %rdx, 0x2268(%rsp)
movq %rcx, 0x2260(%rsp)
movl %eax, 0x225c(%rsp)
movq 0x2260(%rsp), %rax
movq %rax, 0x870(%rsp)
movb $0x0, 0x225b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x225c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1a10(%rsp), %r10
movq %r10, 0x36d8(%rsp)
movl %r9d, 0x36d4(%rsp)
movl %r8d, 0x36d0(%rsp)
movl %edi, 0x36cc(%rsp)
movq %rsi, 0x36c0(%rsp)
movq %rdx, 0x36b8(%rsp)
movl %ecx, 0x36b4(%rsp)
movq %rax, 0x36a8(%rsp)
movq 0x36d8(%rsp), %rcx
movq %rcx, 0x868(%rsp)
movq 0x36c0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x36b8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x36b4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x36a8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x36d4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x36d0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x36cc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3df0(%rsp)
movl $0x10, 0x3dec(%rsp)
movq 0x3df0(%rsp), %rax
movslq 0x3dec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3dec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x870(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1a38(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11f253b
movq 0x870(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1a50(%rsp)
movb $0x1, 0x225b(%rsp)
testb $0x1, 0x225b(%rsp)
jne 0x11f2676
leaq 0x1a10(%rsp), %rax
movq %rax, 0x24a0(%rsp)
movq 0x24a0(%rsp), %rax
movq %rax, 0x4a50(%rsp)
movq 0x4a50(%rsp), %rax
movq %rax, 0x860(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f2619
movq 0x860(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4a4c(%rsp) # imm = 0xFFFFFFFF
movl 0x4a4c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4a48(%rsp)
cmpl $0x1, 0x4a48(%rsp)
jne 0x11f2619
movq 0x860(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f25ea
movq 0x860(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f25e8
jmp 0x11f2617
movq 0x860(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4b18(%rsp)
cmpq $0x0, 0x4b18(%rsp)
je 0x11f2615
movq 0x4b18(%rsp), %rdi
callq 0x5f480
jmp 0x11f2617
jmp 0x11f2619
movq 0x860(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f2674
movq %rax, %rdi
callq 0x678a0
jmp 0x11f2676
leaq 0x1a10(%rsp), %rax
movq %rax, 0x2418(%rsp)
movq 0x2418(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x858(%rsp)
leaq 0x1a10(%rsp), %rax
movq %rax, 0x2640(%rsp)
movq 0x2640(%rsp), %rax
movq %rax, 0x4710(%rsp)
movq 0x4710(%rsp), %rax
movq %rax, 0x850(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f2761
movq 0x850(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x470c(%rsp) # imm = 0xFFFFFFFF
movl 0x470c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4708(%rsp)
cmpl $0x1, 0x4708(%rsp)
jne 0x11f2761
movq 0x850(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f2732
movq 0x850(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f2730
jmp 0x11f275f
movq 0x850(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4cb8(%rsp)
cmpq $0x0, 0x4cb8(%rsp)
je 0x11f275d
movq 0x4cb8(%rsp), %rdi
callq 0x5f480
jmp 0x11f275f
jmp 0x11f2761
movq 0x850(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f27bc
movq %rax, %rdi
callq 0x678a0
movq 0x858(%rsp), %rax
movq %rax, 0x1a58(%rsp)
movq 0x1f18(%rsp), %rcx
movl 0x1ab0(%rsp), %eax
leaq 0x19c0(%rsp), %rdx
movq %rdx, 0x2b60(%rsp)
movq %rcx, 0x2b58(%rsp)
movl %eax, 0x2b54(%rsp)
movq 0x2b58(%rsp), %rax
movq %rax, 0x848(%rsp)
movb $0x0, 0x2b53(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2b54(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x19c0(%rsp), %r10
movq %r10, 0x30f0(%rsp)
movl %r9d, 0x30ec(%rsp)
movl %r8d, 0x30e8(%rsp)
movl %edi, 0x30e4(%rsp)
movq %rsi, 0x30d8(%rsp)
movq %rdx, 0x30d0(%rsp)
movl %ecx, 0x30cc(%rsp)
movq %rax, 0x30c0(%rsp)
movq 0x30f0(%rsp), %rcx
movq %rcx, 0x840(%rsp)
movq 0x30d8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x30d0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x30cc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x30c0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x30ec(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x30e8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x30e4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3fa0(%rsp)
movl $0x10, 0x3f9c(%rsp)
movq 0x3fa0(%rsp), %rax
movslq 0x3f9c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3f9c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x848(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x19e8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11f2988
movq 0x848(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1a00(%rsp)
movb $0x1, 0x2b53(%rsp)
testb $0x1, 0x2b53(%rsp)
jne 0x11f2ac3
leaq 0x19c0(%rsp), %rax
movq %rax, 0x2b68(%rsp)
movq 0x2b68(%rsp), %rax
movq %rax, 0x4050(%rsp)
movq 0x4050(%rsp), %rax
movq %rax, 0x838(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f2a66
movq 0x838(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x404c(%rsp) # imm = 0xFFFFFFFF
movl 0x404c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4048(%rsp)
cmpl $0x1, 0x4048(%rsp)
jne 0x11f2a66
movq 0x838(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f2a37
movq 0x838(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f2a35
jmp 0x11f2a64
movq 0x838(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5018(%rsp)
cmpq $0x0, 0x5018(%rsp)
je 0x11f2a62
movq 0x5018(%rsp), %rdi
callq 0x5f480
jmp 0x11f2a64
jmp 0x11f2a66
movq 0x838(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f2ac1
movq %rax, %rdi
callq 0x678a0
jmp 0x11f2ac3
leaq 0x19c0(%rsp), %rax
movq %rax, 0x2cb0(%rsp)
movq 0x2cb0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x830(%rsp)
leaq 0x19c0(%rsp), %rax
movq %rax, 0x2650(%rsp)
movq 0x2650(%rsp), %rax
movq %rax, 0x46f0(%rsp)
movq 0x46f0(%rsp), %rax
movq %rax, 0x828(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f2bae
movq 0x828(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x46ec(%rsp) # imm = 0xFFFFFFFF
movl 0x46ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x46e8(%rsp)
cmpl $0x1, 0x46e8(%rsp)
jne 0x11f2bae
movq 0x828(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f2b7f
movq 0x828(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f2b7d
jmp 0x11f2bac
movq 0x828(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4cc8(%rsp)
cmpq $0x0, 0x4cc8(%rsp)
je 0x11f2baa
movq 0x4cc8(%rsp), %rdi
callq 0x5f480
jmp 0x11f2bac
jmp 0x11f2bae
movq 0x828(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f2c09
movq %rax, %rdi
callq 0x678a0
movq 0x830(%rsp), %rax
movq %rax, 0x1a08(%rsp)
movl $0x0, 0x19bc(%rsp)
movl 0x19bc(%rsp), %eax
cmpl 0x1ee4(%rsp), %eax
jge 0x11f2d73
movl $0x0, 0x19b8(%rsp)
movl 0x19b8(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x11f2d3c
movq 0x1aa8(%rsp), %rax
movslq 0x19b8(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x19b4(%rsp)
movl $0x0, 0x19b0(%rsp)
movl 0x19b0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x11f2ce4
movq 0x1a58(%rsp), %rdx
movslq 0x19b0(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1f0f(%rsp), %rdi
leaq 0x19b4(%rsp), %rsi
callq 0x1278000
movq 0x1a08(%rsp), %rax
movslq 0x19b0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x19b0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x19b0(%rsp)
jmp 0x11f2c80
movl 0x1eec(%rsp), %ecx
movq 0x1a58(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1a58(%rsp)
movl 0x1eec(%rsp), %ecx
movq 0x1a08(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1a08(%rsp)
movl 0x19b8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x19b8(%rsp)
jmp 0x11f2c43
movl 0x1ee8(%rsp), %ecx
movq 0x1aa8(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1aa8(%rsp)
movl 0x19bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x19bc(%rsp)
jmp 0x11f2c24
jmp 0x11f2d75
movl 0x1ab0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1ab0(%rsp)
jmp 0x11f1f1e
movl $0x0, 0x1f34(%rsp)
jmp 0x12015a5
movq 0x1f20(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x11faa71
cmpl $0x1, 0x1eec(%rsp)
jne 0x11f3c2e
cmpl $0x1, 0x1ee8(%rsp)
jne 0x11f3c2e
movl 0x1ee0(%rsp), %eax
cmpl 0x1efc(%rsp), %eax
jne 0x11f3c2e
movq 0x1f18(%rsp), %rdi
movl 0x1f08(%rsp), %esi
movl 0x1f04(%rsp), %edx
movl 0x1efc(%rsp), %ecx
movq 0x1ef0(%rsp), %r8
movq 0x1f10(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f18(%rsp), %rax
movq %rax, 0x1fe0(%rsp)
movq 0x1fe0(%rsp), %rcx
movq %rcx, 0x818(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x827(%rsp)
je 0x11f2e74
movq 0x818(%rsp), %rax
movq %rax, 0x2ef8(%rsp)
movq 0x2ef8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x827(%rsp)
movb 0x827(%rsp), %al
testb $0x1, %al
jne 0x11f2e81
jmp 0x11f2e91
movl $0xffffff9c, 0x1f34(%rsp) # imm = 0xFFFFFF9C
jmp 0x12015a5
movl $0x0, 0x19ac(%rsp)
movl 0x19ac(%rsp), %eax
cmpl 0x1efc(%rsp), %eax
jge 0x11f3c1e
movq 0x1f28(%rsp), %rcx
movl 0x19ac(%rsp), %eax
leaq 0x1958(%rsp), %rdx
movq %rdx, 0x2250(%rsp)
movq %rcx, 0x2248(%rsp)
movl %eax, 0x2244(%rsp)
movq 0x2248(%rsp), %rax
movq %rax, 0x810(%rsp)
movb $0x0, 0x2243(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2244(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1958(%rsp), %r10
movq %r10, 0x3710(%rsp)
movl %r9d, 0x370c(%rsp)
movl %r8d, 0x3708(%rsp)
movl %edi, 0x3704(%rsp)
movq %rsi, 0x36f8(%rsp)
movq %rdx, 0x36f0(%rsp)
movl %ecx, 0x36ec(%rsp)
movq %rax, 0x36e0(%rsp)
movq 0x3710(%rsp), %rcx
movq %rcx, 0x808(%rsp)
movq 0x36f8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x36f0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x36ec(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x36e0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x370c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3708(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3704(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3de0(%rsp)
movl $0x10, 0x3ddc(%rsp)
movq 0x3de0(%rsp), %rax
movslq 0x3ddc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3ddc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x810(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1980(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11f306c
movq 0x810(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1998(%rsp)
movb $0x1, 0x2243(%rsp)
testb $0x1, 0x2243(%rsp)
jne 0x11f31a7
leaq 0x1958(%rsp), %rax
movq %rax, 0x24a8(%rsp)
movq 0x24a8(%rsp), %rax
movq %rax, 0x4a40(%rsp)
movq 0x4a40(%rsp), %rax
movq %rax, 0x800(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f314a
movq 0x800(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4a3c(%rsp) # imm = 0xFFFFFFFF
movl 0x4a3c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4a38(%rsp)
cmpl $0x1, 0x4a38(%rsp)
jne 0x11f314a
movq 0x800(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f311b
movq 0x800(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f3119
jmp 0x11f3148
movq 0x800(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4b20(%rsp)
cmpq $0x0, 0x4b20(%rsp)
je 0x11f3146
movq 0x4b20(%rsp), %rdi
callq 0x5f480
jmp 0x11f3148
jmp 0x11f314a
movq 0x800(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f31a5
movq %rax, %rdi
callq 0x678a0
jmp 0x11f31a7
leaq 0x1958(%rsp), %rax
movq %rax, 0x2410(%rsp)
movq 0x2410(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7f8(%rsp)
leaq 0x1958(%rsp), %rax
movq %rax, 0x2660(%rsp)
movq 0x2660(%rsp), %rax
movq %rax, 0x46d0(%rsp)
movq 0x46d0(%rsp), %rax
movq %rax, 0x7f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f3292
movq 0x7f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x46cc(%rsp) # imm = 0xFFFFFFFF
movl 0x46cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x46c8(%rsp)
cmpl $0x1, 0x46c8(%rsp)
jne 0x11f3292
movq 0x7f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f3263
movq 0x7f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f3261
jmp 0x11f3290
movq 0x7f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4cd8(%rsp)
cmpq $0x0, 0x4cd8(%rsp)
je 0x11f328e
movq 0x4cd8(%rsp), %rdi
callq 0x5f480
jmp 0x11f3290
jmp 0x11f3292
movq 0x7f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f32ed
movq %rax, %rdi
callq 0x678a0
movq 0x7f8(%rsp), %rax
movq %rax, 0x19a0(%rsp)
movq 0x1f20(%rsp), %rcx
movl 0x19ac(%rsp), %eax
leaq 0x1908(%rsp), %rdx
movq %rdx, 0x2238(%rsp)
movq %rcx, 0x2230(%rsp)
movl %eax, 0x222c(%rsp)
movq 0x2230(%rsp), %rax
movq %rax, 0x7e8(%rsp)
movb $0x0, 0x222b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x222c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1908(%rsp), %r10
movq %r10, 0x3748(%rsp)
movl %r9d, 0x3744(%rsp)
movl %r8d, 0x3740(%rsp)
movl %edi, 0x373c(%rsp)
movq %rsi, 0x3730(%rsp)
movq %rdx, 0x3728(%rsp)
movl %ecx, 0x3724(%rsp)
movq %rax, 0x3718(%rsp)
movq 0x3748(%rsp), %rcx
movq %rcx, 0x7e0(%rsp)
movq 0x3730(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3728(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3724(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3718(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3744(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3740(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x373c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3dd0(%rsp)
movl $0x10, 0x3dcc(%rsp)
movq 0x3dd0(%rsp), %rax
movslq 0x3dcc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3dcc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7e8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1930(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11f34b9
movq 0x7e8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1948(%rsp)
movb $0x1, 0x222b(%rsp)
testb $0x1, 0x222b(%rsp)
jne 0x11f35f4
leaq 0x1908(%rsp), %rax
movq %rax, 0x24b0(%rsp)
movq 0x24b0(%rsp), %rax
movq %rax, 0x4a30(%rsp)
movq 0x4a30(%rsp), %rax
movq %rax, 0x7d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f3597
movq 0x7d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4a2c(%rsp) # imm = 0xFFFFFFFF
movl 0x4a2c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4a28(%rsp)
cmpl $0x1, 0x4a28(%rsp)
jne 0x11f3597
movq 0x7d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f3568
movq 0x7d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f3566
jmp 0x11f3595
movq 0x7d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4b28(%rsp)
cmpq $0x0, 0x4b28(%rsp)
je 0x11f3593
movq 0x4b28(%rsp), %rdi
callq 0x5f480
jmp 0x11f3595
jmp 0x11f3597
movq 0x7d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f35f2
movq %rax, %rdi
callq 0x678a0
jmp 0x11f35f4
leaq 0x1908(%rsp), %rax
movq %rax, 0x2408(%rsp)
movq 0x2408(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7d0(%rsp)
leaq 0x1908(%rsp), %rax
movq %rax, 0x2670(%rsp)
movq 0x2670(%rsp), %rax
movq %rax, 0x46b0(%rsp)
movq 0x46b0(%rsp), %rax
movq %rax, 0x7c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f36df
movq 0x7c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x46ac(%rsp) # imm = 0xFFFFFFFF
movl 0x46ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x46a8(%rsp)
cmpl $0x1, 0x46a8(%rsp)
jne 0x11f36df
movq 0x7c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f36b0
movq 0x7c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f36ae
jmp 0x11f36dd
movq 0x7c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4ce8(%rsp)
cmpq $0x0, 0x4ce8(%rsp)
je 0x11f36db
movq 0x4ce8(%rsp), %rdi
callq 0x5f480
jmp 0x11f36dd
jmp 0x11f36df
movq 0x7c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f373a
movq %rax, %rdi
callq 0x678a0
movq 0x7d0(%rsp), %rax
movq %rax, 0x1950(%rsp)
movq 0x1f18(%rsp), %rcx
movl 0x19ac(%rsp), %eax
leaq 0x18b8(%rsp), %rdx
movq %rdx, 0x2b40(%rsp)
movq %rcx, 0x2b38(%rsp)
movl %eax, 0x2b34(%rsp)
movq 0x2b38(%rsp), %rax
movq %rax, 0x7c0(%rsp)
movb $0x0, 0x2b33(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2b34(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x18b8(%rsp), %r10
movq %r10, 0x3128(%rsp)
movl %r9d, 0x3124(%rsp)
movl %r8d, 0x3120(%rsp)
movl %edi, 0x311c(%rsp)
movq %rsi, 0x3110(%rsp)
movq %rdx, 0x3108(%rsp)
movl %ecx, 0x3104(%rsp)
movq %rax, 0x30f8(%rsp)
movq 0x3128(%rsp), %rcx
movq %rcx, 0x7b8(%rsp)
movq 0x3110(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3108(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3104(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x30f8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3124(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3120(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x311c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3f90(%rsp)
movl $0x10, 0x3f8c(%rsp)
movq 0x3f90(%rsp), %rax
movslq 0x3f8c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3f8c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7c0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x18e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11f3906
movq 0x7c0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x18f8(%rsp)
movb $0x1, 0x2b33(%rsp)
testb $0x1, 0x2b33(%rsp)
jne 0x11f3a41
leaq 0x18b8(%rsp), %rax
movq %rax, 0x2b48(%rsp)
movq 0x2b48(%rsp), %rax
movq %rax, 0x4060(%rsp)
movq 0x4060(%rsp), %rax
movq %rax, 0x7b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f39e4
movq 0x7b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x405c(%rsp) # imm = 0xFFFFFFFF
movl 0x405c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4058(%rsp)
cmpl $0x1, 0x4058(%rsp)
jne 0x11f39e4
movq 0x7b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f39b5
movq 0x7b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f39b3
jmp 0x11f39e2
movq 0x7b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5010(%rsp)
cmpq $0x0, 0x5010(%rsp)
je 0x11f39e0
movq 0x5010(%rsp), %rdi
callq 0x5f480
jmp 0x11f39e2
jmp 0x11f39e4
movq 0x7b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f3a3f
movq %rax, %rdi
callq 0x678a0
jmp 0x11f3a41
leaq 0x18b8(%rsp), %rax
movq %rax, 0x2ca8(%rsp)
movq 0x2ca8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7a8(%rsp)
leaq 0x18b8(%rsp), %rax
movq %rax, 0x2680(%rsp)
movq 0x2680(%rsp), %rax
movq %rax, 0x4690(%rsp)
movq 0x4690(%rsp), %rax
movq %rax, 0x7a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f3b2c
movq 0x7a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x468c(%rsp) # imm = 0xFFFFFFFF
movl 0x468c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4688(%rsp)
cmpl $0x1, 0x4688(%rsp)
jne 0x11f3b2c
movq 0x7a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f3afd
movq 0x7a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f3afb
jmp 0x11f3b2a
movq 0x7a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4cf8(%rsp)
cmpq $0x0, 0x4cf8(%rsp)
je 0x11f3b28
movq 0x4cf8(%rsp), %rdi
callq 0x5f480
jmp 0x11f3b2a
jmp 0x11f3b2c
movq 0x7a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f3b87
movq %rax, %rdi
callq 0x678a0
movq 0x7a8(%rsp), %rax
movq %rax, 0x1900(%rsp)
movl $0x0, 0x18b4(%rsp)
movl 0x18b4(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x11f3c06
movq 0x19a0(%rsp), %rsi
movslq 0x18b4(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1950(%rsp), %rdx
leaq 0x1f0f(%rsp), %rdi
callq 0x1278000
movq 0x1900(%rsp), %rax
movslq 0x18b4(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x18b4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x18b4(%rsp)
jmp 0x11f3ba2
jmp 0x11f3c08
movl 0x19ac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x19ac(%rsp)
jmp 0x11f2e9c
movl $0x0, 0x1f34(%rsp)
jmp 0x12015a5
movl 0x1eec(%rsp), %eax
cmpl 0x1f08(%rsp), %eax
jne 0x11f469a
movl 0x1ee8(%rsp), %eax
cmpl 0x1f04(%rsp), %eax
jne 0x11f469a
cmpl $0x1, 0x1ee0(%rsp)
jne 0x11f469a
movq 0x1f18(%rsp), %rdi
movl 0x1f08(%rsp), %esi
movl 0x1f04(%rsp), %edx
movl 0x1efc(%rsp), %ecx
movq 0x1ef0(%rsp), %r8
movq 0x1f10(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f18(%rsp), %rax
movq %rax, 0x1fd8(%rsp)
movq 0x1fd8(%rsp), %rcx
movq %rcx, 0x790(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x79f(%rsp)
je 0x11f3cfb
movq 0x790(%rsp), %rax
movq %rax, 0x2f00(%rsp)
movq 0x2f00(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x79f(%rsp)
movb 0x79f(%rsp), %al
testb $0x1, %al
jne 0x11f3d08
jmp 0x11f3d18
movl $0xffffff9c, 0x1f34(%rsp) # imm = 0xFFFFFF9C
jmp 0x12015a5
movl $0x0, 0x18b0(%rsp)
movl 0x18b0(%rsp), %eax
cmpl 0x1efc(%rsp), %eax
jge 0x11f468a
movq 0x1f28(%rsp), %rcx
movl 0x18b0(%rsp), %eax
leaq 0x1860(%rsp), %rdx
movq %rdx, 0x2220(%rsp)
movq %rcx, 0x2218(%rsp)
movl %eax, 0x2214(%rsp)
movq 0x2218(%rsp), %rax
movq %rax, 0x788(%rsp)
movb $0x0, 0x2213(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2214(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1860(%rsp), %r10
movq %r10, 0x3780(%rsp)
movl %r9d, 0x377c(%rsp)
movl %r8d, 0x3778(%rsp)
movl %edi, 0x3774(%rsp)
movq %rsi, 0x3768(%rsp)
movq %rdx, 0x3760(%rsp)
movl %ecx, 0x375c(%rsp)
movq %rax, 0x3750(%rsp)
movq 0x3780(%rsp), %rcx
movq %rcx, 0x780(%rsp)
movq 0x3768(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3760(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x375c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3750(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x377c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3778(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3774(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3dc0(%rsp)
movl $0x10, 0x3dbc(%rsp)
movq 0x3dc0(%rsp), %rax
movslq 0x3dbc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3dbc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x788(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1888(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11f3ef3
movq 0x788(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x18a0(%rsp)
movb $0x1, 0x2213(%rsp)
testb $0x1, 0x2213(%rsp)
jne 0x11f402e
leaq 0x1860(%rsp), %rax
movq %rax, 0x24b8(%rsp)
movq 0x24b8(%rsp), %rax
movq %rax, 0x4a20(%rsp)
movq 0x4a20(%rsp), %rax
movq %rax, 0x778(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f3fd1
movq 0x778(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4a1c(%rsp) # imm = 0xFFFFFFFF
movl 0x4a1c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4a18(%rsp)
cmpl $0x1, 0x4a18(%rsp)
jne 0x11f3fd1
movq 0x778(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f3fa2
movq 0x778(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f3fa0
jmp 0x11f3fcf
movq 0x778(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4b30(%rsp)
cmpq $0x0, 0x4b30(%rsp)
je 0x11f3fcd
movq 0x4b30(%rsp), %rdi
callq 0x5f480
jmp 0x11f3fcf
jmp 0x11f3fd1
movq 0x778(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f402c
movq %rax, %rdi
callq 0x678a0
jmp 0x11f402e
leaq 0x1860(%rsp), %rax
movq %rax, 0x2400(%rsp)
movq 0x2400(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x770(%rsp)
leaq 0x1860(%rsp), %rax
movq %rax, 0x2690(%rsp)
movq 0x2690(%rsp), %rax
movq %rax, 0x4670(%rsp)
movq 0x4670(%rsp), %rax
movq %rax, 0x768(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f4119
movq 0x768(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x466c(%rsp) # imm = 0xFFFFFFFF
movl 0x466c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4668(%rsp)
cmpl $0x1, 0x4668(%rsp)
jne 0x11f4119
movq 0x768(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f40ea
movq 0x768(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f40e8
jmp 0x11f4117
movq 0x768(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4d08(%rsp)
cmpq $0x0, 0x4d08(%rsp)
je 0x11f4115
movq 0x4d08(%rsp), %rdi
callq 0x5f480
jmp 0x11f4117
jmp 0x11f4119
movq 0x768(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f4174
movq %rax, %rdi
callq 0x678a0
movq 0x770(%rsp), %rax
movq %rax, 0x18a8(%rsp)
movq 0x1f20(%rsp), %rax
movq %rax, 0x23f8(%rsp)
movq 0x23f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1858(%rsp)
movq 0x1f18(%rsp), %rcx
movl 0x18b0(%rsp), %eax
leaq 0x1808(%rsp), %rdx
movq %rdx, 0x2b20(%rsp)
movq %rcx, 0x2b18(%rsp)
movl %eax, 0x2b14(%rsp)
movq 0x2b18(%rsp), %rax
movq %rax, 0x760(%rsp)
movb $0x0, 0x2b13(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2b14(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1808(%rsp), %r10
movq %r10, 0x3160(%rsp)
movl %r9d, 0x315c(%rsp)
movl %r8d, 0x3158(%rsp)
movl %edi, 0x3154(%rsp)
movq %rsi, 0x3148(%rsp)
movq %rdx, 0x3140(%rsp)
movl %ecx, 0x313c(%rsp)
movq %rax, 0x3130(%rsp)
movq 0x3160(%rsp), %rcx
movq %rcx, 0x758(%rsp)
movq 0x3148(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3140(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x313c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3130(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x315c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3158(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3154(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3f80(%rsp)
movl $0x10, 0x3f7c(%rsp)
movq 0x3f80(%rsp), %rax
movslq 0x3f7c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3f7c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x760(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1830(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11f4363
movq 0x760(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1848(%rsp)
movb $0x1, 0x2b13(%rsp)
testb $0x1, 0x2b13(%rsp)
jne 0x11f449e
leaq 0x1808(%rsp), %rax
movq %rax, 0x2b28(%rsp)
movq 0x2b28(%rsp), %rax
movq %rax, 0x4070(%rsp)
movq 0x4070(%rsp), %rax
movq %rax, 0x750(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f4441
movq 0x750(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x406c(%rsp) # imm = 0xFFFFFFFF
movl 0x406c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4068(%rsp)
cmpl $0x1, 0x4068(%rsp)
jne 0x11f4441
movq 0x750(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f4412
movq 0x750(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f4410
jmp 0x11f443f
movq 0x750(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5008(%rsp)
cmpq $0x0, 0x5008(%rsp)
je 0x11f443d
movq 0x5008(%rsp), %rdi
callq 0x5f480
jmp 0x11f443f
jmp 0x11f4441
movq 0x750(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f449c
movq %rax, %rdi
callq 0x678a0
jmp 0x11f449e
leaq 0x1808(%rsp), %rax
movq %rax, 0x2ca0(%rsp)
movq 0x2ca0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x748(%rsp)
leaq 0x1808(%rsp), %rax
movq %rax, 0x26a0(%rsp)
movq 0x26a0(%rsp), %rax
movq %rax, 0x4650(%rsp)
movq 0x4650(%rsp), %rax
movq %rax, 0x740(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f4589
movq 0x740(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x464c(%rsp) # imm = 0xFFFFFFFF
movl 0x464c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4648(%rsp)
cmpl $0x1, 0x4648(%rsp)
jne 0x11f4589
movq 0x740(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f455a
movq 0x740(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f4558
jmp 0x11f4587
movq 0x740(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4d18(%rsp)
cmpq $0x0, 0x4d18(%rsp)
je 0x11f4585
movq 0x4d18(%rsp), %rdi
callq 0x5f480
jmp 0x11f4587
jmp 0x11f4589
movq 0x740(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f45e4
movq %rax, %rdi
callq 0x678a0
movq 0x748(%rsp), %rax
movq %rax, 0x1850(%rsp)
movl $0x0, 0x1804(%rsp)
movl 0x1804(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x11f4672
movq 0x18a8(%rsp), %rsi
movslq 0x1804(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1858(%rsp), %rdx
movslq 0x1804(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1f0f(%rsp), %rdi
callq 0x1278000
movq 0x1850(%rsp), %rax
movslq 0x1804(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1804(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1804(%rsp)
jmp 0x11f45ff
jmp 0x11f4674
movl 0x18b0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x18b0(%rsp)
jmp 0x11f3d23
movl $0x0, 0x1f34(%rsp)
jmp 0x12015a5
cmpl $0x1, 0x1f08(%rsp)
jne 0x11f551b
cmpl $0x1, 0x1f04(%rsp)
jne 0x11f551b
movl 0x1ee0(%rsp), %eax
cmpl 0x1efc(%rsp), %eax
jne 0x11f551b
movq 0x1f18(%rsp), %rdi
movl 0x1eec(%rsp), %esi
movl 0x1ee8(%rsp), %edx
movl 0x1ee0(%rsp), %ecx
movq 0x1ef0(%rsp), %r8
movq 0x1f10(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f18(%rsp), %rax
movq %rax, 0x1fd0(%rsp)
movq 0x1fd0(%rsp), %rcx
movq %rcx, 0x730(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x73f(%rsp)
je 0x11f4761
movq 0x730(%rsp), %rax
movq %rax, 0x2f08(%rsp)
movq 0x2f08(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x73f(%rsp)
movb 0x73f(%rsp), %al
testb $0x1, %al
jne 0x11f476e
jmp 0x11f477e
movl $0xffffff9c, 0x1f34(%rsp) # imm = 0xFFFFFF9C
jmp 0x12015a5
movl $0x0, 0x1800(%rsp)
movl 0x1800(%rsp), %eax
cmpl 0x1ee0(%rsp), %eax
jge 0x11f550b
movq 0x1f28(%rsp), %rcx
movl 0x1800(%rsp), %eax
leaq 0x17b0(%rsp), %rdx
movq %rdx, 0x2208(%rsp)
movq %rcx, 0x2200(%rsp)
movl %eax, 0x21fc(%rsp)
movq 0x2200(%rsp), %rax
movq %rax, 0x728(%rsp)
movb $0x0, 0x21fb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x21fc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x17b0(%rsp), %r10
movq %r10, 0x37b8(%rsp)
movl %r9d, 0x37b4(%rsp)
movl %r8d, 0x37b0(%rsp)
movl %edi, 0x37ac(%rsp)
movq %rsi, 0x37a0(%rsp)
movq %rdx, 0x3798(%rsp)
movl %ecx, 0x3794(%rsp)
movq %rax, 0x3788(%rsp)
movq 0x37b8(%rsp), %rcx
movq %rcx, 0x720(%rsp)
movq 0x37a0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3798(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3794(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3788(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x37b4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x37b0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x37ac(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3db0(%rsp)
movl $0x10, 0x3dac(%rsp)
movq 0x3db0(%rsp), %rax
movslq 0x3dac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3dac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x728(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x17d8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11f4959
movq 0x728(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x17f0(%rsp)
movb $0x1, 0x21fb(%rsp)
testb $0x1, 0x21fb(%rsp)
jne 0x11f4a94
leaq 0x17b0(%rsp), %rax
movq %rax, 0x24c0(%rsp)
movq 0x24c0(%rsp), %rax
movq %rax, 0x4a10(%rsp)
movq 0x4a10(%rsp), %rax
movq %rax, 0x718(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f4a37
movq 0x718(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4a0c(%rsp) # imm = 0xFFFFFFFF
movl 0x4a0c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4a08(%rsp)
cmpl $0x1, 0x4a08(%rsp)
jne 0x11f4a37
movq 0x718(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f4a08
movq 0x718(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f4a06
jmp 0x11f4a35
movq 0x718(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4b38(%rsp)
cmpq $0x0, 0x4b38(%rsp)
je 0x11f4a33
movq 0x4b38(%rsp), %rdi
callq 0x5f480
jmp 0x11f4a35
jmp 0x11f4a37
movq 0x718(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f4a92
movq %rax, %rdi
callq 0x678a0
jmp 0x11f4a94
leaq 0x17b0(%rsp), %rax
movq %rax, 0x23f0(%rsp)
movq 0x23f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x710(%rsp)
leaq 0x17b0(%rsp), %rax
movq %rax, 0x26b0(%rsp)
movq 0x26b0(%rsp), %rax
movq %rax, 0x4630(%rsp)
movq 0x4630(%rsp), %rax
movq %rax, 0x708(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f4b7f
movq 0x708(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x462c(%rsp) # imm = 0xFFFFFFFF
movl 0x462c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4628(%rsp)
cmpl $0x1, 0x4628(%rsp)
jne 0x11f4b7f
movq 0x708(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f4b50
movq 0x708(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f4b4e
jmp 0x11f4b7d
movq 0x708(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4d28(%rsp)
cmpq $0x0, 0x4d28(%rsp)
je 0x11f4b7b
movq 0x4d28(%rsp), %rdi
callq 0x5f480
jmp 0x11f4b7d
jmp 0x11f4b7f
movq 0x708(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f4bda
movq %rax, %rdi
callq 0x678a0
movq 0x710(%rsp), %rax
movq %rax, 0x17f8(%rsp)
movq 0x1f20(%rsp), %rcx
movl 0x1800(%rsp), %eax
leaq 0x1760(%rsp), %rdx
movq %rdx, 0x21f0(%rsp)
movq %rcx, 0x21e8(%rsp)
movl %eax, 0x21e4(%rsp)
movq 0x21e8(%rsp), %rax
movq %rax, 0x700(%rsp)
movb $0x0, 0x21e3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x21e4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1760(%rsp), %r10
movq %r10, 0x37f0(%rsp)
movl %r9d, 0x37ec(%rsp)
movl %r8d, 0x37e8(%rsp)
movl %edi, 0x37e4(%rsp)
movq %rsi, 0x37d8(%rsp)
movq %rdx, 0x37d0(%rsp)
movl %ecx, 0x37cc(%rsp)
movq %rax, 0x37c0(%rsp)
movq 0x37f0(%rsp), %rcx
movq %rcx, 0x6f8(%rsp)
movq 0x37d8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x37d0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x37cc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x37c0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x37ec(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x37e8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x37e4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3da0(%rsp)
movl $0x10, 0x3d9c(%rsp)
movq 0x3da0(%rsp), %rax
movslq 0x3d9c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d9c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x700(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1788(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11f4da6
movq 0x700(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x17a0(%rsp)
movb $0x1, 0x21e3(%rsp)
testb $0x1, 0x21e3(%rsp)
jne 0x11f4ee1
leaq 0x1760(%rsp), %rax
movq %rax, 0x24c8(%rsp)
movq 0x24c8(%rsp), %rax
movq %rax, 0x4a00(%rsp)
movq 0x4a00(%rsp), %rax
movq %rax, 0x6f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f4e84
movq 0x6f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x49fc(%rsp) # imm = 0xFFFFFFFF
movl 0x49fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x49f8(%rsp)
cmpl $0x1, 0x49f8(%rsp)
jne 0x11f4e84
movq 0x6f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f4e55
movq 0x6f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f4e53
jmp 0x11f4e82
movq 0x6f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4b40(%rsp)
cmpq $0x0, 0x4b40(%rsp)
je 0x11f4e80
movq 0x4b40(%rsp), %rdi
callq 0x5f480
jmp 0x11f4e82
jmp 0x11f4e84
movq 0x6f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f4edf
movq %rax, %rdi
callq 0x678a0
jmp 0x11f4ee1
leaq 0x1760(%rsp), %rax
movq %rax, 0x23e8(%rsp)
movq 0x23e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6e8(%rsp)
leaq 0x1760(%rsp), %rax
movq %rax, 0x26c0(%rsp)
movq 0x26c0(%rsp), %rax
movq %rax, 0x4610(%rsp)
movq 0x4610(%rsp), %rax
movq %rax, 0x6e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f4fcc
movq 0x6e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x460c(%rsp) # imm = 0xFFFFFFFF
movl 0x460c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4608(%rsp)
cmpl $0x1, 0x4608(%rsp)
jne 0x11f4fcc
movq 0x6e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f4f9d
movq 0x6e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f4f9b
jmp 0x11f4fca
movq 0x6e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4d38(%rsp)
cmpq $0x0, 0x4d38(%rsp)
je 0x11f4fc8
movq 0x4d38(%rsp), %rdi
callq 0x5f480
jmp 0x11f4fca
jmp 0x11f4fcc
movq 0x6e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f5027
movq %rax, %rdi
callq 0x678a0
movq 0x6e8(%rsp), %rax
movq %rax, 0x17a8(%rsp)
movq 0x1f18(%rsp), %rcx
movl 0x1800(%rsp), %eax
leaq 0x1710(%rsp), %rdx
movq %rdx, 0x2b00(%rsp)
movq %rcx, 0x2af8(%rsp)
movl %eax, 0x2af4(%rsp)
movq 0x2af8(%rsp), %rax
movq %rax, 0x6d8(%rsp)
movb $0x0, 0x2af3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2af4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1710(%rsp), %r10
movq %r10, 0x3198(%rsp)
movl %r9d, 0x3194(%rsp)
movl %r8d, 0x3190(%rsp)
movl %edi, 0x318c(%rsp)
movq %rsi, 0x3180(%rsp)
movq %rdx, 0x3178(%rsp)
movl %ecx, 0x3174(%rsp)
movq %rax, 0x3168(%rsp)
movq 0x3198(%rsp), %rcx
movq %rcx, 0x6d0(%rsp)
movq 0x3180(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3178(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3174(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3168(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3194(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3190(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x318c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3f70(%rsp)
movl $0x10, 0x3f6c(%rsp)
movq 0x3f70(%rsp), %rax
movslq 0x3f6c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3f6c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6d8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1738(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11f51f3
movq 0x6d8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1750(%rsp)
movb $0x1, 0x2af3(%rsp)
testb $0x1, 0x2af3(%rsp)
jne 0x11f532e
leaq 0x1710(%rsp), %rax
movq %rax, 0x2b08(%rsp)
movq 0x2b08(%rsp), %rax
movq %rax, 0x4080(%rsp)
movq 0x4080(%rsp), %rax
movq %rax, 0x6c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f52d1
movq 0x6c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x407c(%rsp) # imm = 0xFFFFFFFF
movl 0x407c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4078(%rsp)
cmpl $0x1, 0x4078(%rsp)
jne 0x11f52d1
movq 0x6c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f52a2
movq 0x6c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f52a0
jmp 0x11f52cf
movq 0x6c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5000(%rsp)
cmpq $0x0, 0x5000(%rsp)
je 0x11f52cd
movq 0x5000(%rsp), %rdi
callq 0x5f480
jmp 0x11f52cf
jmp 0x11f52d1
movq 0x6c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f532c
movq %rax, %rdi
callq 0x678a0
jmp 0x11f532e
leaq 0x1710(%rsp), %rax
movq %rax, 0x2c98(%rsp)
movq 0x2c98(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6c0(%rsp)
leaq 0x1710(%rsp), %rax
movq %rax, 0x26d0(%rsp)
movq 0x26d0(%rsp), %rax
movq %rax, 0x45f0(%rsp)
movq 0x45f0(%rsp), %rax
movq %rax, 0x6b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f5419
movq 0x6b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x45ec(%rsp) # imm = 0xFFFFFFFF
movl 0x45ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x45e8(%rsp)
cmpl $0x1, 0x45e8(%rsp)
jne 0x11f5419
movq 0x6b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f53ea
movq 0x6b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f53e8
jmp 0x11f5417
movq 0x6b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4d48(%rsp)
cmpq $0x0, 0x4d48(%rsp)
je 0x11f5415
movq 0x4d48(%rsp), %rdi
callq 0x5f480
jmp 0x11f5417
jmp 0x11f5419
movq 0x6b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f5474
movq %rax, %rdi
callq 0x678a0
movq 0x6c0(%rsp), %rax
movq %rax, 0x1758(%rsp)
movl $0x0, 0x170c(%rsp)
movl 0x170c(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x11f54f3
movq 0x17f8(%rsp), %rsi
movq 0x17a8(%rsp), %rdx
movslq 0x170c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1f0f(%rsp), %rdi
callq 0x1278000
movq 0x1758(%rsp), %rax
movslq 0x170c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x170c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x170c(%rsp)
jmp 0x11f548f
jmp 0x11f54f5
movl 0x1800(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1800(%rsp)
jmp 0x11f4789
movl $0x0, 0x1f34(%rsp)
jmp 0x12015a5
movl 0x1eec(%rsp), %eax
cmpl 0x1f08(%rsp), %eax
jne 0x11f5f87
movl 0x1ee8(%rsp), %eax
cmpl 0x1f04(%rsp), %eax
jne 0x11f5f87
cmpl $0x1, 0x1efc(%rsp)
jne 0x11f5f87
movq 0x1f18(%rsp), %rdi
movl 0x1eec(%rsp), %esi
movl 0x1ee8(%rsp), %edx
movl 0x1ee0(%rsp), %ecx
movq 0x1ef0(%rsp), %r8
movq 0x1f10(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f18(%rsp), %rax
movq %rax, 0x1fc8(%rsp)
movq 0x1fc8(%rsp), %rcx
movq %rcx, 0x6a8(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x6b7(%rsp)
je 0x11f55e8
movq 0x6a8(%rsp), %rax
movq %rax, 0x2f10(%rsp)
movq 0x2f10(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x6b7(%rsp)
movb 0x6b7(%rsp), %al
testb $0x1, %al
jne 0x11f55f5
jmp 0x11f5605
movl $0xffffff9c, 0x1f34(%rsp) # imm = 0xFFFFFF9C
jmp 0x12015a5
movl $0x0, 0x1708(%rsp)
movl 0x1708(%rsp), %eax
cmpl 0x1ee0(%rsp), %eax
jge 0x11f5f77
movq 0x1f28(%rsp), %rax
movq %rax, 0x23e0(%rsp)
movq 0x23e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1700(%rsp)
movq 0x1f20(%rsp), %rcx
movl 0x1708(%rsp), %eax
leaq 0x16b0(%rsp), %rdx
movq %rdx, 0x21d8(%rsp)
movq %rcx, 0x21d0(%rsp)
movl %eax, 0x21cc(%rsp)
movq 0x21d0(%rsp), %rax
movq %rax, 0x6a0(%rsp)
movb $0x0, 0x21cb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x21cc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x16b0(%rsp), %r10
movq %r10, 0x3828(%rsp)
movl %r9d, 0x3824(%rsp)
movl %r8d, 0x3820(%rsp)
movl %edi, 0x381c(%rsp)
movq %rsi, 0x3810(%rsp)
movq %rdx, 0x3808(%rsp)
movl %ecx, 0x3804(%rsp)
movq %rax, 0x37f8(%rsp)
movq 0x3828(%rsp), %rcx
movq %rcx, 0x698(%rsp)
movq 0x3810(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3808(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3804(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x37f8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3824(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3820(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x381c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d90(%rsp)
movl $0x10, 0x3d8c(%rsp)
movq 0x3d90(%rsp), %rax
movslq 0x3d8c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d8c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6a0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x16d8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11f5803
movq 0x6a0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x16f0(%rsp)
movb $0x1, 0x21cb(%rsp)
testb $0x1, 0x21cb(%rsp)
jne 0x11f593e
leaq 0x16b0(%rsp), %rax
movq %rax, 0x24d0(%rsp)
movq 0x24d0(%rsp), %rax
movq %rax, 0x49f0(%rsp)
movq 0x49f0(%rsp), %rax
movq %rax, 0x690(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f58e1
movq 0x690(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x49ec(%rsp) # imm = 0xFFFFFFFF
movl 0x49ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x49e8(%rsp)
cmpl $0x1, 0x49e8(%rsp)
jne 0x11f58e1
movq 0x690(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f58b2
movq 0x690(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f58b0
jmp 0x11f58df
movq 0x690(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4b48(%rsp)
cmpq $0x0, 0x4b48(%rsp)
je 0x11f58dd
movq 0x4b48(%rsp), %rdi
callq 0x5f480
jmp 0x11f58df
jmp 0x11f58e1
movq 0x690(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f593c
movq %rax, %rdi
callq 0x678a0
jmp 0x11f593e
leaq 0x16b0(%rsp), %rax
movq %rax, 0x23d8(%rsp)
movq 0x23d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x688(%rsp)
leaq 0x16b0(%rsp), %rax
movq %rax, 0x26e0(%rsp)
movq 0x26e0(%rsp), %rax
movq %rax, 0x45d0(%rsp)
movq 0x45d0(%rsp), %rax
movq %rax, 0x680(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f5a29
movq 0x680(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x45cc(%rsp) # imm = 0xFFFFFFFF
movl 0x45cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x45c8(%rsp)
cmpl $0x1, 0x45c8(%rsp)
jne 0x11f5a29
movq 0x680(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f59fa
movq 0x680(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f59f8
jmp 0x11f5a27
movq 0x680(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4d58(%rsp)
cmpq $0x0, 0x4d58(%rsp)
je 0x11f5a25
movq 0x4d58(%rsp), %rdi
callq 0x5f480
jmp 0x11f5a27
jmp 0x11f5a29
movq 0x680(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f5a84
movq %rax, %rdi
callq 0x678a0
movq 0x688(%rsp), %rax
movq %rax, 0x16f8(%rsp)
movq 0x1f18(%rsp), %rcx
movl 0x1708(%rsp), %eax
leaq 0x1660(%rsp), %rdx
movq %rdx, 0x2ae0(%rsp)
movq %rcx, 0x2ad8(%rsp)
movl %eax, 0x2ad4(%rsp)
movq 0x2ad8(%rsp), %rax
movq %rax, 0x678(%rsp)
movb $0x0, 0x2ad3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2ad4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1660(%rsp), %r10
movq %r10, 0x31d0(%rsp)
movl %r9d, 0x31cc(%rsp)
movl %r8d, 0x31c8(%rsp)
movl %edi, 0x31c4(%rsp)
movq %rsi, 0x31b8(%rsp)
movq %rdx, 0x31b0(%rsp)
movl %ecx, 0x31ac(%rsp)
movq %rax, 0x31a0(%rsp)
movq 0x31d0(%rsp), %rcx
movq %rcx, 0x670(%rsp)
movq 0x31b8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x31b0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x31ac(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x31a0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x31cc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x31c8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x31c4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3f60(%rsp)
movl $0x10, 0x3f5c(%rsp)
movq 0x3f60(%rsp), %rax
movslq 0x3f5c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3f5c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x678(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1688(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11f5c50
movq 0x678(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x16a0(%rsp)
movb $0x1, 0x2ad3(%rsp)
testb $0x1, 0x2ad3(%rsp)
jne 0x11f5d8b
leaq 0x1660(%rsp), %rax
movq %rax, 0x2ae8(%rsp)
movq 0x2ae8(%rsp), %rax
movq %rax, 0x4090(%rsp)
movq 0x4090(%rsp), %rax
movq %rax, 0x668(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f5d2e
movq 0x668(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x408c(%rsp) # imm = 0xFFFFFFFF
movl 0x408c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4088(%rsp)
cmpl $0x1, 0x4088(%rsp)
jne 0x11f5d2e
movq 0x668(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f5cff
movq 0x668(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f5cfd
jmp 0x11f5d2c
movq 0x668(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4ff8(%rsp)
cmpq $0x0, 0x4ff8(%rsp)
je 0x11f5d2a
movq 0x4ff8(%rsp), %rdi
callq 0x5f480
jmp 0x11f5d2c
jmp 0x11f5d2e
movq 0x668(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f5d89
movq %rax, %rdi
callq 0x678a0
jmp 0x11f5d8b
leaq 0x1660(%rsp), %rax
movq %rax, 0x2c90(%rsp)
movq 0x2c90(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x660(%rsp)
leaq 0x1660(%rsp), %rax
movq %rax, 0x26f0(%rsp)
movq 0x26f0(%rsp), %rax
movq %rax, 0x45b0(%rsp)
movq 0x45b0(%rsp), %rax
movq %rax, 0x658(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f5e76
movq 0x658(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x45ac(%rsp) # imm = 0xFFFFFFFF
movl 0x45ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x45a8(%rsp)
cmpl $0x1, 0x45a8(%rsp)
jne 0x11f5e76
movq 0x658(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f5e47
movq 0x658(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f5e45
jmp 0x11f5e74
movq 0x658(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4d68(%rsp)
cmpq $0x0, 0x4d68(%rsp)
je 0x11f5e72
movq 0x4d68(%rsp), %rdi
callq 0x5f480
jmp 0x11f5e74
jmp 0x11f5e76
movq 0x658(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f5ed1
movq %rax, %rdi
callq 0x678a0
movq 0x660(%rsp), %rax
movq %rax, 0x16a8(%rsp)
movl $0x0, 0x165c(%rsp)
movl 0x165c(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x11f5f5f
movq 0x1700(%rsp), %rsi
movslq 0x165c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x16f8(%rsp), %rdx
movslq 0x165c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1f0f(%rsp), %rdi
callq 0x1278000
movq 0x16a8(%rsp), %rax
movslq 0x165c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x165c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x165c(%rsp)
jmp 0x11f5eec
jmp 0x11f5f61
movl 0x1708(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1708(%rsp)
jmp 0x11f5610
movl $0x0, 0x1f34(%rsp)
jmp 0x12015a5
cmpl $0x1, 0x1f08(%rsp)
je 0x11f6eb1
cmpl $0x1, 0x1eec(%rsp)
jne 0x11f6eb1
movl 0x1ee8(%rsp), %eax
cmpl 0x1f04(%rsp), %eax
jne 0x11f6eb1
movl 0x1ee0(%rsp), %eax
cmpl 0x1efc(%rsp), %eax
jne 0x11f6eb1
movq 0x1f18(%rsp), %rdi
movl 0x1f08(%rsp), %esi
movl 0x1f04(%rsp), %edx
movl 0x1efc(%rsp), %ecx
movq 0x1ef0(%rsp), %r8
movq 0x1f10(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f18(%rsp), %rax
movq %rax, 0x1fc0(%rsp)
movq 0x1fc0(%rsp), %rcx
movq %rcx, 0x648(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x657(%rsp)
je 0x11f6062
movq 0x648(%rsp), %rax
movq %rax, 0x2f18(%rsp)
movq 0x2f18(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x657(%rsp)
movb 0x657(%rsp), %al
testb $0x1, %al
jne 0x11f606f
jmp 0x11f607f
movl $0xffffff9c, 0x1f34(%rsp) # imm = 0xFFFFFF9C
jmp 0x12015a5
movl $0x0, 0x1658(%rsp)
movl 0x1658(%rsp), %eax
cmpl 0x1ee0(%rsp), %eax
jge 0x11f6ea1
movq 0x1f28(%rsp), %rcx
movl 0x1658(%rsp), %eax
leaq 0x1608(%rsp), %rdx
movq %rdx, 0x21c0(%rsp)
movq %rcx, 0x21b8(%rsp)
movl %eax, 0x21b4(%rsp)
movq 0x21b8(%rsp), %rax
movq %rax, 0x640(%rsp)
movb $0x0, 0x21b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x21b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1608(%rsp), %r10
movq %r10, 0x3860(%rsp)
movl %r9d, 0x385c(%rsp)
movl %r8d, 0x3858(%rsp)
movl %edi, 0x3854(%rsp)
movq %rsi, 0x3848(%rsp)
movq %rdx, 0x3840(%rsp)
movl %ecx, 0x383c(%rsp)
movq %rax, 0x3830(%rsp)
movq 0x3860(%rsp), %rcx
movq %rcx, 0x638(%rsp)
movq 0x3848(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3840(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x383c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3830(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x385c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3858(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3854(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d80(%rsp)
movl $0x10, 0x3d7c(%rsp)
movq 0x3d80(%rsp), %rax
movslq 0x3d7c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d7c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x640(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1630(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11f625a
movq 0x640(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1648(%rsp)
movb $0x1, 0x21b3(%rsp)
testb $0x1, 0x21b3(%rsp)
jne 0x11f6395
leaq 0x1608(%rsp), %rax
movq %rax, 0x24d8(%rsp)
movq 0x24d8(%rsp), %rax
movq %rax, 0x49e0(%rsp)
movq 0x49e0(%rsp), %rax
movq %rax, 0x630(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f6338
movq 0x630(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x49dc(%rsp) # imm = 0xFFFFFFFF
movl 0x49dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x49d8(%rsp)
cmpl $0x1, 0x49d8(%rsp)
jne 0x11f6338
movq 0x630(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f6309
movq 0x630(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f6307
jmp 0x11f6336
movq 0x630(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4b50(%rsp)
cmpq $0x0, 0x4b50(%rsp)
je 0x11f6334
movq 0x4b50(%rsp), %rdi
callq 0x5f480
jmp 0x11f6336
jmp 0x11f6338
movq 0x630(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f6393
movq %rax, %rdi
callq 0x678a0
jmp 0x11f6395
leaq 0x1608(%rsp), %rax
movq %rax, 0x23d0(%rsp)
movq 0x23d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x628(%rsp)
leaq 0x1608(%rsp), %rax
movq %rax, 0x2700(%rsp)
movq 0x2700(%rsp), %rax
movq %rax, 0x4590(%rsp)
movq 0x4590(%rsp), %rax
movq %rax, 0x620(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f6480
movq 0x620(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x458c(%rsp) # imm = 0xFFFFFFFF
movl 0x458c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4588(%rsp)
cmpl $0x1, 0x4588(%rsp)
jne 0x11f6480
movq 0x620(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f6451
movq 0x620(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f644f
jmp 0x11f647e
movq 0x620(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4d78(%rsp)
cmpq $0x0, 0x4d78(%rsp)
je 0x11f647c
movq 0x4d78(%rsp), %rdi
callq 0x5f480
jmp 0x11f647e
jmp 0x11f6480
movq 0x620(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f64db
movq %rax, %rdi
callq 0x678a0
movq 0x628(%rsp), %rax
movq %rax, 0x1650(%rsp)
movq 0x1f20(%rsp), %rcx
movl 0x1658(%rsp), %eax
leaq 0x15b8(%rsp), %rdx
movq %rdx, 0x21a8(%rsp)
movq %rcx, 0x21a0(%rsp)
movl %eax, 0x219c(%rsp)
movq 0x21a0(%rsp), %rax
movq %rax, 0x618(%rsp)
movb $0x0, 0x219b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x219c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x15b8(%rsp), %r10
movq %r10, 0x3898(%rsp)
movl %r9d, 0x3894(%rsp)
movl %r8d, 0x3890(%rsp)
movl %edi, 0x388c(%rsp)
movq %rsi, 0x3880(%rsp)
movq %rdx, 0x3878(%rsp)
movl %ecx, 0x3874(%rsp)
movq %rax, 0x3868(%rsp)
movq 0x3898(%rsp), %rcx
movq %rcx, 0x610(%rsp)
movq 0x3880(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3878(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3874(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3868(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3894(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3890(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x388c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d70(%rsp)
movl $0x10, 0x3d6c(%rsp)
movq 0x3d70(%rsp), %rax
movslq 0x3d6c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d6c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x618(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x15e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11f66a7
movq 0x618(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x15f8(%rsp)
movb $0x1, 0x219b(%rsp)
testb $0x1, 0x219b(%rsp)
jne 0x11f67e2
leaq 0x15b8(%rsp), %rax
movq %rax, 0x24e0(%rsp)
movq 0x24e0(%rsp), %rax
movq %rax, 0x49d0(%rsp)
movq 0x49d0(%rsp), %rax
movq %rax, 0x608(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f6785
movq 0x608(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x49cc(%rsp) # imm = 0xFFFFFFFF
movl 0x49cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x49c8(%rsp)
cmpl $0x1, 0x49c8(%rsp)
jne 0x11f6785
movq 0x608(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f6756
movq 0x608(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f6754
jmp 0x11f6783
movq 0x608(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4b58(%rsp)
cmpq $0x0, 0x4b58(%rsp)
je 0x11f6781
movq 0x4b58(%rsp), %rdi
callq 0x5f480
jmp 0x11f6783
jmp 0x11f6785
movq 0x608(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f67e0
movq %rax, %rdi
callq 0x678a0
jmp 0x11f67e2
leaq 0x15b8(%rsp), %rax
movq %rax, 0x23c8(%rsp)
movq 0x23c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x600(%rsp)
leaq 0x15b8(%rsp), %rax
movq %rax, 0x2710(%rsp)
movq 0x2710(%rsp), %rax
movq %rax, 0x4570(%rsp)
movq 0x4570(%rsp), %rax
movq %rax, 0x5f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f68cd
movq 0x5f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x456c(%rsp) # imm = 0xFFFFFFFF
movl 0x456c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4568(%rsp)
cmpl $0x1, 0x4568(%rsp)
jne 0x11f68cd
movq 0x5f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f689e
movq 0x5f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f689c
jmp 0x11f68cb
movq 0x5f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4d88(%rsp)
cmpq $0x0, 0x4d88(%rsp)
je 0x11f68c9
movq 0x4d88(%rsp), %rdi
callq 0x5f480
jmp 0x11f68cb
jmp 0x11f68cd
movq 0x5f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f6928
movq %rax, %rdi
callq 0x678a0
movq 0x600(%rsp), %rax
movq %rax, 0x1600(%rsp)
movq 0x1f18(%rsp), %rcx
movl 0x1658(%rsp), %eax
leaq 0x1568(%rsp), %rdx
movq %rdx, 0x2ac0(%rsp)
movq %rcx, 0x2ab8(%rsp)
movl %eax, 0x2ab4(%rsp)
movq 0x2ab8(%rsp), %rax
movq %rax, 0x5f0(%rsp)
movb $0x0, 0x2ab3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2ab4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1568(%rsp), %r10
movq %r10, 0x3208(%rsp)
movl %r9d, 0x3204(%rsp)
movl %r8d, 0x3200(%rsp)
movl %edi, 0x31fc(%rsp)
movq %rsi, 0x31f0(%rsp)
movq %rdx, 0x31e8(%rsp)
movl %ecx, 0x31e4(%rsp)
movq %rax, 0x31d8(%rsp)
movq 0x3208(%rsp), %rcx
movq %rcx, 0x5e8(%rsp)
movq 0x31f0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x31e8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x31e4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x31d8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3204(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3200(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x31fc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3f50(%rsp)
movl $0x10, 0x3f4c(%rsp)
movq 0x3f50(%rsp), %rax
movslq 0x3f4c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3f4c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5f0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1590(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11f6af4
movq 0x5f0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x15a8(%rsp)
movb $0x1, 0x2ab3(%rsp)
testb $0x1, 0x2ab3(%rsp)
jne 0x11f6c2f
leaq 0x1568(%rsp), %rax
movq %rax, 0x2ac8(%rsp)
movq 0x2ac8(%rsp), %rax
movq %rax, 0x40a0(%rsp)
movq 0x40a0(%rsp), %rax
movq %rax, 0x5e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f6bd2
movq 0x5e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x409c(%rsp) # imm = 0xFFFFFFFF
movl 0x409c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4098(%rsp)
cmpl $0x1, 0x4098(%rsp)
jne 0x11f6bd2
movq 0x5e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f6ba3
movq 0x5e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f6ba1
jmp 0x11f6bd0
movq 0x5e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4ff0(%rsp)
cmpq $0x0, 0x4ff0(%rsp)
je 0x11f6bce
movq 0x4ff0(%rsp), %rdi
callq 0x5f480
jmp 0x11f6bd0
jmp 0x11f6bd2
movq 0x5e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f6c2d
movq %rax, %rdi
callq 0x678a0
jmp 0x11f6c2f
leaq 0x1568(%rsp), %rax
movq %rax, 0x2c88(%rsp)
movq 0x2c88(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5d8(%rsp)
leaq 0x1568(%rsp), %rax
movq %rax, 0x2720(%rsp)
movq 0x2720(%rsp), %rax
movq %rax, 0x4550(%rsp)
movq 0x4550(%rsp), %rax
movq %rax, 0x5d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f6d1a
movq 0x5d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x454c(%rsp) # imm = 0xFFFFFFFF
movl 0x454c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4548(%rsp)
cmpl $0x1, 0x4548(%rsp)
jne 0x11f6d1a
movq 0x5d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f6ceb
movq 0x5d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f6ce9
jmp 0x11f6d18
movq 0x5d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4d98(%rsp)
cmpq $0x0, 0x4d98(%rsp)
je 0x11f6d16
movq 0x4d98(%rsp), %rdi
callq 0x5f480
jmp 0x11f6d18
jmp 0x11f6d1a
movq 0x5d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f6d75
movq %rax, %rdi
callq 0x678a0
movq 0x5d8(%rsp), %rax
movq %rax, 0x15b0(%rsp)
movl $0x0, 0x1564(%rsp)
movl 0x1564(%rsp), %eax
cmpl 0x1f04(%rsp), %eax
jge 0x11f6e89
movq 0x1600(%rsp), %rax
movslq 0x1564(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x1560(%rsp)
movl $0x0, 0x155c(%rsp)
movl 0x155c(%rsp), %eax
cmpl 0x1f08(%rsp), %eax
jge 0x11f6e31
movq 0x1650(%rsp), %rsi
movslq 0x155c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1f0f(%rsp), %rdi
leaq 0x1560(%rsp), %rdx
callq 0x1278000
movq 0x15b0(%rsp), %rax
movslq 0x155c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x155c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x155c(%rsp)
jmp 0x11f6dcd
movl 0x1f08(%rsp), %ecx
movq 0x1650(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1650(%rsp)
movl 0x1f08(%rsp), %ecx
movq 0x15b0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x15b0(%rsp)
movl 0x1564(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1564(%rsp)
jmp 0x11f6d90
jmp 0x11f6e8b
movl 0x1658(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1658(%rsp)
jmp 0x11f608a
movl $0x0, 0x1f34(%rsp)
jmp 0x12015a5
movl 0x1eec(%rsp), %eax
cmpl 0x1f08(%rsp), %eax
jne 0x11f7dcc
cmpl $0x1, 0x1f04(%rsp)
je 0x11f7dcc
cmpl $0x1, 0x1ee8(%rsp)
jne 0x11f7dcc
movl 0x1ee0(%rsp), %eax
cmpl 0x1efc(%rsp), %eax
jne 0x11f7dcc
movq 0x1f18(%rsp), %rdi
movl 0x1f08(%rsp), %esi
movl 0x1f04(%rsp), %edx
movl 0x1efc(%rsp), %ecx
movq 0x1ef0(%rsp), %r8
movq 0x1f10(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f18(%rsp), %rax
movq %rax, 0x1fb8(%rsp)
movq 0x1fb8(%rsp), %rcx
movq %rcx, 0x5c0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x5cf(%rsp)
je 0x11f6f8c
movq 0x5c0(%rsp), %rax
movq %rax, 0x2f20(%rsp)
movq 0x2f20(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x5cf(%rsp)
movb 0x5cf(%rsp), %al
testb $0x1, %al
jne 0x11f6f99
jmp 0x11f6fa9
movl $0xffffff9c, 0x1f34(%rsp) # imm = 0xFFFFFF9C
jmp 0x12015a5
movl $0x0, 0x1558(%rsp)
movl 0x1558(%rsp), %eax
cmpl 0x1ee0(%rsp), %eax
jge 0x11f7dbc
movq 0x1f28(%rsp), %rcx
movl 0x1558(%rsp), %eax
leaq 0x1508(%rsp), %rdx
movq %rdx, 0x2190(%rsp)
movq %rcx, 0x2188(%rsp)
movl %eax, 0x2184(%rsp)
movq 0x2188(%rsp), %rax
movq %rax, 0x5b8(%rsp)
movb $0x0, 0x2183(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2184(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1508(%rsp), %r10
movq %r10, 0x38d0(%rsp)
movl %r9d, 0x38cc(%rsp)
movl %r8d, 0x38c8(%rsp)
movl %edi, 0x38c4(%rsp)
movq %rsi, 0x38b8(%rsp)
movq %rdx, 0x38b0(%rsp)
movl %ecx, 0x38ac(%rsp)
movq %rax, 0x38a0(%rsp)
movq 0x38d0(%rsp), %rcx
movq %rcx, 0x5b0(%rsp)
movq 0x38b8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x38b0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x38ac(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x38a0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x38cc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x38c8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x38c4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d60(%rsp)
movl $0x10, 0x3d5c(%rsp)
movq 0x3d60(%rsp), %rax
movslq 0x3d5c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d5c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5b8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1530(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11f7184
movq 0x5b8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1548(%rsp)
movb $0x1, 0x2183(%rsp)
testb $0x1, 0x2183(%rsp)
jne 0x11f72bf
leaq 0x1508(%rsp), %rax
movq %rax, 0x24e8(%rsp)
movq 0x24e8(%rsp), %rax
movq %rax, 0x49c0(%rsp)
movq 0x49c0(%rsp), %rax
movq %rax, 0x5a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f7262
movq 0x5a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x49bc(%rsp) # imm = 0xFFFFFFFF
movl 0x49bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x49b8(%rsp)
cmpl $0x1, 0x49b8(%rsp)
jne 0x11f7262
movq 0x5a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f7233
movq 0x5a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f7231
jmp 0x11f7260
movq 0x5a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4b60(%rsp)
cmpq $0x0, 0x4b60(%rsp)
je 0x11f725e
movq 0x4b60(%rsp), %rdi
callq 0x5f480
jmp 0x11f7260
jmp 0x11f7262
movq 0x5a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f72bd
movq %rax, %rdi
callq 0x678a0
jmp 0x11f72bf
leaq 0x1508(%rsp), %rax
movq %rax, 0x23c0(%rsp)
movq 0x23c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5a0(%rsp)
leaq 0x1508(%rsp), %rax
movq %rax, 0x2730(%rsp)
movq 0x2730(%rsp), %rax
movq %rax, 0x4530(%rsp)
movq 0x4530(%rsp), %rax
movq %rax, 0x598(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f73aa
movq 0x598(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x452c(%rsp) # imm = 0xFFFFFFFF
movl 0x452c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4528(%rsp)
cmpl $0x1, 0x4528(%rsp)
jne 0x11f73aa
movq 0x598(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f737b
movq 0x598(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f7379
jmp 0x11f73a8
movq 0x598(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4da8(%rsp)
cmpq $0x0, 0x4da8(%rsp)
je 0x11f73a6
movq 0x4da8(%rsp), %rdi
callq 0x5f480
jmp 0x11f73a8
jmp 0x11f73aa
movq 0x598(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f7405
movq %rax, %rdi
callq 0x678a0
movq 0x5a0(%rsp), %rax
movq %rax, 0x1550(%rsp)
movq 0x1f20(%rsp), %rcx
movl 0x1558(%rsp), %eax
leaq 0x14b8(%rsp), %rdx
movq %rdx, 0x2178(%rsp)
movq %rcx, 0x2170(%rsp)
movl %eax, 0x216c(%rsp)
movq 0x2170(%rsp), %rax
movq %rax, 0x590(%rsp)
movb $0x0, 0x216b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x216c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x14b8(%rsp), %r10
movq %r10, 0x3908(%rsp)
movl %r9d, 0x3904(%rsp)
movl %r8d, 0x3900(%rsp)
movl %edi, 0x38fc(%rsp)
movq %rsi, 0x38f0(%rsp)
movq %rdx, 0x38e8(%rsp)
movl %ecx, 0x38e4(%rsp)
movq %rax, 0x38d8(%rsp)
movq 0x3908(%rsp), %rcx
movq %rcx, 0x588(%rsp)
movq 0x38f0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x38e8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x38e4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x38d8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3904(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3900(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x38fc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d50(%rsp)
movl $0x10, 0x3d4c(%rsp)
movq 0x3d50(%rsp), %rax
movslq 0x3d4c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d4c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x590(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x14e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11f75d1
movq 0x590(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x14f8(%rsp)
movb $0x1, 0x216b(%rsp)
testb $0x1, 0x216b(%rsp)
jne 0x11f770c
leaq 0x14b8(%rsp), %rax
movq %rax, 0x24f0(%rsp)
movq 0x24f0(%rsp), %rax
movq %rax, 0x49b0(%rsp)
movq 0x49b0(%rsp), %rax
movq %rax, 0x580(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f76af
movq 0x580(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x49ac(%rsp) # imm = 0xFFFFFFFF
movl 0x49ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x49a8(%rsp)
cmpl $0x1, 0x49a8(%rsp)
jne 0x11f76af
movq 0x580(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f7680
movq 0x580(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f767e
jmp 0x11f76ad
movq 0x580(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4b68(%rsp)
cmpq $0x0, 0x4b68(%rsp)
je 0x11f76ab
movq 0x4b68(%rsp), %rdi
callq 0x5f480
jmp 0x11f76ad
jmp 0x11f76af
movq 0x580(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f770a
movq %rax, %rdi
callq 0x678a0
jmp 0x11f770c
leaq 0x14b8(%rsp), %rax
movq %rax, 0x23b8(%rsp)
movq 0x23b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x578(%rsp)
leaq 0x14b8(%rsp), %rax
movq %rax, 0x2740(%rsp)
movq 0x2740(%rsp), %rax
movq %rax, 0x4510(%rsp)
movq 0x4510(%rsp), %rax
movq %rax, 0x570(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f77f7
movq 0x570(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x450c(%rsp) # imm = 0xFFFFFFFF
movl 0x450c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4508(%rsp)
cmpl $0x1, 0x4508(%rsp)
jne 0x11f77f7
movq 0x570(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f77c8
movq 0x570(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f77c6
jmp 0x11f77f5
movq 0x570(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4db8(%rsp)
cmpq $0x0, 0x4db8(%rsp)
je 0x11f77f3
movq 0x4db8(%rsp), %rdi
callq 0x5f480
jmp 0x11f77f5
jmp 0x11f77f7
movq 0x570(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f7852
movq %rax, %rdi
callq 0x678a0
movq 0x578(%rsp), %rax
movq %rax, 0x1500(%rsp)
movq 0x1f18(%rsp), %rcx
movl 0x1558(%rsp), %eax
leaq 0x1468(%rsp), %rdx
movq %rdx, 0x2aa0(%rsp)
movq %rcx, 0x2a98(%rsp)
movl %eax, 0x2a94(%rsp)
movq 0x2a98(%rsp), %rax
movq %rax, 0x568(%rsp)
movb $0x0, 0x2a93(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2a94(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1468(%rsp), %r10
movq %r10, 0x3240(%rsp)
movl %r9d, 0x323c(%rsp)
movl %r8d, 0x3238(%rsp)
movl %edi, 0x3234(%rsp)
movq %rsi, 0x3228(%rsp)
movq %rdx, 0x3220(%rsp)
movl %ecx, 0x321c(%rsp)
movq %rax, 0x3210(%rsp)
movq 0x3240(%rsp), %rcx
movq %rcx, 0x560(%rsp)
movq 0x3228(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3220(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x321c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3210(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x323c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3238(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3234(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3f40(%rsp)
movl $0x10, 0x3f3c(%rsp)
movq 0x3f40(%rsp), %rax
movslq 0x3f3c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3f3c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x568(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1490(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11f7a1e
movq 0x568(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x14a8(%rsp)
movb $0x1, 0x2a93(%rsp)
testb $0x1, 0x2a93(%rsp)
jne 0x11f7b59
leaq 0x1468(%rsp), %rax
movq %rax, 0x2aa8(%rsp)
movq 0x2aa8(%rsp), %rax
movq %rax, 0x40b0(%rsp)
movq 0x40b0(%rsp), %rax
movq %rax, 0x558(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f7afc
movq 0x558(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40ac(%rsp) # imm = 0xFFFFFFFF
movl 0x40ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40a8(%rsp)
cmpl $0x1, 0x40a8(%rsp)
jne 0x11f7afc
movq 0x558(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f7acd
movq 0x558(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f7acb
jmp 0x11f7afa
movq 0x558(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4fe8(%rsp)
cmpq $0x0, 0x4fe8(%rsp)
je 0x11f7af8
movq 0x4fe8(%rsp), %rdi
callq 0x5f480
jmp 0x11f7afa
jmp 0x11f7afc
movq 0x558(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f7b57
movq %rax, %rdi
callq 0x678a0
jmp 0x11f7b59
leaq 0x1468(%rsp), %rax
movq %rax, 0x2c80(%rsp)
movq 0x2c80(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x550(%rsp)
leaq 0x1468(%rsp), %rax
movq %rax, 0x2750(%rsp)
movq 0x2750(%rsp), %rax
movq %rax, 0x44f0(%rsp)
movq 0x44f0(%rsp), %rax
movq %rax, 0x548(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f7c44
movq 0x548(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x44ec(%rsp) # imm = 0xFFFFFFFF
movl 0x44ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x44e8(%rsp)
cmpl $0x1, 0x44e8(%rsp)
jne 0x11f7c44
movq 0x548(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f7c15
movq 0x548(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f7c13
jmp 0x11f7c42
movq 0x548(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4dc8(%rsp)
cmpq $0x0, 0x4dc8(%rsp)
je 0x11f7c40
movq 0x4dc8(%rsp), %rdi
callq 0x5f480
jmp 0x11f7c42
jmp 0x11f7c44
movq 0x548(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f7c9f
movq %rax, %rdi
callq 0x678a0
movq 0x550(%rsp), %rax
movq %rax, 0x14b0(%rsp)
movl $0x0, 0x1464(%rsp)
movl 0x1464(%rsp), %eax
cmpl 0x1f04(%rsp), %eax
jge 0x11f7da4
movl $0x0, 0x1460(%rsp)
movl 0x1460(%rsp), %eax
cmpl 0x1f08(%rsp), %eax
jge 0x11f7d4c
movq 0x1550(%rsp), %rsi
movslq 0x1460(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1500(%rsp), %rdx
movslq 0x1460(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1f0f(%rsp), %rdi
callq 0x1278000
movq 0x14b0(%rsp), %rax
movslq 0x1460(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1460(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1460(%rsp)
jmp 0x11f7cd9
movl 0x1f08(%rsp), %ecx
movq 0x1550(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1550(%rsp)
movl 0x1f08(%rsp), %ecx
movq 0x14b0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x14b0(%rsp)
movl 0x1464(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1464(%rsp)
jmp 0x11f7cba
jmp 0x11f7da6
movl 0x1558(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1558(%rsp)
jmp 0x11f6fb4
movl $0x0, 0x1f34(%rsp)
jmp 0x12015a5
cmpl $0x1, 0x1eec(%rsp)
je 0x11f8cf6
cmpl $0x1, 0x1f08(%rsp)
jne 0x11f8cf6
movl 0x1ee8(%rsp), %eax
cmpl 0x1f04(%rsp), %eax
jne 0x11f8cf6
movl 0x1ee0(%rsp), %eax
cmpl 0x1efc(%rsp), %eax
jne 0x11f8cf6
movq 0x1f18(%rsp), %rdi
movl 0x1eec(%rsp), %esi
movl 0x1ee8(%rsp), %edx
movl 0x1ee0(%rsp), %ecx
movq 0x1ef0(%rsp), %r8
movq 0x1f10(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f18(%rsp), %rax
movq %rax, 0x1fb0(%rsp)
movq 0x1fb0(%rsp), %rcx
movq %rcx, 0x538(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x547(%rsp)
je 0x11f7ea7
movq 0x538(%rsp), %rax
movq %rax, 0x2f28(%rsp)
movq 0x2f28(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x547(%rsp)
movb 0x547(%rsp), %al
testb $0x1, %al
jne 0x11f7eb4
jmp 0x11f7ec4
movl $0xffffff9c, 0x1f34(%rsp) # imm = 0xFFFFFF9C
jmp 0x12015a5
movl $0x0, 0x145c(%rsp)
movl 0x145c(%rsp), %eax
cmpl 0x1ee0(%rsp), %eax
jge 0x11f8ce6
movq 0x1f28(%rsp), %rcx
movl 0x145c(%rsp), %eax
leaq 0x1408(%rsp), %rdx
movq %rdx, 0x2160(%rsp)
movq %rcx, 0x2158(%rsp)
movl %eax, 0x2154(%rsp)
movq 0x2158(%rsp), %rax
movq %rax, 0x530(%rsp)
movb $0x0, 0x2153(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2154(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1408(%rsp), %r10
movq %r10, 0x3940(%rsp)
movl %r9d, 0x393c(%rsp)
movl %r8d, 0x3938(%rsp)
movl %edi, 0x3934(%rsp)
movq %rsi, 0x3928(%rsp)
movq %rdx, 0x3920(%rsp)
movl %ecx, 0x391c(%rsp)
movq %rax, 0x3910(%rsp)
movq 0x3940(%rsp), %rcx
movq %rcx, 0x528(%rsp)
movq 0x3928(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3920(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x391c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3910(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x393c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3938(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3934(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d40(%rsp)
movl $0x10, 0x3d3c(%rsp)
movq 0x3d40(%rsp), %rax
movslq 0x3d3c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d3c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x530(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1430(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11f809f
movq 0x530(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1448(%rsp)
movb $0x1, 0x2153(%rsp)
testb $0x1, 0x2153(%rsp)
jne 0x11f81da
leaq 0x1408(%rsp), %rax
movq %rax, 0x24f8(%rsp)
movq 0x24f8(%rsp), %rax
movq %rax, 0x49a0(%rsp)
movq 0x49a0(%rsp), %rax
movq %rax, 0x520(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f817d
movq 0x520(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x499c(%rsp) # imm = 0xFFFFFFFF
movl 0x499c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4998(%rsp)
cmpl $0x1, 0x4998(%rsp)
jne 0x11f817d
movq 0x520(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f814e
movq 0x520(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f814c
jmp 0x11f817b
movq 0x520(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4b70(%rsp)
cmpq $0x0, 0x4b70(%rsp)
je 0x11f8179
movq 0x4b70(%rsp), %rdi
callq 0x5f480
jmp 0x11f817b
jmp 0x11f817d
movq 0x520(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f81d8
movq %rax, %rdi
callq 0x678a0
jmp 0x11f81da
leaq 0x1408(%rsp), %rax
movq %rax, 0x23b0(%rsp)
movq 0x23b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x518(%rsp)
leaq 0x1408(%rsp), %rax
movq %rax, 0x2760(%rsp)
movq 0x2760(%rsp), %rax
movq %rax, 0x44d0(%rsp)
movq 0x44d0(%rsp), %rax
movq %rax, 0x510(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f82c5
movq 0x510(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x44cc(%rsp) # imm = 0xFFFFFFFF
movl 0x44cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x44c8(%rsp)
cmpl $0x1, 0x44c8(%rsp)
jne 0x11f82c5
movq 0x510(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f8296
movq 0x510(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f8294
jmp 0x11f82c3
movq 0x510(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4dd8(%rsp)
cmpq $0x0, 0x4dd8(%rsp)
je 0x11f82c1
movq 0x4dd8(%rsp), %rdi
callq 0x5f480
jmp 0x11f82c3
jmp 0x11f82c5
movq 0x510(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f8320
movq %rax, %rdi
callq 0x678a0
movq 0x518(%rsp), %rax
movq %rax, 0x1450(%rsp)
movq 0x1f20(%rsp), %rcx
movl 0x145c(%rsp), %eax
leaq 0x13b8(%rsp), %rdx
movq %rdx, 0x2148(%rsp)
movq %rcx, 0x2140(%rsp)
movl %eax, 0x213c(%rsp)
movq 0x2140(%rsp), %rax
movq %rax, 0x508(%rsp)
movb $0x0, 0x213b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x213c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x13b8(%rsp), %r10
movq %r10, 0x3978(%rsp)
movl %r9d, 0x3974(%rsp)
movl %r8d, 0x3970(%rsp)
movl %edi, 0x396c(%rsp)
movq %rsi, 0x3960(%rsp)
movq %rdx, 0x3958(%rsp)
movl %ecx, 0x3954(%rsp)
movq %rax, 0x3948(%rsp)
movq 0x3978(%rsp), %rcx
movq %rcx, 0x500(%rsp)
movq 0x3960(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3958(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3954(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3948(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3974(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3970(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x396c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d30(%rsp)
movl $0x10, 0x3d2c(%rsp)
movq 0x3d30(%rsp), %rax
movslq 0x3d2c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d2c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x508(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x13e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11f84ec
movq 0x508(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x13f8(%rsp)
movb $0x1, 0x213b(%rsp)
testb $0x1, 0x213b(%rsp)
jne 0x11f8627
leaq 0x13b8(%rsp), %rax
movq %rax, 0x2500(%rsp)
movq 0x2500(%rsp), %rax
movq %rax, 0x4990(%rsp)
movq 0x4990(%rsp), %rax
movq %rax, 0x4f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f85ca
movq 0x4f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x498c(%rsp) # imm = 0xFFFFFFFF
movl 0x498c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4988(%rsp)
cmpl $0x1, 0x4988(%rsp)
jne 0x11f85ca
movq 0x4f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f859b
movq 0x4f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f8599
jmp 0x11f85c8
movq 0x4f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4b78(%rsp)
cmpq $0x0, 0x4b78(%rsp)
je 0x11f85c6
movq 0x4b78(%rsp), %rdi
callq 0x5f480
jmp 0x11f85c8
jmp 0x11f85ca
movq 0x4f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f8625
movq %rax, %rdi
callq 0x678a0
jmp 0x11f8627
leaq 0x13b8(%rsp), %rax
movq %rax, 0x23a8(%rsp)
movq 0x23a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4f0(%rsp)
leaq 0x13b8(%rsp), %rax
movq %rax, 0x2770(%rsp)
movq 0x2770(%rsp), %rax
movq %rax, 0x44b0(%rsp)
movq 0x44b0(%rsp), %rax
movq %rax, 0x4e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f8712
movq 0x4e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x44ac(%rsp) # imm = 0xFFFFFFFF
movl 0x44ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x44a8(%rsp)
cmpl $0x1, 0x44a8(%rsp)
jne 0x11f8712
movq 0x4e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f86e3
movq 0x4e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f86e1
jmp 0x11f8710
movq 0x4e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4de8(%rsp)
cmpq $0x0, 0x4de8(%rsp)
je 0x11f870e
movq 0x4de8(%rsp), %rdi
callq 0x5f480
jmp 0x11f8710
jmp 0x11f8712
movq 0x4e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f876d
movq %rax, %rdi
callq 0x678a0
movq 0x4f0(%rsp), %rax
movq %rax, 0x1400(%rsp)
movq 0x1f18(%rsp), %rcx
movl 0x145c(%rsp), %eax
leaq 0x1368(%rsp), %rdx
movq %rdx, 0x2a80(%rsp)
movq %rcx, 0x2a78(%rsp)
movl %eax, 0x2a74(%rsp)
movq 0x2a78(%rsp), %rax
movq %rax, 0x4e0(%rsp)
movb $0x0, 0x2a73(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2a74(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1368(%rsp), %r10
movq %r10, 0x3278(%rsp)
movl %r9d, 0x3274(%rsp)
movl %r8d, 0x3270(%rsp)
movl %edi, 0x326c(%rsp)
movq %rsi, 0x3260(%rsp)
movq %rdx, 0x3258(%rsp)
movl %ecx, 0x3254(%rsp)
movq %rax, 0x3248(%rsp)
movq 0x3278(%rsp), %rcx
movq %rcx, 0x4d8(%rsp)
movq 0x3260(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3258(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3254(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3248(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3274(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3270(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x326c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3f30(%rsp)
movl $0x10, 0x3f2c(%rsp)
movq 0x3f30(%rsp), %rax
movslq 0x3f2c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3f2c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4e0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1390(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11f8939
movq 0x4e0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x13a8(%rsp)
movb $0x1, 0x2a73(%rsp)
testb $0x1, 0x2a73(%rsp)
jne 0x11f8a74
leaq 0x1368(%rsp), %rax
movq %rax, 0x2a88(%rsp)
movq 0x2a88(%rsp), %rax
movq %rax, 0x40c0(%rsp)
movq 0x40c0(%rsp), %rax
movq %rax, 0x4d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f8a17
movq 0x4d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40bc(%rsp) # imm = 0xFFFFFFFF
movl 0x40bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40b8(%rsp)
cmpl $0x1, 0x40b8(%rsp)
jne 0x11f8a17
movq 0x4d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f89e8
movq 0x4d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f89e6
jmp 0x11f8a15
movq 0x4d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4fe0(%rsp)
cmpq $0x0, 0x4fe0(%rsp)
je 0x11f8a13
movq 0x4fe0(%rsp), %rdi
callq 0x5f480
jmp 0x11f8a15
jmp 0x11f8a17
movq 0x4d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f8a72
movq %rax, %rdi
callq 0x678a0
jmp 0x11f8a74
leaq 0x1368(%rsp), %rax
movq %rax, 0x2c78(%rsp)
movq 0x2c78(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4c8(%rsp)
leaq 0x1368(%rsp), %rax
movq %rax, 0x2780(%rsp)
movq 0x2780(%rsp), %rax
movq %rax, 0x4490(%rsp)
movq 0x4490(%rsp), %rax
movq %rax, 0x4c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f8b5f
movq 0x4c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x448c(%rsp) # imm = 0xFFFFFFFF
movl 0x448c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4488(%rsp)
cmpl $0x1, 0x4488(%rsp)
jne 0x11f8b5f
movq 0x4c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f8b30
movq 0x4c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f8b2e
jmp 0x11f8b5d
movq 0x4c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4df8(%rsp)
cmpq $0x0, 0x4df8(%rsp)
je 0x11f8b5b
movq 0x4df8(%rsp), %rdi
callq 0x5f480
jmp 0x11f8b5d
jmp 0x11f8b5f
movq 0x4c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f8bba
movq %rax, %rdi
callq 0x678a0
movq 0x4c8(%rsp), %rax
movq %rax, 0x13b0(%rsp)
movl $0x0, 0x1364(%rsp)
movl 0x1364(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x11f8cce
movq 0x1450(%rsp), %rax
movslq 0x1364(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x1360(%rsp)
movl $0x0, 0x135c(%rsp)
movl 0x135c(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x11f8c76
movq 0x1400(%rsp), %rdx
movslq 0x135c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1f0f(%rsp), %rdi
leaq 0x1360(%rsp), %rsi
callq 0x1278000
movq 0x13b0(%rsp), %rax
movslq 0x135c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x135c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x135c(%rsp)
jmp 0x11f8c12
movl 0x1eec(%rsp), %ecx
movq 0x1400(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1400(%rsp)
movl 0x1eec(%rsp), %ecx
movq 0x13b0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x13b0(%rsp)
movl 0x1364(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1364(%rsp)
jmp 0x11f8bd5
jmp 0x11f8cd0
movl 0x145c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x145c(%rsp)
jmp 0x11f7ecf
movl $0x0, 0x1f34(%rsp)
jmp 0x12015a5
movl 0x1eec(%rsp), %eax
cmpl 0x1f08(%rsp), %eax
jne 0x11f9c11
cmpl $0x1, 0x1ee8(%rsp)
je 0x11f9c11
cmpl $0x1, 0x1f04(%rsp)
jne 0x11f9c11
movl 0x1ee0(%rsp), %eax
cmpl 0x1efc(%rsp), %eax
jne 0x11f9c11
movq 0x1f18(%rsp), %rdi
movl 0x1eec(%rsp), %esi
movl 0x1ee8(%rsp), %edx
movl 0x1ee0(%rsp), %ecx
movq 0x1ef0(%rsp), %r8
movq 0x1f10(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f18(%rsp), %rax
movq %rax, 0x1fa8(%rsp)
movq 0x1fa8(%rsp), %rcx
movq %rcx, 0x4b0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x4bf(%rsp)
je 0x11f8dd1
movq 0x4b0(%rsp), %rax
movq %rax, 0x2f30(%rsp)
movq 0x2f30(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x4bf(%rsp)
movb 0x4bf(%rsp), %al
testb $0x1, %al
jne 0x11f8dde
jmp 0x11f8dee
movl $0xffffff9c, 0x1f34(%rsp) # imm = 0xFFFFFF9C
jmp 0x12015a5
movl $0x0, 0x1358(%rsp)
movl 0x1358(%rsp), %eax
cmpl 0x1ee0(%rsp), %eax
jge 0x11f9c01
movq 0x1f28(%rsp), %rcx
movl 0x1358(%rsp), %eax
leaq 0x1308(%rsp), %rdx
movq %rdx, 0x2130(%rsp)
movq %rcx, 0x2128(%rsp)
movl %eax, 0x2124(%rsp)
movq 0x2128(%rsp), %rax
movq %rax, 0x4a8(%rsp)
movb $0x0, 0x2123(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2124(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1308(%rsp), %r10
movq %r10, 0x39b0(%rsp)
movl %r9d, 0x39ac(%rsp)
movl %r8d, 0x39a8(%rsp)
movl %edi, 0x39a4(%rsp)
movq %rsi, 0x3998(%rsp)
movq %rdx, 0x3990(%rsp)
movl %ecx, 0x398c(%rsp)
movq %rax, 0x3980(%rsp)
movq 0x39b0(%rsp), %rcx
movq %rcx, 0x4a0(%rsp)
movq 0x3998(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3990(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x398c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3980(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x39ac(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x39a8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x39a4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d20(%rsp)
movl $0x10, 0x3d1c(%rsp)
movq 0x3d20(%rsp), %rax
movslq 0x3d1c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d1c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4a8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1330(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11f8fc9
movq 0x4a8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1348(%rsp)
movb $0x1, 0x2123(%rsp)
testb $0x1, 0x2123(%rsp)
jne 0x11f9104
leaq 0x1308(%rsp), %rax
movq %rax, 0x2508(%rsp)
movq 0x2508(%rsp), %rax
movq %rax, 0x4980(%rsp)
movq 0x4980(%rsp), %rax
movq %rax, 0x498(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f90a7
movq 0x498(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x497c(%rsp) # imm = 0xFFFFFFFF
movl 0x497c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4978(%rsp)
cmpl $0x1, 0x4978(%rsp)
jne 0x11f90a7
movq 0x498(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f9078
movq 0x498(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f9076
jmp 0x11f90a5
movq 0x498(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4b80(%rsp)
cmpq $0x0, 0x4b80(%rsp)
je 0x11f90a3
movq 0x4b80(%rsp), %rdi
callq 0x5f480
jmp 0x11f90a5
jmp 0x11f90a7
movq 0x498(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f9102
movq %rax, %rdi
callq 0x678a0
jmp 0x11f9104
leaq 0x1308(%rsp), %rax
movq %rax, 0x23a0(%rsp)
movq 0x23a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x490(%rsp)
leaq 0x1308(%rsp), %rax
movq %rax, 0x2790(%rsp)
movq 0x2790(%rsp), %rax
movq %rax, 0x4470(%rsp)
movq 0x4470(%rsp), %rax
movq %rax, 0x488(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f91ef
movq 0x488(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x446c(%rsp) # imm = 0xFFFFFFFF
movl 0x446c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4468(%rsp)
cmpl $0x1, 0x4468(%rsp)
jne 0x11f91ef
movq 0x488(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f91c0
movq 0x488(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f91be
jmp 0x11f91ed
movq 0x488(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4e08(%rsp)
cmpq $0x0, 0x4e08(%rsp)
je 0x11f91eb
movq 0x4e08(%rsp), %rdi
callq 0x5f480
jmp 0x11f91ed
jmp 0x11f91ef
movq 0x488(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f924a
movq %rax, %rdi
callq 0x678a0
movq 0x490(%rsp), %rax
movq %rax, 0x1350(%rsp)
movq 0x1f20(%rsp), %rcx
movl 0x1358(%rsp), %eax
leaq 0x12b8(%rsp), %rdx
movq %rdx, 0x2118(%rsp)
movq %rcx, 0x2110(%rsp)
movl %eax, 0x210c(%rsp)
movq 0x2110(%rsp), %rax
movq %rax, 0x480(%rsp)
movb $0x0, 0x210b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x210c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x12b8(%rsp), %r10
movq %r10, 0x39e8(%rsp)
movl %r9d, 0x39e4(%rsp)
movl %r8d, 0x39e0(%rsp)
movl %edi, 0x39dc(%rsp)
movq %rsi, 0x39d0(%rsp)
movq %rdx, 0x39c8(%rsp)
movl %ecx, 0x39c4(%rsp)
movq %rax, 0x39b8(%rsp)
movq 0x39e8(%rsp), %rcx
movq %rcx, 0x478(%rsp)
movq 0x39d0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x39c8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x39c4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x39b8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x39e4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x39e0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x39dc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d10(%rsp)
movl $0x10, 0x3d0c(%rsp)
movq 0x3d10(%rsp), %rax
movslq 0x3d0c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d0c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x480(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x12e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11f9416
movq 0x480(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x12f8(%rsp)
movb $0x1, 0x210b(%rsp)
testb $0x1, 0x210b(%rsp)
jne 0x11f9551
leaq 0x12b8(%rsp), %rax
movq %rax, 0x2510(%rsp)
movq 0x2510(%rsp), %rax
movq %rax, 0x4970(%rsp)
movq 0x4970(%rsp), %rax
movq %rax, 0x470(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f94f4
movq 0x470(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x496c(%rsp) # imm = 0xFFFFFFFF
movl 0x496c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4968(%rsp)
cmpl $0x1, 0x4968(%rsp)
jne 0x11f94f4
movq 0x470(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f94c5
movq 0x470(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f94c3
jmp 0x11f94f2
movq 0x470(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4b88(%rsp)
cmpq $0x0, 0x4b88(%rsp)
je 0x11f94f0
movq 0x4b88(%rsp), %rdi
callq 0x5f480
jmp 0x11f94f2
jmp 0x11f94f4
movq 0x470(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f954f
movq %rax, %rdi
callq 0x678a0
jmp 0x11f9551
leaq 0x12b8(%rsp), %rax
movq %rax, 0x2398(%rsp)
movq 0x2398(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x468(%rsp)
leaq 0x12b8(%rsp), %rax
movq %rax, 0x27a0(%rsp)
movq 0x27a0(%rsp), %rax
movq %rax, 0x4450(%rsp)
movq 0x4450(%rsp), %rax
movq %rax, 0x460(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f963c
movq 0x460(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x444c(%rsp) # imm = 0xFFFFFFFF
movl 0x444c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4448(%rsp)
cmpl $0x1, 0x4448(%rsp)
jne 0x11f963c
movq 0x460(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f960d
movq 0x460(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f960b
jmp 0x11f963a
movq 0x460(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4e18(%rsp)
cmpq $0x0, 0x4e18(%rsp)
je 0x11f9638
movq 0x4e18(%rsp), %rdi
callq 0x5f480
jmp 0x11f963a
jmp 0x11f963c
movq 0x460(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f9697
movq %rax, %rdi
callq 0x678a0
movq 0x468(%rsp), %rax
movq %rax, 0x1300(%rsp)
movq 0x1f18(%rsp), %rcx
movl 0x1358(%rsp), %eax
leaq 0x1268(%rsp), %rdx
movq %rdx, 0x2a60(%rsp)
movq %rcx, 0x2a58(%rsp)
movl %eax, 0x2a54(%rsp)
movq 0x2a58(%rsp), %rax
movq %rax, 0x458(%rsp)
movb $0x0, 0x2a53(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2a54(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1268(%rsp), %r10
movq %r10, 0x32b0(%rsp)
movl %r9d, 0x32ac(%rsp)
movl %r8d, 0x32a8(%rsp)
movl %edi, 0x32a4(%rsp)
movq %rsi, 0x3298(%rsp)
movq %rdx, 0x3290(%rsp)
movl %ecx, 0x328c(%rsp)
movq %rax, 0x3280(%rsp)
movq 0x32b0(%rsp), %rcx
movq %rcx, 0x450(%rsp)
movq 0x3298(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3290(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x328c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3280(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x32ac(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x32a8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x32a4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3f20(%rsp)
movl $0x10, 0x3f1c(%rsp)
movq 0x3f20(%rsp), %rax
movslq 0x3f1c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3f1c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x458(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1290(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11f9863
movq 0x458(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x12a8(%rsp)
movb $0x1, 0x2a53(%rsp)
testb $0x1, 0x2a53(%rsp)
jne 0x11f999e
leaq 0x1268(%rsp), %rax
movq %rax, 0x2a68(%rsp)
movq 0x2a68(%rsp), %rax
movq %rax, 0x40d0(%rsp)
movq 0x40d0(%rsp), %rax
movq %rax, 0x448(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f9941
movq 0x448(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40cc(%rsp) # imm = 0xFFFFFFFF
movl 0x40cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40c8(%rsp)
cmpl $0x1, 0x40c8(%rsp)
jne 0x11f9941
movq 0x448(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f9912
movq 0x448(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f9910
jmp 0x11f993f
movq 0x448(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4fd8(%rsp)
cmpq $0x0, 0x4fd8(%rsp)
je 0x11f993d
movq 0x4fd8(%rsp), %rdi
callq 0x5f480
jmp 0x11f993f
jmp 0x11f9941
movq 0x448(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f999c
movq %rax, %rdi
callq 0x678a0
jmp 0x11f999e
leaq 0x1268(%rsp), %rax
movq %rax, 0x2c70(%rsp)
movq 0x2c70(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x440(%rsp)
leaq 0x1268(%rsp), %rax
movq %rax, 0x27b0(%rsp)
movq 0x27b0(%rsp), %rax
movq %rax, 0x4430(%rsp)
movq 0x4430(%rsp), %rax
movq %rax, 0x438(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f9a89
movq 0x438(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x442c(%rsp) # imm = 0xFFFFFFFF
movl 0x442c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4428(%rsp)
cmpl $0x1, 0x4428(%rsp)
jne 0x11f9a89
movq 0x438(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f9a5a
movq 0x438(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f9a58
jmp 0x11f9a87
movq 0x438(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4e28(%rsp)
cmpq $0x0, 0x4e28(%rsp)
je 0x11f9a85
movq 0x4e28(%rsp), %rdi
callq 0x5f480
jmp 0x11f9a87
jmp 0x11f9a89
movq 0x438(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f9ae4
movq %rax, %rdi
callq 0x678a0
movq 0x440(%rsp), %rax
movq %rax, 0x12b0(%rsp)
movl $0x0, 0x1264(%rsp)
movl 0x1264(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x11f9be9
movl $0x0, 0x1260(%rsp)
movl 0x1260(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x11f9b91
movq 0x1350(%rsp), %rsi
movslq 0x1260(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1300(%rsp), %rdx
movslq 0x1260(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1f0f(%rsp), %rdi
callq 0x1278000
movq 0x12b0(%rsp), %rax
movslq 0x1260(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1260(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1260(%rsp)
jmp 0x11f9b1e
movl 0x1eec(%rsp), %ecx
movq 0x1300(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1300(%rsp)
movl 0x1eec(%rsp), %ecx
movq 0x12b0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x12b0(%rsp)
movl 0x1264(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1264(%rsp)
jmp 0x11f9aff
jmp 0x11f9beb
movl 0x1358(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1358(%rsp)
jmp 0x11f8df9
movl $0x0, 0x1f34(%rsp)
jmp 0x12015a5
movq 0x1f18(%rsp), %rdi
movl 0x1f08(%rsp), %esi
movl 0x1f04(%rsp), %edx
movl 0x1efc(%rsp), %ecx
movq 0x1ef0(%rsp), %r8
movq 0x1f10(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f18(%rsp), %rax
movq %rax, 0x1fa0(%rsp)
movq 0x1fa0(%rsp), %rcx
movq %rcx, 0x428(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x437(%rsp)
je 0x11f9ca8
movq 0x428(%rsp), %rax
movq %rax, 0x2f38(%rsp)
movq 0x2f38(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x437(%rsp)
movb 0x437(%rsp), %al
testb $0x1, %al
jne 0x11f9cb5
jmp 0x11f9cc5
movl $0xffffff9c, 0x1f34(%rsp) # imm = 0xFFFFFF9C
jmp 0x12015a5
movl $0x0, 0x125c(%rsp)
movl 0x125c(%rsp), %eax
cmpl 0x1efc(%rsp), %eax
jge 0x11faa61
movq 0x1f28(%rsp), %rcx
movl 0x125c(%rsp), %eax
leaq 0x1208(%rsp), %rdx
movq %rdx, 0x2100(%rsp)
movq %rcx, 0x20f8(%rsp)
movl %eax, 0x20f4(%rsp)
movq 0x20f8(%rsp), %rax
movq %rax, 0x420(%rsp)
movb $0x0, 0x20f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x20f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1208(%rsp), %r10
movq %r10, 0x3a20(%rsp)
movl %r9d, 0x3a1c(%rsp)
movl %r8d, 0x3a18(%rsp)
movl %edi, 0x3a14(%rsp)
movq %rsi, 0x3a08(%rsp)
movq %rdx, 0x3a00(%rsp)
movl %ecx, 0x39fc(%rsp)
movq %rax, 0x39f0(%rsp)
movq 0x3a20(%rsp), %rcx
movq %rcx, 0x418(%rsp)
movq 0x3a08(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3a00(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x39fc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x39f0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3a1c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3a18(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3a14(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d00(%rsp)
movl $0x10, 0x3cfc(%rsp)
movq 0x3d00(%rsp), %rax
movslq 0x3cfc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cfc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x420(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1230(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11f9ea0
movq 0x420(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1248(%rsp)
movb $0x1, 0x20f3(%rsp)
testb $0x1, 0x20f3(%rsp)
jne 0x11f9fdb
leaq 0x1208(%rsp), %rax
movq %rax, 0x2518(%rsp)
movq 0x2518(%rsp), %rax
movq %rax, 0x4960(%rsp)
movq 0x4960(%rsp), %rax
movq %rax, 0x410(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11f9f7e
movq 0x410(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x495c(%rsp) # imm = 0xFFFFFFFF
movl 0x495c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4958(%rsp)
cmpl $0x1, 0x4958(%rsp)
jne 0x11f9f7e
movq 0x410(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11f9f4f
movq 0x410(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11f9f4d
jmp 0x11f9f7c
movq 0x410(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4b90(%rsp)
cmpq $0x0, 0x4b90(%rsp)
je 0x11f9f7a
movq 0x4b90(%rsp), %rdi
callq 0x5f480
jmp 0x11f9f7c
jmp 0x11f9f7e
movq 0x410(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11f9fd9
movq %rax, %rdi
callq 0x678a0
jmp 0x11f9fdb
leaq 0x1208(%rsp), %rax
movq %rax, 0x2390(%rsp)
movq 0x2390(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x408(%rsp)
leaq 0x1208(%rsp), %rax
movq %rax, 0x27c0(%rsp)
movq 0x27c0(%rsp), %rax
movq %rax, 0x4410(%rsp)
movq 0x4410(%rsp), %rax
movq %rax, 0x400(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11fa0c6
movq 0x400(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x440c(%rsp) # imm = 0xFFFFFFFF
movl 0x440c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4408(%rsp)
cmpl $0x1, 0x4408(%rsp)
jne 0x11fa0c6
movq 0x400(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11fa097
movq 0x400(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11fa095
jmp 0x11fa0c4
movq 0x400(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4e38(%rsp)
cmpq $0x0, 0x4e38(%rsp)
je 0x11fa0c2
movq 0x4e38(%rsp), %rdi
callq 0x5f480
jmp 0x11fa0c4
jmp 0x11fa0c6
movq 0x400(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11fa121
movq %rax, %rdi
callq 0x678a0
movq 0x408(%rsp), %rax
movq %rax, 0x1250(%rsp)
movq 0x1f20(%rsp), %rcx
movl 0x125c(%rsp), %eax
leaq 0x11b8(%rsp), %rdx
movq %rdx, 0x20e8(%rsp)
movq %rcx, 0x20e0(%rsp)
movl %eax, 0x20dc(%rsp)
movq 0x20e0(%rsp), %rax
movq %rax, 0x3f8(%rsp)
movb $0x0, 0x20db(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x20dc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x11b8(%rsp), %r10
movq %r10, 0x3a58(%rsp)
movl %r9d, 0x3a54(%rsp)
movl %r8d, 0x3a50(%rsp)
movl %edi, 0x3a4c(%rsp)
movq %rsi, 0x3a40(%rsp)
movq %rdx, 0x3a38(%rsp)
movl %ecx, 0x3a34(%rsp)
movq %rax, 0x3a28(%rsp)
movq 0x3a58(%rsp), %rcx
movq %rcx, 0x3f0(%rsp)
movq 0x3a40(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3a38(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3a34(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3a28(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3a54(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3a50(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3a4c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3cf0(%rsp)
movl $0x10, 0x3cec(%rsp)
movq 0x3cf0(%rsp), %rax
movslq 0x3cec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3f8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x11e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11fa2ed
movq 0x3f8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x11f8(%rsp)
movb $0x1, 0x20db(%rsp)
testb $0x1, 0x20db(%rsp)
jne 0x11fa428
leaq 0x11b8(%rsp), %rax
movq %rax, 0x2520(%rsp)
movq 0x2520(%rsp), %rax
movq %rax, 0x4950(%rsp)
movq 0x4950(%rsp), %rax
movq %rax, 0x3e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11fa3cb
movq 0x3e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x494c(%rsp) # imm = 0xFFFFFFFF
movl 0x494c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4948(%rsp)
cmpl $0x1, 0x4948(%rsp)
jne 0x11fa3cb
movq 0x3e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11fa39c
movq 0x3e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11fa39a
jmp 0x11fa3c9
movq 0x3e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4b98(%rsp)
cmpq $0x0, 0x4b98(%rsp)
je 0x11fa3c7
movq 0x4b98(%rsp), %rdi
callq 0x5f480
jmp 0x11fa3c9
jmp 0x11fa3cb
movq 0x3e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11fa426
movq %rax, %rdi
callq 0x678a0
jmp 0x11fa428
leaq 0x11b8(%rsp), %rax
movq %rax, 0x2388(%rsp)
movq 0x2388(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e0(%rsp)
leaq 0x11b8(%rsp), %rax
movq %rax, 0x27d0(%rsp)
movq 0x27d0(%rsp), %rax
movq %rax, 0x43f0(%rsp)
movq 0x43f0(%rsp), %rax
movq %rax, 0x3d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11fa513
movq 0x3d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x43ec(%rsp) # imm = 0xFFFFFFFF
movl 0x43ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x43e8(%rsp)
cmpl $0x1, 0x43e8(%rsp)
jne 0x11fa513
movq 0x3d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11fa4e4
movq 0x3d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11fa4e2
jmp 0x11fa511
movq 0x3d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4e48(%rsp)
cmpq $0x0, 0x4e48(%rsp)
je 0x11fa50f
movq 0x4e48(%rsp), %rdi
callq 0x5f480
jmp 0x11fa511
jmp 0x11fa513
movq 0x3d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11fa56e
movq %rax, %rdi
callq 0x678a0
movq 0x3e0(%rsp), %rax
movq %rax, 0x1200(%rsp)
movq 0x1f18(%rsp), %rcx
movl 0x125c(%rsp), %eax
leaq 0x1168(%rsp), %rdx
movq %rdx, 0x2a40(%rsp)
movq %rcx, 0x2a38(%rsp)
movl %eax, 0x2a34(%rsp)
movq 0x2a38(%rsp), %rax
movq %rax, 0x3d0(%rsp)
movb $0x0, 0x2a33(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2a34(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1168(%rsp), %r10
movq %r10, 0x32e8(%rsp)
movl %r9d, 0x32e4(%rsp)
movl %r8d, 0x32e0(%rsp)
movl %edi, 0x32dc(%rsp)
movq %rsi, 0x32d0(%rsp)
movq %rdx, 0x32c8(%rsp)
movl %ecx, 0x32c4(%rsp)
movq %rax, 0x32b8(%rsp)
movq 0x32e8(%rsp), %rcx
movq %rcx, 0x3c8(%rsp)
movq 0x32d0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x32c8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x32c4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x32b8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x32e4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x32e0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x32dc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3f10(%rsp)
movl $0x10, 0x3f0c(%rsp)
movq 0x3f10(%rsp), %rax
movslq 0x3f0c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3f0c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3d0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1190(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11fa73a
movq 0x3d0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x11a8(%rsp)
movb $0x1, 0x2a33(%rsp)
testb $0x1, 0x2a33(%rsp)
jne 0x11fa875
leaq 0x1168(%rsp), %rax
movq %rax, 0x2a48(%rsp)
movq 0x2a48(%rsp), %rax
movq %rax, 0x40e0(%rsp)
movq 0x40e0(%rsp), %rax
movq %rax, 0x3c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11fa818
movq 0x3c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40dc(%rsp) # imm = 0xFFFFFFFF
movl 0x40dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40d8(%rsp)
cmpl $0x1, 0x40d8(%rsp)
jne 0x11fa818
movq 0x3c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11fa7e9
movq 0x3c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11fa7e7
jmp 0x11fa816
movq 0x3c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4fd0(%rsp)
cmpq $0x0, 0x4fd0(%rsp)
je 0x11fa814
movq 0x4fd0(%rsp), %rdi
callq 0x5f480
jmp 0x11fa816
jmp 0x11fa818
movq 0x3c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11fa873
movq %rax, %rdi
callq 0x678a0
jmp 0x11fa875
leaq 0x1168(%rsp), %rax
movq %rax, 0x2c68(%rsp)
movq 0x2c68(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3b8(%rsp)
leaq 0x1168(%rsp), %rax
movq %rax, 0x27e0(%rsp)
movq 0x27e0(%rsp), %rax
movq %rax, 0x43d0(%rsp)
movq 0x43d0(%rsp), %rax
movq %rax, 0x3b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11fa960
movq 0x3b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x43cc(%rsp) # imm = 0xFFFFFFFF
movl 0x43cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x43c8(%rsp)
cmpl $0x1, 0x43c8(%rsp)
jne 0x11fa960
movq 0x3b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11fa931
movq 0x3b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11fa92f
jmp 0x11fa95e
movq 0x3b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4e58(%rsp)
cmpq $0x0, 0x4e58(%rsp)
je 0x11fa95c
movq 0x4e58(%rsp), %rdi
callq 0x5f480
jmp 0x11fa95e
jmp 0x11fa960
movq 0x3b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11fa9bb
movq %rax, %rdi
callq 0x678a0
movq 0x3b8(%rsp), %rax
movq %rax, 0x11b0(%rsp)
movl $0x0, 0x1164(%rsp)
movl 0x1164(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x11faa49
movq 0x1250(%rsp), %rsi
movslq 0x1164(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1200(%rsp), %rdx
movslq 0x1164(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1f0f(%rsp), %rdi
callq 0x1278000
movq 0x11b0(%rsp), %rax
movslq 0x1164(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1164(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1164(%rsp)
jmp 0x11fa9d6
jmp 0x11faa4b
movl 0x125c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x125c(%rsp)
jmp 0x11f9cd0
movl $0x0, 0x1f34(%rsp)
jmp 0x12015a5
movq 0x1f18(%rsp), %rdi
movl 0x1f08(%rsp), %esi
movl 0x1f04(%rsp), %edx
movl 0x1efc(%rsp), %ecx
movq 0x1ef0(%rsp), %r8
movq 0x1f10(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f18(%rsp), %rax
movq %rax, 0x1f98(%rsp)
movq 0x1f98(%rsp), %rcx
movq %rcx, 0x3a0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x3af(%rsp)
je 0x11fab08
movq 0x3a0(%rsp), %rax
movq %rax, 0x2f40(%rsp)
movq 0x2f40(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x3af(%rsp)
movb 0x3af(%rsp), %al
testb $0x1, %al
jne 0x11fab15
jmp 0x11fab25
movl $0xffffff9c, 0x1f34(%rsp) # imm = 0xFFFFFF9C
jmp 0x12015a5
movq 0x1f20(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x11fb565
movl $0x0, 0x1160(%rsp)
movl 0x1160(%rsp), %eax
cmpl 0x1efc(%rsp), %eax
jge 0x11fb555
movq 0x1f28(%rsp), %rcx
movl 0x1160(%rsp), %eax
leaq 0x1110(%rsp), %rdx
movq %rdx, 0x20d0(%rsp)
movq %rcx, 0x20c8(%rsp)
movl %eax, 0x20c4(%rsp)
movq 0x20c8(%rsp), %rax
movq %rax, 0x398(%rsp)
movb $0x0, 0x20c3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x20c4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1110(%rsp), %r10
movq %r10, 0x3a90(%rsp)
movl %r9d, 0x3a8c(%rsp)
movl %r8d, 0x3a88(%rsp)
movl %edi, 0x3a84(%rsp)
movq %rsi, 0x3a78(%rsp)
movq %rdx, 0x3a70(%rsp)
movl %ecx, 0x3a6c(%rsp)
movq %rax, 0x3a60(%rsp)
movq 0x3a90(%rsp), %rcx
movq %rcx, 0x390(%rsp)
movq 0x3a78(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3a70(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3a6c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3a60(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3a8c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3a88(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3a84(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ce0(%rsp)
movl $0x10, 0x3cdc(%rsp)
movq 0x3ce0(%rsp), %rax
movslq 0x3cdc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cdc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x398(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1138(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11fad12
movq 0x398(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1150(%rsp)
movb $0x1, 0x20c3(%rsp)
testb $0x1, 0x20c3(%rsp)
jne 0x11fae4d
leaq 0x1110(%rsp), %rax
movq %rax, 0x2528(%rsp)
movq 0x2528(%rsp), %rax
movq %rax, 0x4940(%rsp)
movq 0x4940(%rsp), %rax
movq %rax, 0x388(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11fadf0
movq 0x388(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x493c(%rsp) # imm = 0xFFFFFFFF
movl 0x493c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4938(%rsp)
cmpl $0x1, 0x4938(%rsp)
jne 0x11fadf0
movq 0x388(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11fadc1
movq 0x388(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11fadbf
jmp 0x11fadee
movq 0x388(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4ba0(%rsp)
cmpq $0x0, 0x4ba0(%rsp)
je 0x11fadec
movq 0x4ba0(%rsp), %rdi
callq 0x5f480
jmp 0x11fadee
jmp 0x11fadf0
movq 0x388(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11fae4b
movq %rax, %rdi
callq 0x678a0
jmp 0x11fae4d
leaq 0x1110(%rsp), %rax
movq %rax, 0x2380(%rsp)
movq 0x2380(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x380(%rsp)
leaq 0x1110(%rsp), %rax
movq %rax, 0x27f0(%rsp)
movq 0x27f0(%rsp), %rax
movq %rax, 0x43b0(%rsp)
movq 0x43b0(%rsp), %rax
movq %rax, 0x378(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11faf38
movq 0x378(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x43ac(%rsp) # imm = 0xFFFFFFFF
movl 0x43ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x43a8(%rsp)
cmpl $0x1, 0x43a8(%rsp)
jne 0x11faf38
movq 0x378(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11faf09
movq 0x378(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11faf07
jmp 0x11faf36
movq 0x378(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4e68(%rsp)
cmpq $0x0, 0x4e68(%rsp)
je 0x11faf34
movq 0x4e68(%rsp), %rdi
callq 0x5f480
jmp 0x11faf36
jmp 0x11faf38
movq 0x378(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11faf93
movq %rax, %rdi
callq 0x678a0
movq 0x380(%rsp), %rax
movq %rax, 0x1158(%rsp)
movq 0x1f20(%rsp), %rcx
movl 0x1160(%rsp), %eax
movq %rcx, 0x2d08(%rsp)
movl %eax, 0x2d04(%rsp)
movq 0x2d08(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2d04(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x1108(%rsp)
movq 0x1f18(%rsp), %rcx
movl 0x1160(%rsp), %eax
leaq 0x10b8(%rsp), %rdx
movq %rdx, 0x2a20(%rsp)
movq %rcx, 0x2a18(%rsp)
movl %eax, 0x2a14(%rsp)
movq 0x2a18(%rsp), %rax
movq %rax, 0x370(%rsp)
movb $0x0, 0x2a13(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2a14(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x10b8(%rsp), %r10
movq %r10, 0x3320(%rsp)
movl %r9d, 0x331c(%rsp)
movl %r8d, 0x3318(%rsp)
movl %edi, 0x3314(%rsp)
movq %rsi, 0x3308(%rsp)
movq %rdx, 0x3300(%rsp)
movl %ecx, 0x32fc(%rsp)
movq %rax, 0x32f0(%rsp)
movq 0x3320(%rsp), %rcx
movq %rcx, 0x368(%rsp)
movq 0x3308(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3300(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x32fc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x32f0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x331c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3318(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3314(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3f00(%rsp)
movl $0x10, 0x3efc(%rsp)
movq 0x3f00(%rsp), %rax
movslq 0x3efc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3efc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x370(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x10e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11fb1a8
movq 0x370(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x10f8(%rsp)
movb $0x1, 0x2a13(%rsp)
testb $0x1, 0x2a13(%rsp)
jne 0x11fb2e3
leaq 0x10b8(%rsp), %rax
movq %rax, 0x2a28(%rsp)
movq 0x2a28(%rsp), %rax
movq %rax, 0x40f0(%rsp)
movq 0x40f0(%rsp), %rax
movq %rax, 0x360(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11fb286
movq 0x360(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40ec(%rsp) # imm = 0xFFFFFFFF
movl 0x40ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40e8(%rsp)
cmpl $0x1, 0x40e8(%rsp)
jne 0x11fb286
movq 0x360(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11fb257
movq 0x360(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11fb255
jmp 0x11fb284
movq 0x360(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4fc8(%rsp)
cmpq $0x0, 0x4fc8(%rsp)
je 0x11fb282
movq 0x4fc8(%rsp), %rdi
callq 0x5f480
jmp 0x11fb284
jmp 0x11fb286
movq 0x360(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11fb2e1
movq %rax, %rdi
callq 0x678a0
jmp 0x11fb2e3
leaq 0x10b8(%rsp), %rax
movq %rax, 0x2c60(%rsp)
movq 0x2c60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x358(%rsp)
leaq 0x10b8(%rsp), %rax
movq %rax, 0x2800(%rsp)
movq 0x2800(%rsp), %rax
movq %rax, 0x4390(%rsp)
movq 0x4390(%rsp), %rax
movq %rax, 0x350(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11fb3ce
movq 0x350(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x438c(%rsp) # imm = 0xFFFFFFFF
movl 0x438c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4388(%rsp)
cmpl $0x1, 0x4388(%rsp)
jne 0x11fb3ce
movq 0x350(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11fb39f
movq 0x350(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11fb39d
jmp 0x11fb3cc
movq 0x350(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4e78(%rsp)
cmpq $0x0, 0x4e78(%rsp)
je 0x11fb3ca
movq 0x4e78(%rsp), %rdi
callq 0x5f480
jmp 0x11fb3cc
jmp 0x11fb3ce
movq 0x350(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11fb429
movq %rax, %rdi
callq 0x678a0
movq 0x358(%rsp), %rax
movq %rax, 0x1100(%rsp)
movl $0x0, 0x10b4(%rsp)
movl 0x10b4(%rsp), %eax
cmpl 0x1f04(%rsp), %eax
jge 0x11fb53d
movq 0x1108(%rsp), %rax
movslq 0x10b4(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x10b0(%rsp)
movl $0x0, 0x10ac(%rsp)
movl 0x10ac(%rsp), %eax
cmpl 0x1f08(%rsp), %eax
jge 0x11fb4e5
movq 0x1158(%rsp), %rsi
movslq 0x10ac(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1f0f(%rsp), %rdi
leaq 0x10b0(%rsp), %rdx
callq 0x1278000
movq 0x1100(%rsp), %rax
movslq 0x10ac(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x10ac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x10ac(%rsp)
jmp 0x11fb481
movl 0x1f08(%rsp), %ecx
movq 0x1158(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1158(%rsp)
movl 0x1f08(%rsp), %ecx
movq 0x1100(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1100(%rsp)
movl 0x10b4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x10b4(%rsp)
jmp 0x11fb444
jmp 0x11fb53f
movl 0x1160(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1160(%rsp)
jmp 0x11fab42
movl $0x0, 0x1f34(%rsp)
jmp 0x12015a5
movq 0x1f20(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x11fc8a7
movq 0x1f20(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x11fbf16
movq 0x1f20(%rsp), %rax
movq %rax, 0x2e58(%rsp)
movq $0x0, 0x2e50(%rsp)
movq 0x2e58(%rsp), %rax
movq (%rax), %rax
movq 0x2e50(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x10a8(%rsp)
movl $0x0, 0x10a4(%rsp)
movl 0x10a4(%rsp), %eax
cmpl 0x1efc(%rsp), %eax
jge 0x11fbf06
movq 0x1f28(%rsp), %rcx
movl 0x10a4(%rsp), %eax
leaq 0x1050(%rsp), %rdx
movq %rdx, 0x20b8(%rsp)
movq %rcx, 0x20b0(%rsp)
movl %eax, 0x20ac(%rsp)
movq 0x20b0(%rsp), %rax
movq %rax, 0x348(%rsp)
movb $0x0, 0x20ab(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x20ac(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1050(%rsp), %r10
movq %r10, 0x3ac8(%rsp)
movl %r9d, 0x3ac4(%rsp)
movl %r8d, 0x3ac0(%rsp)
movl %edi, 0x3abc(%rsp)
movq %rsi, 0x3ab0(%rsp)
movq %rdx, 0x3aa8(%rsp)
movl %ecx, 0x3aa4(%rsp)
movq %rax, 0x3a98(%rsp)
movq 0x3ac8(%rsp), %rcx
movq %rcx, 0x340(%rsp)
movq 0x3ab0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3aa8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3aa4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3a98(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3ac4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3ac0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3abc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3cd0(%rsp)
movl $0x10, 0x3ccc(%rsp)
movq 0x3cd0(%rsp), %rax
movslq 0x3ccc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3ccc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x348(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1078(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11fb7a1
movq 0x348(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1090(%rsp)
movb $0x1, 0x20ab(%rsp)
testb $0x1, 0x20ab(%rsp)
jne 0x11fb8dc
leaq 0x1050(%rsp), %rax
movq %rax, 0x2530(%rsp)
movq 0x2530(%rsp), %rax
movq %rax, 0x4930(%rsp)
movq 0x4930(%rsp), %rax
movq %rax, 0x338(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11fb87f
movq 0x338(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x492c(%rsp) # imm = 0xFFFFFFFF
movl 0x492c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4928(%rsp)
cmpl $0x1, 0x4928(%rsp)
jne 0x11fb87f
movq 0x338(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11fb850
movq 0x338(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11fb84e
jmp 0x11fb87d
movq 0x338(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4ba8(%rsp)
cmpq $0x0, 0x4ba8(%rsp)
je 0x11fb87b
movq 0x4ba8(%rsp), %rdi
callq 0x5f480
jmp 0x11fb87d
jmp 0x11fb87f
movq 0x338(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11fb8da
movq %rax, %rdi
callq 0x678a0
jmp 0x11fb8dc
leaq 0x1050(%rsp), %rax
movq %rax, 0x2378(%rsp)
movq 0x2378(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x330(%rsp)
leaq 0x1050(%rsp), %rax
movq %rax, 0x2810(%rsp)
movq 0x2810(%rsp), %rax
movq %rax, 0x4370(%rsp)
movq 0x4370(%rsp), %rax
movq %rax, 0x328(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11fb9c7
movq 0x328(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x436c(%rsp) # imm = 0xFFFFFFFF
movl 0x436c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4368(%rsp)
cmpl $0x1, 0x4368(%rsp)
jne 0x11fb9c7
movq 0x328(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11fb998
movq 0x328(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11fb996
jmp 0x11fb9c5
movq 0x328(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4e88(%rsp)
cmpq $0x0, 0x4e88(%rsp)
je 0x11fb9c3
movq 0x4e88(%rsp), %rdi
callq 0x5f480
jmp 0x11fb9c5
jmp 0x11fb9c7
movq 0x328(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11fba22
movq %rax, %rdi
callq 0x678a0
movq 0x330(%rsp), %rax
movq %rax, 0x1098(%rsp)
movq 0x1f18(%rsp), %rcx
movl 0x10a4(%rsp), %eax
leaq 0x1000(%rsp), %rdx
movq %rdx, 0x2a00(%rsp)
movq %rcx, 0x29f8(%rsp)
movl %eax, 0x29f4(%rsp)
movq 0x29f8(%rsp), %rax
movq %rax, 0x320(%rsp)
movb $0x0, 0x29f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x29f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1000(%rsp), %r10
movq %r10, 0x3358(%rsp)
movl %r9d, 0x3354(%rsp)
movl %r8d, 0x3350(%rsp)
movl %edi, 0x334c(%rsp)
movq %rsi, 0x3340(%rsp)
movq %rdx, 0x3338(%rsp)
movl %ecx, 0x3334(%rsp)
movq %rax, 0x3328(%rsp)
movq 0x3358(%rsp), %rcx
movq %rcx, 0x318(%rsp)
movq 0x3340(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3338(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3334(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3328(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3354(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3350(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x334c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ef0(%rsp)
movl $0x10, 0x3eec(%rsp)
movq 0x3ef0(%rsp), %rax
movslq 0x3eec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3eec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x320(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1028(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11fbbee
movq 0x320(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1040(%rsp)
movb $0x1, 0x29f3(%rsp)
testb $0x1, 0x29f3(%rsp)
jne 0x11fbd29
leaq 0x1000(%rsp), %rax
movq %rax, 0x2a08(%rsp)
movq 0x2a08(%rsp), %rax
movq %rax, 0x4100(%rsp)
movq 0x4100(%rsp), %rax
movq %rax, 0x310(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11fbccc
movq 0x310(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40fc(%rsp) # imm = 0xFFFFFFFF
movl 0x40fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40f8(%rsp)
cmpl $0x1, 0x40f8(%rsp)
jne 0x11fbccc
movq 0x310(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11fbc9d
movq 0x310(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11fbc9b
jmp 0x11fbcca
movq 0x310(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4fc0(%rsp)
cmpq $0x0, 0x4fc0(%rsp)
je 0x11fbcc8
movq 0x4fc0(%rsp), %rdi
callq 0x5f480
jmp 0x11fbcca
jmp 0x11fbccc
movq 0x310(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11fbd27
movq %rax, %rdi
callq 0x678a0
jmp 0x11fbd29
leaq 0x1000(%rsp), %rax
movq %rax, 0x2c58(%rsp)
movq 0x2c58(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x308(%rsp)
leaq 0x1000(%rsp), %rax
movq %rax, 0x2820(%rsp)
movq 0x2820(%rsp), %rax
movq %rax, 0x4350(%rsp)
movq 0x4350(%rsp), %rax
movq %rax, 0x300(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11fbe14
movq 0x300(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x434c(%rsp) # imm = 0xFFFFFFFF
movl 0x434c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4348(%rsp)
cmpl $0x1, 0x4348(%rsp)
jne 0x11fbe14
movq 0x300(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11fbde5
movq 0x300(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11fbde3
jmp 0x11fbe12
movq 0x300(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4e98(%rsp)
cmpq $0x0, 0x4e98(%rsp)
je 0x11fbe10
movq 0x4e98(%rsp), %rdi
callq 0x5f480
jmp 0x11fbe12
jmp 0x11fbe14
movq 0x300(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11fbe6f
movq %rax, %rdi
callq 0x678a0
movq 0x308(%rsp), %rax
movq %rax, 0x1048(%rsp)
movl $0x0, 0xffc(%rsp)
movl 0xffc(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x11fbeee
movq 0x1098(%rsp), %rsi
movslq 0xffc(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1f0f(%rsp), %rdi
leaq 0x10a8(%rsp), %rdx
callq 0x1278000
movq 0x1048(%rsp), %rax
movslq 0xffc(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xffc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xffc(%rsp)
jmp 0x11fbe8a
jmp 0x11fbef0
movl 0x10a4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x10a4(%rsp)
jmp 0x11fb5d1
movl $0x0, 0x1f34(%rsp)
jmp 0x12015a5
movl $0x0, 0xff8(%rsp)
movl 0xff8(%rsp), %eax
cmpl 0x1efc(%rsp), %eax
jge 0x11fc897
movq 0x1f28(%rsp), %rcx
movl 0xff8(%rsp), %eax
leaq 0xfa8(%rsp), %rdx
movq %rdx, 0x20a0(%rsp)
movq %rcx, 0x2098(%rsp)
movl %eax, 0x2094(%rsp)
movq 0x2098(%rsp), %rax
movq %rax, 0x2f8(%rsp)
movb $0x0, 0x2093(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2094(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xfa8(%rsp), %r10
movq %r10, 0x3b00(%rsp)
movl %r9d, 0x3afc(%rsp)
movl %r8d, 0x3af8(%rsp)
movl %edi, 0x3af4(%rsp)
movq %rsi, 0x3ae8(%rsp)
movq %rdx, 0x3ae0(%rsp)
movl %ecx, 0x3adc(%rsp)
movq %rax, 0x3ad0(%rsp)
movq 0x3b00(%rsp), %rcx
movq %rcx, 0x2f0(%rsp)
movq 0x3ae8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3ae0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3adc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3ad0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3afc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3af8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3af4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3cc0(%rsp)
movl $0x10, 0x3cbc(%rsp)
movq 0x3cc0(%rsp), %rax
movslq 0x3cbc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cbc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2f8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xfd0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11fc0f1
movq 0x2f8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xfe8(%rsp)
movb $0x1, 0x2093(%rsp)
testb $0x1, 0x2093(%rsp)
jne 0x11fc22c
leaq 0xfa8(%rsp), %rax
movq %rax, 0x2538(%rsp)
movq 0x2538(%rsp), %rax
movq %rax, 0x4920(%rsp)
movq 0x4920(%rsp), %rax
movq %rax, 0x2e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11fc1cf
movq 0x2e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x491c(%rsp) # imm = 0xFFFFFFFF
movl 0x491c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4918(%rsp)
cmpl $0x1, 0x4918(%rsp)
jne 0x11fc1cf
movq 0x2e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11fc1a0
movq 0x2e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11fc19e
jmp 0x11fc1cd
movq 0x2e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4bb0(%rsp)
cmpq $0x0, 0x4bb0(%rsp)
je 0x11fc1cb
movq 0x4bb0(%rsp), %rdi
callq 0x5f480
jmp 0x11fc1cd
jmp 0x11fc1cf
movq 0x2e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11fc22a
movq %rax, %rdi
callq 0x678a0
jmp 0x11fc22c
leaq 0xfa8(%rsp), %rax
movq %rax, 0x2370(%rsp)
movq 0x2370(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2e0(%rsp)
leaq 0xfa8(%rsp), %rax
movq %rax, 0x2830(%rsp)
movq 0x2830(%rsp), %rax
movq %rax, 0x4330(%rsp)
movq 0x4330(%rsp), %rax
movq %rax, 0x2d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11fc317
movq 0x2d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x432c(%rsp) # imm = 0xFFFFFFFF
movl 0x432c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4328(%rsp)
cmpl $0x1, 0x4328(%rsp)
jne 0x11fc317
movq 0x2d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11fc2e8
movq 0x2d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11fc2e6
jmp 0x11fc315
movq 0x2d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4ea8(%rsp)
cmpq $0x0, 0x4ea8(%rsp)
je 0x11fc313
movq 0x4ea8(%rsp), %rdi
callq 0x5f480
jmp 0x11fc315
jmp 0x11fc317
movq 0x2d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11fc372
movq %rax, %rdi
callq 0x678a0
movq 0x2e0(%rsp), %rax
movq %rax, 0xff0(%rsp)
movq 0x1f20(%rsp), %rcx
movslq 0xff8(%rsp), %rax
movq %rcx, 0x2e48(%rsp)
movq %rax, 0x2e40(%rsp)
movq 0x2e48(%rsp), %rax
movq (%rax), %rax
movq 0x2e40(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xfa4(%rsp)
movq 0x1f18(%rsp), %rcx
movl 0xff8(%rsp), %eax
leaq 0xf50(%rsp), %rdx
movq %rdx, 0x29e0(%rsp)
movq %rcx, 0x29d8(%rsp)
movl %eax, 0x29d4(%rsp)
movq 0x29d8(%rsp), %rax
movq %rax, 0x2d0(%rsp)
movb $0x0, 0x29d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x29d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xf50(%rsp), %r10
movq %r10, 0x3390(%rsp)
movl %r9d, 0x338c(%rsp)
movl %r8d, 0x3388(%rsp)
movl %edi, 0x3384(%rsp)
movq %rsi, 0x3378(%rsp)
movq %rdx, 0x3370(%rsp)
movl %ecx, 0x336c(%rsp)
movq %rax, 0x3360(%rsp)
movq 0x3390(%rsp), %rcx
movq %rcx, 0x2c8(%rsp)
movq 0x3378(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3370(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x336c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3360(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x338c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3388(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3384(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ee0(%rsp)
movl $0x10, 0x3edc(%rsp)
movq 0x3ee0(%rsp), %rax
movslq 0x3edc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3edc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2d0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf78(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11fc57f
movq 0x2d0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xf90(%rsp)
movb $0x1, 0x29d3(%rsp)
testb $0x1, 0x29d3(%rsp)
jne 0x11fc6ba
leaq 0xf50(%rsp), %rax
movq %rax, 0x29e8(%rsp)
movq 0x29e8(%rsp), %rax
movq %rax, 0x4110(%rsp)
movq 0x4110(%rsp), %rax
movq %rax, 0x2c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11fc65d
movq 0x2c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x410c(%rsp) # imm = 0xFFFFFFFF
movl 0x410c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4108(%rsp)
cmpl $0x1, 0x4108(%rsp)
jne 0x11fc65d
movq 0x2c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11fc62e
movq 0x2c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11fc62c
jmp 0x11fc65b
movq 0x2c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4fb8(%rsp)
cmpq $0x0, 0x4fb8(%rsp)
je 0x11fc659
movq 0x4fb8(%rsp), %rdi
callq 0x5f480
jmp 0x11fc65b
jmp 0x11fc65d
movq 0x2c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11fc6b8
movq %rax, %rdi
callq 0x678a0
jmp 0x11fc6ba
leaq 0xf50(%rsp), %rax
movq %rax, 0x2c50(%rsp)
movq 0x2c50(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2b8(%rsp)
leaq 0xf50(%rsp), %rax
movq %rax, 0x2840(%rsp)
movq 0x2840(%rsp), %rax
movq %rax, 0x4310(%rsp)
movq 0x4310(%rsp), %rax
movq %rax, 0x2b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11fc7a5
movq 0x2b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x430c(%rsp) # imm = 0xFFFFFFFF
movl 0x430c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4308(%rsp)
cmpl $0x1, 0x4308(%rsp)
jne 0x11fc7a5
movq 0x2b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11fc776
movq 0x2b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11fc774
jmp 0x11fc7a3
movq 0x2b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4eb8(%rsp)
cmpq $0x0, 0x4eb8(%rsp)
je 0x11fc7a1
movq 0x4eb8(%rsp), %rdi
callq 0x5f480
jmp 0x11fc7a3
jmp 0x11fc7a5
movq 0x2b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11fc800
movq %rax, %rdi
callq 0x678a0
movq 0x2b8(%rsp), %rax
movq %rax, 0xf98(%rsp)
movl $0x0, 0xf4c(%rsp)
movl 0xf4c(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x11fc87f
movq 0xff0(%rsp), %rsi
movslq 0xf4c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1f0f(%rsp), %rdi
leaq 0xfa4(%rsp), %rdx
callq 0x1278000
movq 0xf98(%rsp), %rax
movslq 0xf4c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xf4c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xf4c(%rsp)
jmp 0x11fc81b
jmp 0x11fc881
movl 0xff8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xff8(%rsp)
jmp 0x11fbf21
movl $0x0, 0x1f34(%rsp)
jmp 0x12015a5
jmp 0x1201598
movq 0x1f28(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x11fe402
movq 0x1f20(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x11fd3f5
movq 0x1f18(%rsp), %rdi
movl 0x1eec(%rsp), %esi
movl 0x1ee8(%rsp), %edx
movl 0x1ee4(%rsp), %ecx
movl 0x1ee0(%rsp), %r8d
movq 0x1ef0(%rsp), %r9
movq 0x1f10(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6fb30
movq 0x1f18(%rsp), %rax
movq %rax, 0x1f90(%rsp)
movq 0x1f90(%rsp), %rcx
movq %rcx, 0x2a0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x2af(%rsp)
je 0x11fc973
movq 0x2a0(%rsp), %rax
movq %rax, 0x2f48(%rsp)
movq 0x2f48(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x2af(%rsp)
movb 0x2af(%rsp), %al
testb $0x1, %al
jne 0x11fc980
jmp 0x11fc990
movl $0xffffff9c, 0x1f34(%rsp) # imm = 0xFFFFFF9C
jmp 0x12015a5
movl $0x0, 0xf48(%rsp)
movl 0xf48(%rsp), %eax
cmpl 0x1ee0(%rsp), %eax
jge 0x11fd3e5
movq 0x1f28(%rsp), %rcx
movl 0xf48(%rsp), %eax
movq %rcx, 0x2cf8(%rsp)
movl %eax, 0x2cf4(%rsp)
movq 0x2cf8(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2cf4(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xf40(%rsp)
movq 0x1f20(%rsp), %rcx
movl 0xf48(%rsp), %eax
leaq 0xef0(%rsp), %rdx
movq %rdx, 0x2088(%rsp)
movq %rcx, 0x2080(%rsp)
movl %eax, 0x207c(%rsp)
movq 0x2080(%rsp), %rax
movq %rax, 0x298(%rsp)
movb $0x0, 0x207b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x207c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xef0(%rsp), %r10
movq %r10, 0x3b38(%rsp)
movl %r9d, 0x3b34(%rsp)
movl %r8d, 0x3b30(%rsp)
movl %edi, 0x3b2c(%rsp)
movq %rsi, 0x3b20(%rsp)
movq %rdx, 0x3b18(%rsp)
movl %ecx, 0x3b14(%rsp)
movq %rax, 0x3b08(%rsp)
movq 0x3b38(%rsp), %rcx
movq %rcx, 0x290(%rsp)
movq 0x3b20(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3b18(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3b14(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3b08(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3b34(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3b30(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3b2c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3cb0(%rsp)
movl $0x10, 0x3cac(%rsp)
movq 0x3cb0(%rsp), %rax
movslq 0x3cac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x298(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf18(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11fcbb4
movq 0x298(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xf30(%rsp)
movb $0x1, 0x207b(%rsp)
testb $0x1, 0x207b(%rsp)
jne 0x11fccef
leaq 0xef0(%rsp), %rax
movq %rax, 0x2540(%rsp)
movq 0x2540(%rsp), %rax
movq %rax, 0x4910(%rsp)
movq 0x4910(%rsp), %rax
movq %rax, 0x288(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11fcc92
movq 0x288(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x490c(%rsp) # imm = 0xFFFFFFFF
movl 0x490c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4908(%rsp)
cmpl $0x1, 0x4908(%rsp)
jne 0x11fcc92
movq 0x288(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11fcc63
movq 0x288(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11fcc61
jmp 0x11fcc90
movq 0x288(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4bb8(%rsp)
cmpq $0x0, 0x4bb8(%rsp)
je 0x11fcc8e
movq 0x4bb8(%rsp), %rdi
callq 0x5f480
jmp 0x11fcc90
jmp 0x11fcc92
movq 0x288(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11fcced
movq %rax, %rdi
callq 0x678a0
jmp 0x11fccef
leaq 0xef0(%rsp), %rax
movq %rax, 0x2368(%rsp)
movq 0x2368(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x280(%rsp)
leaq 0xef0(%rsp), %rax
movq %rax, 0x2850(%rsp)
movq 0x2850(%rsp), %rax
movq %rax, 0x42f0(%rsp)
movq 0x42f0(%rsp), %rax
movq %rax, 0x278(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11fcdda
movq 0x278(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42ec(%rsp) # imm = 0xFFFFFFFF
movl 0x42ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42e8(%rsp)
cmpl $0x1, 0x42e8(%rsp)
jne 0x11fcdda
movq 0x278(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11fcdab
movq 0x278(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11fcda9
jmp 0x11fcdd8
movq 0x278(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4ec8(%rsp)
cmpq $0x0, 0x4ec8(%rsp)
je 0x11fcdd6
movq 0x4ec8(%rsp), %rdi
callq 0x5f480
jmp 0x11fcdd8
jmp 0x11fcdda
movq 0x278(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11fce35
movq %rax, %rdi
callq 0x678a0
movq 0x280(%rsp), %rax
movq %rax, 0xf38(%rsp)
movq 0x1f18(%rsp), %rcx
movl 0xf48(%rsp), %eax
leaq 0xea0(%rsp), %rdx
movq %rdx, 0x29c0(%rsp)
movq %rcx, 0x29b8(%rsp)
movl %eax, 0x29b4(%rsp)
movq 0x29b8(%rsp), %rax
movq %rax, 0x270(%rsp)
movb $0x0, 0x29b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x29b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xea0(%rsp), %r10
movq %r10, 0x33c8(%rsp)
movl %r9d, 0x33c4(%rsp)
movl %r8d, 0x33c0(%rsp)
movl %edi, 0x33bc(%rsp)
movq %rsi, 0x33b0(%rsp)
movq %rdx, 0x33a8(%rsp)
movl %ecx, 0x33a4(%rsp)
movq %rax, 0x3398(%rsp)
movq 0x33c8(%rsp), %rcx
movq %rcx, 0x268(%rsp)
movq 0x33b0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x33a8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x33a4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3398(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x33c4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x33c0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x33bc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ed0(%rsp)
movl $0x10, 0x3ecc(%rsp)
movq 0x3ed0(%rsp), %rax
movslq 0x3ecc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3ecc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x270(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xec8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11fd001
movq 0x270(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xee0(%rsp)
movb $0x1, 0x29b3(%rsp)
testb $0x1, 0x29b3(%rsp)
jne 0x11fd13c
leaq 0xea0(%rsp), %rax
movq %rax, 0x29c8(%rsp)
movq 0x29c8(%rsp), %rax
movq %rax, 0x4120(%rsp)
movq 0x4120(%rsp), %rax
movq %rax, 0x260(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11fd0df
movq 0x260(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x411c(%rsp) # imm = 0xFFFFFFFF
movl 0x411c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4118(%rsp)
cmpl $0x1, 0x4118(%rsp)
jne 0x11fd0df
movq 0x260(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11fd0b0
movq 0x260(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11fd0ae
jmp 0x11fd0dd
movq 0x260(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4fb0(%rsp)
cmpq $0x0, 0x4fb0(%rsp)
je 0x11fd0db
movq 0x4fb0(%rsp), %rdi
callq 0x5f480
jmp 0x11fd0dd
jmp 0x11fd0df
movq 0x260(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11fd13a
movq %rax, %rdi
callq 0x678a0
jmp 0x11fd13c
leaq 0xea0(%rsp), %rax
movq %rax, 0x2c48(%rsp)
movq 0x2c48(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x258(%rsp)
leaq 0xea0(%rsp), %rax
movq %rax, 0x2860(%rsp)
movq 0x2860(%rsp), %rax
movq %rax, 0x42d0(%rsp)
movq 0x42d0(%rsp), %rax
movq %rax, 0x250(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11fd227
movq 0x250(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42cc(%rsp) # imm = 0xFFFFFFFF
movl 0x42cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42c8(%rsp)
cmpl $0x1, 0x42c8(%rsp)
jne 0x11fd227
movq 0x250(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11fd1f8
movq 0x250(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11fd1f6
jmp 0x11fd225
movq 0x250(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4ed8(%rsp)
cmpq $0x0, 0x4ed8(%rsp)
je 0x11fd223
movq 0x4ed8(%rsp), %rdi
callq 0x5f480
jmp 0x11fd225
jmp 0x11fd227
movq 0x250(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11fd282
movq %rax, %rdi
callq 0x678a0
movq 0x258(%rsp), %rax
movq %rax, 0xee8(%rsp)
movl $0x0, 0xe9c(%rsp)
movl 0xe9c(%rsp), %eax
cmpl 0x1ee4(%rsp), %eax
jge 0x11fd3cd
movq 0xf40(%rsp), %rax
movslq 0xe9c(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xe98(%rsp)
movl $0x0, 0xe94(%rsp)
movl 0xe94(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x11fd3b5
movl $0x0, 0xe90(%rsp)
movl 0xe90(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x11fd35d
movq 0xf38(%rsp), %rdx
movslq 0xe90(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1f0f(%rsp), %rdi
leaq 0xe98(%rsp), %rsi
callq 0x1278000
movq 0xee8(%rsp), %rax
movslq 0xe90(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xe90(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xe90(%rsp)
jmp 0x11fd2f9
movl 0x1eec(%rsp), %ecx
movq 0xf38(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xf38(%rsp)
movl 0x1eec(%rsp), %ecx
movq 0xee8(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xee8(%rsp)
movl 0xe94(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xe94(%rsp)
jmp 0x11fd2da
jmp 0x11fd3b7
movl 0xe9c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xe9c(%rsp)
jmp 0x11fd29d
jmp 0x11fd3cf
movl 0xf48(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xf48(%rsp)
jmp 0x11fc99b
movl $0x0, 0x1f34(%rsp)
jmp 0x12015a5
movq 0x1f20(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x11fdee9
movq 0x1f18(%rsp), %rdi
movl 0x1eec(%rsp), %esi
movl 0x1ee8(%rsp), %edx
movl 0x1ee0(%rsp), %ecx
movq 0x1ef0(%rsp), %r8
movq 0x1f10(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f18(%rsp), %rax
movq %rax, 0x1f88(%rsp)
movq 0x1f88(%rsp), %rcx
movq %rcx, 0x240(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x24f(%rsp)
je 0x11fd49e
movq 0x240(%rsp), %rax
movq %rax, 0x2f50(%rsp)
movq 0x2f50(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x24f(%rsp)
movb 0x24f(%rsp), %al
testb $0x1, %al
jne 0x11fd4ab
jmp 0x11fd4bb
movl $0xffffff9c, 0x1f34(%rsp) # imm = 0xFFFFFF9C
jmp 0x12015a5
movl $0x0, 0xe8c(%rsp)
movl 0xe8c(%rsp), %eax
cmpl 0x1ee0(%rsp), %eax
jge 0x11fded9
movq 0x1f28(%rsp), %rcx
movl 0xe8c(%rsp), %eax
movq %rcx, 0x2ce8(%rsp)
movl %eax, 0x2ce4(%rsp)
movq 0x2ce8(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2ce4(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xe80(%rsp)
movq 0x1f20(%rsp), %rcx
movl 0xe8c(%rsp), %eax
leaq 0xe30(%rsp), %rdx
movq %rdx, 0x2070(%rsp)
movq %rcx, 0x2068(%rsp)
movl %eax, 0x2064(%rsp)
movq 0x2068(%rsp), %rax
movq %rax, 0x238(%rsp)
movb $0x0, 0x2063(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2064(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xe30(%rsp), %r10
movq %r10, 0x3b70(%rsp)
movl %r9d, 0x3b6c(%rsp)
movl %r8d, 0x3b68(%rsp)
movl %edi, 0x3b64(%rsp)
movq %rsi, 0x3b58(%rsp)
movq %rdx, 0x3b50(%rsp)
movl %ecx, 0x3b4c(%rsp)
movq %rax, 0x3b40(%rsp)
movq 0x3b70(%rsp), %rcx
movq %rcx, 0x230(%rsp)
movq 0x3b58(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3b50(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3b4c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3b40(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3b6c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3b68(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3b64(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ca0(%rsp)
movl $0x10, 0x3c9c(%rsp)
movq 0x3ca0(%rsp), %rax
movslq 0x3c9c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c9c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x238(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xe58(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11fd6df
movq 0x238(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xe70(%rsp)
movb $0x1, 0x2063(%rsp)
testb $0x1, 0x2063(%rsp)
jne 0x11fd81a
leaq 0xe30(%rsp), %rax
movq %rax, 0x2548(%rsp)
movq 0x2548(%rsp), %rax
movq %rax, 0x4900(%rsp)
movq 0x4900(%rsp), %rax
movq %rax, 0x228(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11fd7bd
movq 0x228(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x48fc(%rsp) # imm = 0xFFFFFFFF
movl 0x48fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x48f8(%rsp)
cmpl $0x1, 0x48f8(%rsp)
jne 0x11fd7bd
movq 0x228(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11fd78e
movq 0x228(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11fd78c
jmp 0x11fd7bb
movq 0x228(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4bc0(%rsp)
cmpq $0x0, 0x4bc0(%rsp)
je 0x11fd7b9
movq 0x4bc0(%rsp), %rdi
callq 0x5f480
jmp 0x11fd7bb
jmp 0x11fd7bd
movq 0x228(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11fd818
movq %rax, %rdi
callq 0x678a0
jmp 0x11fd81a
leaq 0xe30(%rsp), %rax
movq %rax, 0x2360(%rsp)
movq 0x2360(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x220(%rsp)
leaq 0xe30(%rsp), %rax
movq %rax, 0x2870(%rsp)
movq 0x2870(%rsp), %rax
movq %rax, 0x42b0(%rsp)
movq 0x42b0(%rsp), %rax
movq %rax, 0x218(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11fd905
movq 0x218(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42ac(%rsp) # imm = 0xFFFFFFFF
movl 0x42ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42a8(%rsp)
cmpl $0x1, 0x42a8(%rsp)
jne 0x11fd905
movq 0x218(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11fd8d6
movq 0x218(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11fd8d4
jmp 0x11fd903
movq 0x218(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4ee8(%rsp)
cmpq $0x0, 0x4ee8(%rsp)
je 0x11fd901
movq 0x4ee8(%rsp), %rdi
callq 0x5f480
jmp 0x11fd903
jmp 0x11fd905
movq 0x218(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11fd960
movq %rax, %rdi
callq 0x678a0
movq 0x220(%rsp), %rax
movq %rax, 0xe78(%rsp)
movq 0x1f18(%rsp), %rcx
movl 0xe8c(%rsp), %eax
leaq 0xde0(%rsp), %rdx
movq %rdx, 0x29a0(%rsp)
movq %rcx, 0x2998(%rsp)
movl %eax, 0x2994(%rsp)
movq 0x2998(%rsp), %rax
movq %rax, 0x210(%rsp)
movb $0x0, 0x2993(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2994(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xde0(%rsp), %r10
movq %r10, 0x3400(%rsp)
movl %r9d, 0x33fc(%rsp)
movl %r8d, 0x33f8(%rsp)
movl %edi, 0x33f4(%rsp)
movq %rsi, 0x33e8(%rsp)
movq %rdx, 0x33e0(%rsp)
movl %ecx, 0x33dc(%rsp)
movq %rax, 0x33d0(%rsp)
movq 0x3400(%rsp), %rcx
movq %rcx, 0x208(%rsp)
movq 0x33e8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x33e0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x33dc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x33d0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x33fc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x33f8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x33f4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ec0(%rsp)
movl $0x10, 0x3ebc(%rsp)
movq 0x3ec0(%rsp), %rax
movslq 0x3ebc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3ebc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x210(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xe08(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11fdb2c
movq 0x210(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xe20(%rsp)
movb $0x1, 0x2993(%rsp)
testb $0x1, 0x2993(%rsp)
jne 0x11fdc67
leaq 0xde0(%rsp), %rax
movq %rax, 0x29a8(%rsp)
movq 0x29a8(%rsp), %rax
movq %rax, 0x4130(%rsp)
movq 0x4130(%rsp), %rax
movq %rax, 0x200(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11fdc0a
movq 0x200(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x412c(%rsp) # imm = 0xFFFFFFFF
movl 0x412c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4128(%rsp)
cmpl $0x1, 0x4128(%rsp)
jne 0x11fdc0a
movq 0x200(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11fdbdb
movq 0x200(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11fdbd9
jmp 0x11fdc08
movq 0x200(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4fa8(%rsp)
cmpq $0x0, 0x4fa8(%rsp)
je 0x11fdc06
movq 0x4fa8(%rsp), %rdi
callq 0x5f480
jmp 0x11fdc08
jmp 0x11fdc0a
movq 0x200(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11fdc65
movq %rax, %rdi
callq 0x678a0
jmp 0x11fdc67
leaq 0xde0(%rsp), %rax
movq %rax, 0x2c40(%rsp)
movq 0x2c40(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1f8(%rsp)
leaq 0xde0(%rsp), %rax
movq %rax, 0x2880(%rsp)
movq 0x2880(%rsp), %rax
movq %rax, 0x4290(%rsp)
movq 0x4290(%rsp), %rax
movq %rax, 0x1f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11fdd52
movq 0x1f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x428c(%rsp) # imm = 0xFFFFFFFF
movl 0x428c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4288(%rsp)
cmpl $0x1, 0x4288(%rsp)
jne 0x11fdd52
movq 0x1f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11fdd23
movq 0x1f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11fdd21
jmp 0x11fdd50
movq 0x1f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4ef8(%rsp)
cmpq $0x0, 0x4ef8(%rsp)
je 0x11fdd4e
movq 0x4ef8(%rsp), %rdi
callq 0x5f480
jmp 0x11fdd50
jmp 0x11fdd52
movq 0x1f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11fddad
movq %rax, %rdi
callq 0x678a0
movq 0x1f8(%rsp), %rax
movq %rax, 0xe28(%rsp)
movl $0x0, 0xddc(%rsp)
movl 0xddc(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x11fdec1
movq 0xe80(%rsp), %rax
movslq 0xddc(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xdd8(%rsp)
movl $0x0, 0xdd4(%rsp)
movl 0xdd4(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x11fde69
movq 0xe78(%rsp), %rdx
movslq 0xdd4(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1f0f(%rsp), %rdi
leaq 0xdd8(%rsp), %rsi
callq 0x1278000
movq 0xe28(%rsp), %rax
movslq 0xdd4(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xdd4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdd4(%rsp)
jmp 0x11fde05
movl 0x1eec(%rsp), %ecx
movq 0xe78(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xe78(%rsp)
movl 0x1eec(%rsp), %ecx
movq 0xe28(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xe28(%rsp)
movl 0xddc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xddc(%rsp)
jmp 0x11fddc8
jmp 0x11fdec3
movl 0xe8c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xe8c(%rsp)
jmp 0x11fd4c6
movl $0x0, 0x1f34(%rsp)
jmp 0x12015a5
movq 0x1f18(%rsp), %rdi
movl 0x1f08(%rsp), %esi
movl 0x1f04(%rsp), %edx
movq 0x1ef0(%rsp), %rcx
movq 0x1f10(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6f5a0
movq 0x1f18(%rsp), %rax
movq %rax, 0x1f80(%rsp)
movq 0x1f80(%rsp), %rcx
movq %rcx, 0x1e0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1ef(%rsp)
je 0x11fdf79
movq 0x1e0(%rsp), %rax
movq %rax, 0x2f58(%rsp)
movq 0x2f58(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1ef(%rsp)
movb 0x1ef(%rsp), %al
testb $0x1, %al
jne 0x11fdf86
jmp 0x11fdf96
movl $0xffffff9c, 0x1f34(%rsp) # imm = 0xFFFFFF9C
jmp 0x12015a5
movq 0x1f20(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x11fe0a6
movl $0x0, 0xdd0(%rsp)
movl 0xdd0(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x11fe096
movq 0x1f28(%rsp), %rcx
movslq 0xdd0(%rsp), %rax
movq %rcx, 0x2e38(%rsp)
movq %rax, 0x2e30(%rsp)
movq 0x2e38(%rsp), %rax
movq (%rax), %rsi
movq 0x2e30(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1f20(%rsp), %rcx
movslq 0xdd0(%rsp), %rax
movq %rcx, 0x2e28(%rsp)
movq %rax, 0x2e20(%rsp)
movq 0x2e28(%rsp), %rax
movq (%rax), %rdx
movq 0x2e20(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1f0f(%rsp), %rdi
callq 0x1278000
movq 0x1f18(%rsp), %rcx
movslq 0xdd0(%rsp), %rax
movq %rcx, 0x2ed8(%rsp)
movq %rax, 0x2ed0(%rsp)
movq 0x2ed8(%rsp), %rax
movq (%rax), %rax
movq 0x2ed0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xdd0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdd0(%rsp)
jmp 0x11fdfb3
movl $0x0, 0x1f34(%rsp)
jmp 0x12015a5
movq 0x1f20(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x11fe3fd
movq 0x1f18(%rsp), %rdi
movl 0x1f08(%rsp), %esi
movl 0x1f04(%rsp), %edx
movq 0x1ef0(%rsp), %rcx
movq 0x1f10(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6f5a0
movq 0x1f18(%rsp), %rax
movq %rax, 0x1f78(%rsp)
movq 0x1f78(%rsp), %rcx
movq %rcx, 0x1d0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1df(%rsp)
je 0x11fe148
movq 0x1d0(%rsp), %rax
movq %rax, 0x2f60(%rsp)
movq 0x2f60(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1df(%rsp)
movb 0x1df(%rsp), %al
testb $0x1, %al
jne 0x11fe155
jmp 0x11fe165
movl $0xffffff9c, 0x1f34(%rsp) # imm = 0xFFFFFF9C
jmp 0x12015a5
movq 0x1f20(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x11fe280
movq 0x1f20(%rsp), %rax
movq %rax, 0x2e18(%rsp)
movq $0x0, 0x2e10(%rsp)
movq 0x2e18(%rsp), %rax
movq (%rax), %rax
movq 0x2e10(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xdcc(%rsp)
movl $0x0, 0xdc8(%rsp)
movl 0xdc8(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x11fe270
movq 0x1f28(%rsp), %rcx
movslq 0xdc8(%rsp), %rax
movq %rcx, 0x2e08(%rsp)
movq %rax, 0x2e00(%rsp)
movq 0x2e08(%rsp), %rax
movq (%rax), %rsi
movq 0x2e00(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1f0f(%rsp), %rdi
leaq 0xdcc(%rsp), %rdx
callq 0x1278000
movq 0x1f18(%rsp), %rcx
movslq 0xdc8(%rsp), %rax
movq %rcx, 0x2ec8(%rsp)
movq %rax, 0x2ec0(%rsp)
movq 0x2ec8(%rsp), %rax
movq (%rax), %rax
movq 0x2ec0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xdc8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdc8(%rsp)
jmp 0x11fe1bf
movl $0x0, 0x1f34(%rsp)
jmp 0x12015a5
movq 0x1f28(%rsp), %rax
movq %rax, 0x2358(%rsp)
movq 0x2358(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xdc0(%rsp)
movq 0x1f18(%rsp), %rax
movq %rax, 0x2c38(%rsp)
movq 0x2c38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xdb8(%rsp)
movl $0x0, 0xdb4(%rsp)
movl 0xdb4(%rsp), %eax
cmpl 0x1f04(%rsp), %eax
jge 0x11fe3ed
movq 0x1f20(%rsp), %rcx
movslq 0xdb4(%rsp), %rax
movq %rcx, 0x2df8(%rsp)
movq %rax, 0x2df0(%rsp)
movq 0x2df8(%rsp), %rax
movq (%rax), %rax
movq 0x2df0(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xdb0(%rsp)
movl $0x0, 0xdac(%rsp)
movl 0xdac(%rsp), %eax
cmpl 0x1f08(%rsp), %eax
jge 0x11fe395
movq 0xdc0(%rsp), %rsi
movslq 0xdac(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1f0f(%rsp), %rdi
leaq 0xdb0(%rsp), %rdx
callq 0x1278000
movq 0xdb8(%rsp), %rax
movslq 0xdac(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xdac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdac(%rsp)
jmp 0x11fe331
movl 0x1f08(%rsp), %ecx
movq 0xdc0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xdc0(%rsp)
movl 0x1f08(%rsp), %ecx
movq 0xdb8(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xdb8(%rsp)
movl 0xdb4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdb4(%rsp)
jmp 0x11fe2d1
movl $0x0, 0x1f34(%rsp)
jmp 0x12015a5
jmp 0x1201596
movq 0x1f28(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1201594
movq 0x1f28(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x11ffc63
movq 0x1f20(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x11fee85
movq 0x1f18(%rsp), %rdi
movl 0x1eec(%rsp), %esi
movl 0x1ee8(%rsp), %edx
movl 0x1ee4(%rsp), %ecx
movl 0x1ee0(%rsp), %r8d
movq 0x1ef0(%rsp), %r9
movq 0x1f10(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6fb30
movq 0x1f18(%rsp), %rax
movq %rax, 0x1f70(%rsp)
movq 0x1f70(%rsp), %rcx
movq %rcx, 0x1c0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1cf(%rsp)
je 0x11fe4db
movq 0x1c0(%rsp), %rax
movq %rax, 0x2f68(%rsp)
movq 0x2f68(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1cf(%rsp)
movb 0x1cf(%rsp), %al
testb $0x1, %al
jne 0x11fe4e8
jmp 0x11fe4f8
movl $0xffffff9c, 0x1f34(%rsp) # imm = 0xFFFFFF9C
jmp 0x12015a5
movq 0x1f28(%rsp), %rax
movq %rax, 0x2de8(%rsp)
movq $0x0, 0x2de0(%rsp)
movq 0x2de8(%rsp), %rax
movq (%rax), %rax
movq 0x2de0(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xda8(%rsp)
movl $0x0, 0xda4(%rsp)
movl 0xda4(%rsp), %eax
cmpl 0x1ee0(%rsp), %eax
jge 0x11fee75
movq 0x1f20(%rsp), %rcx
movl 0xda4(%rsp), %eax
leaq 0xd50(%rsp), %rdx
movq %rdx, 0x2058(%rsp)
movq %rcx, 0x2050(%rsp)
movl %eax, 0x204c(%rsp)
movq 0x2050(%rsp), %rax
movq %rax, 0x1b8(%rsp)
movb $0x0, 0x204b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x204c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xd50(%rsp), %r10
movq %r10, 0x3ba8(%rsp)
movl %r9d, 0x3ba4(%rsp)
movl %r8d, 0x3ba0(%rsp)
movl %edi, 0x3b9c(%rsp)
movq %rsi, 0x3b90(%rsp)
movq %rdx, 0x3b88(%rsp)
movl %ecx, 0x3b84(%rsp)
movq %rax, 0x3b78(%rsp)
movq 0x3ba8(%rsp), %rcx
movq %rcx, 0x1b0(%rsp)
movq 0x3b90(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3b88(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3b84(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3b78(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3ba4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3ba0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3b9c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c90(%rsp)
movl $0x10, 0x3c8c(%rsp)
movq 0x3c90(%rsp), %rax
movslq 0x3c8c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c8c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x1b8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xd78(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11fe710
movq 0x1b8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd90(%rsp)
movb $0x1, 0x204b(%rsp)
testb $0x1, 0x204b(%rsp)
jne 0x11fe84b
leaq 0xd50(%rsp), %rax
movq %rax, 0x2550(%rsp)
movq 0x2550(%rsp), %rax
movq %rax, 0x48f0(%rsp)
movq 0x48f0(%rsp), %rax
movq %rax, 0x1a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11fe7ee
movq 0x1a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x48ec(%rsp) # imm = 0xFFFFFFFF
movl 0x48ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x48e8(%rsp)
cmpl $0x1, 0x48e8(%rsp)
jne 0x11fe7ee
movq 0x1a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11fe7bf
movq 0x1a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11fe7bd
jmp 0x11fe7ec
movq 0x1a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4bc8(%rsp)
cmpq $0x0, 0x4bc8(%rsp)
je 0x11fe7ea
movq 0x4bc8(%rsp), %rdi
callq 0x5f480
jmp 0x11fe7ec
jmp 0x11fe7ee
movq 0x1a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11fe849
movq %rax, %rdi
callq 0x678a0
jmp 0x11fe84b
leaq 0xd50(%rsp), %rax
movq %rax, 0x2350(%rsp)
movq 0x2350(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1a0(%rsp)
leaq 0xd50(%rsp), %rax
movq %rax, 0x2890(%rsp)
movq 0x2890(%rsp), %rax
movq %rax, 0x4270(%rsp)
movq 0x4270(%rsp), %rax
movq %rax, 0x198(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11fe936
movq 0x198(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x426c(%rsp) # imm = 0xFFFFFFFF
movl 0x426c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4268(%rsp)
cmpl $0x1, 0x4268(%rsp)
jne 0x11fe936
movq 0x198(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11fe907
movq 0x198(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11fe905
jmp 0x11fe934
movq 0x198(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4f08(%rsp)
cmpq $0x0, 0x4f08(%rsp)
je 0x11fe932
movq 0x4f08(%rsp), %rdi
callq 0x5f480
jmp 0x11fe934
jmp 0x11fe936
movq 0x198(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11fe991
movq %rax, %rdi
callq 0x678a0
movq 0x1a0(%rsp), %rax
movq %rax, 0xd98(%rsp)
movq 0x1f18(%rsp), %rcx
movl 0xda4(%rsp), %eax
leaq 0xd00(%rsp), %rdx
movq %rdx, 0x2980(%rsp)
movq %rcx, 0x2978(%rsp)
movl %eax, 0x2974(%rsp)
movq 0x2978(%rsp), %rax
movq %rax, 0x190(%rsp)
movb $0x0, 0x2973(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2974(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xd00(%rsp), %r10
movq %r10, 0x3438(%rsp)
movl %r9d, 0x3434(%rsp)
movl %r8d, 0x3430(%rsp)
movl %edi, 0x342c(%rsp)
movq %rsi, 0x3420(%rsp)
movq %rdx, 0x3418(%rsp)
movl %ecx, 0x3414(%rsp)
movq %rax, 0x3408(%rsp)
movq 0x3438(%rsp), %rcx
movq %rcx, 0x188(%rsp)
movq 0x3420(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3418(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3414(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3408(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3434(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3430(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x342c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3eb0(%rsp)
movl $0x10, 0x3eac(%rsp)
movq 0x3eb0(%rsp), %rax
movslq 0x3eac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3eac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x190(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xd28(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11feb5d
movq 0x190(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd40(%rsp)
movb $0x1, 0x2973(%rsp)
testb $0x1, 0x2973(%rsp)
jne 0x11fec98
leaq 0xd00(%rsp), %rax
movq %rax, 0x2988(%rsp)
movq 0x2988(%rsp), %rax
movq %rax, 0x4140(%rsp)
movq 0x4140(%rsp), %rax
movq %rax, 0x180(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11fec3b
movq 0x180(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x413c(%rsp) # imm = 0xFFFFFFFF
movl 0x413c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4138(%rsp)
cmpl $0x1, 0x4138(%rsp)
jne 0x11fec3b
movq 0x180(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11fec0c
movq 0x180(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11fec0a
jmp 0x11fec39
movq 0x180(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4fa0(%rsp)
cmpq $0x0, 0x4fa0(%rsp)
je 0x11fec37
movq 0x4fa0(%rsp), %rdi
callq 0x5f480
jmp 0x11fec39
jmp 0x11fec3b
movq 0x180(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11fec96
movq %rax, %rdi
callq 0x678a0
jmp 0x11fec98
leaq 0xd00(%rsp), %rax
movq %rax, 0x2c30(%rsp)
movq 0x2c30(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x178(%rsp)
leaq 0xd00(%rsp), %rax
movq %rax, 0x28a0(%rsp)
movq 0x28a0(%rsp), %rax
movq %rax, 0x4250(%rsp)
movq 0x4250(%rsp), %rax
movq %rax, 0x170(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11fed83
movq 0x170(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x424c(%rsp) # imm = 0xFFFFFFFF
movl 0x424c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4248(%rsp)
cmpl $0x1, 0x4248(%rsp)
jne 0x11fed83
movq 0x170(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11fed54
movq 0x170(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11fed52
jmp 0x11fed81
movq 0x170(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4f18(%rsp)
cmpq $0x0, 0x4f18(%rsp)
je 0x11fed7f
movq 0x4f18(%rsp), %rdi
callq 0x5f480
jmp 0x11fed81
jmp 0x11fed83
movq 0x170(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11fedde
movq %rax, %rdi
callq 0x678a0
movq 0x178(%rsp), %rax
movq %rax, 0xd48(%rsp)
movl $0x0, 0xcfc(%rsp)
movl 0xcfc(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x11fee5d
movq 0xd98(%rsp), %rdx
movslq 0xcfc(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1f0f(%rsp), %rdi
leaq 0xda8(%rsp), %rsi
callq 0x1278000
movq 0xd48(%rsp), %rax
movslq 0xcfc(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xcfc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xcfc(%rsp)
jmp 0x11fedf9
jmp 0x11fee5f
movl 0xda4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xda4(%rsp)
jmp 0x11fe540
movl $0x0, 0x1f34(%rsp)
jmp 0x12015a5
movq 0x1f20(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x11ff8d8
movq 0x1f18(%rsp), %rdi
movl 0x1eec(%rsp), %esi
movl 0x1ee8(%rsp), %edx
movl 0x1ee0(%rsp), %ecx
movq 0x1ef0(%rsp), %r8
movq 0x1f10(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f18(%rsp), %rax
movq %rax, 0x1f68(%rsp)
movq 0x1f68(%rsp), %rcx
movq %rcx, 0x160(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x16f(%rsp)
je 0x11fef2e
movq 0x160(%rsp), %rax
movq %rax, 0x2f70(%rsp)
movq 0x2f70(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x16f(%rsp)
movb 0x16f(%rsp), %al
testb $0x1, %al
jne 0x11fef3b
jmp 0x11fef4b
movl $0xffffff9c, 0x1f34(%rsp) # imm = 0xFFFFFF9C
jmp 0x12015a5
movq 0x1f28(%rsp), %rax
movq %rax, 0x2dd8(%rsp)
movq $0x0, 0x2dd0(%rsp)
movq 0x2dd8(%rsp), %rax
movq (%rax), %rax
movq 0x2dd0(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xcf8(%rsp)
movl $0x0, 0xcf4(%rsp)
movl 0xcf4(%rsp), %eax
cmpl 0x1ee0(%rsp), %eax
jge 0x11ff8c8
movq 0x1f20(%rsp), %rcx
movl 0xcf4(%rsp), %eax
leaq 0xca0(%rsp), %rdx
movq %rdx, 0x2040(%rsp)
movq %rcx, 0x2038(%rsp)
movl %eax, 0x2034(%rsp)
movq 0x2038(%rsp), %rax
movq %rax, 0x158(%rsp)
movb $0x0, 0x2033(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2034(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xca0(%rsp), %r10
movq %r10, 0x3be0(%rsp)
movl %r9d, 0x3bdc(%rsp)
movl %r8d, 0x3bd8(%rsp)
movl %edi, 0x3bd4(%rsp)
movq %rsi, 0x3bc8(%rsp)
movq %rdx, 0x3bc0(%rsp)
movl %ecx, 0x3bbc(%rsp)
movq %rax, 0x3bb0(%rsp)
movq 0x3be0(%rsp), %rcx
movq %rcx, 0x150(%rsp)
movq 0x3bc8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3bc0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3bbc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3bb0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3bdc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3bd8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3bd4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c80(%rsp)
movl $0x10, 0x3c7c(%rsp)
movq 0x3c80(%rsp), %rax
movslq 0x3c7c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c7c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x158(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xcc8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11ff163
movq 0x158(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xce0(%rsp)
movb $0x1, 0x2033(%rsp)
testb $0x1, 0x2033(%rsp)
jne 0x11ff29e
leaq 0xca0(%rsp), %rax
movq %rax, 0x2558(%rsp)
movq 0x2558(%rsp), %rax
movq %rax, 0x48e0(%rsp)
movq 0x48e0(%rsp), %rax
movq %rax, 0x148(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11ff241
movq 0x148(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x48dc(%rsp) # imm = 0xFFFFFFFF
movl 0x48dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x48d8(%rsp)
cmpl $0x1, 0x48d8(%rsp)
jne 0x11ff241
movq 0x148(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11ff212
movq 0x148(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11ff210
jmp 0x11ff23f
movq 0x148(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4bd0(%rsp)
cmpq $0x0, 0x4bd0(%rsp)
je 0x11ff23d
movq 0x4bd0(%rsp), %rdi
callq 0x5f480
jmp 0x11ff23f
jmp 0x11ff241
movq 0x148(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11ff29c
movq %rax, %rdi
callq 0x678a0
jmp 0x11ff29e
leaq 0xca0(%rsp), %rax
movq %rax, 0x2348(%rsp)
movq 0x2348(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x140(%rsp)
leaq 0xca0(%rsp), %rax
movq %rax, 0x28b0(%rsp)
movq 0x28b0(%rsp), %rax
movq %rax, 0x4230(%rsp)
movq 0x4230(%rsp), %rax
movq %rax, 0x138(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11ff389
movq 0x138(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x422c(%rsp) # imm = 0xFFFFFFFF
movl 0x422c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4228(%rsp)
cmpl $0x1, 0x4228(%rsp)
jne 0x11ff389
movq 0x138(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11ff35a
movq 0x138(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11ff358
jmp 0x11ff387
movq 0x138(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4f28(%rsp)
cmpq $0x0, 0x4f28(%rsp)
je 0x11ff385
movq 0x4f28(%rsp), %rdi
callq 0x5f480
jmp 0x11ff387
jmp 0x11ff389
movq 0x138(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11ff3e4
movq %rax, %rdi
callq 0x678a0
movq 0x140(%rsp), %rax
movq %rax, 0xce8(%rsp)
movq 0x1f18(%rsp), %rcx
movl 0xcf4(%rsp), %eax
leaq 0xc50(%rsp), %rdx
movq %rdx, 0x2960(%rsp)
movq %rcx, 0x2958(%rsp)
movl %eax, 0x2954(%rsp)
movq 0x2958(%rsp), %rax
movq %rax, 0x130(%rsp)
movb $0x0, 0x2953(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2954(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xc50(%rsp), %r10
movq %r10, 0x3470(%rsp)
movl %r9d, 0x346c(%rsp)
movl %r8d, 0x3468(%rsp)
movl %edi, 0x3464(%rsp)
movq %rsi, 0x3458(%rsp)
movq %rdx, 0x3450(%rsp)
movl %ecx, 0x344c(%rsp)
movq %rax, 0x3440(%rsp)
movq 0x3470(%rsp), %rcx
movq %rcx, 0x128(%rsp)
movq 0x3458(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3450(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x344c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3440(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x346c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3468(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3464(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ea0(%rsp)
movl $0x10, 0x3e9c(%rsp)
movq 0x3ea0(%rsp), %rax
movslq 0x3e9c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3e9c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x130(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc78(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11ff5b0
movq 0x130(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xc90(%rsp)
movb $0x1, 0x2953(%rsp)
testb $0x1, 0x2953(%rsp)
jne 0x11ff6eb
leaq 0xc50(%rsp), %rax
movq %rax, 0x2968(%rsp)
movq 0x2968(%rsp), %rax
movq %rax, 0x4150(%rsp)
movq 0x4150(%rsp), %rax
movq %rax, 0x120(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11ff68e
movq 0x120(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x414c(%rsp) # imm = 0xFFFFFFFF
movl 0x414c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4148(%rsp)
cmpl $0x1, 0x4148(%rsp)
jne 0x11ff68e
movq 0x120(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11ff65f
movq 0x120(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11ff65d
jmp 0x11ff68c
movq 0x120(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4f98(%rsp)
cmpq $0x0, 0x4f98(%rsp)
je 0x11ff68a
movq 0x4f98(%rsp), %rdi
callq 0x5f480
jmp 0x11ff68c
jmp 0x11ff68e
movq 0x120(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11ff6e9
movq %rax, %rdi
callq 0x678a0
jmp 0x11ff6eb
leaq 0xc50(%rsp), %rax
movq %rax, 0x2c28(%rsp)
movq 0x2c28(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x118(%rsp)
leaq 0xc50(%rsp), %rax
movq %rax, 0x28c0(%rsp)
movq 0x28c0(%rsp), %rax
movq %rax, 0x4210(%rsp)
movq 0x4210(%rsp), %rax
movq %rax, 0x110(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x11ff7d6
movq 0x110(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x420c(%rsp) # imm = 0xFFFFFFFF
movl 0x420c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4208(%rsp)
cmpl $0x1, 0x4208(%rsp)
jne 0x11ff7d6
movq 0x110(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x11ff7a7
movq 0x110(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11ff7a5
jmp 0x11ff7d4
movq 0x110(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4f38(%rsp)
cmpq $0x0, 0x4f38(%rsp)
je 0x11ff7d2
movq 0x4f38(%rsp), %rdi
callq 0x5f480
jmp 0x11ff7d4
jmp 0x11ff7d6
movq 0x110(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x11ff831
movq %rax, %rdi
callq 0x678a0
movq 0x118(%rsp), %rax
movq %rax, 0xc98(%rsp)
movl $0x0, 0xc4c(%rsp)
movl 0xc4c(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x11ff8b0
movq 0xce8(%rsp), %rdx
movslq 0xc4c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1f0f(%rsp), %rdi
leaq 0xcf8(%rsp), %rsi
callq 0x1278000
movq 0xc98(%rsp), %rax
movslq 0xc4c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xc4c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xc4c(%rsp)
jmp 0x11ff84c
jmp 0x11ff8b2
movl 0xcf4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xcf4(%rsp)
jmp 0x11fef93
movl $0x0, 0x1f34(%rsp)
jmp 0x12015a5
movq 0x1f20(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x11ffaa0
movq 0x1f18(%rsp), %rdi
movl 0x1eec(%rsp), %esi
movl 0x1ee8(%rsp), %edx
movq 0x1ef0(%rsp), %rcx
movq 0x1f10(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6f5a0
movq 0x1f18(%rsp), %rax
movq %rax, 0x1f60(%rsp)
movq 0x1f60(%rsp), %rcx
movq %rcx, 0x100(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x10f(%rsp)
je 0x11ff97a
movq 0x100(%rsp), %rax
movq %rax, 0x2f78(%rsp)
movq 0x2f78(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x10f(%rsp)
movb 0x10f(%rsp), %al
testb $0x1, %al
jne 0x11ff987
jmp 0x11ff997
movl $0xffffff9c, 0x1f34(%rsp) # imm = 0xFFFFFF9C
jmp 0x12015a5
movq 0x1f28(%rsp), %rax
movq %rax, 0x2dc8(%rsp)
movq $0x0, 0x2dc0(%rsp)
movq 0x2dc8(%rsp), %rax
movq (%rax), %rax
movq 0x2dc0(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xc48(%rsp)
movl $0x0, 0xc44(%rsp)
movl 0xc44(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x11ffa90
movq 0x1f20(%rsp), %rcx
movslq 0xc44(%rsp), %rax
movq %rcx, 0x2db8(%rsp)
movq %rax, 0x2db0(%rsp)
movq 0x2db8(%rsp), %rax
movq (%rax), %rdx
movq 0x2db0(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1f0f(%rsp), %rdi
leaq 0xc48(%rsp), %rsi
callq 0x1278000
movq 0x1f18(%rsp), %rcx
movslq 0xc44(%rsp), %rax
movq %rcx, 0x2eb8(%rsp)
movq %rax, 0x2eb0(%rsp)
movq 0x2eb8(%rsp), %rax
movq (%rax), %rax
movq 0x2eb0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xc44(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xc44(%rsp)
jmp 0x11ff9df
movl $0x0, 0x1f34(%rsp)
jmp 0x12015a5
movq 0x1f20(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x11ffc61
movq 0x1f18(%rsp), %rdi
movl 0x1eec(%rsp), %esi
movq 0x1ef0(%rsp), %rdx
movq 0x1f10(%rsp), %rax
movq 0x8(%rax), %rcx
callq 0x6f320
movq 0x1f18(%rsp), %rax
movq %rax, 0x1f58(%rsp)
movq 0x1f58(%rsp), %rcx
movq %rcx, 0xf0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xff(%rsp)
je 0x11ffb3b
movq 0xf0(%rsp), %rax
movq %rax, 0x2f80(%rsp)
movq 0x2f80(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xff(%rsp)
movb 0xff(%rsp), %al
testb $0x1, %al
jne 0x11ffb48
jmp 0x11ffb58
movl $0xffffff9c, 0x1f34(%rsp) # imm = 0xFFFFFF9C
jmp 0x12015a5
movq 0x1f28(%rsp), %rax
movq %rax, 0x2da8(%rsp)
movq $0x0, 0x2da0(%rsp)
movq 0x2da8(%rsp), %rax
movq (%rax), %rax
movq 0x2da0(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xc40(%rsp)
movl $0x0, 0xc3c(%rsp)
movl 0xc3c(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x11ffc51
movq 0x1f20(%rsp), %rcx
movslq 0xc3c(%rsp), %rax
movq %rcx, 0x2d98(%rsp)
movq %rax, 0x2d90(%rsp)
movq 0x2d98(%rsp), %rax
movq (%rax), %rdx
movq 0x2d90(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1f0f(%rsp), %rdi
leaq 0xc40(%rsp), %rsi
callq 0x1278000
movq 0x1f18(%rsp), %rcx
movslq 0xc3c(%rsp), %rax
movq %rcx, 0x2ea8(%rsp)
movq %rax, 0x2ea0(%rsp)
movq 0x2ea8(%rsp), %rax
movq (%rax), %rax
movq 0x2ea0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xc3c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xc3c(%rsp)
jmp 0x11ffba0
movl $0x0, 0x1f34(%rsp)
jmp 0x12015a5
jmp 0x11ffc63
movq 0x1f20(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x12006c6
movq 0x1f18(%rsp), %rdi
movl 0x1eec(%rsp), %esi
movl 0x1ee8(%rsp), %edx
movl 0x1ee4(%rsp), %ecx
movl 0x1ee0(%rsp), %r8d
movq 0x1ef0(%rsp), %r9
movq 0x1f10(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6fb30
movq 0x1f18(%rsp), %rax
movq %rax, 0x1f50(%rsp)
movq 0x1f50(%rsp), %rcx
movq %rcx, 0xe0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xef(%rsp)
je 0x11ffd18
movq 0xe0(%rsp), %rax
movq %rax, 0x2f88(%rsp)
movq 0x2f88(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xef(%rsp)
movb 0xef(%rsp), %al
testb $0x1, %al
jne 0x11ffd25
jmp 0x11ffd35
movl $0xffffff9c, 0x1f34(%rsp) # imm = 0xFFFFFF9C
jmp 0x12015a5
movl $0x0, 0xc38(%rsp)
movl 0xc38(%rsp), %eax
cmpl 0x1ee0(%rsp), %eax
jge 0x12006b6
movq 0x1f28(%rsp), %rcx
movslq 0xc38(%rsp), %rax
movq %rcx, 0x2d88(%rsp)
movq %rax, 0x2d80(%rsp)
movq 0x2d88(%rsp), %rax
movq (%rax), %rax
movq 0x2d80(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xc34(%rsp)
movq 0x1f20(%rsp), %rcx
movl 0xc38(%rsp), %eax
leaq 0xbe0(%rsp), %rdx
movq %rdx, 0x2028(%rsp)
movq %rcx, 0x2020(%rsp)
movl %eax, 0x201c(%rsp)
movq 0x2020(%rsp), %rax
movq %rax, 0xd8(%rsp)
movb $0x0, 0x201b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x201c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xbe0(%rsp), %r10
movq %r10, 0x3c18(%rsp)
movl %r9d, 0x3c14(%rsp)
movl %r8d, 0x3c10(%rsp)
movl %edi, 0x3c0c(%rsp)
movq %rsi, 0x3c00(%rsp)
movq %rdx, 0x3bf8(%rsp)
movl %ecx, 0x3bf4(%rsp)
movq %rax, 0x3be8(%rsp)
movq 0x3c18(%rsp), %rcx
movq %rcx, 0xd0(%rsp)
movq 0x3c00(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3bf8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3bf4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3be8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3c14(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3c10(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3c0c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c70(%rsp)
movl $0x10, 0x3c6c(%rsp)
movq 0x3c70(%rsp), %rax
movslq 0x3c6c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c6c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xd8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc08(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x11fff51
movq 0xd8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xc20(%rsp)
movb $0x1, 0x201b(%rsp)
testb $0x1, 0x201b(%rsp)
jne 0x120008c
leaq 0xbe0(%rsp), %rax
movq %rax, 0x2560(%rsp)
movq 0x2560(%rsp), %rax
movq %rax, 0x48d0(%rsp)
movq 0x48d0(%rsp), %rax
movq %rax, 0xc8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120002f
movq 0xc8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x48cc(%rsp) # imm = 0xFFFFFFFF
movl 0x48cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x48c8(%rsp)
cmpl $0x1, 0x48c8(%rsp)
jne 0x120002f
movq 0xc8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1200000
movq 0xc8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x11ffffe
jmp 0x120002d
movq 0xc8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4bd8(%rsp)
cmpq $0x0, 0x4bd8(%rsp)
je 0x120002b
movq 0x4bd8(%rsp), %rdi
callq 0x5f480
jmp 0x120002d
jmp 0x120002f
movq 0xc8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120008a
movq %rax, %rdi
callq 0x678a0
jmp 0x120008c
leaq 0xbe0(%rsp), %rax
movq %rax, 0x2340(%rsp)
movq 0x2340(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xc0(%rsp)
leaq 0xbe0(%rsp), %rax
movq %rax, 0x28d0(%rsp)
movq 0x28d0(%rsp), %rax
movq %rax, 0x41f0(%rsp)
movq 0x41f0(%rsp), %rax
movq %rax, 0xb8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1200177
movq 0xb8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41ec(%rsp) # imm = 0xFFFFFFFF
movl 0x41ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41e8(%rsp)
cmpl $0x1, 0x41e8(%rsp)
jne 0x1200177
movq 0xb8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1200148
movq 0xb8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1200146
jmp 0x1200175
movq 0xb8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4f48(%rsp)
cmpq $0x0, 0x4f48(%rsp)
je 0x1200173
movq 0x4f48(%rsp), %rdi
callq 0x5f480
jmp 0x1200175
jmp 0x1200177
movq 0xb8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12001d2
movq %rax, %rdi
callq 0x678a0
movq 0xc0(%rsp), %rax
movq %rax, 0xc28(%rsp)
movq 0x1f18(%rsp), %rcx
movl 0xc38(%rsp), %eax
leaq 0xb90(%rsp), %rdx
movq %rdx, 0x2940(%rsp)
movq %rcx, 0x2938(%rsp)
movl %eax, 0x2934(%rsp)
movq 0x2938(%rsp), %rax
movq %rax, 0xb0(%rsp)
movb $0x0, 0x2933(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2934(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xb90(%rsp), %r10
movq %r10, 0x34a8(%rsp)
movl %r9d, 0x34a4(%rsp)
movl %r8d, 0x34a0(%rsp)
movl %edi, 0x349c(%rsp)
movq %rsi, 0x3490(%rsp)
movq %rdx, 0x3488(%rsp)
movl %ecx, 0x3484(%rsp)
movq %rax, 0x3478(%rsp)
movq 0x34a8(%rsp), %rcx
movq %rcx, 0xa8(%rsp)
movq 0x3490(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3488(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3484(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3478(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x34a4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x34a0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x349c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3e90(%rsp)
movl $0x10, 0x3e8c(%rsp)
movq 0x3e90(%rsp), %rax
movslq 0x3e8c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3e8c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xb0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xbb8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x120039e
movq 0xb0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xbd0(%rsp)
movb $0x1, 0x2933(%rsp)
testb $0x1, 0x2933(%rsp)
jne 0x12004d9
leaq 0xb90(%rsp), %rax
movq %rax, 0x2948(%rsp)
movq 0x2948(%rsp), %rax
movq %rax, 0x4160(%rsp)
movq 0x4160(%rsp), %rax
movq %rax, 0xa0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120047c
movq 0xa0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x415c(%rsp) # imm = 0xFFFFFFFF
movl 0x415c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4158(%rsp)
cmpl $0x1, 0x4158(%rsp)
jne 0x120047c
movq 0xa0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120044d
movq 0xa0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x120044b
jmp 0x120047a
movq 0xa0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4f90(%rsp)
cmpq $0x0, 0x4f90(%rsp)
je 0x1200478
movq 0x4f90(%rsp), %rdi
callq 0x5f480
jmp 0x120047a
jmp 0x120047c
movq 0xa0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12004d7
movq %rax, %rdi
callq 0x678a0
jmp 0x12004d9
leaq 0xb90(%rsp), %rax
movq %rax, 0x2c20(%rsp)
movq 0x2c20(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x98(%rsp)
leaq 0xb90(%rsp), %rax
movq %rax, 0x28e0(%rsp)
movq 0x28e0(%rsp), %rax
movq %rax, 0x41d0(%rsp)
movq 0x41d0(%rsp), %rax
movq %rax, 0x90(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12005c4
movq 0x90(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41cc(%rsp) # imm = 0xFFFFFFFF
movl 0x41cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41c8(%rsp)
cmpl $0x1, 0x41c8(%rsp)
jne 0x12005c4
movq 0x90(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1200595
movq 0x90(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1200593
jmp 0x12005c2
movq 0x90(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4f58(%rsp)
cmpq $0x0, 0x4f58(%rsp)
je 0x12005c0
movq 0x4f58(%rsp), %rdi
callq 0x5f480
jmp 0x12005c2
jmp 0x12005c4
movq 0x90(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120061f
movq %rax, %rdi
callq 0x678a0
movq 0x98(%rsp), %rax
movq %rax, 0xbd8(%rsp)
movl $0x0, 0xb8c(%rsp)
movl 0xb8c(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x120069e
movq 0xc28(%rsp), %rdx
movslq 0xb8c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1f0f(%rsp), %rdi
leaq 0xc34(%rsp), %rsi
callq 0x1278000
movq 0xbd8(%rsp), %rax
movslq 0xb8c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xb8c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xb8c(%rsp)
jmp 0x120063a
jmp 0x12006a0
movl 0xc38(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xc38(%rsp)
jmp 0x11ffd40
movl $0x0, 0x1f34(%rsp)
jmp 0x12015a5
movq 0x1f20(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x12010b1
movq 0x1f18(%rsp), %rdi
movl 0x1eec(%rsp), %esi
movl 0x1ee8(%rsp), %edx
movl 0x1ee0(%rsp), %ecx
movq 0x1ef0(%rsp), %r8
movq 0x1f10(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f18(%rsp), %rax
movq %rax, 0x1f48(%rsp)
movq 0x1f48(%rsp), %rcx
movq %rcx, 0x80(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x8f(%rsp)
je 0x120076f
movq 0x80(%rsp), %rax
movq %rax, 0x2f90(%rsp)
movq 0x2f90(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x8f(%rsp)
movb 0x8f(%rsp), %al
testb $0x1, %al
jne 0x120077c
jmp 0x120078c
movl $0xffffff9c, 0x1f34(%rsp) # imm = 0xFFFFFF9C
jmp 0x12015a5
movl $0x0, 0xb88(%rsp)
movl 0xb88(%rsp), %eax
cmpl 0x1ee0(%rsp), %eax
jge 0x12010a1
movq 0x1f28(%rsp), %rcx
movslq 0xb88(%rsp), %rax
movq %rcx, 0x2d78(%rsp)
movq %rax, 0x2d70(%rsp)
movq 0x2d78(%rsp), %rax
movq (%rax), %rax
movq 0x2d70(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xb84(%rsp)
movq 0x1f20(%rsp), %rcx
movl 0xb88(%rsp), %eax
leaq 0xb30(%rsp), %rdx
movq %rdx, 0x2010(%rsp)
movq %rcx, 0x2008(%rsp)
movl %eax, 0x2004(%rsp)
movq 0x2008(%rsp), %rax
movq %rax, 0x78(%rsp)
movb $0x0, 0x2003(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2004(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xb30(%rsp), %r10
movq %r10, 0x3c50(%rsp)
movl %r9d, 0x3c4c(%rsp)
movl %r8d, 0x3c48(%rsp)
movl %edi, 0x3c44(%rsp)
movq %rsi, 0x3c38(%rsp)
movq %rdx, 0x3c30(%rsp)
movl %ecx, 0x3c2c(%rsp)
movq %rax, 0x3c20(%rsp)
movq 0x3c50(%rsp), %rcx
movq %rcx, 0x70(%rsp)
movq 0x3c38(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3c30(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3c2c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3c20(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3c4c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3c48(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3c44(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c60(%rsp)
movl $0x10, 0x3c5c(%rsp)
movq 0x3c60(%rsp), %rax
movslq 0x3c5c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c5c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x78(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xb58(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x120099c
movq 0x78(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xb70(%rsp)
movb $0x1, 0x2003(%rsp)
testb $0x1, 0x2003(%rsp)
jne 0x1200ac5
leaq 0xb30(%rsp), %rax
movq %rax, 0x2568(%rsp)
movq 0x2568(%rsp), %rax
movq %rax, 0x48c0(%rsp)
movq 0x48c0(%rsp), %rax
movq %rax, 0x68(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1200a6b
movq 0x68(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x48bc(%rsp) # imm = 0xFFFFFFFF
movl 0x48bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x48b8(%rsp)
cmpl $0x1, 0x48b8(%rsp)
jne 0x1200a6b
movq 0x68(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1200a3f
movq 0x68(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1200a3d
jmp 0x1200a69
movq 0x68(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4be0(%rsp)
cmpq $0x0, 0x4be0(%rsp)
je 0x1200a67
movq 0x4be0(%rsp), %rdi
callq 0x5f480
jmp 0x1200a69
jmp 0x1200a6b
movq 0x68(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1200ac3
movq %rax, %rdi
callq 0x678a0
jmp 0x1200ac5
leaq 0xb30(%rsp), %rax
movq %rax, 0x2338(%rsp)
movq 0x2338(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x60(%rsp)
leaq 0xb30(%rsp), %rax
movq %rax, 0x28f0(%rsp)
movq 0x28f0(%rsp), %rax
movq %rax, 0x41b0(%rsp)
movq 0x41b0(%rsp), %rax
movq %rax, 0x58(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1200b9e
movq 0x58(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41ac(%rsp) # imm = 0xFFFFFFFF
movl 0x41ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41a8(%rsp)
cmpl $0x1, 0x41a8(%rsp)
jne 0x1200b9e
movq 0x58(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1200b72
movq 0x58(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1200b70
jmp 0x1200b9c
movq 0x58(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4f68(%rsp)
cmpq $0x0, 0x4f68(%rsp)
je 0x1200b9a
movq 0x4f68(%rsp), %rdi
callq 0x5f480
jmp 0x1200b9c
jmp 0x1200b9e
movq 0x58(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1200bf6
movq %rax, %rdi
callq 0x678a0
movq 0x60(%rsp), %rax
movq %rax, 0xb78(%rsp)
movq 0x1f18(%rsp), %rcx
movl 0xb88(%rsp), %eax
leaq 0xae0(%rsp), %rdx
movq %rdx, 0x2920(%rsp)
movq %rcx, 0x2918(%rsp)
movl %eax, 0x2914(%rsp)
movq 0x2918(%rsp), %rax
movq %rax, 0x50(%rsp)
movb $0x0, 0x2913(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2914(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xae0(%rsp), %r10
movq %r10, 0x34e0(%rsp)
movl %r9d, 0x34dc(%rsp)
movl %r8d, 0x34d8(%rsp)
movl %edi, 0x34d4(%rsp)
movq %rsi, 0x34c8(%rsp)
movq %rdx, 0x34c0(%rsp)
movl %ecx, 0x34bc(%rsp)
movq %rax, 0x34b0(%rsp)
movq 0x34e0(%rsp), %rcx
movq %rcx, 0x48(%rsp)
movq 0x34c8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x34c0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x34bc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x34b0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x34dc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x34d8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x34d4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3e80(%rsp)
movl $0x10, 0x3e7c(%rsp)
movq 0x3e80(%rsp), %rax
movslq 0x3e7c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3e7c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x50(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xb08(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1200db3
movq 0x50(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xb20(%rsp)
movb $0x1, 0x2913(%rsp)
testb $0x1, 0x2913(%rsp)
jne 0x1200edc
leaq 0xae0(%rsp), %rax
movq %rax, 0x2928(%rsp)
movq 0x2928(%rsp), %rax
movq %rax, 0x4170(%rsp)
movq 0x4170(%rsp), %rax
movq %rax, 0x40(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1200e82
movq 0x40(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x416c(%rsp) # imm = 0xFFFFFFFF
movl 0x416c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4168(%rsp)
cmpl $0x1, 0x4168(%rsp)
jne 0x1200e82
movq 0x40(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1200e56
movq 0x40(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1200e54
jmp 0x1200e80
movq 0x40(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4f88(%rsp)
cmpq $0x0, 0x4f88(%rsp)
je 0x1200e7e
movq 0x4f88(%rsp), %rdi
callq 0x5f480
jmp 0x1200e80
jmp 0x1200e82
movq 0x40(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1200eda
movq %rax, %rdi
callq 0x678a0
jmp 0x1200edc
leaq 0xae0(%rsp), %rax
movq %rax, 0x2c18(%rsp)
movq 0x2c18(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x38(%rsp)
leaq 0xae0(%rsp), %rax
movq %rax, 0x2900(%rsp)
movq 0x2900(%rsp), %rax
movq %rax, 0x4190(%rsp)
movq 0x4190(%rsp), %rax
movq %rax, 0x30(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1200fb5
movq 0x30(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x418c(%rsp) # imm = 0xFFFFFFFF
movl 0x418c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4188(%rsp)
cmpl $0x1, 0x4188(%rsp)
jne 0x1200fb5
movq 0x30(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1200f89
movq 0x30(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1200f87
jmp 0x1200fb3
movq 0x30(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4f78(%rsp)
cmpq $0x0, 0x4f78(%rsp)
je 0x1200fb1
movq 0x4f78(%rsp), %rdi
callq 0x5f480
jmp 0x1200fb3
jmp 0x1200fb5
movq 0x30(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120100d
movq %rax, %rdi
callq 0x678a0
movq 0x38(%rsp), %rax
movq %rax, 0xb28(%rsp)
movl $0x0, 0xadc(%rsp)
movl 0xadc(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x1201089
movq 0xb78(%rsp), %rdx
movslq 0xadc(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1f0f(%rsp), %rdi
leaq 0xb84(%rsp), %rsi
callq 0x1278000
movq 0xb28(%rsp), %rax
movslq 0xadc(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xadc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xadc(%rsp)
jmp 0x1201025
jmp 0x120108b
movl 0xb88(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xb88(%rsp)
jmp 0x1200797
movl $0x0, 0x1f34(%rsp)
jmp 0x12015a5
movq 0x1f20(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x12012de
movq 0x1f18(%rsp), %rdi
movl 0x1eec(%rsp), %esi
movl 0x1ee8(%rsp), %edx
movq 0x1ef0(%rsp), %rcx
movq 0x1f10(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6f5a0
movq 0x1f18(%rsp), %rax
movq %rax, 0x1f40(%rsp)
movq 0x1f40(%rsp), %rcx
movq %rcx, 0x20(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x2f(%rsp)
je 0x1201147
movq 0x20(%rsp), %rax
movq %rax, 0x2f98(%rsp)
movq 0x2f98(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x2f(%rsp)
movb 0x2f(%rsp), %al
testb $0x1, %al
jne 0x1201151
jmp 0x1201161
movl $0xffffff9c, 0x1f34(%rsp) # imm = 0xFFFFFF9C
jmp 0x12015a5
movq 0x1f20(%rsp), %rax
movq %rax, 0x2330(%rsp)
movq 0x2330(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xad0(%rsp)
movq 0x1f18(%rsp), %rax
movq %rax, 0x2c10(%rsp)
movq 0x2c10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xac8(%rsp)
movl $0x0, 0xac4(%rsp)
movl 0xac4(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x12012ce
movq 0x1f28(%rsp), %rcx
movslq 0xac4(%rsp), %rax
movq %rcx, 0x2d68(%rsp)
movq %rax, 0x2d60(%rsp)
movq 0x2d68(%rsp), %rax
movq (%rax), %rax
movq 0x2d60(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xac0(%rsp)
movl $0x0, 0xabc(%rsp)
movl 0xabc(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x1201276
movq 0xad0(%rsp), %rdx
movslq 0xabc(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1f0f(%rsp), %rdi
leaq 0xac0(%rsp), %rsi
callq 0x1278000
movq 0xac8(%rsp), %rax
movslq 0xabc(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xabc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xabc(%rsp)
jmp 0x1201212
movl 0x1eec(%rsp), %ecx
movq 0xad0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xad0(%rsp)
movl 0x1eec(%rsp), %ecx
movq 0xac8(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xac8(%rsp)
movl 0xac4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xac4(%rsp)
jmp 0x12011b2
movl $0x0, 0x1f34(%rsp)
jmp 0x12015a5
movq 0x1f20(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1201592
movq 0x1f18(%rsp), %rdi
movl 0x1f08(%rsp), %esi
movq 0x1ef0(%rsp), %rdx
movq 0x1f10(%rsp), %rax
movq 0x8(%rax), %rcx
callq 0x6f320
movq 0x1f18(%rsp), %rax
movq %rax, 0x1f38(%rsp)
movq 0x1f38(%rsp), %rcx
movq %rcx, 0x10(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1f(%rsp)
je 0x120136d
movq 0x10(%rsp), %rax
movq %rax, 0x2fa0(%rsp)
movq 0x2fa0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1f(%rsp)
movb 0x1f(%rsp), %al
testb $0x1, %al
jne 0x1201377
jmp 0x1201387
movl $0xffffff9c, 0x1f34(%rsp) # imm = 0xFFFFFF9C
jmp 0x12015a5
movq 0x1f20(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x12014a2
movq 0x1f20(%rsp), %rax
movq %rax, 0x2d58(%rsp)
movq $0x0, 0x2d50(%rsp)
movq 0x2d58(%rsp), %rax
movq (%rax), %rax
movq 0x2d50(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xab8(%rsp)
movl $0x0, 0xab4(%rsp)
movl 0xab4(%rsp), %eax
cmpl 0x1f08(%rsp), %eax
jge 0x1201492
movq 0x1f28(%rsp), %rcx
movslq 0xab4(%rsp), %rax
movq %rcx, 0x2d48(%rsp)
movq %rax, 0x2d40(%rsp)
movq 0x2d48(%rsp), %rax
movq (%rax), %rsi
movq 0x2d40(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1f0f(%rsp), %rdi
leaq 0xab8(%rsp), %rdx
callq 0x1278000
movq 0x1f18(%rsp), %rcx
movslq 0xab4(%rsp), %rax
movq %rcx, 0x2e98(%rsp)
movq %rax, 0x2e90(%rsp)
movq 0x2e98(%rsp), %rax
movq (%rax), %rax
movq 0x2e90(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xab4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xab4(%rsp)
jmp 0x12013e1
movl $0x0, 0x1f34(%rsp)
jmp 0x12015a5
movl $0x0, 0xab0(%rsp)
movl 0xab0(%rsp), %eax
cmpl 0x1f08(%rsp), %eax
jge 0x1201590
movq 0x1f28(%rsp), %rcx
movslq 0xab0(%rsp), %rax
movq %rcx, 0x2d38(%rsp)
movq %rax, 0x2d30(%rsp)
movq 0x2d38(%rsp), %rax
movq (%rax), %rsi
movq 0x2d30(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1f20(%rsp), %rcx
movslq 0xab0(%rsp), %rax
movq %rcx, 0x2d28(%rsp)
movq %rax, 0x2d20(%rsp)
movq 0x2d28(%rsp), %rax
movq (%rax), %rdx
movq 0x2d20(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1f0f(%rsp), %rdi
callq 0x1278000
movq 0x1f18(%rsp), %rcx
movslq 0xab0(%rsp), %rax
movq %rcx, 0x2e88(%rsp)
movq %rax, 0x2e80(%rsp)
movq 0x2e88(%rsp), %rax
movq (%rax), %rax
movq 0x2e80(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xab0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xab0(%rsp)
jmp 0x12014ad
jmp 0x1201592
jmp 0x1201594
jmp 0x1201596
jmp 0x1201598
jmp 0x120159a
movl $0x0, 0x1f34(%rsp)
movl 0x1f34(%rsp), %eax
addq $0x5048, %rsp # imm = 0x5048
retq
nopw %cs:(%rax,%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/binaryop.cpp
|
2,112,801
|
int ncnn::binary_op<ncnn::binary_op_sub>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int size = w * h * d;
size_t elemsize = a.elemsize;
int w1 = b.w;
int h1 = b.h;
int d1 = b.d;
int channels1 = b.c;
int size1 = w1 * h1 * d1;
if (a.dims == 4)
{
if (b.dims == 4)
{
// type 29
c.create(w, h, d, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], ptr1[i]);
}
}
return 0;
}
c.create(w, h, d, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 3)
{
// type 28
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
for (int y = 0; y < h; y++)
{
const float b0 = ptr1[y];
for (int x = 0; x < w; x++)
{
outptr[x] = op(ptr[x], b0);
}
ptr += w;
outptr += w;
}
ptr1 += h;
}
}
return 0;
}
if (b.dims == 2)
{
// type 27
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
const float b0 = ptr1[z];
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
outptr[x] = op(ptr[x], b0);
}
ptr += w;
outptr += w;
}
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1)
{
// type 25
const float b0 = b[0];
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], b0);
}
}
return 0;
}
// type 26
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float b0 = b[q];
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], b0);
}
}
return 0;
}
}
else if (a.dims == 3)
{
if (b.dims == 4)
{
// type 23
c.create(w1, h1, d1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
for (int y = 0; y < h1; y++)
{
const float a0 = ptr[y];
for (int x = 0; x < w1; x++)
{
outptr[x] = op(a0, ptr1[x]);
}
ptr1 += w1;
outptr += w1;
}
ptr += h1;
}
}
return 0;
}
if (b.dims == 3)
{
if (w1 == 1 && h1 == 1 && channels1 == channels)
{
// special type 1
c.create(w, h, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* b0 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], b0[0]);
}
}
return 0;
}
if (w1 == w && h1 == h && channels1 == 1)
{
// special type 2
c.create(w, h, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b;
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], ptr1[i]);
}
}
return 0;
}
if (w == 1 && h == 1 && channels1 == channels)
{
// special type 3
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* a0 = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
outptr[i] = op(a0[0], ptr1[i]);
}
}
return 0;
}
if (w1 == w && h1 == h && channels == 1)
{
// special type 4
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a;
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
outptr[i] = op(ptr[i], ptr1[i]);
}
}
return 0;
}
if (w != 1 && w1 == 1 && h1 == h && channels1 == channels)
{
// special type 5
c.create(w, h, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
const float b0 = ptr1[y];
for (int x = 0; x < w; x++)
{
outptr[x] = op(ptr[x], b0);
}
ptr += w;
outptr += w;
}
}
return 0;
}
if (w1 == w && h != 1 && h1 == 1 && channels1 == channels)
{
// special type 6
c.create(w, h, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
outptr[x] = op(ptr[x], ptr1[x]);
}
ptr += w;
outptr += w;
}
}
return 0;
}
if (w1 != 1 && w == 1 && h1 == h && channels1 == channels)
{
// special type 7
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
const float a0 = ptr[y];
for (int x = 0; x < w1; x++)
{
outptr[x] = op(a0, ptr1[x]);
}
ptr1 += w1;
outptr += w1;
}
}
return 0;
}
if (w1 == w && h1 != 1 && h == 1 && channels1 == channels)
{
// special type 8
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
outptr[x] = op(ptr[x], ptr1[x]);
}
ptr1 += w1;
outptr += w1;
}
}
return 0;
}
// type 19
c.create(w, h, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], ptr1[i]);
}
}
return 0;
}
c.create(w, h, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 18
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
const float b0 = ptr1[y];
for (int x = 0; x < w; x++)
{
outptr[x] = op(ptr[x], b0);
}
ptr += w;
outptr += w;
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1)
{
// type 16
const float b0 = b[0];
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], b0);
}
}
return 0;
}
// type 17
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float b0 = b[q];
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], b0);
}
}
return 0;
}
}
else if (a.dims == 2)
{
if (b.dims == 4)
{
// type 22
c.create(w1, h1, d1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
const float a0 = ptr[z];
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
outptr[x] = op(a0, ptr1[x]);
}
ptr1 += w1;
outptr += w1;
}
}
}
return 0;
}
if (b.dims == 3)
{
// type 14
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
const float a0 = ptr[y];
for (int x = 0; x < w1; x++)
{
outptr[x] = op(a0, ptr1[x]);
}
ptr1 += w1;
outptr += w1;
}
}
return 0;
}
c.create(w, h, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 13
for (int i = 0; i < size; i++)
{
c[i] = op(a[i], b[i]);
}
return 0;
}
if (b.dims == 1)
{
c.create(w, h, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1)
{
// type 11
const float b0 = b[0];
for (int i = 0; i < size; i++)
{
c[i] = op(a[i], b0);
}
return 0;
}
// type 12
const float* ptr = a;
float* outptr = c;
for (int y = 0; y < h; y++)
{
const float b0 = b[y];
for (int x = 0; x < w; x++)
{
outptr[x] = op(ptr[x], b0);
}
ptr += w;
outptr += w;
}
return 0;
}
}
else if (a.dims == 1)
{
if (a.w == 1)
{
if (b.dims == 4)
{
// type 20
c.create(w1, h1, d1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
const float a0 = a[0];
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
outptr[i] = op(a0, ptr1[i]);
}
}
return 0;
}
if (b.dims == 3)
{
// type 4
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
const float a0 = a[0];
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
outptr[i] = op(a0, ptr1[i]);
}
}
return 0;
}
if (b.dims == 2)
{
// type 3
c.create(w1, h1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
const float a0 = a[0];
for (int i = 0; i < size1; i++)
{
c[i] = op(a0, b[i]);
}
return 0;
}
if (b.dims == 1)
{
// type 2
c.create(w1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
const float a0 = a[0];
for (int i = 0; i < w1; i++)
{
c[i] = op(a0, b[i]);
}
return 0;
}
}
if (b.dims == 4)
{
// type 21
c.create(w1, h1, d1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float a0 = a[q];
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
outptr[i] = op(a0, ptr1[i]);
}
}
return 0;
}
if (b.dims == 3)
{
// type 9
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float a0 = a[q];
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
outptr[i] = op(a0, ptr1[i]);
}
}
return 0;
}
if (b.dims == 2)
{
// type 8
c.create(w1, h1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
const float* ptr1 = b;
float* outptr = c;
for (int y = 0; y < h1; y++)
{
const float a0 = a[y];
for (int x = 0; x < w1; x++)
{
outptr[x] = op(a0, ptr1[x]);
}
ptr1 += w1;
outptr += w1;
}
return 0;
}
if (b.dims == 1)
{
c.create(w, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1)
{
// type 6
const float b0 = b[0];
for (int i = 0; i < w; i++)
{
c[i] = op(a[i], b0);
}
return 0;
}
// type 7
for (int i = 0; i < w; i++)
{
c[i] = op(a[i], b[i]);
}
}
}
return 0;
}
|
subq $0x48f8, %rsp # imm = 0x48F8
movq %rdi, 0x1f18(%rsp)
movq %rsi, 0x1f10(%rsp)
movq %rdx, 0x1f08(%rsp)
movq %rcx, 0x1f00(%rsp)
movq 0x1f18(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x1ef8(%rsp)
movq 0x1f18(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x1ef4(%rsp)
movq 0x1f18(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x1ef0(%rsp)
movq 0x1f18(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x1eec(%rsp)
movl 0x1ef8(%rsp), %eax
imull 0x1ef4(%rsp), %eax
imull 0x1ef0(%rsp), %eax
movl %eax, 0x1ee8(%rsp)
movq 0x1f18(%rsp), %rax
movq 0x10(%rax), %rax
movq %rax, 0x1ee0(%rsp)
movq 0x1f10(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x1edc(%rsp)
movq 0x1f10(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x1ed8(%rsp)
movq 0x1f10(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x1ed4(%rsp)
movq 0x1f10(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x1ed0(%rsp)
movl 0x1edc(%rsp), %eax
imull 0x1ed8(%rsp), %eax
imull 0x1ed4(%rsp), %eax
movl %eax, 0x1ecc(%rsp)
movq 0x1f18(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x120526f
movq 0x1f10(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1202557
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1ef0(%rsp), %ecx
movl 0x1eec(%rsp), %r8d
movq 0x1ee0(%rsp), %r9
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6fb30
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fe8(%rsp)
movq 0x1fe8(%rsp), %rcx
movq %rcx, 0xaa0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xaaf(%rsp)
je 0x120178e
movq 0xaa0(%rsp), %rax
movq %rax, 0x2d00(%rsp)
movq 0x2d00(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xaaf(%rsp)
movb 0xaaf(%rsp), %al
testb $0x1, %al
jne 0x120179b
jmp 0x12017ab
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x12149e5
movl $0x0, 0x1ec8(%rsp)
movl 0x1ec8(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x1202547
movq 0x1f18(%rsp), %rcx
movl 0x1ec8(%rsp), %eax
leaq 0x1e78(%rsp), %rdx
movq %rdx, 0x2318(%rsp)
movq %rcx, 0x2310(%rsp)
movl %eax, 0x230c(%rsp)
movq 0x2310(%rsp), %rax
movq %rax, 0xa98(%rsp)
movb $0x0, 0x230b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x230c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1e78(%rsp), %r10
movq %r10, 0x3338(%rsp)
movl %r9d, 0x3334(%rsp)
movl %r8d, 0x3330(%rsp)
movl %edi, 0x332c(%rsp)
movq %rsi, 0x3320(%rsp)
movq %rdx, 0x3318(%rsp)
movl %ecx, 0x3314(%rsp)
movq %rax, 0x3308(%rsp)
movq 0x3338(%rsp), %rcx
movq %rcx, 0xa90(%rsp)
movq 0x3320(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3318(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3314(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3308(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3334(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3330(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x332c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c90(%rsp)
movl $0x10, 0x3c8c(%rsp)
movq 0x3c90(%rsp), %rax
movslq 0x3c8c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c8c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xa98(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1ea0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1201986
movq 0xa98(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1eb8(%rsp)
movb $0x1, 0x230b(%rsp)
testb $0x1, 0x230b(%rsp)
jne 0x1201ac1
leaq 0x1e78(%rsp), %rax
movq %rax, 0x2450(%rsp)
movq 0x2450(%rsp), %rax
movq %rax, 0x4550(%rsp)
movq 0x4550(%rsp), %rax
movq %rax, 0xa88(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1201a64
movq 0xa88(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x454c(%rsp) # imm = 0xFFFFFFFF
movl 0x454c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4548(%rsp)
cmpl $0x1, 0x4548(%rsp)
jne 0x1201a64
movq 0xa88(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1201a35
movq 0xa88(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1201a33
jmp 0x1201a62
movq 0xa88(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4558(%rsp)
cmpq $0x0, 0x4558(%rsp)
je 0x1201a60
movq 0x4558(%rsp), %rdi
callq 0x5f480
jmp 0x1201a62
jmp 0x1201a64
movq 0xa88(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1201abf
movq %rax, %rdi
callq 0x678a0
jmp 0x1201ac1
leaq 0x1e78(%rsp), %rax
movq %rax, 0x2448(%rsp)
movq 0x2448(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xa78(%rsp)
leaq 0x1e78(%rsp), %rax
movq %rax, 0x2560(%rsp)
movq 0x2560(%rsp), %rax
movq %rax, 0x4330(%rsp)
movq 0x4330(%rsp), %rax
movq %rax, 0xa80(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1201bac
movq 0xa80(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x432c(%rsp) # imm = 0xFFFFFFFF
movl 0x432c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4328(%rsp)
cmpl $0x1, 0x4328(%rsp)
jne 0x1201bac
movq 0xa80(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1201b7d
movq 0xa80(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1201b7b
jmp 0x1201baa
movq 0xa80(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4668(%rsp)
cmpq $0x0, 0x4668(%rsp)
je 0x1201ba8
movq 0x4668(%rsp), %rdi
callq 0x5f480
jmp 0x1201baa
jmp 0x1201bac
movq 0xa80(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1201c07
movq %rax, %rdi
callq 0x678a0
movq 0xa78(%rsp), %rax
movq %rax, 0x1ec0(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1ec8(%rsp), %eax
leaq 0x1e28(%rsp), %rdx
movq %rdx, 0x2300(%rsp)
movq %rcx, 0x22f8(%rsp)
movl %eax, 0x22f4(%rsp)
movq 0x22f8(%rsp), %rax
movq %rax, 0xa70(%rsp)
movb $0x0, 0x22f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1e28(%rsp), %r10
movq %r10, 0x3370(%rsp)
movl %r9d, 0x336c(%rsp)
movl %r8d, 0x3368(%rsp)
movl %edi, 0x3364(%rsp)
movq %rsi, 0x3358(%rsp)
movq %rdx, 0x3350(%rsp)
movl %ecx, 0x334c(%rsp)
movq %rax, 0x3340(%rsp)
movq 0x3370(%rsp), %rcx
movq %rcx, 0xa68(%rsp)
movq 0x3358(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3350(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x334c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3340(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x336c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3368(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3364(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c80(%rsp)
movl $0x10, 0x3c7c(%rsp)
movq 0x3c80(%rsp), %rax
movslq 0x3c7c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c7c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xa70(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1e50(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1201dd3
movq 0xa70(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1e68(%rsp)
movb $0x1, 0x22f3(%rsp)
testb $0x1, 0x22f3(%rsp)
jne 0x1201f0e
leaq 0x1e28(%rsp), %rax
movq %rax, 0x2458(%rsp)
movq 0x2458(%rsp), %rax
movq %rax, 0x4540(%rsp)
movq 0x4540(%rsp), %rax
movq %rax, 0xa60(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1201eb1
movq 0xa60(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x453c(%rsp) # imm = 0xFFFFFFFF
movl 0x453c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4538(%rsp)
cmpl $0x1, 0x4538(%rsp)
jne 0x1201eb1
movq 0xa60(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1201e82
movq 0xa60(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1201e80
jmp 0x1201eaf
movq 0xa60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4560(%rsp)
cmpq $0x0, 0x4560(%rsp)
je 0x1201ead
movq 0x4560(%rsp), %rdi
callq 0x5f480
jmp 0x1201eaf
jmp 0x1201eb1
movq 0xa60(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1201f0c
movq %rax, %rdi
callq 0x678a0
jmp 0x1201f0e
leaq 0x1e28(%rsp), %rax
movq %rax, 0x2440(%rsp)
movq 0x2440(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xa50(%rsp)
leaq 0x1e28(%rsp), %rax
movq %rax, 0x2568(%rsp)
movq 0x2568(%rsp), %rax
movq %rax, 0x4320(%rsp)
movq 0x4320(%rsp), %rax
movq %rax, 0xa58(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1201ff9
movq 0xa58(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x431c(%rsp) # imm = 0xFFFFFFFF
movl 0x431c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4318(%rsp)
cmpl $0x1, 0x4318(%rsp)
jne 0x1201ff9
movq 0xa58(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1201fca
movq 0xa58(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1201fc8
jmp 0x1201ff7
movq 0xa58(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4670(%rsp)
cmpq $0x0, 0x4670(%rsp)
je 0x1201ff5
movq 0x4670(%rsp), %rdi
callq 0x5f480
jmp 0x1201ff7
jmp 0x1201ff9
movq 0xa58(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1202054
movq %rax, %rdi
callq 0x678a0
movq 0xa50(%rsp), %rax
movq %rax, 0x1e70(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1ec8(%rsp), %eax
leaq 0x1dd8(%rsp), %rdx
movq %rdx, 0x2a20(%rsp)
movq %rcx, 0x2a18(%rsp)
movl %eax, 0x2a14(%rsp)
movq 0x2a18(%rsp), %rax
movq %rax, 0xa48(%rsp)
movb $0x0, 0x2a13(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2a14(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1dd8(%rsp), %r10
movq %r10, 0x2df8(%rsp)
movl %r9d, 0x2df4(%rsp)
movl %r8d, 0x2df0(%rsp)
movl %edi, 0x2dec(%rsp)
movq %rsi, 0x2de0(%rsp)
movq %rdx, 0x2dd8(%rsp)
movl %ecx, 0x2dd4(%rsp)
movq %rax, 0x2dc8(%rsp)
movq 0x2df8(%rsp), %rcx
movq %rcx, 0xa40(%rsp)
movq 0x2de0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2dd8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2dd4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2dc8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2df4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2df0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2dec(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3e10(%rsp)
movl $0x10, 0x3e0c(%rsp)
movq 0x3e10(%rsp), %rax
movslq 0x3e0c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3e0c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xa48(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1e00(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1202220
movq 0xa48(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1e18(%rsp)
movb $0x1, 0x2a13(%rsp)
testb $0x1, 0x2a13(%rsp)
jne 0x120235b
leaq 0x1dd8(%rsp), %rax
movq %rax, 0x2a28(%rsp)
movq 0x2a28(%rsp), %rax
movq %rax, 0x3e20(%rsp)
movq 0x3e20(%rsp), %rax
movq %rax, 0xa38(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12022fe
movq 0xa38(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e1c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e1c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e18(%rsp)
cmpl $0x1, 0x3e18(%rsp)
jne 0x12022fe
movq 0xa38(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12022cf
movq 0xa38(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12022cd
jmp 0x12022fc
movq 0xa38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48f0(%rsp)
cmpq $0x0, 0x48f0(%rsp)
je 0x12022fa
movq 0x48f0(%rsp), %rdi
callq 0x5f480
jmp 0x12022fc
jmp 0x12022fe
movq 0xa38(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1202359
movq %rax, %rdi
callq 0x678a0
jmp 0x120235b
leaq 0x1dd8(%rsp), %rax
movq %rax, 0x2af8(%rsp)
movq 0x2af8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xa28(%rsp)
leaq 0x1dd8(%rsp), %rax
movq %rax, 0x2570(%rsp)
movq 0x2570(%rsp), %rax
movq %rax, 0x4310(%rsp)
movq 0x4310(%rsp), %rax
movq %rax, 0xa30(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1202446
movq 0xa30(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x430c(%rsp) # imm = 0xFFFFFFFF
movl 0x430c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4308(%rsp)
cmpl $0x1, 0x4308(%rsp)
jne 0x1202446
movq 0xa30(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1202417
movq 0xa30(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1202415
jmp 0x1202444
movq 0xa30(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4678(%rsp)
cmpq $0x0, 0x4678(%rsp)
je 0x1202442
movq 0x4678(%rsp), %rdi
callq 0x5f480
jmp 0x1202444
jmp 0x1202446
movq 0xa30(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12024a1
movq %rax, %rdi
callq 0x678a0
movq 0xa28(%rsp), %rax
movq %rax, 0x1e20(%rsp)
movl $0x0, 0x1dd4(%rsp)
movl 0x1dd4(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x120252f
movq 0x1ec0(%rsp), %rsi
movslq 0x1dd4(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1e70(%rsp), %rdx
movslq 0x1dd4(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x1278030
movq 0x1e20(%rsp), %rax
movslq 0x1dd4(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1dd4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1dd4(%rsp)
jmp 0x12024bc
jmp 0x1202531
movl 0x1ec8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1ec8(%rsp)
jmp 0x12017b6
movl $0x0, 0x1f24(%rsp)
jmp 0x12149e5
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1ef0(%rsp), %ecx
movl 0x1eec(%rsp), %r8d
movq 0x1ee0(%rsp), %r9
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6fb30
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fe0(%rsp)
movq 0x1fe0(%rsp), %rcx
movq %rcx, 0xa18(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xa27(%rsp)
je 0x12025fa
movq 0xa18(%rsp), %rax
movq %rax, 0x2d08(%rsp)
movq 0x2d08(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xa27(%rsp)
movb 0xa27(%rsp), %al
testb $0x1, %al
jne 0x1202607
jmp 0x1202617
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x12149e5
movq 0x1f10(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x12034b1
movl $0x0, 0x1dd0(%rsp)
movl 0x1dd0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x12034a1
movq 0x1f18(%rsp), %rcx
movl 0x1dd0(%rsp), %eax
leaq 0x1d80(%rsp), %rdx
movq %rdx, 0x22e8(%rsp)
movq %rcx, 0x22e0(%rsp)
movl %eax, 0x22dc(%rsp)
movq 0x22e0(%rsp), %rax
movq %rax, 0xa10(%rsp)
movb $0x0, 0x22db(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22dc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1d80(%rsp), %r10
movq %r10, 0x33a8(%rsp)
movl %r9d, 0x33a4(%rsp)
movl %r8d, 0x33a0(%rsp)
movl %edi, 0x339c(%rsp)
movq %rsi, 0x3390(%rsp)
movq %rdx, 0x3388(%rsp)
movl %ecx, 0x3384(%rsp)
movq %rax, 0x3378(%rsp)
movq 0x33a8(%rsp), %rcx
movq %rcx, 0xa08(%rsp)
movq 0x3390(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3388(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3384(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3378(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x33a4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x33a0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x339c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c70(%rsp)
movl $0x10, 0x3c6c(%rsp)
movq 0x3c70(%rsp), %rax
movslq 0x3c6c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c6c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xa10(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1da8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1202804
movq 0xa10(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1dc0(%rsp)
movb $0x1, 0x22db(%rsp)
testb $0x1, 0x22db(%rsp)
jne 0x120293f
leaq 0x1d80(%rsp), %rax
movq %rax, 0x2460(%rsp)
movq 0x2460(%rsp), %rax
movq %rax, 0x4530(%rsp)
movq 0x4530(%rsp), %rax
movq %rax, 0xa00(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12028e2
movq 0xa00(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x452c(%rsp) # imm = 0xFFFFFFFF
movl 0x452c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4528(%rsp)
cmpl $0x1, 0x4528(%rsp)
jne 0x12028e2
movq 0xa00(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12028b3
movq 0xa00(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12028b1
jmp 0x12028e0
movq 0xa00(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4568(%rsp)
cmpq $0x0, 0x4568(%rsp)
je 0x12028de
movq 0x4568(%rsp), %rdi
callq 0x5f480
jmp 0x12028e0
jmp 0x12028e2
movq 0xa00(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120293d
movq %rax, %rdi
callq 0x678a0
jmp 0x120293f
leaq 0x1d80(%rsp), %rax
movq %rax, 0x2438(%rsp)
movq 0x2438(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x9f0(%rsp)
leaq 0x1d80(%rsp), %rax
movq %rax, 0x2578(%rsp)
movq 0x2578(%rsp), %rax
movq %rax, 0x4300(%rsp)
movq 0x4300(%rsp), %rax
movq %rax, 0x9f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1202a2a
movq 0x9f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42fc(%rsp) # imm = 0xFFFFFFFF
movl 0x42fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42f8(%rsp)
cmpl $0x1, 0x42f8(%rsp)
jne 0x1202a2a
movq 0x9f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12029fb
movq 0x9f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12029f9
jmp 0x1202a28
movq 0x9f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4680(%rsp)
cmpq $0x0, 0x4680(%rsp)
je 0x1202a26
movq 0x4680(%rsp), %rdi
callq 0x5f480
jmp 0x1202a28
jmp 0x1202a2a
movq 0x9f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1202a85
movq %rax, %rdi
callq 0x678a0
movq 0x9f0(%rsp), %rax
movq %rax, 0x1dc8(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1dd0(%rsp), %eax
leaq 0x1d30(%rsp), %rdx
movq %rdx, 0x22d0(%rsp)
movq %rcx, 0x22c8(%rsp)
movl %eax, 0x22c4(%rsp)
movq 0x22c8(%rsp), %rax
movq %rax, 0x9e8(%rsp)
movb $0x0, 0x22c3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22c4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1d30(%rsp), %r10
movq %r10, 0x33e0(%rsp)
movl %r9d, 0x33dc(%rsp)
movl %r8d, 0x33d8(%rsp)
movl %edi, 0x33d4(%rsp)
movq %rsi, 0x33c8(%rsp)
movq %rdx, 0x33c0(%rsp)
movl %ecx, 0x33bc(%rsp)
movq %rax, 0x33b0(%rsp)
movq 0x33e0(%rsp), %rcx
movq %rcx, 0x9e0(%rsp)
movq 0x33c8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x33c0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x33bc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x33b0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x33dc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x33d8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x33d4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c60(%rsp)
movl $0x10, 0x3c5c(%rsp)
movq 0x3c60(%rsp), %rax
movslq 0x3c5c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c5c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x9e8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1d58(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1202c51
movq 0x9e8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1d70(%rsp)
movb $0x1, 0x22c3(%rsp)
testb $0x1, 0x22c3(%rsp)
jne 0x1202d8c
leaq 0x1d30(%rsp), %rax
movq %rax, 0x2468(%rsp)
movq 0x2468(%rsp), %rax
movq %rax, 0x4520(%rsp)
movq 0x4520(%rsp), %rax
movq %rax, 0x9d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1202d2f
movq 0x9d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x451c(%rsp) # imm = 0xFFFFFFFF
movl 0x451c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4518(%rsp)
cmpl $0x1, 0x4518(%rsp)
jne 0x1202d2f
movq 0x9d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1202d00
movq 0x9d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1202cfe
jmp 0x1202d2d
movq 0x9d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4570(%rsp)
cmpq $0x0, 0x4570(%rsp)
je 0x1202d2b
movq 0x4570(%rsp), %rdi
callq 0x5f480
jmp 0x1202d2d
jmp 0x1202d2f
movq 0x9d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1202d8a
movq %rax, %rdi
callq 0x678a0
jmp 0x1202d8c
leaq 0x1d30(%rsp), %rax
movq %rax, 0x2430(%rsp)
movq 0x2430(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x9c8(%rsp)
leaq 0x1d30(%rsp), %rax
movq %rax, 0x2580(%rsp)
movq 0x2580(%rsp), %rax
movq %rax, 0x42f0(%rsp)
movq 0x42f0(%rsp), %rax
movq %rax, 0x9d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1202e77
movq 0x9d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42ec(%rsp) # imm = 0xFFFFFFFF
movl 0x42ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42e8(%rsp)
cmpl $0x1, 0x42e8(%rsp)
jne 0x1202e77
movq 0x9d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1202e48
movq 0x9d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1202e46
jmp 0x1202e75
movq 0x9d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4688(%rsp)
cmpq $0x0, 0x4688(%rsp)
je 0x1202e73
movq 0x4688(%rsp), %rdi
callq 0x5f480
jmp 0x1202e75
jmp 0x1202e77
movq 0x9d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1202ed2
movq %rax, %rdi
callq 0x678a0
movq 0x9c8(%rsp), %rax
movq %rax, 0x1d78(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1dd0(%rsp), %eax
leaq 0x1ce0(%rsp), %rdx
movq %rdx, 0x2a00(%rsp)
movq %rcx, 0x29f8(%rsp)
movl %eax, 0x29f4(%rsp)
movq 0x29f8(%rsp), %rax
movq %rax, 0x9c0(%rsp)
movb $0x0, 0x29f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x29f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1ce0(%rsp), %r10
movq %r10, 0x2e30(%rsp)
movl %r9d, 0x2e2c(%rsp)
movl %r8d, 0x2e28(%rsp)
movl %edi, 0x2e24(%rsp)
movq %rsi, 0x2e18(%rsp)
movq %rdx, 0x2e10(%rsp)
movl %ecx, 0x2e0c(%rsp)
movq %rax, 0x2e00(%rsp)
movq 0x2e30(%rsp), %rcx
movq %rcx, 0x9b8(%rsp)
movq 0x2e18(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2e10(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2e0c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2e00(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2e2c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2e28(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2e24(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3e00(%rsp)
movl $0x10, 0x3dfc(%rsp)
movq 0x3e00(%rsp), %rax
movslq 0x3dfc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3dfc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x9c0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1d08(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x120309e
movq 0x9c0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1d20(%rsp)
movb $0x1, 0x29f3(%rsp)
testb $0x1, 0x29f3(%rsp)
jne 0x12031d9
leaq 0x1ce0(%rsp), %rax
movq %rax, 0x2a08(%rsp)
movq 0x2a08(%rsp), %rax
movq %rax, 0x3e30(%rsp)
movq 0x3e30(%rsp), %rax
movq %rax, 0x9b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120317c
movq 0x9b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e2c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e2c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e28(%rsp)
cmpl $0x1, 0x3e28(%rsp)
jne 0x120317c
movq 0x9b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120314d
movq 0x9b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x120314b
jmp 0x120317a
movq 0x9b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48e8(%rsp)
cmpq $0x0, 0x48e8(%rsp)
je 0x1203178
movq 0x48e8(%rsp), %rdi
callq 0x5f480
jmp 0x120317a
jmp 0x120317c
movq 0x9b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12031d7
movq %rax, %rdi
callq 0x678a0
jmp 0x12031d9
leaq 0x1ce0(%rsp), %rax
movq %rax, 0x2af0(%rsp)
movq 0x2af0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x9a0(%rsp)
leaq 0x1ce0(%rsp), %rax
movq %rax, 0x2588(%rsp)
movq 0x2588(%rsp), %rax
movq %rax, 0x42e0(%rsp)
movq 0x42e0(%rsp), %rax
movq %rax, 0x9a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12032c4
movq 0x9a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42dc(%rsp) # imm = 0xFFFFFFFF
movl 0x42dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42d8(%rsp)
cmpl $0x1, 0x42d8(%rsp)
jne 0x12032c4
movq 0x9a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1203295
movq 0x9a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1203293
jmp 0x12032c2
movq 0x9a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4690(%rsp)
cmpq $0x0, 0x4690(%rsp)
je 0x12032c0
movq 0x4690(%rsp), %rdi
callq 0x5f480
jmp 0x12032c2
jmp 0x12032c4
movq 0x9a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120331f
movq %rax, %rdi
callq 0x678a0
movq 0x9a0(%rsp), %rax
movq %rax, 0x1d28(%rsp)
movl $0x0, 0x1cdc(%rsp)
movl 0x1cdc(%rsp), %eax
cmpl 0x1ef0(%rsp), %eax
jge 0x1203489
movl $0x0, 0x1cd8(%rsp)
movl 0x1cd8(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jge 0x1203452
movq 0x1d78(%rsp), %rax
movslq 0x1cd8(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x1cd4(%rsp)
movl $0x0, 0x1cd0(%rsp)
movl 0x1cd0(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x12033fa
movq 0x1dc8(%rsp), %rsi
movslq 0x1cd0(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0x1cd4(%rsp), %rdx
callq 0x1278030
movq 0x1d28(%rsp), %rax
movslq 0x1cd0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1cd0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1cd0(%rsp)
jmp 0x1203396
movl 0x1ef8(%rsp), %ecx
movq 0x1dc8(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1dc8(%rsp)
movl 0x1ef8(%rsp), %ecx
movq 0x1d28(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1d28(%rsp)
movl 0x1cd8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1cd8(%rsp)
jmp 0x1203359
movl 0x1ef4(%rsp), %ecx
movq 0x1d78(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1d78(%rsp)
movl 0x1cdc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1cdc(%rsp)
jmp 0x120333a
jmp 0x120348b
movl 0x1dd0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1dd0(%rsp)
jmp 0x1202634
movl $0x0, 0x1f24(%rsp)
jmp 0x12149e5
movq 0x1f10(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1203f28
movl $0x0, 0x1ccc(%rsp)
movl 0x1ccc(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x1203f18
movq 0x1f18(%rsp), %rcx
movl 0x1ccc(%rsp), %eax
leaq 0x1c78(%rsp), %rdx
movq %rdx, 0x22b8(%rsp)
movq %rcx, 0x22b0(%rsp)
movl %eax, 0x22ac(%rsp)
movq 0x22b0(%rsp), %rax
movq %rax, 0x998(%rsp)
movb $0x0, 0x22ab(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22ac(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1c78(%rsp), %r10
movq %r10, 0x3418(%rsp)
movl %r9d, 0x3414(%rsp)
movl %r8d, 0x3410(%rsp)
movl %edi, 0x340c(%rsp)
movq %rsi, 0x3400(%rsp)
movq %rdx, 0x33f8(%rsp)
movl %ecx, 0x33f4(%rsp)
movq %rax, 0x33e8(%rsp)
movq 0x3418(%rsp), %rcx
movq %rcx, 0x990(%rsp)
movq 0x3400(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x33f8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x33f4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x33e8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3414(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3410(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x340c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c50(%rsp)
movl $0x10, 0x3c4c(%rsp)
movq 0x3c50(%rsp), %rax
movslq 0x3c4c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c4c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x998(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1ca0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x120369e
movq 0x998(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1cb8(%rsp)
movb $0x1, 0x22ab(%rsp)
testb $0x1, 0x22ab(%rsp)
jne 0x12037d9
leaq 0x1c78(%rsp), %rax
movq %rax, 0x2470(%rsp)
movq 0x2470(%rsp), %rax
movq %rax, 0x4510(%rsp)
movq 0x4510(%rsp), %rax
movq %rax, 0x988(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120377c
movq 0x988(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x450c(%rsp) # imm = 0xFFFFFFFF
movl 0x450c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4508(%rsp)
cmpl $0x1, 0x4508(%rsp)
jne 0x120377c
movq 0x988(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120374d
movq 0x988(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x120374b
jmp 0x120377a
movq 0x988(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4578(%rsp)
cmpq $0x0, 0x4578(%rsp)
je 0x1203778
movq 0x4578(%rsp), %rdi
callq 0x5f480
jmp 0x120377a
jmp 0x120377c
movq 0x988(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12037d7
movq %rax, %rdi
callq 0x678a0
jmp 0x12037d9
leaq 0x1c78(%rsp), %rax
movq %rax, 0x2428(%rsp)
movq 0x2428(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x978(%rsp)
leaq 0x1c78(%rsp), %rax
movq %rax, 0x2590(%rsp)
movq 0x2590(%rsp), %rax
movq %rax, 0x42d0(%rsp)
movq 0x42d0(%rsp), %rax
movq %rax, 0x980(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12038c4
movq 0x980(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42cc(%rsp) # imm = 0xFFFFFFFF
movl 0x42cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42c8(%rsp)
cmpl $0x1, 0x42c8(%rsp)
jne 0x12038c4
movq 0x980(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1203895
movq 0x980(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1203893
jmp 0x12038c2
movq 0x980(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4698(%rsp)
cmpq $0x0, 0x4698(%rsp)
je 0x12038c0
movq 0x4698(%rsp), %rdi
callq 0x5f480
jmp 0x12038c2
jmp 0x12038c4
movq 0x980(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120391f
movq %rax, %rdi
callq 0x678a0
movq 0x978(%rsp), %rax
movq %rax, 0x1cc0(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1ccc(%rsp), %eax
movq %rcx, 0x2b38(%rsp)
movl %eax, 0x2b34(%rsp)
movq 0x2b38(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2b34(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x1c70(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1ccc(%rsp), %eax
leaq 0x1c20(%rsp), %rdx
movq %rdx, 0x29e0(%rsp)
movq %rcx, 0x29d8(%rsp)
movl %eax, 0x29d4(%rsp)
movq 0x29d8(%rsp), %rax
movq %rax, 0x970(%rsp)
movb $0x0, 0x29d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x29d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1c20(%rsp), %r10
movq %r10, 0x2e68(%rsp)
movl %r9d, 0x2e64(%rsp)
movl %r8d, 0x2e60(%rsp)
movl %edi, 0x2e5c(%rsp)
movq %rsi, 0x2e50(%rsp)
movq %rdx, 0x2e48(%rsp)
movl %ecx, 0x2e44(%rsp)
movq %rax, 0x2e38(%rsp)
movq 0x2e68(%rsp), %rcx
movq %rcx, 0x968(%rsp)
movq 0x2e50(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2e48(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2e44(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2e38(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2e64(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2e60(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2e5c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3df0(%rsp)
movl $0x10, 0x3dec(%rsp)
movq 0x3df0(%rsp), %rax
movslq 0x3dec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3dec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x970(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1c48(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1203b34
movq 0x970(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1c60(%rsp)
movb $0x1, 0x29d3(%rsp)
testb $0x1, 0x29d3(%rsp)
jne 0x1203c6f
leaq 0x1c20(%rsp), %rax
movq %rax, 0x29e8(%rsp)
movq 0x29e8(%rsp), %rax
movq %rax, 0x3e40(%rsp)
movq 0x3e40(%rsp), %rax
movq %rax, 0x960(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1203c12
movq 0x960(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e3c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e3c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e38(%rsp)
cmpl $0x1, 0x3e38(%rsp)
jne 0x1203c12
movq 0x960(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1203be3
movq 0x960(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1203be1
jmp 0x1203c10
movq 0x960(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48e0(%rsp)
cmpq $0x0, 0x48e0(%rsp)
je 0x1203c0e
movq 0x48e0(%rsp), %rdi
callq 0x5f480
jmp 0x1203c10
jmp 0x1203c12
movq 0x960(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1203c6d
movq %rax, %rdi
callq 0x678a0
jmp 0x1203c6f
leaq 0x1c20(%rsp), %rax
movq %rax, 0x2ae8(%rsp)
movq 0x2ae8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x950(%rsp)
leaq 0x1c20(%rsp), %rax
movq %rax, 0x2598(%rsp)
movq 0x2598(%rsp), %rax
movq %rax, 0x42c0(%rsp)
movq 0x42c0(%rsp), %rax
movq %rax, 0x958(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1203d5a
movq 0x958(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42bc(%rsp) # imm = 0xFFFFFFFF
movl 0x42bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42b8(%rsp)
cmpl $0x1, 0x42b8(%rsp)
jne 0x1203d5a
movq 0x958(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1203d2b
movq 0x958(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1203d29
jmp 0x1203d58
movq 0x958(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46a0(%rsp)
cmpq $0x0, 0x46a0(%rsp)
je 0x1203d56
movq 0x46a0(%rsp), %rdi
callq 0x5f480
jmp 0x1203d58
jmp 0x1203d5a
movq 0x958(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1203db5
movq %rax, %rdi
callq 0x678a0
movq 0x950(%rsp), %rax
movq %rax, 0x1c68(%rsp)
movl $0x0, 0x1c1c(%rsp)
movl 0x1c1c(%rsp), %eax
cmpl 0x1ef0(%rsp), %eax
jge 0x1203f00
movq 0x1c70(%rsp), %rax
movslq 0x1c1c(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x1c18(%rsp)
movl $0x0, 0x1c14(%rsp)
movl 0x1c14(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jge 0x1203ee8
movl $0x0, 0x1c10(%rsp)
movl 0x1c10(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x1203e90
movq 0x1cc0(%rsp), %rsi
movslq 0x1c10(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0x1c18(%rsp), %rdx
callq 0x1278030
movq 0x1c68(%rsp), %rax
movslq 0x1c10(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1c10(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c10(%rsp)
jmp 0x1203e2c
movl 0x1ef8(%rsp), %ecx
movq 0x1cc0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1cc0(%rsp)
movl 0x1ef8(%rsp), %ecx
movq 0x1c68(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1c68(%rsp)
movl 0x1c14(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c14(%rsp)
jmp 0x1203e0d
jmp 0x1203eea
movl 0x1c1c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c1c(%rsp)
jmp 0x1203dd0
jmp 0x1203f02
movl 0x1ccc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1ccc(%rsp)
jmp 0x12034ce
movl $0x0, 0x1f24(%rsp)
jmp 0x12149e5
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x120526a
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x12048d9
movq 0x1f10(%rsp), %rax
movq %rax, 0x2c98(%rsp)
movq $0x0, 0x2c90(%rsp)
movq 0x2c98(%rsp), %rax
movq (%rax), %rax
movq 0x2c90(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x1c0c(%rsp)
movl $0x0, 0x1c08(%rsp)
movl 0x1c08(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x12048c9
movq 0x1f18(%rsp), %rcx
movl 0x1c08(%rsp), %eax
leaq 0x1bb8(%rsp), %rdx
movq %rdx, 0x22a0(%rsp)
movq %rcx, 0x2298(%rsp)
movl %eax, 0x2294(%rsp)
movq 0x2298(%rsp), %rax
movq %rax, 0x948(%rsp)
movb $0x0, 0x2293(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2294(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1bb8(%rsp), %r10
movq %r10, 0x3450(%rsp)
movl %r9d, 0x344c(%rsp)
movl %r8d, 0x3448(%rsp)
movl %edi, 0x3444(%rsp)
movq %rsi, 0x3438(%rsp)
movq %rdx, 0x3430(%rsp)
movl %ecx, 0x342c(%rsp)
movq %rax, 0x3420(%rsp)
movq 0x3450(%rsp), %rcx
movq %rcx, 0x940(%rsp)
movq 0x3438(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3430(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x342c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3420(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x344c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3448(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3444(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c40(%rsp)
movl $0x10, 0x3c3c(%rsp)
movq 0x3c40(%rsp), %rax
movslq 0x3c3c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c3c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x948(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1be0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1204164
movq 0x948(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1bf8(%rsp)
movb $0x1, 0x2293(%rsp)
testb $0x1, 0x2293(%rsp)
jne 0x120429f
leaq 0x1bb8(%rsp), %rax
movq %rax, 0x2478(%rsp)
movq 0x2478(%rsp), %rax
movq %rax, 0x4500(%rsp)
movq 0x4500(%rsp), %rax
movq %rax, 0x938(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1204242
movq 0x938(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x44fc(%rsp) # imm = 0xFFFFFFFF
movl 0x44fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x44f8(%rsp)
cmpl $0x1, 0x44f8(%rsp)
jne 0x1204242
movq 0x938(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1204213
movq 0x938(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1204211
jmp 0x1204240
movq 0x938(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4580(%rsp)
cmpq $0x0, 0x4580(%rsp)
je 0x120423e
movq 0x4580(%rsp), %rdi
callq 0x5f480
jmp 0x1204240
jmp 0x1204242
movq 0x938(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120429d
movq %rax, %rdi
callq 0x678a0
jmp 0x120429f
leaq 0x1bb8(%rsp), %rax
movq %rax, 0x2420(%rsp)
movq 0x2420(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x928(%rsp)
leaq 0x1bb8(%rsp), %rax
movq %rax, 0x25a0(%rsp)
movq 0x25a0(%rsp), %rax
movq %rax, 0x42b0(%rsp)
movq 0x42b0(%rsp), %rax
movq %rax, 0x930(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120438a
movq 0x930(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42ac(%rsp) # imm = 0xFFFFFFFF
movl 0x42ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42a8(%rsp)
cmpl $0x1, 0x42a8(%rsp)
jne 0x120438a
movq 0x930(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120435b
movq 0x930(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1204359
jmp 0x1204388
movq 0x930(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46a8(%rsp)
cmpq $0x0, 0x46a8(%rsp)
je 0x1204386
movq 0x46a8(%rsp), %rdi
callq 0x5f480
jmp 0x1204388
jmp 0x120438a
movq 0x930(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12043e5
movq %rax, %rdi
callq 0x678a0
movq 0x928(%rsp), %rax
movq %rax, 0x1c00(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1c08(%rsp), %eax
leaq 0x1b68(%rsp), %rdx
movq %rdx, 0x29c0(%rsp)
movq %rcx, 0x29b8(%rsp)
movl %eax, 0x29b4(%rsp)
movq 0x29b8(%rsp), %rax
movq %rax, 0x920(%rsp)
movb $0x0, 0x29b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x29b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1b68(%rsp), %r10
movq %r10, 0x2ea0(%rsp)
movl %r9d, 0x2e9c(%rsp)
movl %r8d, 0x2e98(%rsp)
movl %edi, 0x2e94(%rsp)
movq %rsi, 0x2e88(%rsp)
movq %rdx, 0x2e80(%rsp)
movl %ecx, 0x2e7c(%rsp)
movq %rax, 0x2e70(%rsp)
movq 0x2ea0(%rsp), %rcx
movq %rcx, 0x918(%rsp)
movq 0x2e88(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2e80(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2e7c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2e70(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2e9c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2e98(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2e94(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3de0(%rsp)
movl $0x10, 0x3ddc(%rsp)
movq 0x3de0(%rsp), %rax
movslq 0x3ddc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3ddc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x920(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1b90(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12045b1
movq 0x920(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1ba8(%rsp)
movb $0x1, 0x29b3(%rsp)
testb $0x1, 0x29b3(%rsp)
jne 0x12046ec
leaq 0x1b68(%rsp), %rax
movq %rax, 0x29c8(%rsp)
movq 0x29c8(%rsp), %rax
movq %rax, 0x3e50(%rsp)
movq 0x3e50(%rsp), %rax
movq %rax, 0x910(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120468f
movq 0x910(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e4c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e4c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e48(%rsp)
cmpl $0x1, 0x3e48(%rsp)
jne 0x120468f
movq 0x910(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1204660
movq 0x910(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x120465e
jmp 0x120468d
movq 0x910(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48d8(%rsp)
cmpq $0x0, 0x48d8(%rsp)
je 0x120468b
movq 0x48d8(%rsp), %rdi
callq 0x5f480
jmp 0x120468d
jmp 0x120468f
movq 0x910(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12046ea
movq %rax, %rdi
callq 0x678a0
jmp 0x12046ec
leaq 0x1b68(%rsp), %rax
movq %rax, 0x2ae0(%rsp)
movq 0x2ae0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x900(%rsp)
leaq 0x1b68(%rsp), %rax
movq %rax, 0x25a8(%rsp)
movq 0x25a8(%rsp), %rax
movq %rax, 0x42a0(%rsp)
movq 0x42a0(%rsp), %rax
movq %rax, 0x908(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12047d7
movq 0x908(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x429c(%rsp) # imm = 0xFFFFFFFF
movl 0x429c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4298(%rsp)
cmpl $0x1, 0x4298(%rsp)
jne 0x12047d7
movq 0x908(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12047a8
movq 0x908(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12047a6
jmp 0x12047d5
movq 0x908(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46b0(%rsp)
cmpq $0x0, 0x46b0(%rsp)
je 0x12047d3
movq 0x46b0(%rsp), %rdi
callq 0x5f480
jmp 0x12047d5
jmp 0x12047d7
movq 0x908(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1204832
movq %rax, %rdi
callq 0x678a0
movq 0x900(%rsp), %rax
movq %rax, 0x1bb0(%rsp)
movl $0x0, 0x1b64(%rsp)
movl 0x1b64(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x12048b1
movq 0x1c00(%rsp), %rsi
movslq 0x1b64(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0x1c0c(%rsp), %rdx
callq 0x1278030
movq 0x1bb0(%rsp), %rax
movslq 0x1b64(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1b64(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b64(%rsp)
jmp 0x120484d
jmp 0x12048b3
movl 0x1c08(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c08(%rsp)
jmp 0x1203f94
movl $0x0, 0x1f24(%rsp)
jmp 0x12149e5
movl $0x0, 0x1b60(%rsp)
movl 0x1b60(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x120525a
movq 0x1f18(%rsp), %rcx
movl 0x1b60(%rsp), %eax
leaq 0x1b10(%rsp), %rdx
movq %rdx, 0x2288(%rsp)
movq %rcx, 0x2280(%rsp)
movl %eax, 0x227c(%rsp)
movq 0x2280(%rsp), %rax
movq %rax, 0x8f8(%rsp)
movb $0x0, 0x227b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x227c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1b10(%rsp), %r10
movq %r10, 0x3488(%rsp)
movl %r9d, 0x3484(%rsp)
movl %r8d, 0x3480(%rsp)
movl %edi, 0x347c(%rsp)
movq %rsi, 0x3470(%rsp)
movq %rdx, 0x3468(%rsp)
movl %ecx, 0x3464(%rsp)
movq %rax, 0x3458(%rsp)
movq 0x3488(%rsp), %rcx
movq %rcx, 0x8f0(%rsp)
movq 0x3470(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3468(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3464(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3458(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3484(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3480(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x347c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c30(%rsp)
movl $0x10, 0x3c2c(%rsp)
movq 0x3c30(%rsp), %rax
movslq 0x3c2c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c2c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x8f8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1b38(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1204ab4
movq 0x8f8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1b50(%rsp)
movb $0x1, 0x227b(%rsp)
testb $0x1, 0x227b(%rsp)
jne 0x1204bef
leaq 0x1b10(%rsp), %rax
movq %rax, 0x2480(%rsp)
movq 0x2480(%rsp), %rax
movq %rax, 0x44f0(%rsp)
movq 0x44f0(%rsp), %rax
movq %rax, 0x8e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1204b92
movq 0x8e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x44ec(%rsp) # imm = 0xFFFFFFFF
movl 0x44ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x44e8(%rsp)
cmpl $0x1, 0x44e8(%rsp)
jne 0x1204b92
movq 0x8e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1204b63
movq 0x8e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1204b61
jmp 0x1204b90
movq 0x8e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4588(%rsp)
cmpq $0x0, 0x4588(%rsp)
je 0x1204b8e
movq 0x4588(%rsp), %rdi
callq 0x5f480
jmp 0x1204b90
jmp 0x1204b92
movq 0x8e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1204bed
movq %rax, %rdi
callq 0x678a0
jmp 0x1204bef
leaq 0x1b10(%rsp), %rax
movq %rax, 0x2418(%rsp)
movq 0x2418(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8d8(%rsp)
leaq 0x1b10(%rsp), %rax
movq %rax, 0x25b0(%rsp)
movq 0x25b0(%rsp), %rax
movq %rax, 0x4290(%rsp)
movq 0x4290(%rsp), %rax
movq %rax, 0x8e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1204cda
movq 0x8e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x428c(%rsp) # imm = 0xFFFFFFFF
movl 0x428c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4288(%rsp)
cmpl $0x1, 0x4288(%rsp)
jne 0x1204cda
movq 0x8e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1204cab
movq 0x8e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1204ca9
jmp 0x1204cd8
movq 0x8e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46b8(%rsp)
cmpq $0x0, 0x46b8(%rsp)
je 0x1204cd6
movq 0x46b8(%rsp), %rdi
callq 0x5f480
jmp 0x1204cd8
jmp 0x1204cda
movq 0x8e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1204d35
movq %rax, %rdi
callq 0x678a0
movq 0x8d8(%rsp), %rax
movq %rax, 0x1b58(%rsp)
movq 0x1f10(%rsp), %rcx
movslq 0x1b60(%rsp), %rax
movq %rcx, 0x2c88(%rsp)
movq %rax, 0x2c80(%rsp)
movq 0x2c88(%rsp), %rax
movq (%rax), %rax
movq 0x2c80(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x1b0c(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1b60(%rsp), %eax
leaq 0x1ab8(%rsp), %rdx
movq %rdx, 0x29a0(%rsp)
movq %rcx, 0x2998(%rsp)
movl %eax, 0x2994(%rsp)
movq 0x2998(%rsp), %rax
movq %rax, 0x8d0(%rsp)
movb $0x0, 0x2993(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2994(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1ab8(%rsp), %r10
movq %r10, 0x2ed8(%rsp)
movl %r9d, 0x2ed4(%rsp)
movl %r8d, 0x2ed0(%rsp)
movl %edi, 0x2ecc(%rsp)
movq %rsi, 0x2ec0(%rsp)
movq %rdx, 0x2eb8(%rsp)
movl %ecx, 0x2eb4(%rsp)
movq %rax, 0x2ea8(%rsp)
movq 0x2ed8(%rsp), %rcx
movq %rcx, 0x8c8(%rsp)
movq 0x2ec0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2eb8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2eb4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ea8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2ed4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2ed0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2ecc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3dd0(%rsp)
movl $0x10, 0x3dcc(%rsp)
movq 0x3dd0(%rsp), %rax
movslq 0x3dcc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3dcc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x8d0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1ae0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1204f42
movq 0x8d0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1af8(%rsp)
movb $0x1, 0x2993(%rsp)
testb $0x1, 0x2993(%rsp)
jne 0x120507d
leaq 0x1ab8(%rsp), %rax
movq %rax, 0x29a8(%rsp)
movq 0x29a8(%rsp), %rax
movq %rax, 0x3e60(%rsp)
movq 0x3e60(%rsp), %rax
movq %rax, 0x8c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1205020
movq 0x8c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e5c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e5c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e58(%rsp)
cmpl $0x1, 0x3e58(%rsp)
jne 0x1205020
movq 0x8c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1204ff1
movq 0x8c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1204fef
jmp 0x120501e
movq 0x8c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48d0(%rsp)
cmpq $0x0, 0x48d0(%rsp)
je 0x120501c
movq 0x48d0(%rsp), %rdi
callq 0x5f480
jmp 0x120501e
jmp 0x1205020
movq 0x8c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120507b
movq %rax, %rdi
callq 0x678a0
jmp 0x120507d
leaq 0x1ab8(%rsp), %rax
movq %rax, 0x2ad8(%rsp)
movq 0x2ad8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8b0(%rsp)
leaq 0x1ab8(%rsp), %rax
movq %rax, 0x25b8(%rsp)
movq 0x25b8(%rsp), %rax
movq %rax, 0x4280(%rsp)
movq 0x4280(%rsp), %rax
movq %rax, 0x8b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1205168
movq 0x8b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x427c(%rsp) # imm = 0xFFFFFFFF
movl 0x427c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4278(%rsp)
cmpl $0x1, 0x4278(%rsp)
jne 0x1205168
movq 0x8b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1205139
movq 0x8b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1205137
jmp 0x1205166
movq 0x8b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46c0(%rsp)
cmpq $0x0, 0x46c0(%rsp)
je 0x1205164
movq 0x46c0(%rsp), %rdi
callq 0x5f480
jmp 0x1205166
jmp 0x1205168
movq 0x8b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12051c3
movq %rax, %rdi
callq 0x678a0
movq 0x8b0(%rsp), %rax
movq %rax, 0x1b00(%rsp)
movl $0x0, 0x1ab4(%rsp)
movl 0x1ab4(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x1205242
movq 0x1b58(%rsp), %rsi
movslq 0x1ab4(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0x1b0c(%rsp), %rdx
callq 0x1278030
movq 0x1b00(%rsp), %rax
movslq 0x1ab4(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1ab4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1ab4(%rsp)
jmp 0x12051de
jmp 0x1205244
movl 0x1b60(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b60(%rsp)
jmp 0x12048e4
movl $0x0, 0x1f24(%rsp)
jmp 0x12149e5
jmp 0x12149da
movq 0x1f18(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x120fcec
movq 0x1f10(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x12061db
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed4(%rsp), %ecx
movl 0x1ed0(%rsp), %r8d
movq 0x1ee0(%rsp), %r9
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6fb30
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fd8(%rsp)
movq 0x1fd8(%rsp), %rcx
movq %rcx, 0x8a0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x8af(%rsp)
je 0x1205336
movq 0x8a0(%rsp), %rax
movq %rax, 0x2d10(%rsp)
movq 0x2d10(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x8af(%rsp)
movb 0x8af(%rsp), %al
testb $0x1, %al
jne 0x1205343
jmp 0x1205353
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x12149e5
movl $0x0, 0x1ab0(%rsp)
movl 0x1ab0(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x12061cb
movq 0x1f18(%rsp), %rcx
movl 0x1ab0(%rsp), %eax
leaq 0x1a60(%rsp), %rdx
movq %rdx, 0x2270(%rsp)
movq %rcx, 0x2268(%rsp)
movl %eax, 0x2264(%rsp)
movq 0x2268(%rsp), %rax
movq %rax, 0x898(%rsp)
movb $0x0, 0x2263(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2264(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1a60(%rsp), %r10
movq %r10, 0x34c0(%rsp)
movl %r9d, 0x34bc(%rsp)
movl %r8d, 0x34b8(%rsp)
movl %edi, 0x34b4(%rsp)
movq %rsi, 0x34a8(%rsp)
movq %rdx, 0x34a0(%rsp)
movl %ecx, 0x349c(%rsp)
movq %rax, 0x3490(%rsp)
movq 0x34c0(%rsp), %rcx
movq %rcx, 0x890(%rsp)
movq 0x34a8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x34a0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x349c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3490(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x34bc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x34b8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x34b4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c20(%rsp)
movl $0x10, 0x3c1c(%rsp)
movq 0x3c20(%rsp), %rax
movslq 0x3c1c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c1c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x898(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1a88(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x120552e
movq 0x898(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1aa0(%rsp)
movb $0x1, 0x2263(%rsp)
testb $0x1, 0x2263(%rsp)
jne 0x1205669
leaq 0x1a60(%rsp), %rax
movq %rax, 0x2488(%rsp)
movq 0x2488(%rsp), %rax
movq %rax, 0x44e0(%rsp)
movq 0x44e0(%rsp), %rax
movq %rax, 0x888(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120560c
movq 0x888(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x44dc(%rsp) # imm = 0xFFFFFFFF
movl 0x44dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x44d8(%rsp)
cmpl $0x1, 0x44d8(%rsp)
jne 0x120560c
movq 0x888(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12055dd
movq 0x888(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12055db
jmp 0x120560a
movq 0x888(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4590(%rsp)
cmpq $0x0, 0x4590(%rsp)
je 0x1205608
movq 0x4590(%rsp), %rdi
callq 0x5f480
jmp 0x120560a
jmp 0x120560c
movq 0x888(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1205667
movq %rax, %rdi
callq 0x678a0
jmp 0x1205669
leaq 0x1a60(%rsp), %rax
movq %rax, 0x2410(%rsp)
movq 0x2410(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x878(%rsp)
leaq 0x1a60(%rsp), %rax
movq %rax, 0x25c0(%rsp)
movq 0x25c0(%rsp), %rax
movq %rax, 0x4270(%rsp)
movq 0x4270(%rsp), %rax
movq %rax, 0x880(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1205754
movq 0x880(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x426c(%rsp) # imm = 0xFFFFFFFF
movl 0x426c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4268(%rsp)
cmpl $0x1, 0x4268(%rsp)
jne 0x1205754
movq 0x880(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1205725
movq 0x880(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1205723
jmp 0x1205752
movq 0x880(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46c8(%rsp)
cmpq $0x0, 0x46c8(%rsp)
je 0x1205750
movq 0x46c8(%rsp), %rdi
callq 0x5f480
jmp 0x1205752
jmp 0x1205754
movq 0x880(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12057af
movq %rax, %rdi
callq 0x678a0
movq 0x878(%rsp), %rax
movq %rax, 0x1aa8(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1ab0(%rsp), %eax
leaq 0x1a10(%rsp), %rdx
movq %rdx, 0x2258(%rsp)
movq %rcx, 0x2250(%rsp)
movl %eax, 0x224c(%rsp)
movq 0x2250(%rsp), %rax
movq %rax, 0x870(%rsp)
movb $0x0, 0x224b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x224c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1a10(%rsp), %r10
movq %r10, 0x34f8(%rsp)
movl %r9d, 0x34f4(%rsp)
movl %r8d, 0x34f0(%rsp)
movl %edi, 0x34ec(%rsp)
movq %rsi, 0x34e0(%rsp)
movq %rdx, 0x34d8(%rsp)
movl %ecx, 0x34d4(%rsp)
movq %rax, 0x34c8(%rsp)
movq 0x34f8(%rsp), %rcx
movq %rcx, 0x868(%rsp)
movq 0x34e0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x34d8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x34d4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x34c8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x34f4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x34f0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x34ec(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c10(%rsp)
movl $0x10, 0x3c0c(%rsp)
movq 0x3c10(%rsp), %rax
movslq 0x3c0c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c0c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x870(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1a38(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x120597b
movq 0x870(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1a50(%rsp)
movb $0x1, 0x224b(%rsp)
testb $0x1, 0x224b(%rsp)
jne 0x1205ab6
leaq 0x1a10(%rsp), %rax
movq %rax, 0x2490(%rsp)
movq 0x2490(%rsp), %rax
movq %rax, 0x44d0(%rsp)
movq 0x44d0(%rsp), %rax
movq %rax, 0x860(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1205a59
movq 0x860(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x44cc(%rsp) # imm = 0xFFFFFFFF
movl 0x44cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x44c8(%rsp)
cmpl $0x1, 0x44c8(%rsp)
jne 0x1205a59
movq 0x860(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1205a2a
movq 0x860(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1205a28
jmp 0x1205a57
movq 0x860(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4598(%rsp)
cmpq $0x0, 0x4598(%rsp)
je 0x1205a55
movq 0x4598(%rsp), %rdi
callq 0x5f480
jmp 0x1205a57
jmp 0x1205a59
movq 0x860(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1205ab4
movq %rax, %rdi
callq 0x678a0
jmp 0x1205ab6
leaq 0x1a10(%rsp), %rax
movq %rax, 0x2408(%rsp)
movq 0x2408(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x850(%rsp)
leaq 0x1a10(%rsp), %rax
movq %rax, 0x25c8(%rsp)
movq 0x25c8(%rsp), %rax
movq %rax, 0x4260(%rsp)
movq 0x4260(%rsp), %rax
movq %rax, 0x858(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1205ba1
movq 0x858(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x425c(%rsp) # imm = 0xFFFFFFFF
movl 0x425c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4258(%rsp)
cmpl $0x1, 0x4258(%rsp)
jne 0x1205ba1
movq 0x858(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1205b72
movq 0x858(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1205b70
jmp 0x1205b9f
movq 0x858(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46d0(%rsp)
cmpq $0x0, 0x46d0(%rsp)
je 0x1205b9d
movq 0x46d0(%rsp), %rdi
callq 0x5f480
jmp 0x1205b9f
jmp 0x1205ba1
movq 0x858(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1205bfc
movq %rax, %rdi
callq 0x678a0
movq 0x850(%rsp), %rax
movq %rax, 0x1a58(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1ab0(%rsp), %eax
leaq 0x19c0(%rsp), %rdx
movq %rdx, 0x2980(%rsp)
movq %rcx, 0x2978(%rsp)
movl %eax, 0x2974(%rsp)
movq 0x2978(%rsp), %rax
movq %rax, 0x848(%rsp)
movb $0x0, 0x2973(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2974(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x19c0(%rsp), %r10
movq %r10, 0x2f10(%rsp)
movl %r9d, 0x2f0c(%rsp)
movl %r8d, 0x2f08(%rsp)
movl %edi, 0x2f04(%rsp)
movq %rsi, 0x2ef8(%rsp)
movq %rdx, 0x2ef0(%rsp)
movl %ecx, 0x2eec(%rsp)
movq %rax, 0x2ee0(%rsp)
movq 0x2f10(%rsp), %rcx
movq %rcx, 0x840(%rsp)
movq 0x2ef8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2ef0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2eec(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ee0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2f0c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f08(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f04(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3dc0(%rsp)
movl $0x10, 0x3dbc(%rsp)
movq 0x3dc0(%rsp), %rax
movslq 0x3dbc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3dbc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x848(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x19e8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1205dc8
movq 0x848(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1a00(%rsp)
movb $0x1, 0x2973(%rsp)
testb $0x1, 0x2973(%rsp)
jne 0x1205f03
leaq 0x19c0(%rsp), %rax
movq %rax, 0x2988(%rsp)
movq 0x2988(%rsp), %rax
movq %rax, 0x3e70(%rsp)
movq 0x3e70(%rsp), %rax
movq %rax, 0x838(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1205ea6
movq 0x838(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e6c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e6c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e68(%rsp)
cmpl $0x1, 0x3e68(%rsp)
jne 0x1205ea6
movq 0x838(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1205e77
movq 0x838(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1205e75
jmp 0x1205ea4
movq 0x838(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48c8(%rsp)
cmpq $0x0, 0x48c8(%rsp)
je 0x1205ea2
movq 0x48c8(%rsp), %rdi
callq 0x5f480
jmp 0x1205ea4
jmp 0x1205ea6
movq 0x838(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1205f01
movq %rax, %rdi
callq 0x678a0
jmp 0x1205f03
leaq 0x19c0(%rsp), %rax
movq %rax, 0x2ad0(%rsp)
movq 0x2ad0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x828(%rsp)
leaq 0x19c0(%rsp), %rax
movq %rax, 0x25d0(%rsp)
movq 0x25d0(%rsp), %rax
movq %rax, 0x4250(%rsp)
movq 0x4250(%rsp), %rax
movq %rax, 0x830(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1205fee
movq 0x830(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x424c(%rsp) # imm = 0xFFFFFFFF
movl 0x424c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4248(%rsp)
cmpl $0x1, 0x4248(%rsp)
jne 0x1205fee
movq 0x830(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1205fbf
movq 0x830(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1205fbd
jmp 0x1205fec
movq 0x830(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46d8(%rsp)
cmpq $0x0, 0x46d8(%rsp)
je 0x1205fea
movq 0x46d8(%rsp), %rdi
callq 0x5f480
jmp 0x1205fec
jmp 0x1205fee
movq 0x830(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1206049
movq %rax, %rdi
callq 0x678a0
movq 0x828(%rsp), %rax
movq %rax, 0x1a08(%rsp)
movl $0x0, 0x19bc(%rsp)
movl 0x19bc(%rsp), %eax
cmpl 0x1ed4(%rsp), %eax
jge 0x12061b3
movl $0x0, 0x19b8(%rsp)
movl 0x19b8(%rsp), %eax
cmpl 0x1ed8(%rsp), %eax
jge 0x120617c
movq 0x1aa8(%rsp), %rax
movslq 0x19b8(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x19b4(%rsp)
movl $0x0, 0x19b0(%rsp)
movl 0x19b0(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x1206124
movq 0x1a58(%rsp), %rdx
movslq 0x19b0(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0x19b4(%rsp), %rsi
callq 0x1278030
movq 0x1a08(%rsp), %rax
movslq 0x19b0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x19b0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x19b0(%rsp)
jmp 0x12060c0
movl 0x1edc(%rsp), %ecx
movq 0x1a58(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1a58(%rsp)
movl 0x1edc(%rsp), %ecx
movq 0x1a08(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1a08(%rsp)
movl 0x19b8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x19b8(%rsp)
jmp 0x1206083
movl 0x1ed8(%rsp), %ecx
movq 0x1aa8(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1aa8(%rsp)
movl 0x19bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x19bc(%rsp)
jmp 0x1206064
jmp 0x12061b5
movl 0x1ab0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1ab0(%rsp)
jmp 0x120535e
movl $0x0, 0x1f24(%rsp)
jmp 0x12149e5
movq 0x1f10(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x120deb1
cmpl $0x1, 0x1edc(%rsp)
jne 0x120706e
cmpl $0x1, 0x1ed8(%rsp)
jne 0x120706e
movl 0x1ed0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jne 0x120706e
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1eec(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fd0(%rsp)
movq 0x1fd0(%rsp), %rcx
movq %rcx, 0x818(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x827(%rsp)
je 0x12062b4
movq 0x818(%rsp), %rax
movq %rax, 0x2d18(%rsp)
movq 0x2d18(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x827(%rsp)
movb 0x827(%rsp), %al
testb $0x1, %al
jne 0x12062c1
jmp 0x12062d1
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x12149e5
movl $0x0, 0x19ac(%rsp)
movl 0x19ac(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x120705e
movq 0x1f18(%rsp), %rcx
movl 0x19ac(%rsp), %eax
leaq 0x1958(%rsp), %rdx
movq %rdx, 0x2240(%rsp)
movq %rcx, 0x2238(%rsp)
movl %eax, 0x2234(%rsp)
movq 0x2238(%rsp), %rax
movq %rax, 0x810(%rsp)
movb $0x0, 0x2233(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2234(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1958(%rsp), %r10
movq %r10, 0x3530(%rsp)
movl %r9d, 0x352c(%rsp)
movl %r8d, 0x3528(%rsp)
movl %edi, 0x3524(%rsp)
movq %rsi, 0x3518(%rsp)
movq %rdx, 0x3510(%rsp)
movl %ecx, 0x350c(%rsp)
movq %rax, 0x3500(%rsp)
movq 0x3530(%rsp), %rcx
movq %rcx, 0x808(%rsp)
movq 0x3518(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3510(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x350c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3500(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x352c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3528(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3524(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c00(%rsp)
movl $0x10, 0x3bfc(%rsp)
movq 0x3c00(%rsp), %rax
movslq 0x3bfc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bfc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x810(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1980(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12064ac
movq 0x810(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1998(%rsp)
movb $0x1, 0x2233(%rsp)
testb $0x1, 0x2233(%rsp)
jne 0x12065e7
leaq 0x1958(%rsp), %rax
movq %rax, 0x2498(%rsp)
movq 0x2498(%rsp), %rax
movq %rax, 0x44c0(%rsp)
movq 0x44c0(%rsp), %rax
movq %rax, 0x800(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120658a
movq 0x800(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x44bc(%rsp) # imm = 0xFFFFFFFF
movl 0x44bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x44b8(%rsp)
cmpl $0x1, 0x44b8(%rsp)
jne 0x120658a
movq 0x800(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120655b
movq 0x800(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1206559
jmp 0x1206588
movq 0x800(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45a0(%rsp)
cmpq $0x0, 0x45a0(%rsp)
je 0x1206586
movq 0x45a0(%rsp), %rdi
callq 0x5f480
jmp 0x1206588
jmp 0x120658a
movq 0x800(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12065e5
movq %rax, %rdi
callq 0x678a0
jmp 0x12065e7
leaq 0x1958(%rsp), %rax
movq %rax, 0x2400(%rsp)
movq 0x2400(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7f0(%rsp)
leaq 0x1958(%rsp), %rax
movq %rax, 0x25d8(%rsp)
movq 0x25d8(%rsp), %rax
movq %rax, 0x4240(%rsp)
movq 0x4240(%rsp), %rax
movq %rax, 0x7f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12066d2
movq 0x7f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x423c(%rsp) # imm = 0xFFFFFFFF
movl 0x423c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4238(%rsp)
cmpl $0x1, 0x4238(%rsp)
jne 0x12066d2
movq 0x7f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12066a3
movq 0x7f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12066a1
jmp 0x12066d0
movq 0x7f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46e0(%rsp)
cmpq $0x0, 0x46e0(%rsp)
je 0x12066ce
movq 0x46e0(%rsp), %rdi
callq 0x5f480
jmp 0x12066d0
jmp 0x12066d2
movq 0x7f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120672d
movq %rax, %rdi
callq 0x678a0
movq 0x7f0(%rsp), %rax
movq %rax, 0x19a0(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x19ac(%rsp), %eax
leaq 0x1908(%rsp), %rdx
movq %rdx, 0x2228(%rsp)
movq %rcx, 0x2220(%rsp)
movl %eax, 0x221c(%rsp)
movq 0x2220(%rsp), %rax
movq %rax, 0x7e8(%rsp)
movb $0x0, 0x221b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x221c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1908(%rsp), %r10
movq %r10, 0x3568(%rsp)
movl %r9d, 0x3564(%rsp)
movl %r8d, 0x3560(%rsp)
movl %edi, 0x355c(%rsp)
movq %rsi, 0x3550(%rsp)
movq %rdx, 0x3548(%rsp)
movl %ecx, 0x3544(%rsp)
movq %rax, 0x3538(%rsp)
movq 0x3568(%rsp), %rcx
movq %rcx, 0x7e0(%rsp)
movq 0x3550(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3548(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3544(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3538(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3564(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3560(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x355c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3bf0(%rsp)
movl $0x10, 0x3bec(%rsp)
movq 0x3bf0(%rsp), %rax
movslq 0x3bec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7e8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1930(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12068f9
movq 0x7e8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1948(%rsp)
movb $0x1, 0x221b(%rsp)
testb $0x1, 0x221b(%rsp)
jne 0x1206a34
leaq 0x1908(%rsp), %rax
movq %rax, 0x24a0(%rsp)
movq 0x24a0(%rsp), %rax
movq %rax, 0x44b0(%rsp)
movq 0x44b0(%rsp), %rax
movq %rax, 0x7d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12069d7
movq 0x7d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x44ac(%rsp) # imm = 0xFFFFFFFF
movl 0x44ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x44a8(%rsp)
cmpl $0x1, 0x44a8(%rsp)
jne 0x12069d7
movq 0x7d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12069a8
movq 0x7d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12069a6
jmp 0x12069d5
movq 0x7d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45a8(%rsp)
cmpq $0x0, 0x45a8(%rsp)
je 0x12069d3
movq 0x45a8(%rsp), %rdi
callq 0x5f480
jmp 0x12069d5
jmp 0x12069d7
movq 0x7d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1206a32
movq %rax, %rdi
callq 0x678a0
jmp 0x1206a34
leaq 0x1908(%rsp), %rax
movq %rax, 0x23f8(%rsp)
movq 0x23f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7c8(%rsp)
leaq 0x1908(%rsp), %rax
movq %rax, 0x25e0(%rsp)
movq 0x25e0(%rsp), %rax
movq %rax, 0x4230(%rsp)
movq 0x4230(%rsp), %rax
movq %rax, 0x7d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1206b1f
movq 0x7d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x422c(%rsp) # imm = 0xFFFFFFFF
movl 0x422c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4228(%rsp)
cmpl $0x1, 0x4228(%rsp)
jne 0x1206b1f
movq 0x7d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1206af0
movq 0x7d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1206aee
jmp 0x1206b1d
movq 0x7d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46e8(%rsp)
cmpq $0x0, 0x46e8(%rsp)
je 0x1206b1b
movq 0x46e8(%rsp), %rdi
callq 0x5f480
jmp 0x1206b1d
jmp 0x1206b1f
movq 0x7d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1206b7a
movq %rax, %rdi
callq 0x678a0
movq 0x7c8(%rsp), %rax
movq %rax, 0x1950(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x19ac(%rsp), %eax
leaq 0x18b8(%rsp), %rdx
movq %rdx, 0x2960(%rsp)
movq %rcx, 0x2958(%rsp)
movl %eax, 0x2954(%rsp)
movq 0x2958(%rsp), %rax
movq %rax, 0x7c0(%rsp)
movb $0x0, 0x2953(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2954(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x18b8(%rsp), %r10
movq %r10, 0x2f48(%rsp)
movl %r9d, 0x2f44(%rsp)
movl %r8d, 0x2f40(%rsp)
movl %edi, 0x2f3c(%rsp)
movq %rsi, 0x2f30(%rsp)
movq %rdx, 0x2f28(%rsp)
movl %ecx, 0x2f24(%rsp)
movq %rax, 0x2f18(%rsp)
movq 0x2f48(%rsp), %rcx
movq %rcx, 0x7b8(%rsp)
movq 0x2f30(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2f28(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2f24(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2f18(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2f44(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f40(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f3c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3db0(%rsp)
movl $0x10, 0x3dac(%rsp)
movq 0x3db0(%rsp), %rax
movslq 0x3dac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3dac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7c0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x18e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1206d46
movq 0x7c0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x18f8(%rsp)
movb $0x1, 0x2953(%rsp)
testb $0x1, 0x2953(%rsp)
jne 0x1206e81
leaq 0x18b8(%rsp), %rax
movq %rax, 0x2968(%rsp)
movq 0x2968(%rsp), %rax
movq %rax, 0x3e80(%rsp)
movq 0x3e80(%rsp), %rax
movq %rax, 0x7b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1206e24
movq 0x7b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e7c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e7c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e78(%rsp)
cmpl $0x1, 0x3e78(%rsp)
jne 0x1206e24
movq 0x7b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1206df5
movq 0x7b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1206df3
jmp 0x1206e22
movq 0x7b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48c0(%rsp)
cmpq $0x0, 0x48c0(%rsp)
je 0x1206e20
movq 0x48c0(%rsp), %rdi
callq 0x5f480
jmp 0x1206e22
jmp 0x1206e24
movq 0x7b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1206e7f
movq %rax, %rdi
callq 0x678a0
jmp 0x1206e81
leaq 0x18b8(%rsp), %rax
movq %rax, 0x2ac8(%rsp)
movq 0x2ac8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7a0(%rsp)
leaq 0x18b8(%rsp), %rax
movq %rax, 0x25e8(%rsp)
movq 0x25e8(%rsp), %rax
movq %rax, 0x4220(%rsp)
movq 0x4220(%rsp), %rax
movq %rax, 0x7a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1206f6c
movq 0x7a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x421c(%rsp) # imm = 0xFFFFFFFF
movl 0x421c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4218(%rsp)
cmpl $0x1, 0x4218(%rsp)
jne 0x1206f6c
movq 0x7a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1206f3d
movq 0x7a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1206f3b
jmp 0x1206f6a
movq 0x7a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46f0(%rsp)
cmpq $0x0, 0x46f0(%rsp)
je 0x1206f68
movq 0x46f0(%rsp), %rdi
callq 0x5f480
jmp 0x1206f6a
jmp 0x1206f6c
movq 0x7a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1206fc7
movq %rax, %rdi
callq 0x678a0
movq 0x7a0(%rsp), %rax
movq %rax, 0x1900(%rsp)
movl $0x0, 0x18b4(%rsp)
movl 0x18b4(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x1207046
movq 0x19a0(%rsp), %rsi
movslq 0x18b4(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1950(%rsp), %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x1278030
movq 0x1900(%rsp), %rax
movslq 0x18b4(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x18b4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x18b4(%rsp)
jmp 0x1206fe2
jmp 0x1207048
movl 0x19ac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x19ac(%rsp)
jmp 0x12062dc
movl $0x0, 0x1f24(%rsp)
jmp 0x12149e5
movl 0x1edc(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jne 0x1207ada
movl 0x1ed8(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jne 0x1207ada
cmpl $0x1, 0x1ed0(%rsp)
jne 0x1207ada
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1eec(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fc8(%rsp)
movq 0x1fc8(%rsp), %rcx
movq %rcx, 0x790(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x79f(%rsp)
je 0x120713b
movq 0x790(%rsp), %rax
movq %rax, 0x2d20(%rsp)
movq 0x2d20(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x79f(%rsp)
movb 0x79f(%rsp), %al
testb $0x1, %al
jne 0x1207148
jmp 0x1207158
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x12149e5
movl $0x0, 0x18b0(%rsp)
movl 0x18b0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x1207aca
movq 0x1f18(%rsp), %rcx
movl 0x18b0(%rsp), %eax
leaq 0x1860(%rsp), %rdx
movq %rdx, 0x2210(%rsp)
movq %rcx, 0x2208(%rsp)
movl %eax, 0x2204(%rsp)
movq 0x2208(%rsp), %rax
movq %rax, 0x788(%rsp)
movb $0x0, 0x2203(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2204(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1860(%rsp), %r10
movq %r10, 0x35a0(%rsp)
movl %r9d, 0x359c(%rsp)
movl %r8d, 0x3598(%rsp)
movl %edi, 0x3594(%rsp)
movq %rsi, 0x3588(%rsp)
movq %rdx, 0x3580(%rsp)
movl %ecx, 0x357c(%rsp)
movq %rax, 0x3570(%rsp)
movq 0x35a0(%rsp), %rcx
movq %rcx, 0x780(%rsp)
movq 0x3588(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3580(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x357c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3570(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x359c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3598(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3594(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3be0(%rsp)
movl $0x10, 0x3bdc(%rsp)
movq 0x3be0(%rsp), %rax
movslq 0x3bdc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bdc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x788(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1888(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1207333
movq 0x788(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x18a0(%rsp)
movb $0x1, 0x2203(%rsp)
testb $0x1, 0x2203(%rsp)
jne 0x120746e
leaq 0x1860(%rsp), %rax
movq %rax, 0x24a8(%rsp)
movq 0x24a8(%rsp), %rax
movq %rax, 0x44a0(%rsp)
movq 0x44a0(%rsp), %rax
movq %rax, 0x778(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1207411
movq 0x778(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x449c(%rsp) # imm = 0xFFFFFFFF
movl 0x449c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4498(%rsp)
cmpl $0x1, 0x4498(%rsp)
jne 0x1207411
movq 0x778(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12073e2
movq 0x778(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12073e0
jmp 0x120740f
movq 0x778(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45b0(%rsp)
cmpq $0x0, 0x45b0(%rsp)
je 0x120740d
movq 0x45b0(%rsp), %rdi
callq 0x5f480
jmp 0x120740f
jmp 0x1207411
movq 0x778(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120746c
movq %rax, %rdi
callq 0x678a0
jmp 0x120746e
leaq 0x1860(%rsp), %rax
movq %rax, 0x23f0(%rsp)
movq 0x23f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x768(%rsp)
leaq 0x1860(%rsp), %rax
movq %rax, 0x25f0(%rsp)
movq 0x25f0(%rsp), %rax
movq %rax, 0x4210(%rsp)
movq 0x4210(%rsp), %rax
movq %rax, 0x770(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1207559
movq 0x770(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x420c(%rsp) # imm = 0xFFFFFFFF
movl 0x420c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4208(%rsp)
cmpl $0x1, 0x4208(%rsp)
jne 0x1207559
movq 0x770(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120752a
movq 0x770(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1207528
jmp 0x1207557
movq 0x770(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46f8(%rsp)
cmpq $0x0, 0x46f8(%rsp)
je 0x1207555
movq 0x46f8(%rsp), %rdi
callq 0x5f480
jmp 0x1207557
jmp 0x1207559
movq 0x770(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12075b4
movq %rax, %rdi
callq 0x678a0
movq 0x768(%rsp), %rax
movq %rax, 0x18a8(%rsp)
movq 0x1f10(%rsp), %rax
movq %rax, 0x23e8(%rsp)
movq 0x23e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1858(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x18b0(%rsp), %eax
leaq 0x1808(%rsp), %rdx
movq %rdx, 0x2940(%rsp)
movq %rcx, 0x2938(%rsp)
movl %eax, 0x2934(%rsp)
movq 0x2938(%rsp), %rax
movq %rax, 0x760(%rsp)
movb $0x0, 0x2933(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2934(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1808(%rsp), %r10
movq %r10, 0x2f80(%rsp)
movl %r9d, 0x2f7c(%rsp)
movl %r8d, 0x2f78(%rsp)
movl %edi, 0x2f74(%rsp)
movq %rsi, 0x2f68(%rsp)
movq %rdx, 0x2f60(%rsp)
movl %ecx, 0x2f5c(%rsp)
movq %rax, 0x2f50(%rsp)
movq 0x2f80(%rsp), %rcx
movq %rcx, 0x758(%rsp)
movq 0x2f68(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2f60(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2f5c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2f50(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2f7c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f78(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f74(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3da0(%rsp)
movl $0x10, 0x3d9c(%rsp)
movq 0x3da0(%rsp), %rax
movslq 0x3d9c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d9c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x760(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1830(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12077a3
movq 0x760(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1848(%rsp)
movb $0x1, 0x2933(%rsp)
testb $0x1, 0x2933(%rsp)
jne 0x12078de
leaq 0x1808(%rsp), %rax
movq %rax, 0x2948(%rsp)
movq 0x2948(%rsp), %rax
movq %rax, 0x3e90(%rsp)
movq 0x3e90(%rsp), %rax
movq %rax, 0x750(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1207881
movq 0x750(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e8c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e8c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e88(%rsp)
cmpl $0x1, 0x3e88(%rsp)
jne 0x1207881
movq 0x750(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1207852
movq 0x750(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1207850
jmp 0x120787f
movq 0x750(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48b8(%rsp)
cmpq $0x0, 0x48b8(%rsp)
je 0x120787d
movq 0x48b8(%rsp), %rdi
callq 0x5f480
jmp 0x120787f
jmp 0x1207881
movq 0x750(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12078dc
movq %rax, %rdi
callq 0x678a0
jmp 0x12078de
leaq 0x1808(%rsp), %rax
movq %rax, 0x2ac0(%rsp)
movq 0x2ac0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x740(%rsp)
leaq 0x1808(%rsp), %rax
movq %rax, 0x25f8(%rsp)
movq 0x25f8(%rsp), %rax
movq %rax, 0x4200(%rsp)
movq 0x4200(%rsp), %rax
movq %rax, 0x748(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12079c9
movq 0x748(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41fc(%rsp) # imm = 0xFFFFFFFF
movl 0x41fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41f8(%rsp)
cmpl $0x1, 0x41f8(%rsp)
jne 0x12079c9
movq 0x748(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120799a
movq 0x748(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1207998
jmp 0x12079c7
movq 0x748(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4700(%rsp)
cmpq $0x0, 0x4700(%rsp)
je 0x12079c5
movq 0x4700(%rsp), %rdi
callq 0x5f480
jmp 0x12079c7
jmp 0x12079c9
movq 0x748(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1207a24
movq %rax, %rdi
callq 0x678a0
movq 0x740(%rsp), %rax
movq %rax, 0x1850(%rsp)
movl $0x0, 0x1804(%rsp)
movl 0x1804(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x1207ab2
movq 0x18a8(%rsp), %rsi
movslq 0x1804(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1858(%rsp), %rdx
movslq 0x1804(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x1278030
movq 0x1850(%rsp), %rax
movslq 0x1804(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1804(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1804(%rsp)
jmp 0x1207a3f
jmp 0x1207ab4
movl 0x18b0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x18b0(%rsp)
jmp 0x1207163
movl $0x0, 0x1f24(%rsp)
jmp 0x12149e5
cmpl $0x1, 0x1ef8(%rsp)
jne 0x120895b
cmpl $0x1, 0x1ef4(%rsp)
jne 0x120895b
movl 0x1ed0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jne 0x120895b
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed0(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fc0(%rsp)
movq 0x1fc0(%rsp), %rcx
movq %rcx, 0x730(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x73f(%rsp)
je 0x1207ba1
movq 0x730(%rsp), %rax
movq %rax, 0x2d28(%rsp)
movq 0x2d28(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x73f(%rsp)
movb 0x73f(%rsp), %al
testb $0x1, %al
jne 0x1207bae
jmp 0x1207bbe
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x12149e5
movl $0x0, 0x1800(%rsp)
movl 0x1800(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x120894b
movq 0x1f18(%rsp), %rcx
movl 0x1800(%rsp), %eax
leaq 0x17b0(%rsp), %rdx
movq %rdx, 0x21f8(%rsp)
movq %rcx, 0x21f0(%rsp)
movl %eax, 0x21ec(%rsp)
movq 0x21f0(%rsp), %rax
movq %rax, 0x728(%rsp)
movb $0x0, 0x21eb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x21ec(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x17b0(%rsp), %r10
movq %r10, 0x35d8(%rsp)
movl %r9d, 0x35d4(%rsp)
movl %r8d, 0x35d0(%rsp)
movl %edi, 0x35cc(%rsp)
movq %rsi, 0x35c0(%rsp)
movq %rdx, 0x35b8(%rsp)
movl %ecx, 0x35b4(%rsp)
movq %rax, 0x35a8(%rsp)
movq 0x35d8(%rsp), %rcx
movq %rcx, 0x720(%rsp)
movq 0x35c0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x35b8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x35b4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x35a8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x35d4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x35d0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x35cc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3bd0(%rsp)
movl $0x10, 0x3bcc(%rsp)
movq 0x3bd0(%rsp), %rax
movslq 0x3bcc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bcc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x728(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x17d8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1207d99
movq 0x728(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x17f0(%rsp)
movb $0x1, 0x21eb(%rsp)
testb $0x1, 0x21eb(%rsp)
jne 0x1207ed4
leaq 0x17b0(%rsp), %rax
movq %rax, 0x24b0(%rsp)
movq 0x24b0(%rsp), %rax
movq %rax, 0x4490(%rsp)
movq 0x4490(%rsp), %rax
movq %rax, 0x718(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1207e77
movq 0x718(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x448c(%rsp) # imm = 0xFFFFFFFF
movl 0x448c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4488(%rsp)
cmpl $0x1, 0x4488(%rsp)
jne 0x1207e77
movq 0x718(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1207e48
movq 0x718(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1207e46
jmp 0x1207e75
movq 0x718(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45b8(%rsp)
cmpq $0x0, 0x45b8(%rsp)
je 0x1207e73
movq 0x45b8(%rsp), %rdi
callq 0x5f480
jmp 0x1207e75
jmp 0x1207e77
movq 0x718(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1207ed2
movq %rax, %rdi
callq 0x678a0
jmp 0x1207ed4
leaq 0x17b0(%rsp), %rax
movq %rax, 0x23e0(%rsp)
movq 0x23e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x708(%rsp)
leaq 0x17b0(%rsp), %rax
movq %rax, 0x2600(%rsp)
movq 0x2600(%rsp), %rax
movq %rax, 0x41f0(%rsp)
movq 0x41f0(%rsp), %rax
movq %rax, 0x710(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1207fbf
movq 0x710(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41ec(%rsp) # imm = 0xFFFFFFFF
movl 0x41ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41e8(%rsp)
cmpl $0x1, 0x41e8(%rsp)
jne 0x1207fbf
movq 0x710(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1207f90
movq 0x710(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1207f8e
jmp 0x1207fbd
movq 0x710(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4708(%rsp)
cmpq $0x0, 0x4708(%rsp)
je 0x1207fbb
movq 0x4708(%rsp), %rdi
callq 0x5f480
jmp 0x1207fbd
jmp 0x1207fbf
movq 0x710(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120801a
movq %rax, %rdi
callq 0x678a0
movq 0x708(%rsp), %rax
movq %rax, 0x17f8(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1800(%rsp), %eax
leaq 0x1760(%rsp), %rdx
movq %rdx, 0x21e0(%rsp)
movq %rcx, 0x21d8(%rsp)
movl %eax, 0x21d4(%rsp)
movq 0x21d8(%rsp), %rax
movq %rax, 0x700(%rsp)
movb $0x0, 0x21d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x21d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1760(%rsp), %r10
movq %r10, 0x3610(%rsp)
movl %r9d, 0x360c(%rsp)
movl %r8d, 0x3608(%rsp)
movl %edi, 0x3604(%rsp)
movq %rsi, 0x35f8(%rsp)
movq %rdx, 0x35f0(%rsp)
movl %ecx, 0x35ec(%rsp)
movq %rax, 0x35e0(%rsp)
movq 0x3610(%rsp), %rcx
movq %rcx, 0x6f8(%rsp)
movq 0x35f8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x35f0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x35ec(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x35e0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x360c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3608(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3604(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3bc0(%rsp)
movl $0x10, 0x3bbc(%rsp)
movq 0x3bc0(%rsp), %rax
movslq 0x3bbc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bbc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x700(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1788(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12081e6
movq 0x700(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x17a0(%rsp)
movb $0x1, 0x21d3(%rsp)
testb $0x1, 0x21d3(%rsp)
jne 0x1208321
leaq 0x1760(%rsp), %rax
movq %rax, 0x24b8(%rsp)
movq 0x24b8(%rsp), %rax
movq %rax, 0x4480(%rsp)
movq 0x4480(%rsp), %rax
movq %rax, 0x6f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12082c4
movq 0x6f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x447c(%rsp) # imm = 0xFFFFFFFF
movl 0x447c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4478(%rsp)
cmpl $0x1, 0x4478(%rsp)
jne 0x12082c4
movq 0x6f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1208295
movq 0x6f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1208293
jmp 0x12082c2
movq 0x6f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45c0(%rsp)
cmpq $0x0, 0x45c0(%rsp)
je 0x12082c0
movq 0x45c0(%rsp), %rdi
callq 0x5f480
jmp 0x12082c2
jmp 0x12082c4
movq 0x6f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120831f
movq %rax, %rdi
callq 0x678a0
jmp 0x1208321
leaq 0x1760(%rsp), %rax
movq %rax, 0x23d8(%rsp)
movq 0x23d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6e0(%rsp)
leaq 0x1760(%rsp), %rax
movq %rax, 0x2608(%rsp)
movq 0x2608(%rsp), %rax
movq %rax, 0x41e0(%rsp)
movq 0x41e0(%rsp), %rax
movq %rax, 0x6e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120840c
movq 0x6e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41dc(%rsp) # imm = 0xFFFFFFFF
movl 0x41dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41d8(%rsp)
cmpl $0x1, 0x41d8(%rsp)
jne 0x120840c
movq 0x6e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12083dd
movq 0x6e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12083db
jmp 0x120840a
movq 0x6e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4710(%rsp)
cmpq $0x0, 0x4710(%rsp)
je 0x1208408
movq 0x4710(%rsp), %rdi
callq 0x5f480
jmp 0x120840a
jmp 0x120840c
movq 0x6e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1208467
movq %rax, %rdi
callq 0x678a0
movq 0x6e0(%rsp), %rax
movq %rax, 0x17a8(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1800(%rsp), %eax
leaq 0x1710(%rsp), %rdx
movq %rdx, 0x2920(%rsp)
movq %rcx, 0x2918(%rsp)
movl %eax, 0x2914(%rsp)
movq 0x2918(%rsp), %rax
movq %rax, 0x6d8(%rsp)
movb $0x0, 0x2913(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2914(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1710(%rsp), %r10
movq %r10, 0x2fb8(%rsp)
movl %r9d, 0x2fb4(%rsp)
movl %r8d, 0x2fb0(%rsp)
movl %edi, 0x2fac(%rsp)
movq %rsi, 0x2fa0(%rsp)
movq %rdx, 0x2f98(%rsp)
movl %ecx, 0x2f94(%rsp)
movq %rax, 0x2f88(%rsp)
movq 0x2fb8(%rsp), %rcx
movq %rcx, 0x6d0(%rsp)
movq 0x2fa0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2f98(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2f94(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2f88(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2fb4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2fb0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2fac(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d90(%rsp)
movl $0x10, 0x3d8c(%rsp)
movq 0x3d90(%rsp), %rax
movslq 0x3d8c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d8c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6d8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1738(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1208633
movq 0x6d8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1750(%rsp)
movb $0x1, 0x2913(%rsp)
testb $0x1, 0x2913(%rsp)
jne 0x120876e
leaq 0x1710(%rsp), %rax
movq %rax, 0x2928(%rsp)
movq 0x2928(%rsp), %rax
movq %rax, 0x3ea0(%rsp)
movq 0x3ea0(%rsp), %rax
movq %rax, 0x6c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1208711
movq 0x6c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e9c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e9c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e98(%rsp)
cmpl $0x1, 0x3e98(%rsp)
jne 0x1208711
movq 0x6c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12086e2
movq 0x6c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12086e0
jmp 0x120870f
movq 0x6c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48b0(%rsp)
cmpq $0x0, 0x48b0(%rsp)
je 0x120870d
movq 0x48b0(%rsp), %rdi
callq 0x5f480
jmp 0x120870f
jmp 0x1208711
movq 0x6c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120876c
movq %rax, %rdi
callq 0x678a0
jmp 0x120876e
leaq 0x1710(%rsp), %rax
movq %rax, 0x2ab8(%rsp)
movq 0x2ab8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6b8(%rsp)
leaq 0x1710(%rsp), %rax
movq %rax, 0x2610(%rsp)
movq 0x2610(%rsp), %rax
movq %rax, 0x41d0(%rsp)
movq 0x41d0(%rsp), %rax
movq %rax, 0x6c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1208859
movq 0x6c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41cc(%rsp) # imm = 0xFFFFFFFF
movl 0x41cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41c8(%rsp)
cmpl $0x1, 0x41c8(%rsp)
jne 0x1208859
movq 0x6c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120882a
movq 0x6c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1208828
jmp 0x1208857
movq 0x6c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4718(%rsp)
cmpq $0x0, 0x4718(%rsp)
je 0x1208855
movq 0x4718(%rsp), %rdi
callq 0x5f480
jmp 0x1208857
jmp 0x1208859
movq 0x6c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12088b4
movq %rax, %rdi
callq 0x678a0
movq 0x6b8(%rsp), %rax
movq %rax, 0x1758(%rsp)
movl $0x0, 0x170c(%rsp)
movl 0x170c(%rsp), %eax
cmpl 0x1ecc(%rsp), %eax
jge 0x1208933
movq 0x17f8(%rsp), %rsi
movq 0x17a8(%rsp), %rdx
movslq 0x170c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x1278030
movq 0x1758(%rsp), %rax
movslq 0x170c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x170c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x170c(%rsp)
jmp 0x12088cf
jmp 0x1208935
movl 0x1800(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1800(%rsp)
jmp 0x1207bc9
movl $0x0, 0x1f24(%rsp)
jmp 0x12149e5
movl 0x1edc(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jne 0x12093c7
movl 0x1ed8(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jne 0x12093c7
cmpl $0x1, 0x1eec(%rsp)
jne 0x12093c7
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed0(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fb8(%rsp)
movq 0x1fb8(%rsp), %rcx
movq %rcx, 0x6a8(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x6b7(%rsp)
je 0x1208a28
movq 0x6a8(%rsp), %rax
movq %rax, 0x2d30(%rsp)
movq 0x2d30(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x6b7(%rsp)
movb 0x6b7(%rsp), %al
testb $0x1, %al
jne 0x1208a35
jmp 0x1208a45
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x12149e5
movl $0x0, 0x1708(%rsp)
movl 0x1708(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x12093b7
movq 0x1f18(%rsp), %rax
movq %rax, 0x23d0(%rsp)
movq 0x23d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1700(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1708(%rsp), %eax
leaq 0x16b0(%rsp), %rdx
movq %rdx, 0x21c8(%rsp)
movq %rcx, 0x21c0(%rsp)
movl %eax, 0x21bc(%rsp)
movq 0x21c0(%rsp), %rax
movq %rax, 0x6a0(%rsp)
movb $0x0, 0x21bb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x21bc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x16b0(%rsp), %r10
movq %r10, 0x3648(%rsp)
movl %r9d, 0x3644(%rsp)
movl %r8d, 0x3640(%rsp)
movl %edi, 0x363c(%rsp)
movq %rsi, 0x3630(%rsp)
movq %rdx, 0x3628(%rsp)
movl %ecx, 0x3624(%rsp)
movq %rax, 0x3618(%rsp)
movq 0x3648(%rsp), %rcx
movq %rcx, 0x698(%rsp)
movq 0x3630(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3628(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3624(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3618(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3644(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3640(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x363c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3bb0(%rsp)
movl $0x10, 0x3bac(%rsp)
movq 0x3bb0(%rsp), %rax
movslq 0x3bac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6a0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x16d8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1208c43
movq 0x6a0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x16f0(%rsp)
movb $0x1, 0x21bb(%rsp)
testb $0x1, 0x21bb(%rsp)
jne 0x1208d7e
leaq 0x16b0(%rsp), %rax
movq %rax, 0x24c0(%rsp)
movq 0x24c0(%rsp), %rax
movq %rax, 0x4470(%rsp)
movq 0x4470(%rsp), %rax
movq %rax, 0x690(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1208d21
movq 0x690(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x446c(%rsp) # imm = 0xFFFFFFFF
movl 0x446c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4468(%rsp)
cmpl $0x1, 0x4468(%rsp)
jne 0x1208d21
movq 0x690(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1208cf2
movq 0x690(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1208cf0
jmp 0x1208d1f
movq 0x690(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45c8(%rsp)
cmpq $0x0, 0x45c8(%rsp)
je 0x1208d1d
movq 0x45c8(%rsp), %rdi
callq 0x5f480
jmp 0x1208d1f
jmp 0x1208d21
movq 0x690(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1208d7c
movq %rax, %rdi
callq 0x678a0
jmp 0x1208d7e
leaq 0x16b0(%rsp), %rax
movq %rax, 0x23c8(%rsp)
movq 0x23c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x680(%rsp)
leaq 0x16b0(%rsp), %rax
movq %rax, 0x2618(%rsp)
movq 0x2618(%rsp), %rax
movq %rax, 0x41c0(%rsp)
movq 0x41c0(%rsp), %rax
movq %rax, 0x688(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1208e69
movq 0x688(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41bc(%rsp) # imm = 0xFFFFFFFF
movl 0x41bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41b8(%rsp)
cmpl $0x1, 0x41b8(%rsp)
jne 0x1208e69
movq 0x688(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1208e3a
movq 0x688(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1208e38
jmp 0x1208e67
movq 0x688(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4720(%rsp)
cmpq $0x0, 0x4720(%rsp)
je 0x1208e65
movq 0x4720(%rsp), %rdi
callq 0x5f480
jmp 0x1208e67
jmp 0x1208e69
movq 0x688(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1208ec4
movq %rax, %rdi
callq 0x678a0
movq 0x680(%rsp), %rax
movq %rax, 0x16f8(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1708(%rsp), %eax
leaq 0x1660(%rsp), %rdx
movq %rdx, 0x2900(%rsp)
movq %rcx, 0x28f8(%rsp)
movl %eax, 0x28f4(%rsp)
movq 0x28f8(%rsp), %rax
movq %rax, 0x678(%rsp)
movb $0x0, 0x28f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x28f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1660(%rsp), %r10
movq %r10, 0x2ff0(%rsp)
movl %r9d, 0x2fec(%rsp)
movl %r8d, 0x2fe8(%rsp)
movl %edi, 0x2fe4(%rsp)
movq %rsi, 0x2fd8(%rsp)
movq %rdx, 0x2fd0(%rsp)
movl %ecx, 0x2fcc(%rsp)
movq %rax, 0x2fc0(%rsp)
movq 0x2ff0(%rsp), %rcx
movq %rcx, 0x670(%rsp)
movq 0x2fd8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2fd0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2fcc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2fc0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2fec(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2fe8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2fe4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d80(%rsp)
movl $0x10, 0x3d7c(%rsp)
movq 0x3d80(%rsp), %rax
movslq 0x3d7c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d7c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x678(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1688(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1209090
movq 0x678(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x16a0(%rsp)
movb $0x1, 0x28f3(%rsp)
testb $0x1, 0x28f3(%rsp)
jne 0x12091cb
leaq 0x1660(%rsp), %rax
movq %rax, 0x2908(%rsp)
movq 0x2908(%rsp), %rax
movq %rax, 0x3eb0(%rsp)
movq 0x3eb0(%rsp), %rax
movq %rax, 0x668(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120916e
movq 0x668(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3eac(%rsp) # imm = 0xFFFFFFFF
movl 0x3eac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ea8(%rsp)
cmpl $0x1, 0x3ea8(%rsp)
jne 0x120916e
movq 0x668(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120913f
movq 0x668(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x120913d
jmp 0x120916c
movq 0x668(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48a8(%rsp)
cmpq $0x0, 0x48a8(%rsp)
je 0x120916a
movq 0x48a8(%rsp), %rdi
callq 0x5f480
jmp 0x120916c
jmp 0x120916e
movq 0x668(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12091c9
movq %rax, %rdi
callq 0x678a0
jmp 0x12091cb
leaq 0x1660(%rsp), %rax
movq %rax, 0x2ab0(%rsp)
movq 0x2ab0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x658(%rsp)
leaq 0x1660(%rsp), %rax
movq %rax, 0x2620(%rsp)
movq 0x2620(%rsp), %rax
movq %rax, 0x41b0(%rsp)
movq 0x41b0(%rsp), %rax
movq %rax, 0x660(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12092b6
movq 0x660(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41ac(%rsp) # imm = 0xFFFFFFFF
movl 0x41ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41a8(%rsp)
cmpl $0x1, 0x41a8(%rsp)
jne 0x12092b6
movq 0x660(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1209287
movq 0x660(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1209285
jmp 0x12092b4
movq 0x660(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4728(%rsp)
cmpq $0x0, 0x4728(%rsp)
je 0x12092b2
movq 0x4728(%rsp), %rdi
callq 0x5f480
jmp 0x12092b4
jmp 0x12092b6
movq 0x660(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1209311
movq %rax, %rdi
callq 0x678a0
movq 0x658(%rsp), %rax
movq %rax, 0x16a8(%rsp)
movl $0x0, 0x165c(%rsp)
movl 0x165c(%rsp), %eax
cmpl 0x1ecc(%rsp), %eax
jge 0x120939f
movq 0x1700(%rsp), %rsi
movslq 0x165c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x16f8(%rsp), %rdx
movslq 0x165c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x1278030
movq 0x16a8(%rsp), %rax
movslq 0x165c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x165c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x165c(%rsp)
jmp 0x120932c
jmp 0x12093a1
movl 0x1708(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1708(%rsp)
jmp 0x1208a50
movl $0x0, 0x1f24(%rsp)
jmp 0x12149e5
cmpl $0x1, 0x1ef8(%rsp)
je 0x120a2f1
cmpl $0x1, 0x1edc(%rsp)
jne 0x120a2f1
movl 0x1ed8(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jne 0x120a2f1
movl 0x1ed0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jne 0x120a2f1
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1eec(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fb0(%rsp)
movq 0x1fb0(%rsp), %rcx
movq %rcx, 0x648(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x657(%rsp)
je 0x12094a2
movq 0x648(%rsp), %rax
movq %rax, 0x2d38(%rsp)
movq 0x2d38(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x657(%rsp)
movb 0x657(%rsp), %al
testb $0x1, %al
jne 0x12094af
jmp 0x12094bf
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x12149e5
movl $0x0, 0x1658(%rsp)
movl 0x1658(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x120a2e1
movq 0x1f18(%rsp), %rcx
movl 0x1658(%rsp), %eax
leaq 0x1608(%rsp), %rdx
movq %rdx, 0x21b0(%rsp)
movq %rcx, 0x21a8(%rsp)
movl %eax, 0x21a4(%rsp)
movq 0x21a8(%rsp), %rax
movq %rax, 0x640(%rsp)
movb $0x0, 0x21a3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x21a4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1608(%rsp), %r10
movq %r10, 0x3680(%rsp)
movl %r9d, 0x367c(%rsp)
movl %r8d, 0x3678(%rsp)
movl %edi, 0x3674(%rsp)
movq %rsi, 0x3668(%rsp)
movq %rdx, 0x3660(%rsp)
movl %ecx, 0x365c(%rsp)
movq %rax, 0x3650(%rsp)
movq 0x3680(%rsp), %rcx
movq %rcx, 0x638(%rsp)
movq 0x3668(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3660(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x365c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3650(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x367c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3678(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3674(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ba0(%rsp)
movl $0x10, 0x3b9c(%rsp)
movq 0x3ba0(%rsp), %rax
movslq 0x3b9c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b9c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x640(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1630(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x120969a
movq 0x640(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1648(%rsp)
movb $0x1, 0x21a3(%rsp)
testb $0x1, 0x21a3(%rsp)
jne 0x12097d5
leaq 0x1608(%rsp), %rax
movq %rax, 0x24c8(%rsp)
movq 0x24c8(%rsp), %rax
movq %rax, 0x4460(%rsp)
movq 0x4460(%rsp), %rax
movq %rax, 0x630(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1209778
movq 0x630(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x445c(%rsp) # imm = 0xFFFFFFFF
movl 0x445c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4458(%rsp)
cmpl $0x1, 0x4458(%rsp)
jne 0x1209778
movq 0x630(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1209749
movq 0x630(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1209747
jmp 0x1209776
movq 0x630(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45d0(%rsp)
cmpq $0x0, 0x45d0(%rsp)
je 0x1209774
movq 0x45d0(%rsp), %rdi
callq 0x5f480
jmp 0x1209776
jmp 0x1209778
movq 0x630(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12097d3
movq %rax, %rdi
callq 0x678a0
jmp 0x12097d5
leaq 0x1608(%rsp), %rax
movq %rax, 0x23c0(%rsp)
movq 0x23c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x620(%rsp)
leaq 0x1608(%rsp), %rax
movq %rax, 0x2628(%rsp)
movq 0x2628(%rsp), %rax
movq %rax, 0x41a0(%rsp)
movq 0x41a0(%rsp), %rax
movq %rax, 0x628(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12098c0
movq 0x628(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x419c(%rsp) # imm = 0xFFFFFFFF
movl 0x419c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4198(%rsp)
cmpl $0x1, 0x4198(%rsp)
jne 0x12098c0
movq 0x628(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1209891
movq 0x628(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x120988f
jmp 0x12098be
movq 0x628(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4730(%rsp)
cmpq $0x0, 0x4730(%rsp)
je 0x12098bc
movq 0x4730(%rsp), %rdi
callq 0x5f480
jmp 0x12098be
jmp 0x12098c0
movq 0x628(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120991b
movq %rax, %rdi
callq 0x678a0
movq 0x620(%rsp), %rax
movq %rax, 0x1650(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1658(%rsp), %eax
leaq 0x15b8(%rsp), %rdx
movq %rdx, 0x2198(%rsp)
movq %rcx, 0x2190(%rsp)
movl %eax, 0x218c(%rsp)
movq 0x2190(%rsp), %rax
movq %rax, 0x618(%rsp)
movb $0x0, 0x218b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x218c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x15b8(%rsp), %r10
movq %r10, 0x36b8(%rsp)
movl %r9d, 0x36b4(%rsp)
movl %r8d, 0x36b0(%rsp)
movl %edi, 0x36ac(%rsp)
movq %rsi, 0x36a0(%rsp)
movq %rdx, 0x3698(%rsp)
movl %ecx, 0x3694(%rsp)
movq %rax, 0x3688(%rsp)
movq 0x36b8(%rsp), %rcx
movq %rcx, 0x610(%rsp)
movq 0x36a0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3698(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3694(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3688(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x36b4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x36b0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x36ac(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b90(%rsp)
movl $0x10, 0x3b8c(%rsp)
movq 0x3b90(%rsp), %rax
movslq 0x3b8c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b8c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x618(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x15e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1209ae7
movq 0x618(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x15f8(%rsp)
movb $0x1, 0x218b(%rsp)
testb $0x1, 0x218b(%rsp)
jne 0x1209c22
leaq 0x15b8(%rsp), %rax
movq %rax, 0x24d0(%rsp)
movq 0x24d0(%rsp), %rax
movq %rax, 0x4450(%rsp)
movq 0x4450(%rsp), %rax
movq %rax, 0x608(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1209bc5
movq 0x608(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x444c(%rsp) # imm = 0xFFFFFFFF
movl 0x444c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4448(%rsp)
cmpl $0x1, 0x4448(%rsp)
jne 0x1209bc5
movq 0x608(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1209b96
movq 0x608(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1209b94
jmp 0x1209bc3
movq 0x608(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45d8(%rsp)
cmpq $0x0, 0x45d8(%rsp)
je 0x1209bc1
movq 0x45d8(%rsp), %rdi
callq 0x5f480
jmp 0x1209bc3
jmp 0x1209bc5
movq 0x608(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1209c20
movq %rax, %rdi
callq 0x678a0
jmp 0x1209c22
leaq 0x15b8(%rsp), %rax
movq %rax, 0x23b8(%rsp)
movq 0x23b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5f8(%rsp)
leaq 0x15b8(%rsp), %rax
movq %rax, 0x2630(%rsp)
movq 0x2630(%rsp), %rax
movq %rax, 0x4190(%rsp)
movq 0x4190(%rsp), %rax
movq %rax, 0x600(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1209d0d
movq 0x600(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x418c(%rsp) # imm = 0xFFFFFFFF
movl 0x418c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4188(%rsp)
cmpl $0x1, 0x4188(%rsp)
jne 0x1209d0d
movq 0x600(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1209cde
movq 0x600(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1209cdc
jmp 0x1209d0b
movq 0x600(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4738(%rsp)
cmpq $0x0, 0x4738(%rsp)
je 0x1209d09
movq 0x4738(%rsp), %rdi
callq 0x5f480
jmp 0x1209d0b
jmp 0x1209d0d
movq 0x600(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1209d68
movq %rax, %rdi
callq 0x678a0
movq 0x5f8(%rsp), %rax
movq %rax, 0x1600(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1658(%rsp), %eax
leaq 0x1568(%rsp), %rdx
movq %rdx, 0x28e0(%rsp)
movq %rcx, 0x28d8(%rsp)
movl %eax, 0x28d4(%rsp)
movq 0x28d8(%rsp), %rax
movq %rax, 0x5f0(%rsp)
movb $0x0, 0x28d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x28d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1568(%rsp), %r10
movq %r10, 0x3028(%rsp)
movl %r9d, 0x3024(%rsp)
movl %r8d, 0x3020(%rsp)
movl %edi, 0x301c(%rsp)
movq %rsi, 0x3010(%rsp)
movq %rdx, 0x3008(%rsp)
movl %ecx, 0x3004(%rsp)
movq %rax, 0x2ff8(%rsp)
movq 0x3028(%rsp), %rcx
movq %rcx, 0x5e8(%rsp)
movq 0x3010(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3008(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3004(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ff8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3024(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3020(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x301c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d70(%rsp)
movl $0x10, 0x3d6c(%rsp)
movq 0x3d70(%rsp), %rax
movslq 0x3d6c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d6c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5f0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1590(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1209f34
movq 0x5f0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x15a8(%rsp)
movb $0x1, 0x28d3(%rsp)
testb $0x1, 0x28d3(%rsp)
jne 0x120a06f
leaq 0x1568(%rsp), %rax
movq %rax, 0x28e8(%rsp)
movq 0x28e8(%rsp), %rax
movq %rax, 0x3ec0(%rsp)
movq 0x3ec0(%rsp), %rax
movq %rax, 0x5e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120a012
movq 0x5e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ebc(%rsp) # imm = 0xFFFFFFFF
movl 0x3ebc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3eb8(%rsp)
cmpl $0x1, 0x3eb8(%rsp)
jne 0x120a012
movq 0x5e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1209fe3
movq 0x5e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1209fe1
jmp 0x120a010
movq 0x5e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48a0(%rsp)
cmpq $0x0, 0x48a0(%rsp)
je 0x120a00e
movq 0x48a0(%rsp), %rdi
callq 0x5f480
jmp 0x120a010
jmp 0x120a012
movq 0x5e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120a06d
movq %rax, %rdi
callq 0x678a0
jmp 0x120a06f
leaq 0x1568(%rsp), %rax
movq %rax, 0x2aa8(%rsp)
movq 0x2aa8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5d0(%rsp)
leaq 0x1568(%rsp), %rax
movq %rax, 0x2638(%rsp)
movq 0x2638(%rsp), %rax
movq %rax, 0x4180(%rsp)
movq 0x4180(%rsp), %rax
movq %rax, 0x5d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120a15a
movq 0x5d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x417c(%rsp) # imm = 0xFFFFFFFF
movl 0x417c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4178(%rsp)
cmpl $0x1, 0x4178(%rsp)
jne 0x120a15a
movq 0x5d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120a12b
movq 0x5d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x120a129
jmp 0x120a158
movq 0x5d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4740(%rsp)
cmpq $0x0, 0x4740(%rsp)
je 0x120a156
movq 0x4740(%rsp), %rdi
callq 0x5f480
jmp 0x120a158
jmp 0x120a15a
movq 0x5d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120a1b5
movq %rax, %rdi
callq 0x678a0
movq 0x5d0(%rsp), %rax
movq %rax, 0x15b0(%rsp)
movl $0x0, 0x1564(%rsp)
movl 0x1564(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jge 0x120a2c9
movq 0x1600(%rsp), %rax
movslq 0x1564(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x1560(%rsp)
movl $0x0, 0x155c(%rsp)
movl 0x155c(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x120a271
movq 0x1650(%rsp), %rsi
movslq 0x155c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0x1560(%rsp), %rdx
callq 0x1278030
movq 0x15b0(%rsp), %rax
movslq 0x155c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x155c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x155c(%rsp)
jmp 0x120a20d
movl 0x1ef8(%rsp), %ecx
movq 0x1650(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1650(%rsp)
movl 0x1ef8(%rsp), %ecx
movq 0x15b0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x15b0(%rsp)
movl 0x1564(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1564(%rsp)
jmp 0x120a1d0
jmp 0x120a2cb
movl 0x1658(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1658(%rsp)
jmp 0x12094ca
movl $0x0, 0x1f24(%rsp)
jmp 0x12149e5
movl 0x1edc(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jne 0x120b20c
cmpl $0x1, 0x1ef4(%rsp)
je 0x120b20c
cmpl $0x1, 0x1ed8(%rsp)
jne 0x120b20c
movl 0x1ed0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jne 0x120b20c
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1eec(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fa8(%rsp)
movq 0x1fa8(%rsp), %rcx
movq %rcx, 0x5c0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x5cf(%rsp)
je 0x120a3cc
movq 0x5c0(%rsp), %rax
movq %rax, 0x2d40(%rsp)
movq 0x2d40(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x5cf(%rsp)
movb 0x5cf(%rsp), %al
testb $0x1, %al
jne 0x120a3d9
jmp 0x120a3e9
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x12149e5
movl $0x0, 0x1558(%rsp)
movl 0x1558(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x120b1fc
movq 0x1f18(%rsp), %rcx
movl 0x1558(%rsp), %eax
leaq 0x1508(%rsp), %rdx
movq %rdx, 0x2180(%rsp)
movq %rcx, 0x2178(%rsp)
movl %eax, 0x2174(%rsp)
movq 0x2178(%rsp), %rax
movq %rax, 0x5b8(%rsp)
movb $0x0, 0x2173(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2174(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1508(%rsp), %r10
movq %r10, 0x36f0(%rsp)
movl %r9d, 0x36ec(%rsp)
movl %r8d, 0x36e8(%rsp)
movl %edi, 0x36e4(%rsp)
movq %rsi, 0x36d8(%rsp)
movq %rdx, 0x36d0(%rsp)
movl %ecx, 0x36cc(%rsp)
movq %rax, 0x36c0(%rsp)
movq 0x36f0(%rsp), %rcx
movq %rcx, 0x5b0(%rsp)
movq 0x36d8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x36d0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x36cc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x36c0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x36ec(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x36e8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x36e4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b80(%rsp)
movl $0x10, 0x3b7c(%rsp)
movq 0x3b80(%rsp), %rax
movslq 0x3b7c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b7c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5b8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1530(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x120a5c4
movq 0x5b8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1548(%rsp)
movb $0x1, 0x2173(%rsp)
testb $0x1, 0x2173(%rsp)
jne 0x120a6ff
leaq 0x1508(%rsp), %rax
movq %rax, 0x24d8(%rsp)
movq 0x24d8(%rsp), %rax
movq %rax, 0x4440(%rsp)
movq 0x4440(%rsp), %rax
movq %rax, 0x5a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120a6a2
movq 0x5a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x443c(%rsp) # imm = 0xFFFFFFFF
movl 0x443c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4438(%rsp)
cmpl $0x1, 0x4438(%rsp)
jne 0x120a6a2
movq 0x5a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120a673
movq 0x5a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x120a671
jmp 0x120a6a0
movq 0x5a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45e0(%rsp)
cmpq $0x0, 0x45e0(%rsp)
je 0x120a69e
movq 0x45e0(%rsp), %rdi
callq 0x5f480
jmp 0x120a6a0
jmp 0x120a6a2
movq 0x5a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120a6fd
movq %rax, %rdi
callq 0x678a0
jmp 0x120a6ff
leaq 0x1508(%rsp), %rax
movq %rax, 0x23b0(%rsp)
movq 0x23b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x598(%rsp)
leaq 0x1508(%rsp), %rax
movq %rax, 0x2640(%rsp)
movq 0x2640(%rsp), %rax
movq %rax, 0x4170(%rsp)
movq 0x4170(%rsp), %rax
movq %rax, 0x5a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120a7ea
movq 0x5a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x416c(%rsp) # imm = 0xFFFFFFFF
movl 0x416c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4168(%rsp)
cmpl $0x1, 0x4168(%rsp)
jne 0x120a7ea
movq 0x5a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120a7bb
movq 0x5a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x120a7b9
jmp 0x120a7e8
movq 0x5a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4748(%rsp)
cmpq $0x0, 0x4748(%rsp)
je 0x120a7e6
movq 0x4748(%rsp), %rdi
callq 0x5f480
jmp 0x120a7e8
jmp 0x120a7ea
movq 0x5a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120a845
movq %rax, %rdi
callq 0x678a0
movq 0x598(%rsp), %rax
movq %rax, 0x1550(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1558(%rsp), %eax
leaq 0x14b8(%rsp), %rdx
movq %rdx, 0x2168(%rsp)
movq %rcx, 0x2160(%rsp)
movl %eax, 0x215c(%rsp)
movq 0x2160(%rsp), %rax
movq %rax, 0x590(%rsp)
movb $0x0, 0x215b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x215c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x14b8(%rsp), %r10
movq %r10, 0x3728(%rsp)
movl %r9d, 0x3724(%rsp)
movl %r8d, 0x3720(%rsp)
movl %edi, 0x371c(%rsp)
movq %rsi, 0x3710(%rsp)
movq %rdx, 0x3708(%rsp)
movl %ecx, 0x3704(%rsp)
movq %rax, 0x36f8(%rsp)
movq 0x3728(%rsp), %rcx
movq %rcx, 0x588(%rsp)
movq 0x3710(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3708(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3704(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x36f8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3724(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3720(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x371c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b70(%rsp)
movl $0x10, 0x3b6c(%rsp)
movq 0x3b70(%rsp), %rax
movslq 0x3b6c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b6c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x590(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x14e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x120aa11
movq 0x590(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x14f8(%rsp)
movb $0x1, 0x215b(%rsp)
testb $0x1, 0x215b(%rsp)
jne 0x120ab4c
leaq 0x14b8(%rsp), %rax
movq %rax, 0x24e0(%rsp)
movq 0x24e0(%rsp), %rax
movq %rax, 0x4430(%rsp)
movq 0x4430(%rsp), %rax
movq %rax, 0x580(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120aaef
movq 0x580(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x442c(%rsp) # imm = 0xFFFFFFFF
movl 0x442c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4428(%rsp)
cmpl $0x1, 0x4428(%rsp)
jne 0x120aaef
movq 0x580(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120aac0
movq 0x580(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x120aabe
jmp 0x120aaed
movq 0x580(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45e8(%rsp)
cmpq $0x0, 0x45e8(%rsp)
je 0x120aaeb
movq 0x45e8(%rsp), %rdi
callq 0x5f480
jmp 0x120aaed
jmp 0x120aaef
movq 0x580(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120ab4a
movq %rax, %rdi
callq 0x678a0
jmp 0x120ab4c
leaq 0x14b8(%rsp), %rax
movq %rax, 0x23a8(%rsp)
movq 0x23a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x570(%rsp)
leaq 0x14b8(%rsp), %rax
movq %rax, 0x2648(%rsp)
movq 0x2648(%rsp), %rax
movq %rax, 0x4160(%rsp)
movq 0x4160(%rsp), %rax
movq %rax, 0x578(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120ac37
movq 0x578(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x415c(%rsp) # imm = 0xFFFFFFFF
movl 0x415c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4158(%rsp)
cmpl $0x1, 0x4158(%rsp)
jne 0x120ac37
movq 0x578(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120ac08
movq 0x578(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x120ac06
jmp 0x120ac35
movq 0x578(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4750(%rsp)
cmpq $0x0, 0x4750(%rsp)
je 0x120ac33
movq 0x4750(%rsp), %rdi
callq 0x5f480
jmp 0x120ac35
jmp 0x120ac37
movq 0x578(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120ac92
movq %rax, %rdi
callq 0x678a0
movq 0x570(%rsp), %rax
movq %rax, 0x1500(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1558(%rsp), %eax
leaq 0x1468(%rsp), %rdx
movq %rdx, 0x28c0(%rsp)
movq %rcx, 0x28b8(%rsp)
movl %eax, 0x28b4(%rsp)
movq 0x28b8(%rsp), %rax
movq %rax, 0x568(%rsp)
movb $0x0, 0x28b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x28b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1468(%rsp), %r10
movq %r10, 0x3060(%rsp)
movl %r9d, 0x305c(%rsp)
movl %r8d, 0x3058(%rsp)
movl %edi, 0x3054(%rsp)
movq %rsi, 0x3048(%rsp)
movq %rdx, 0x3040(%rsp)
movl %ecx, 0x303c(%rsp)
movq %rax, 0x3030(%rsp)
movq 0x3060(%rsp), %rcx
movq %rcx, 0x560(%rsp)
movq 0x3048(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3040(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x303c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3030(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x305c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3058(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3054(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d60(%rsp)
movl $0x10, 0x3d5c(%rsp)
movq 0x3d60(%rsp), %rax
movslq 0x3d5c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d5c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x568(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1490(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x120ae5e
movq 0x568(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x14a8(%rsp)
movb $0x1, 0x28b3(%rsp)
testb $0x1, 0x28b3(%rsp)
jne 0x120af99
leaq 0x1468(%rsp), %rax
movq %rax, 0x28c8(%rsp)
movq 0x28c8(%rsp), %rax
movq %rax, 0x3ed0(%rsp)
movq 0x3ed0(%rsp), %rax
movq %rax, 0x558(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120af3c
movq 0x558(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ecc(%rsp) # imm = 0xFFFFFFFF
movl 0x3ecc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ec8(%rsp)
cmpl $0x1, 0x3ec8(%rsp)
jne 0x120af3c
movq 0x558(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120af0d
movq 0x558(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x120af0b
jmp 0x120af3a
movq 0x558(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4898(%rsp)
cmpq $0x0, 0x4898(%rsp)
je 0x120af38
movq 0x4898(%rsp), %rdi
callq 0x5f480
jmp 0x120af3a
jmp 0x120af3c
movq 0x558(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120af97
movq %rax, %rdi
callq 0x678a0
jmp 0x120af99
leaq 0x1468(%rsp), %rax
movq %rax, 0x2aa0(%rsp)
movq 0x2aa0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x548(%rsp)
leaq 0x1468(%rsp), %rax
movq %rax, 0x2650(%rsp)
movq 0x2650(%rsp), %rax
movq %rax, 0x4150(%rsp)
movq 0x4150(%rsp), %rax
movq %rax, 0x550(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120b084
movq 0x550(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x414c(%rsp) # imm = 0xFFFFFFFF
movl 0x414c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4148(%rsp)
cmpl $0x1, 0x4148(%rsp)
jne 0x120b084
movq 0x550(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120b055
movq 0x550(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x120b053
jmp 0x120b082
movq 0x550(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4758(%rsp)
cmpq $0x0, 0x4758(%rsp)
je 0x120b080
movq 0x4758(%rsp), %rdi
callq 0x5f480
jmp 0x120b082
jmp 0x120b084
movq 0x550(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120b0df
movq %rax, %rdi
callq 0x678a0
movq 0x548(%rsp), %rax
movq %rax, 0x14b0(%rsp)
movl $0x0, 0x1464(%rsp)
movl 0x1464(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jge 0x120b1e4
movl $0x0, 0x1460(%rsp)
movl 0x1460(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x120b18c
movq 0x1550(%rsp), %rsi
movslq 0x1460(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1500(%rsp), %rdx
movslq 0x1460(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x1278030
movq 0x14b0(%rsp), %rax
movslq 0x1460(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1460(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1460(%rsp)
jmp 0x120b119
movl 0x1ef8(%rsp), %ecx
movq 0x1550(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1550(%rsp)
movl 0x1ef8(%rsp), %ecx
movq 0x14b0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x14b0(%rsp)
movl 0x1464(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1464(%rsp)
jmp 0x120b0fa
jmp 0x120b1e6
movl 0x1558(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1558(%rsp)
jmp 0x120a3f4
movl $0x0, 0x1f24(%rsp)
jmp 0x12149e5
cmpl $0x1, 0x1edc(%rsp)
je 0x120c136
cmpl $0x1, 0x1ef8(%rsp)
jne 0x120c136
movl 0x1ed8(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jne 0x120c136
movl 0x1ed0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jne 0x120c136
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed0(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fa0(%rsp)
movq 0x1fa0(%rsp), %rcx
movq %rcx, 0x538(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x547(%rsp)
je 0x120b2e7
movq 0x538(%rsp), %rax
movq %rax, 0x2d48(%rsp)
movq 0x2d48(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x547(%rsp)
movb 0x547(%rsp), %al
testb $0x1, %al
jne 0x120b2f4
jmp 0x120b304
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x12149e5
movl $0x0, 0x145c(%rsp)
movl 0x145c(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x120c126
movq 0x1f18(%rsp), %rcx
movl 0x145c(%rsp), %eax
leaq 0x1408(%rsp), %rdx
movq %rdx, 0x2150(%rsp)
movq %rcx, 0x2148(%rsp)
movl %eax, 0x2144(%rsp)
movq 0x2148(%rsp), %rax
movq %rax, 0x530(%rsp)
movb $0x0, 0x2143(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2144(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1408(%rsp), %r10
movq %r10, 0x3760(%rsp)
movl %r9d, 0x375c(%rsp)
movl %r8d, 0x3758(%rsp)
movl %edi, 0x3754(%rsp)
movq %rsi, 0x3748(%rsp)
movq %rdx, 0x3740(%rsp)
movl %ecx, 0x373c(%rsp)
movq %rax, 0x3730(%rsp)
movq 0x3760(%rsp), %rcx
movq %rcx, 0x528(%rsp)
movq 0x3748(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3740(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x373c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3730(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x375c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3758(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3754(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b60(%rsp)
movl $0x10, 0x3b5c(%rsp)
movq 0x3b60(%rsp), %rax
movslq 0x3b5c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b5c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x530(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1430(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x120b4df
movq 0x530(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1448(%rsp)
movb $0x1, 0x2143(%rsp)
testb $0x1, 0x2143(%rsp)
jne 0x120b61a
leaq 0x1408(%rsp), %rax
movq %rax, 0x24e8(%rsp)
movq 0x24e8(%rsp), %rax
movq %rax, 0x4420(%rsp)
movq 0x4420(%rsp), %rax
movq %rax, 0x520(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120b5bd
movq 0x520(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x441c(%rsp) # imm = 0xFFFFFFFF
movl 0x441c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4418(%rsp)
cmpl $0x1, 0x4418(%rsp)
jne 0x120b5bd
movq 0x520(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120b58e
movq 0x520(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x120b58c
jmp 0x120b5bb
movq 0x520(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45f0(%rsp)
cmpq $0x0, 0x45f0(%rsp)
je 0x120b5b9
movq 0x45f0(%rsp), %rdi
callq 0x5f480
jmp 0x120b5bb
jmp 0x120b5bd
movq 0x520(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120b618
movq %rax, %rdi
callq 0x678a0
jmp 0x120b61a
leaq 0x1408(%rsp), %rax
movq %rax, 0x23a0(%rsp)
movq 0x23a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x510(%rsp)
leaq 0x1408(%rsp), %rax
movq %rax, 0x2658(%rsp)
movq 0x2658(%rsp), %rax
movq %rax, 0x4140(%rsp)
movq 0x4140(%rsp), %rax
movq %rax, 0x518(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120b705
movq 0x518(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x413c(%rsp) # imm = 0xFFFFFFFF
movl 0x413c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4138(%rsp)
cmpl $0x1, 0x4138(%rsp)
jne 0x120b705
movq 0x518(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120b6d6
movq 0x518(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x120b6d4
jmp 0x120b703
movq 0x518(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4760(%rsp)
cmpq $0x0, 0x4760(%rsp)
je 0x120b701
movq 0x4760(%rsp), %rdi
callq 0x5f480
jmp 0x120b703
jmp 0x120b705
movq 0x518(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120b760
movq %rax, %rdi
callq 0x678a0
movq 0x510(%rsp), %rax
movq %rax, 0x1450(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x145c(%rsp), %eax
leaq 0x13b8(%rsp), %rdx
movq %rdx, 0x2138(%rsp)
movq %rcx, 0x2130(%rsp)
movl %eax, 0x212c(%rsp)
movq 0x2130(%rsp), %rax
movq %rax, 0x508(%rsp)
movb $0x0, 0x212b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x212c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x13b8(%rsp), %r10
movq %r10, 0x3798(%rsp)
movl %r9d, 0x3794(%rsp)
movl %r8d, 0x3790(%rsp)
movl %edi, 0x378c(%rsp)
movq %rsi, 0x3780(%rsp)
movq %rdx, 0x3778(%rsp)
movl %ecx, 0x3774(%rsp)
movq %rax, 0x3768(%rsp)
movq 0x3798(%rsp), %rcx
movq %rcx, 0x500(%rsp)
movq 0x3780(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3778(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3774(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3768(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3794(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3790(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x378c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b50(%rsp)
movl $0x10, 0x3b4c(%rsp)
movq 0x3b50(%rsp), %rax
movslq 0x3b4c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b4c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x508(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x13e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x120b92c
movq 0x508(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x13f8(%rsp)
movb $0x1, 0x212b(%rsp)
testb $0x1, 0x212b(%rsp)
jne 0x120ba67
leaq 0x13b8(%rsp), %rax
movq %rax, 0x24f0(%rsp)
movq 0x24f0(%rsp), %rax
movq %rax, 0x4410(%rsp)
movq 0x4410(%rsp), %rax
movq %rax, 0x4f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120ba0a
movq 0x4f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x440c(%rsp) # imm = 0xFFFFFFFF
movl 0x440c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4408(%rsp)
cmpl $0x1, 0x4408(%rsp)
jne 0x120ba0a
movq 0x4f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120b9db
movq 0x4f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x120b9d9
jmp 0x120ba08
movq 0x4f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45f8(%rsp)
cmpq $0x0, 0x45f8(%rsp)
je 0x120ba06
movq 0x45f8(%rsp), %rdi
callq 0x5f480
jmp 0x120ba08
jmp 0x120ba0a
movq 0x4f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120ba65
movq %rax, %rdi
callq 0x678a0
jmp 0x120ba67
leaq 0x13b8(%rsp), %rax
movq %rax, 0x2398(%rsp)
movq 0x2398(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4e8(%rsp)
leaq 0x13b8(%rsp), %rax
movq %rax, 0x2660(%rsp)
movq 0x2660(%rsp), %rax
movq %rax, 0x4130(%rsp)
movq 0x4130(%rsp), %rax
movq %rax, 0x4f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120bb52
movq 0x4f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x412c(%rsp) # imm = 0xFFFFFFFF
movl 0x412c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4128(%rsp)
cmpl $0x1, 0x4128(%rsp)
jne 0x120bb52
movq 0x4f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120bb23
movq 0x4f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x120bb21
jmp 0x120bb50
movq 0x4f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4768(%rsp)
cmpq $0x0, 0x4768(%rsp)
je 0x120bb4e
movq 0x4768(%rsp), %rdi
callq 0x5f480
jmp 0x120bb50
jmp 0x120bb52
movq 0x4f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120bbad
movq %rax, %rdi
callq 0x678a0
movq 0x4e8(%rsp), %rax
movq %rax, 0x1400(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x145c(%rsp), %eax
leaq 0x1368(%rsp), %rdx
movq %rdx, 0x28a0(%rsp)
movq %rcx, 0x2898(%rsp)
movl %eax, 0x2894(%rsp)
movq 0x2898(%rsp), %rax
movq %rax, 0x4e0(%rsp)
movb $0x0, 0x2893(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2894(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1368(%rsp), %r10
movq %r10, 0x3098(%rsp)
movl %r9d, 0x3094(%rsp)
movl %r8d, 0x3090(%rsp)
movl %edi, 0x308c(%rsp)
movq %rsi, 0x3080(%rsp)
movq %rdx, 0x3078(%rsp)
movl %ecx, 0x3074(%rsp)
movq %rax, 0x3068(%rsp)
movq 0x3098(%rsp), %rcx
movq %rcx, 0x4d8(%rsp)
movq 0x3080(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3078(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3074(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3068(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3094(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3090(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x308c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d50(%rsp)
movl $0x10, 0x3d4c(%rsp)
movq 0x3d50(%rsp), %rax
movslq 0x3d4c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d4c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4e0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1390(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x120bd79
movq 0x4e0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x13a8(%rsp)
movb $0x1, 0x2893(%rsp)
testb $0x1, 0x2893(%rsp)
jne 0x120beb4
leaq 0x1368(%rsp), %rax
movq %rax, 0x28a8(%rsp)
movq 0x28a8(%rsp), %rax
movq %rax, 0x3ee0(%rsp)
movq 0x3ee0(%rsp), %rax
movq %rax, 0x4d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120be57
movq 0x4d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3edc(%rsp) # imm = 0xFFFFFFFF
movl 0x3edc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ed8(%rsp)
cmpl $0x1, 0x3ed8(%rsp)
jne 0x120be57
movq 0x4d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120be28
movq 0x4d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x120be26
jmp 0x120be55
movq 0x4d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4890(%rsp)
cmpq $0x0, 0x4890(%rsp)
je 0x120be53
movq 0x4890(%rsp), %rdi
callq 0x5f480
jmp 0x120be55
jmp 0x120be57
movq 0x4d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120beb2
movq %rax, %rdi
callq 0x678a0
jmp 0x120beb4
leaq 0x1368(%rsp), %rax
movq %rax, 0x2a98(%rsp)
movq 0x2a98(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4c0(%rsp)
leaq 0x1368(%rsp), %rax
movq %rax, 0x2668(%rsp)
movq 0x2668(%rsp), %rax
movq %rax, 0x4120(%rsp)
movq 0x4120(%rsp), %rax
movq %rax, 0x4c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120bf9f
movq 0x4c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x411c(%rsp) # imm = 0xFFFFFFFF
movl 0x411c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4118(%rsp)
cmpl $0x1, 0x4118(%rsp)
jne 0x120bf9f
movq 0x4c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120bf70
movq 0x4c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x120bf6e
jmp 0x120bf9d
movq 0x4c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4770(%rsp)
cmpq $0x0, 0x4770(%rsp)
je 0x120bf9b
movq 0x4770(%rsp), %rdi
callq 0x5f480
jmp 0x120bf9d
jmp 0x120bf9f
movq 0x4c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120bffa
movq %rax, %rdi
callq 0x678a0
movq 0x4c0(%rsp), %rax
movq %rax, 0x13b0(%rsp)
movl $0x0, 0x1364(%rsp)
movl 0x1364(%rsp), %eax
cmpl 0x1ed8(%rsp), %eax
jge 0x120c10e
movq 0x1450(%rsp), %rax
movslq 0x1364(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x1360(%rsp)
movl $0x0, 0x135c(%rsp)
movl 0x135c(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x120c0b6
movq 0x1400(%rsp), %rdx
movslq 0x135c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0x1360(%rsp), %rsi
callq 0x1278030
movq 0x13b0(%rsp), %rax
movslq 0x135c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x135c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x135c(%rsp)
jmp 0x120c052
movl 0x1edc(%rsp), %ecx
movq 0x1400(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1400(%rsp)
movl 0x1edc(%rsp), %ecx
movq 0x13b0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x13b0(%rsp)
movl 0x1364(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1364(%rsp)
jmp 0x120c015
jmp 0x120c110
movl 0x145c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x145c(%rsp)
jmp 0x120b30f
movl $0x0, 0x1f24(%rsp)
jmp 0x12149e5
movl 0x1edc(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jne 0x120d051
cmpl $0x1, 0x1ed8(%rsp)
je 0x120d051
cmpl $0x1, 0x1ef4(%rsp)
jne 0x120d051
movl 0x1ed0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jne 0x120d051
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed0(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f98(%rsp)
movq 0x1f98(%rsp), %rcx
movq %rcx, 0x4b0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x4bf(%rsp)
je 0x120c211
movq 0x4b0(%rsp), %rax
movq %rax, 0x2d50(%rsp)
movq 0x2d50(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x4bf(%rsp)
movb 0x4bf(%rsp), %al
testb $0x1, %al
jne 0x120c21e
jmp 0x120c22e
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x12149e5
movl $0x0, 0x1358(%rsp)
movl 0x1358(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x120d041
movq 0x1f18(%rsp), %rcx
movl 0x1358(%rsp), %eax
leaq 0x1308(%rsp), %rdx
movq %rdx, 0x2120(%rsp)
movq %rcx, 0x2118(%rsp)
movl %eax, 0x2114(%rsp)
movq 0x2118(%rsp), %rax
movq %rax, 0x4a8(%rsp)
movb $0x0, 0x2113(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2114(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1308(%rsp), %r10
movq %r10, 0x37d0(%rsp)
movl %r9d, 0x37cc(%rsp)
movl %r8d, 0x37c8(%rsp)
movl %edi, 0x37c4(%rsp)
movq %rsi, 0x37b8(%rsp)
movq %rdx, 0x37b0(%rsp)
movl %ecx, 0x37ac(%rsp)
movq %rax, 0x37a0(%rsp)
movq 0x37d0(%rsp), %rcx
movq %rcx, 0x4a0(%rsp)
movq 0x37b8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x37b0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x37ac(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x37a0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x37cc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x37c8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x37c4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b40(%rsp)
movl $0x10, 0x3b3c(%rsp)
movq 0x3b40(%rsp), %rax
movslq 0x3b3c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b3c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4a8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1330(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x120c409
movq 0x4a8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1348(%rsp)
movb $0x1, 0x2113(%rsp)
testb $0x1, 0x2113(%rsp)
jne 0x120c544
leaq 0x1308(%rsp), %rax
movq %rax, 0x24f8(%rsp)
movq 0x24f8(%rsp), %rax
movq %rax, 0x4400(%rsp)
movq 0x4400(%rsp), %rax
movq %rax, 0x498(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120c4e7
movq 0x498(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x43fc(%rsp) # imm = 0xFFFFFFFF
movl 0x43fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x43f8(%rsp)
cmpl $0x1, 0x43f8(%rsp)
jne 0x120c4e7
movq 0x498(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120c4b8
movq 0x498(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x120c4b6
jmp 0x120c4e5
movq 0x498(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4600(%rsp)
cmpq $0x0, 0x4600(%rsp)
je 0x120c4e3
movq 0x4600(%rsp), %rdi
callq 0x5f480
jmp 0x120c4e5
jmp 0x120c4e7
movq 0x498(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120c542
movq %rax, %rdi
callq 0x678a0
jmp 0x120c544
leaq 0x1308(%rsp), %rax
movq %rax, 0x2390(%rsp)
movq 0x2390(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x488(%rsp)
leaq 0x1308(%rsp), %rax
movq %rax, 0x2670(%rsp)
movq 0x2670(%rsp), %rax
movq %rax, 0x4110(%rsp)
movq 0x4110(%rsp), %rax
movq %rax, 0x490(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120c62f
movq 0x490(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x410c(%rsp) # imm = 0xFFFFFFFF
movl 0x410c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4108(%rsp)
cmpl $0x1, 0x4108(%rsp)
jne 0x120c62f
movq 0x490(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120c600
movq 0x490(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x120c5fe
jmp 0x120c62d
movq 0x490(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4778(%rsp)
cmpq $0x0, 0x4778(%rsp)
je 0x120c62b
movq 0x4778(%rsp), %rdi
callq 0x5f480
jmp 0x120c62d
jmp 0x120c62f
movq 0x490(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120c68a
movq %rax, %rdi
callq 0x678a0
movq 0x488(%rsp), %rax
movq %rax, 0x1350(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1358(%rsp), %eax
leaq 0x12b8(%rsp), %rdx
movq %rdx, 0x2108(%rsp)
movq %rcx, 0x2100(%rsp)
movl %eax, 0x20fc(%rsp)
movq 0x2100(%rsp), %rax
movq %rax, 0x480(%rsp)
movb $0x0, 0x20fb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x20fc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x12b8(%rsp), %r10
movq %r10, 0x3808(%rsp)
movl %r9d, 0x3804(%rsp)
movl %r8d, 0x3800(%rsp)
movl %edi, 0x37fc(%rsp)
movq %rsi, 0x37f0(%rsp)
movq %rdx, 0x37e8(%rsp)
movl %ecx, 0x37e4(%rsp)
movq %rax, 0x37d8(%rsp)
movq 0x3808(%rsp), %rcx
movq %rcx, 0x478(%rsp)
movq 0x37f0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x37e8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x37e4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x37d8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3804(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3800(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x37fc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b30(%rsp)
movl $0x10, 0x3b2c(%rsp)
movq 0x3b30(%rsp), %rax
movslq 0x3b2c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b2c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x480(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x12e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x120c856
movq 0x480(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x12f8(%rsp)
movb $0x1, 0x20fb(%rsp)
testb $0x1, 0x20fb(%rsp)
jne 0x120c991
leaq 0x12b8(%rsp), %rax
movq %rax, 0x2500(%rsp)
movq 0x2500(%rsp), %rax
movq %rax, 0x43f0(%rsp)
movq 0x43f0(%rsp), %rax
movq %rax, 0x470(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120c934
movq 0x470(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x43ec(%rsp) # imm = 0xFFFFFFFF
movl 0x43ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x43e8(%rsp)
cmpl $0x1, 0x43e8(%rsp)
jne 0x120c934
movq 0x470(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120c905
movq 0x470(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x120c903
jmp 0x120c932
movq 0x470(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4608(%rsp)
cmpq $0x0, 0x4608(%rsp)
je 0x120c930
movq 0x4608(%rsp), %rdi
callq 0x5f480
jmp 0x120c932
jmp 0x120c934
movq 0x470(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120c98f
movq %rax, %rdi
callq 0x678a0
jmp 0x120c991
leaq 0x12b8(%rsp), %rax
movq %rax, 0x2388(%rsp)
movq 0x2388(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x460(%rsp)
leaq 0x12b8(%rsp), %rax
movq %rax, 0x2678(%rsp)
movq 0x2678(%rsp), %rax
movq %rax, 0x4100(%rsp)
movq 0x4100(%rsp), %rax
movq %rax, 0x468(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120ca7c
movq 0x468(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40fc(%rsp) # imm = 0xFFFFFFFF
movl 0x40fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40f8(%rsp)
cmpl $0x1, 0x40f8(%rsp)
jne 0x120ca7c
movq 0x468(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120ca4d
movq 0x468(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x120ca4b
jmp 0x120ca7a
movq 0x468(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4780(%rsp)
cmpq $0x0, 0x4780(%rsp)
je 0x120ca78
movq 0x4780(%rsp), %rdi
callq 0x5f480
jmp 0x120ca7a
jmp 0x120ca7c
movq 0x468(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120cad7
movq %rax, %rdi
callq 0x678a0
movq 0x460(%rsp), %rax
movq %rax, 0x1300(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1358(%rsp), %eax
leaq 0x1268(%rsp), %rdx
movq %rdx, 0x2880(%rsp)
movq %rcx, 0x2878(%rsp)
movl %eax, 0x2874(%rsp)
movq 0x2878(%rsp), %rax
movq %rax, 0x458(%rsp)
movb $0x0, 0x2873(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2874(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1268(%rsp), %r10
movq %r10, 0x30d0(%rsp)
movl %r9d, 0x30cc(%rsp)
movl %r8d, 0x30c8(%rsp)
movl %edi, 0x30c4(%rsp)
movq %rsi, 0x30b8(%rsp)
movq %rdx, 0x30b0(%rsp)
movl %ecx, 0x30ac(%rsp)
movq %rax, 0x30a0(%rsp)
movq 0x30d0(%rsp), %rcx
movq %rcx, 0x450(%rsp)
movq 0x30b8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x30b0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x30ac(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x30a0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x30cc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x30c8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x30c4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d40(%rsp)
movl $0x10, 0x3d3c(%rsp)
movq 0x3d40(%rsp), %rax
movslq 0x3d3c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d3c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x458(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1290(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x120cca3
movq 0x458(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x12a8(%rsp)
movb $0x1, 0x2873(%rsp)
testb $0x1, 0x2873(%rsp)
jne 0x120cdde
leaq 0x1268(%rsp), %rax
movq %rax, 0x2888(%rsp)
movq 0x2888(%rsp), %rax
movq %rax, 0x3ef0(%rsp)
movq 0x3ef0(%rsp), %rax
movq %rax, 0x448(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120cd81
movq 0x448(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3eec(%rsp) # imm = 0xFFFFFFFF
movl 0x3eec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ee8(%rsp)
cmpl $0x1, 0x3ee8(%rsp)
jne 0x120cd81
movq 0x448(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120cd52
movq 0x448(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x120cd50
jmp 0x120cd7f
movq 0x448(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4888(%rsp)
cmpq $0x0, 0x4888(%rsp)
je 0x120cd7d
movq 0x4888(%rsp), %rdi
callq 0x5f480
jmp 0x120cd7f
jmp 0x120cd81
movq 0x448(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120cddc
movq %rax, %rdi
callq 0x678a0
jmp 0x120cdde
leaq 0x1268(%rsp), %rax
movq %rax, 0x2a90(%rsp)
movq 0x2a90(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x438(%rsp)
leaq 0x1268(%rsp), %rax
movq %rax, 0x2680(%rsp)
movq 0x2680(%rsp), %rax
movq %rax, 0x40f0(%rsp)
movq 0x40f0(%rsp), %rax
movq %rax, 0x440(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120cec9
movq 0x440(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40ec(%rsp) # imm = 0xFFFFFFFF
movl 0x40ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40e8(%rsp)
cmpl $0x1, 0x40e8(%rsp)
jne 0x120cec9
movq 0x440(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120ce9a
movq 0x440(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x120ce98
jmp 0x120cec7
movq 0x440(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4788(%rsp)
cmpq $0x0, 0x4788(%rsp)
je 0x120cec5
movq 0x4788(%rsp), %rdi
callq 0x5f480
jmp 0x120cec7
jmp 0x120cec9
movq 0x440(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120cf24
movq %rax, %rdi
callq 0x678a0
movq 0x438(%rsp), %rax
movq %rax, 0x12b0(%rsp)
movl $0x0, 0x1264(%rsp)
movl 0x1264(%rsp), %eax
cmpl 0x1ed8(%rsp), %eax
jge 0x120d029
movl $0x0, 0x1260(%rsp)
movl 0x1260(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x120cfd1
movq 0x1350(%rsp), %rsi
movslq 0x1260(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1300(%rsp), %rdx
movslq 0x1260(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x1278030
movq 0x12b0(%rsp), %rax
movslq 0x1260(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1260(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1260(%rsp)
jmp 0x120cf5e
movl 0x1edc(%rsp), %ecx
movq 0x1300(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1300(%rsp)
movl 0x1edc(%rsp), %ecx
movq 0x12b0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x12b0(%rsp)
movl 0x1264(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1264(%rsp)
jmp 0x120cf3f
jmp 0x120d02b
movl 0x1358(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1358(%rsp)
jmp 0x120c239
movl $0x0, 0x1f24(%rsp)
jmp 0x12149e5
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1eec(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f90(%rsp)
movq 0x1f90(%rsp), %rcx
movq %rcx, 0x428(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x437(%rsp)
je 0x120d0e8
movq 0x428(%rsp), %rax
movq %rax, 0x2d58(%rsp)
movq 0x2d58(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x437(%rsp)
movb 0x437(%rsp), %al
testb $0x1, %al
jne 0x120d0f5
jmp 0x120d105
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x12149e5
movl $0x0, 0x125c(%rsp)
movl 0x125c(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x120dea1
movq 0x1f18(%rsp), %rcx
movl 0x125c(%rsp), %eax
leaq 0x1208(%rsp), %rdx
movq %rdx, 0x20f0(%rsp)
movq %rcx, 0x20e8(%rsp)
movl %eax, 0x20e4(%rsp)
movq 0x20e8(%rsp), %rax
movq %rax, 0x420(%rsp)
movb $0x0, 0x20e3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x20e4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1208(%rsp), %r10
movq %r10, 0x3840(%rsp)
movl %r9d, 0x383c(%rsp)
movl %r8d, 0x3838(%rsp)
movl %edi, 0x3834(%rsp)
movq %rsi, 0x3828(%rsp)
movq %rdx, 0x3820(%rsp)
movl %ecx, 0x381c(%rsp)
movq %rax, 0x3810(%rsp)
movq 0x3840(%rsp), %rcx
movq %rcx, 0x418(%rsp)
movq 0x3828(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3820(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x381c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3810(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x383c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3838(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3834(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b20(%rsp)
movl $0x10, 0x3b1c(%rsp)
movq 0x3b20(%rsp), %rax
movslq 0x3b1c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b1c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x420(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1230(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x120d2e0
movq 0x420(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1248(%rsp)
movb $0x1, 0x20e3(%rsp)
testb $0x1, 0x20e3(%rsp)
jne 0x120d41b
leaq 0x1208(%rsp), %rax
movq %rax, 0x2508(%rsp)
movq 0x2508(%rsp), %rax
movq %rax, 0x43e0(%rsp)
movq 0x43e0(%rsp), %rax
movq %rax, 0x410(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120d3be
movq 0x410(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x43dc(%rsp) # imm = 0xFFFFFFFF
movl 0x43dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x43d8(%rsp)
cmpl $0x1, 0x43d8(%rsp)
jne 0x120d3be
movq 0x410(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120d38f
movq 0x410(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x120d38d
jmp 0x120d3bc
movq 0x410(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4610(%rsp)
cmpq $0x0, 0x4610(%rsp)
je 0x120d3ba
movq 0x4610(%rsp), %rdi
callq 0x5f480
jmp 0x120d3bc
jmp 0x120d3be
movq 0x410(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120d419
movq %rax, %rdi
callq 0x678a0
jmp 0x120d41b
leaq 0x1208(%rsp), %rax
movq %rax, 0x2380(%rsp)
movq 0x2380(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x400(%rsp)
leaq 0x1208(%rsp), %rax
movq %rax, 0x2688(%rsp)
movq 0x2688(%rsp), %rax
movq %rax, 0x40e0(%rsp)
movq 0x40e0(%rsp), %rax
movq %rax, 0x408(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120d506
movq 0x408(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40dc(%rsp) # imm = 0xFFFFFFFF
movl 0x40dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40d8(%rsp)
cmpl $0x1, 0x40d8(%rsp)
jne 0x120d506
movq 0x408(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120d4d7
movq 0x408(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x120d4d5
jmp 0x120d504
movq 0x408(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4790(%rsp)
cmpq $0x0, 0x4790(%rsp)
je 0x120d502
movq 0x4790(%rsp), %rdi
callq 0x5f480
jmp 0x120d504
jmp 0x120d506
movq 0x408(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120d561
movq %rax, %rdi
callq 0x678a0
movq 0x400(%rsp), %rax
movq %rax, 0x1250(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x125c(%rsp), %eax
leaq 0x11b8(%rsp), %rdx
movq %rdx, 0x20d8(%rsp)
movq %rcx, 0x20d0(%rsp)
movl %eax, 0x20cc(%rsp)
movq 0x20d0(%rsp), %rax
movq %rax, 0x3f8(%rsp)
movb $0x0, 0x20cb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x20cc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x11b8(%rsp), %r10
movq %r10, 0x3878(%rsp)
movl %r9d, 0x3874(%rsp)
movl %r8d, 0x3870(%rsp)
movl %edi, 0x386c(%rsp)
movq %rsi, 0x3860(%rsp)
movq %rdx, 0x3858(%rsp)
movl %ecx, 0x3854(%rsp)
movq %rax, 0x3848(%rsp)
movq 0x3878(%rsp), %rcx
movq %rcx, 0x3f0(%rsp)
movq 0x3860(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3858(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3854(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3848(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3874(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3870(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x386c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b10(%rsp)
movl $0x10, 0x3b0c(%rsp)
movq 0x3b10(%rsp), %rax
movslq 0x3b0c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b0c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3f8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x11e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x120d72d
movq 0x3f8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x11f8(%rsp)
movb $0x1, 0x20cb(%rsp)
testb $0x1, 0x20cb(%rsp)
jne 0x120d868
leaq 0x11b8(%rsp), %rax
movq %rax, 0x2510(%rsp)
movq 0x2510(%rsp), %rax
movq %rax, 0x43d0(%rsp)
movq 0x43d0(%rsp), %rax
movq %rax, 0x3e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120d80b
movq 0x3e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x43cc(%rsp) # imm = 0xFFFFFFFF
movl 0x43cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x43c8(%rsp)
cmpl $0x1, 0x43c8(%rsp)
jne 0x120d80b
movq 0x3e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120d7dc
movq 0x3e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x120d7da
jmp 0x120d809
movq 0x3e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4618(%rsp)
cmpq $0x0, 0x4618(%rsp)
je 0x120d807
movq 0x4618(%rsp), %rdi
callq 0x5f480
jmp 0x120d809
jmp 0x120d80b
movq 0x3e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120d866
movq %rax, %rdi
callq 0x678a0
jmp 0x120d868
leaq 0x11b8(%rsp), %rax
movq %rax, 0x2378(%rsp)
movq 0x2378(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d8(%rsp)
leaq 0x11b8(%rsp), %rax
movq %rax, 0x2690(%rsp)
movq 0x2690(%rsp), %rax
movq %rax, 0x40d0(%rsp)
movq 0x40d0(%rsp), %rax
movq %rax, 0x3e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120d953
movq 0x3e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40cc(%rsp) # imm = 0xFFFFFFFF
movl 0x40cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40c8(%rsp)
cmpl $0x1, 0x40c8(%rsp)
jne 0x120d953
movq 0x3e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120d924
movq 0x3e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x120d922
jmp 0x120d951
movq 0x3e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4798(%rsp)
cmpq $0x0, 0x4798(%rsp)
je 0x120d94f
movq 0x4798(%rsp), %rdi
callq 0x5f480
jmp 0x120d951
jmp 0x120d953
movq 0x3e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120d9ae
movq %rax, %rdi
callq 0x678a0
movq 0x3d8(%rsp), %rax
movq %rax, 0x1200(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x125c(%rsp), %eax
leaq 0x1168(%rsp), %rdx
movq %rdx, 0x2860(%rsp)
movq %rcx, 0x2858(%rsp)
movl %eax, 0x2854(%rsp)
movq 0x2858(%rsp), %rax
movq %rax, 0x3d0(%rsp)
movb $0x0, 0x2853(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2854(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1168(%rsp), %r10
movq %r10, 0x3108(%rsp)
movl %r9d, 0x3104(%rsp)
movl %r8d, 0x3100(%rsp)
movl %edi, 0x30fc(%rsp)
movq %rsi, 0x30f0(%rsp)
movq %rdx, 0x30e8(%rsp)
movl %ecx, 0x30e4(%rsp)
movq %rax, 0x30d8(%rsp)
movq 0x3108(%rsp), %rcx
movq %rcx, 0x3c8(%rsp)
movq 0x30f0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x30e8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x30e4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x30d8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3104(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3100(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x30fc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d30(%rsp)
movl $0x10, 0x3d2c(%rsp)
movq 0x3d30(%rsp), %rax
movslq 0x3d2c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d2c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3d0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1190(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x120db7a
movq 0x3d0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x11a8(%rsp)
movb $0x1, 0x2853(%rsp)
testb $0x1, 0x2853(%rsp)
jne 0x120dcb5
leaq 0x1168(%rsp), %rax
movq %rax, 0x2868(%rsp)
movq 0x2868(%rsp), %rax
movq %rax, 0x3f00(%rsp)
movq 0x3f00(%rsp), %rax
movq %rax, 0x3c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120dc58
movq 0x3c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3efc(%rsp) # imm = 0xFFFFFFFF
movl 0x3efc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ef8(%rsp)
cmpl $0x1, 0x3ef8(%rsp)
jne 0x120dc58
movq 0x3c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120dc29
movq 0x3c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x120dc27
jmp 0x120dc56
movq 0x3c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4880(%rsp)
cmpq $0x0, 0x4880(%rsp)
je 0x120dc54
movq 0x4880(%rsp), %rdi
callq 0x5f480
jmp 0x120dc56
jmp 0x120dc58
movq 0x3c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120dcb3
movq %rax, %rdi
callq 0x678a0
jmp 0x120dcb5
leaq 0x1168(%rsp), %rax
movq %rax, 0x2a88(%rsp)
movq 0x2a88(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3b0(%rsp)
leaq 0x1168(%rsp), %rax
movq %rax, 0x2698(%rsp)
movq 0x2698(%rsp), %rax
movq %rax, 0x40c0(%rsp)
movq 0x40c0(%rsp), %rax
movq %rax, 0x3b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120dda0
movq 0x3b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40bc(%rsp) # imm = 0xFFFFFFFF
movl 0x40bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40b8(%rsp)
cmpl $0x1, 0x40b8(%rsp)
jne 0x120dda0
movq 0x3b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120dd71
movq 0x3b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x120dd6f
jmp 0x120dd9e
movq 0x3b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47a0(%rsp)
cmpq $0x0, 0x47a0(%rsp)
je 0x120dd9c
movq 0x47a0(%rsp), %rdi
callq 0x5f480
jmp 0x120dd9e
jmp 0x120dda0
movq 0x3b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120ddfb
movq %rax, %rdi
callq 0x678a0
movq 0x3b0(%rsp), %rax
movq %rax, 0x11b0(%rsp)
movl $0x0, 0x1164(%rsp)
movl 0x1164(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x120de89
movq 0x1250(%rsp), %rsi
movslq 0x1164(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1200(%rsp), %rdx
movslq 0x1164(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x1278030
movq 0x11b0(%rsp), %rax
movslq 0x1164(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1164(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1164(%rsp)
jmp 0x120de16
jmp 0x120de8b
movl 0x125c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x125c(%rsp)
jmp 0x120d110
movl $0x0, 0x1f24(%rsp)
jmp 0x12149e5
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1eec(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f88(%rsp)
movq 0x1f88(%rsp), %rcx
movq %rcx, 0x3a0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x3af(%rsp)
je 0x120df48
movq 0x3a0(%rsp), %rax
movq %rax, 0x2d60(%rsp)
movq 0x2d60(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x3af(%rsp)
movb 0x3af(%rsp), %al
testb $0x1, %al
jne 0x120df55
jmp 0x120df65
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x12149e5
movq 0x1f10(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x120e9a5
movl $0x0, 0x1160(%rsp)
movl 0x1160(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x120e995
movq 0x1f18(%rsp), %rcx
movl 0x1160(%rsp), %eax
leaq 0x1110(%rsp), %rdx
movq %rdx, 0x20c0(%rsp)
movq %rcx, 0x20b8(%rsp)
movl %eax, 0x20b4(%rsp)
movq 0x20b8(%rsp), %rax
movq %rax, 0x398(%rsp)
movb $0x0, 0x20b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x20b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1110(%rsp), %r10
movq %r10, 0x38b0(%rsp)
movl %r9d, 0x38ac(%rsp)
movl %r8d, 0x38a8(%rsp)
movl %edi, 0x38a4(%rsp)
movq %rsi, 0x3898(%rsp)
movq %rdx, 0x3890(%rsp)
movl %ecx, 0x388c(%rsp)
movq %rax, 0x3880(%rsp)
movq 0x38b0(%rsp), %rcx
movq %rcx, 0x390(%rsp)
movq 0x3898(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3890(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x388c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3880(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x38ac(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x38a8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x38a4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b00(%rsp)
movl $0x10, 0x3afc(%rsp)
movq 0x3b00(%rsp), %rax
movslq 0x3afc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3afc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x398(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1138(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x120e152
movq 0x398(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1150(%rsp)
movb $0x1, 0x20b3(%rsp)
testb $0x1, 0x20b3(%rsp)
jne 0x120e28d
leaq 0x1110(%rsp), %rax
movq %rax, 0x2518(%rsp)
movq 0x2518(%rsp), %rax
movq %rax, 0x43c0(%rsp)
movq 0x43c0(%rsp), %rax
movq %rax, 0x388(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120e230
movq 0x388(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x43bc(%rsp) # imm = 0xFFFFFFFF
movl 0x43bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x43b8(%rsp)
cmpl $0x1, 0x43b8(%rsp)
jne 0x120e230
movq 0x388(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120e201
movq 0x388(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x120e1ff
jmp 0x120e22e
movq 0x388(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4620(%rsp)
cmpq $0x0, 0x4620(%rsp)
je 0x120e22c
movq 0x4620(%rsp), %rdi
callq 0x5f480
jmp 0x120e22e
jmp 0x120e230
movq 0x388(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120e28b
movq %rax, %rdi
callq 0x678a0
jmp 0x120e28d
leaq 0x1110(%rsp), %rax
movq %rax, 0x2370(%rsp)
movq 0x2370(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x378(%rsp)
leaq 0x1110(%rsp), %rax
movq %rax, 0x26a0(%rsp)
movq 0x26a0(%rsp), %rax
movq %rax, 0x40b0(%rsp)
movq 0x40b0(%rsp), %rax
movq %rax, 0x380(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120e378
movq 0x380(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40ac(%rsp) # imm = 0xFFFFFFFF
movl 0x40ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40a8(%rsp)
cmpl $0x1, 0x40a8(%rsp)
jne 0x120e378
movq 0x380(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120e349
movq 0x380(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x120e347
jmp 0x120e376
movq 0x380(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47a8(%rsp)
cmpq $0x0, 0x47a8(%rsp)
je 0x120e374
movq 0x47a8(%rsp), %rdi
callq 0x5f480
jmp 0x120e376
jmp 0x120e378
movq 0x380(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120e3d3
movq %rax, %rdi
callq 0x678a0
movq 0x378(%rsp), %rax
movq %rax, 0x1158(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1160(%rsp), %eax
movq %rcx, 0x2b28(%rsp)
movl %eax, 0x2b24(%rsp)
movq 0x2b28(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2b24(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x1108(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1160(%rsp), %eax
leaq 0x10b8(%rsp), %rdx
movq %rdx, 0x2840(%rsp)
movq %rcx, 0x2838(%rsp)
movl %eax, 0x2834(%rsp)
movq 0x2838(%rsp), %rax
movq %rax, 0x370(%rsp)
movb $0x0, 0x2833(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2834(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x10b8(%rsp), %r10
movq %r10, 0x3140(%rsp)
movl %r9d, 0x313c(%rsp)
movl %r8d, 0x3138(%rsp)
movl %edi, 0x3134(%rsp)
movq %rsi, 0x3128(%rsp)
movq %rdx, 0x3120(%rsp)
movl %ecx, 0x311c(%rsp)
movq %rax, 0x3110(%rsp)
movq 0x3140(%rsp), %rcx
movq %rcx, 0x368(%rsp)
movq 0x3128(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3120(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x311c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3110(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x313c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3138(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3134(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d20(%rsp)
movl $0x10, 0x3d1c(%rsp)
movq 0x3d20(%rsp), %rax
movslq 0x3d1c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d1c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x370(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x10e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x120e5e8
movq 0x370(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x10f8(%rsp)
movb $0x1, 0x2833(%rsp)
testb $0x1, 0x2833(%rsp)
jne 0x120e723
leaq 0x10b8(%rsp), %rax
movq %rax, 0x2848(%rsp)
movq 0x2848(%rsp), %rax
movq %rax, 0x3f10(%rsp)
movq 0x3f10(%rsp), %rax
movq %rax, 0x360(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120e6c6
movq 0x360(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f0c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f0c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f08(%rsp)
cmpl $0x1, 0x3f08(%rsp)
jne 0x120e6c6
movq 0x360(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120e697
movq 0x360(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x120e695
jmp 0x120e6c4
movq 0x360(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4878(%rsp)
cmpq $0x0, 0x4878(%rsp)
je 0x120e6c2
movq 0x4878(%rsp), %rdi
callq 0x5f480
jmp 0x120e6c4
jmp 0x120e6c6
movq 0x360(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120e721
movq %rax, %rdi
callq 0x678a0
jmp 0x120e723
leaq 0x10b8(%rsp), %rax
movq %rax, 0x2a80(%rsp)
movq 0x2a80(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x350(%rsp)
leaq 0x10b8(%rsp), %rax
movq %rax, 0x26a8(%rsp)
movq 0x26a8(%rsp), %rax
movq %rax, 0x40a0(%rsp)
movq 0x40a0(%rsp), %rax
movq %rax, 0x358(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120e80e
movq 0x358(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x409c(%rsp) # imm = 0xFFFFFFFF
movl 0x409c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4098(%rsp)
cmpl $0x1, 0x4098(%rsp)
jne 0x120e80e
movq 0x358(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120e7df
movq 0x358(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x120e7dd
jmp 0x120e80c
movq 0x358(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47b0(%rsp)
cmpq $0x0, 0x47b0(%rsp)
je 0x120e80a
movq 0x47b0(%rsp), %rdi
callq 0x5f480
jmp 0x120e80c
jmp 0x120e80e
movq 0x358(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120e869
movq %rax, %rdi
callq 0x678a0
movq 0x350(%rsp), %rax
movq %rax, 0x1100(%rsp)
movl $0x0, 0x10b4(%rsp)
movl 0x10b4(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jge 0x120e97d
movq 0x1108(%rsp), %rax
movslq 0x10b4(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x10b0(%rsp)
movl $0x0, 0x10ac(%rsp)
movl 0x10ac(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x120e925
movq 0x1158(%rsp), %rsi
movslq 0x10ac(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0x10b0(%rsp), %rdx
callq 0x1278030
movq 0x1100(%rsp), %rax
movslq 0x10ac(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x10ac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x10ac(%rsp)
jmp 0x120e8c1
movl 0x1ef8(%rsp), %ecx
movq 0x1158(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1158(%rsp)
movl 0x1ef8(%rsp), %ecx
movq 0x1100(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1100(%rsp)
movl 0x10b4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x10b4(%rsp)
jmp 0x120e884
jmp 0x120e97f
movl 0x1160(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1160(%rsp)
jmp 0x120df82
movl $0x0, 0x1f24(%rsp)
jmp 0x12149e5
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x120fce7
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x120f356
movq 0x1f10(%rsp), %rax
movq %rax, 0x2c78(%rsp)
movq $0x0, 0x2c70(%rsp)
movq 0x2c78(%rsp), %rax
movq (%rax), %rax
movq 0x2c70(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x10a8(%rsp)
movl $0x0, 0x10a4(%rsp)
movl 0x10a4(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x120f346
movq 0x1f18(%rsp), %rcx
movl 0x10a4(%rsp), %eax
leaq 0x1050(%rsp), %rdx
movq %rdx, 0x20a8(%rsp)
movq %rcx, 0x20a0(%rsp)
movl %eax, 0x209c(%rsp)
movq 0x20a0(%rsp), %rax
movq %rax, 0x348(%rsp)
movb $0x0, 0x209b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x209c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1050(%rsp), %r10
movq %r10, 0x38e8(%rsp)
movl %r9d, 0x38e4(%rsp)
movl %r8d, 0x38e0(%rsp)
movl %edi, 0x38dc(%rsp)
movq %rsi, 0x38d0(%rsp)
movq %rdx, 0x38c8(%rsp)
movl %ecx, 0x38c4(%rsp)
movq %rax, 0x38b8(%rsp)
movq 0x38e8(%rsp), %rcx
movq %rcx, 0x340(%rsp)
movq 0x38d0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x38c8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x38c4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x38b8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x38e4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x38e0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x38dc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3af0(%rsp)
movl $0x10, 0x3aec(%rsp)
movq 0x3af0(%rsp), %rax
movslq 0x3aec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3aec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x348(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1078(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x120ebe1
movq 0x348(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1090(%rsp)
movb $0x1, 0x209b(%rsp)
testb $0x1, 0x209b(%rsp)
jne 0x120ed1c
leaq 0x1050(%rsp), %rax
movq %rax, 0x2520(%rsp)
movq 0x2520(%rsp), %rax
movq %rax, 0x43b0(%rsp)
movq 0x43b0(%rsp), %rax
movq %rax, 0x338(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120ecbf
movq 0x338(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x43ac(%rsp) # imm = 0xFFFFFFFF
movl 0x43ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x43a8(%rsp)
cmpl $0x1, 0x43a8(%rsp)
jne 0x120ecbf
movq 0x338(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120ec90
movq 0x338(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x120ec8e
jmp 0x120ecbd
movq 0x338(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4628(%rsp)
cmpq $0x0, 0x4628(%rsp)
je 0x120ecbb
movq 0x4628(%rsp), %rdi
callq 0x5f480
jmp 0x120ecbd
jmp 0x120ecbf
movq 0x338(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120ed1a
movq %rax, %rdi
callq 0x678a0
jmp 0x120ed1c
leaq 0x1050(%rsp), %rax
movq %rax, 0x2368(%rsp)
movq 0x2368(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x328(%rsp)
leaq 0x1050(%rsp), %rax
movq %rax, 0x26b0(%rsp)
movq 0x26b0(%rsp), %rax
movq %rax, 0x4090(%rsp)
movq 0x4090(%rsp), %rax
movq %rax, 0x330(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120ee07
movq 0x330(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x408c(%rsp) # imm = 0xFFFFFFFF
movl 0x408c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4088(%rsp)
cmpl $0x1, 0x4088(%rsp)
jne 0x120ee07
movq 0x330(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120edd8
movq 0x330(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x120edd6
jmp 0x120ee05
movq 0x330(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47b8(%rsp)
cmpq $0x0, 0x47b8(%rsp)
je 0x120ee03
movq 0x47b8(%rsp), %rdi
callq 0x5f480
jmp 0x120ee05
jmp 0x120ee07
movq 0x330(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120ee62
movq %rax, %rdi
callq 0x678a0
movq 0x328(%rsp), %rax
movq %rax, 0x1098(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x10a4(%rsp), %eax
leaq 0x1000(%rsp), %rdx
movq %rdx, 0x2820(%rsp)
movq %rcx, 0x2818(%rsp)
movl %eax, 0x2814(%rsp)
movq 0x2818(%rsp), %rax
movq %rax, 0x320(%rsp)
movb $0x0, 0x2813(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2814(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1000(%rsp), %r10
movq %r10, 0x3178(%rsp)
movl %r9d, 0x3174(%rsp)
movl %r8d, 0x3170(%rsp)
movl %edi, 0x316c(%rsp)
movq %rsi, 0x3160(%rsp)
movq %rdx, 0x3158(%rsp)
movl %ecx, 0x3154(%rsp)
movq %rax, 0x3148(%rsp)
movq 0x3178(%rsp), %rcx
movq %rcx, 0x318(%rsp)
movq 0x3160(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3158(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3154(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3148(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3174(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3170(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x316c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d10(%rsp)
movl $0x10, 0x3d0c(%rsp)
movq 0x3d10(%rsp), %rax
movslq 0x3d0c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d0c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x320(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1028(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x120f02e
movq 0x320(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1040(%rsp)
movb $0x1, 0x2813(%rsp)
testb $0x1, 0x2813(%rsp)
jne 0x120f169
leaq 0x1000(%rsp), %rax
movq %rax, 0x2828(%rsp)
movq 0x2828(%rsp), %rax
movq %rax, 0x3f20(%rsp)
movq 0x3f20(%rsp), %rax
movq %rax, 0x310(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120f10c
movq 0x310(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f1c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f1c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f18(%rsp)
cmpl $0x1, 0x3f18(%rsp)
jne 0x120f10c
movq 0x310(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120f0dd
movq 0x310(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x120f0db
jmp 0x120f10a
movq 0x310(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4870(%rsp)
cmpq $0x0, 0x4870(%rsp)
je 0x120f108
movq 0x4870(%rsp), %rdi
callq 0x5f480
jmp 0x120f10a
jmp 0x120f10c
movq 0x310(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120f167
movq %rax, %rdi
callq 0x678a0
jmp 0x120f169
leaq 0x1000(%rsp), %rax
movq %rax, 0x2a78(%rsp)
movq 0x2a78(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x300(%rsp)
leaq 0x1000(%rsp), %rax
movq %rax, 0x26b8(%rsp)
movq 0x26b8(%rsp), %rax
movq %rax, 0x4080(%rsp)
movq 0x4080(%rsp), %rax
movq %rax, 0x308(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120f254
movq 0x308(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x407c(%rsp) # imm = 0xFFFFFFFF
movl 0x407c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4078(%rsp)
cmpl $0x1, 0x4078(%rsp)
jne 0x120f254
movq 0x308(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120f225
movq 0x308(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x120f223
jmp 0x120f252
movq 0x308(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47c0(%rsp)
cmpq $0x0, 0x47c0(%rsp)
je 0x120f250
movq 0x47c0(%rsp), %rdi
callq 0x5f480
jmp 0x120f252
jmp 0x120f254
movq 0x308(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120f2af
movq %rax, %rdi
callq 0x678a0
movq 0x300(%rsp), %rax
movq %rax, 0x1048(%rsp)
movl $0x0, 0xffc(%rsp)
movl 0xffc(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x120f32e
movq 0x1098(%rsp), %rsi
movslq 0xffc(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0x10a8(%rsp), %rdx
callq 0x1278030
movq 0x1048(%rsp), %rax
movslq 0xffc(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xffc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xffc(%rsp)
jmp 0x120f2ca
jmp 0x120f330
movl 0x10a4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x10a4(%rsp)
jmp 0x120ea11
movl $0x0, 0x1f24(%rsp)
jmp 0x12149e5
movl $0x0, 0xff8(%rsp)
movl 0xff8(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x120fcd7
movq 0x1f18(%rsp), %rcx
movl 0xff8(%rsp), %eax
leaq 0xfa8(%rsp), %rdx
movq %rdx, 0x2090(%rsp)
movq %rcx, 0x2088(%rsp)
movl %eax, 0x2084(%rsp)
movq 0x2088(%rsp), %rax
movq %rax, 0x2f8(%rsp)
movb $0x0, 0x2083(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2084(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xfa8(%rsp), %r10
movq %r10, 0x3920(%rsp)
movl %r9d, 0x391c(%rsp)
movl %r8d, 0x3918(%rsp)
movl %edi, 0x3914(%rsp)
movq %rsi, 0x3908(%rsp)
movq %rdx, 0x3900(%rsp)
movl %ecx, 0x38fc(%rsp)
movq %rax, 0x38f0(%rsp)
movq 0x3920(%rsp), %rcx
movq %rcx, 0x2f0(%rsp)
movq 0x3908(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3900(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x38fc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x38f0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x391c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3918(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3914(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ae0(%rsp)
movl $0x10, 0x3adc(%rsp)
movq 0x3ae0(%rsp), %rax
movslq 0x3adc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3adc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2f8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xfd0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x120f531
movq 0x2f8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xfe8(%rsp)
movb $0x1, 0x2083(%rsp)
testb $0x1, 0x2083(%rsp)
jne 0x120f66c
leaq 0xfa8(%rsp), %rax
movq %rax, 0x2528(%rsp)
movq 0x2528(%rsp), %rax
movq %rax, 0x43a0(%rsp)
movq 0x43a0(%rsp), %rax
movq %rax, 0x2e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120f60f
movq 0x2e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x439c(%rsp) # imm = 0xFFFFFFFF
movl 0x439c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4398(%rsp)
cmpl $0x1, 0x4398(%rsp)
jne 0x120f60f
movq 0x2e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120f5e0
movq 0x2e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x120f5de
jmp 0x120f60d
movq 0x2e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4630(%rsp)
cmpq $0x0, 0x4630(%rsp)
je 0x120f60b
movq 0x4630(%rsp), %rdi
callq 0x5f480
jmp 0x120f60d
jmp 0x120f60f
movq 0x2e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120f66a
movq %rax, %rdi
callq 0x678a0
jmp 0x120f66c
leaq 0xfa8(%rsp), %rax
movq %rax, 0x2360(%rsp)
movq 0x2360(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2d8(%rsp)
leaq 0xfa8(%rsp), %rax
movq %rax, 0x26c0(%rsp)
movq 0x26c0(%rsp), %rax
movq %rax, 0x4070(%rsp)
movq 0x4070(%rsp), %rax
movq %rax, 0x2e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120f757
movq 0x2e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x406c(%rsp) # imm = 0xFFFFFFFF
movl 0x406c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4068(%rsp)
cmpl $0x1, 0x4068(%rsp)
jne 0x120f757
movq 0x2e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120f728
movq 0x2e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x120f726
jmp 0x120f755
movq 0x2e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47c8(%rsp)
cmpq $0x0, 0x47c8(%rsp)
je 0x120f753
movq 0x47c8(%rsp), %rdi
callq 0x5f480
jmp 0x120f755
jmp 0x120f757
movq 0x2e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120f7b2
movq %rax, %rdi
callq 0x678a0
movq 0x2d8(%rsp), %rax
movq %rax, 0xff0(%rsp)
movq 0x1f10(%rsp), %rcx
movslq 0xff8(%rsp), %rax
movq %rcx, 0x2c68(%rsp)
movq %rax, 0x2c60(%rsp)
movq 0x2c68(%rsp), %rax
movq (%rax), %rax
movq 0x2c60(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xfa4(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0xff8(%rsp), %eax
leaq 0xf50(%rsp), %rdx
movq %rdx, 0x2800(%rsp)
movq %rcx, 0x27f8(%rsp)
movl %eax, 0x27f4(%rsp)
movq 0x27f8(%rsp), %rax
movq %rax, 0x2d0(%rsp)
movb $0x0, 0x27f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x27f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xf50(%rsp), %r10
movq %r10, 0x31b0(%rsp)
movl %r9d, 0x31ac(%rsp)
movl %r8d, 0x31a8(%rsp)
movl %edi, 0x31a4(%rsp)
movq %rsi, 0x3198(%rsp)
movq %rdx, 0x3190(%rsp)
movl %ecx, 0x318c(%rsp)
movq %rax, 0x3180(%rsp)
movq 0x31b0(%rsp), %rcx
movq %rcx, 0x2c8(%rsp)
movq 0x3198(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3190(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x318c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3180(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x31ac(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x31a8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x31a4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d00(%rsp)
movl $0x10, 0x3cfc(%rsp)
movq 0x3d00(%rsp), %rax
movslq 0x3cfc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cfc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2d0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf78(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x120f9bf
movq 0x2d0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xf90(%rsp)
movb $0x1, 0x27f3(%rsp)
testb $0x1, 0x27f3(%rsp)
jne 0x120fafa
leaq 0xf50(%rsp), %rax
movq %rax, 0x2808(%rsp)
movq 0x2808(%rsp), %rax
movq %rax, 0x3f30(%rsp)
movq 0x3f30(%rsp), %rax
movq %rax, 0x2c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120fa9d
movq 0x2c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f2c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f2c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f28(%rsp)
cmpl $0x1, 0x3f28(%rsp)
jne 0x120fa9d
movq 0x2c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120fa6e
movq 0x2c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x120fa6c
jmp 0x120fa9b
movq 0x2c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4868(%rsp)
cmpq $0x0, 0x4868(%rsp)
je 0x120fa99
movq 0x4868(%rsp), %rdi
callq 0x5f480
jmp 0x120fa9b
jmp 0x120fa9d
movq 0x2c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120faf8
movq %rax, %rdi
callq 0x678a0
jmp 0x120fafa
leaq 0xf50(%rsp), %rax
movq %rax, 0x2a70(%rsp)
movq 0x2a70(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2b0(%rsp)
leaq 0xf50(%rsp), %rax
movq %rax, 0x26c8(%rsp)
movq 0x26c8(%rsp), %rax
movq %rax, 0x4060(%rsp)
movq 0x4060(%rsp), %rax
movq %rax, 0x2b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x120fbe5
movq 0x2b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x405c(%rsp) # imm = 0xFFFFFFFF
movl 0x405c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4058(%rsp)
cmpl $0x1, 0x4058(%rsp)
jne 0x120fbe5
movq 0x2b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x120fbb6
movq 0x2b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x120fbb4
jmp 0x120fbe3
movq 0x2b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47d0(%rsp)
cmpq $0x0, 0x47d0(%rsp)
je 0x120fbe1
movq 0x47d0(%rsp), %rdi
callq 0x5f480
jmp 0x120fbe3
jmp 0x120fbe5
movq 0x2b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x120fc40
movq %rax, %rdi
callq 0x678a0
movq 0x2b0(%rsp), %rax
movq %rax, 0xf98(%rsp)
movl $0x0, 0xf4c(%rsp)
movl 0xf4c(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x120fcbf
movq 0xff0(%rsp), %rsi
movslq 0xf4c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0xfa4(%rsp), %rdx
callq 0x1278030
movq 0xf98(%rsp), %rax
movslq 0xf4c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xf4c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xf4c(%rsp)
jmp 0x120fc5b
jmp 0x120fcc1
movl 0xff8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xff8(%rsp)
jmp 0x120f361
movl $0x0, 0x1f24(%rsp)
jmp 0x12149e5
jmp 0x12149d8
movq 0x1f18(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1211842
movq 0x1f10(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1210835
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed4(%rsp), %ecx
movl 0x1ed0(%rsp), %r8d
movq 0x1ee0(%rsp), %r9
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6fb30
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f80(%rsp)
movq 0x1f80(%rsp), %rcx
movq %rcx, 0x2a0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x2af(%rsp)
je 0x120fdb3
movq 0x2a0(%rsp), %rax
movq %rax, 0x2d68(%rsp)
movq 0x2d68(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x2af(%rsp)
movb 0x2af(%rsp), %al
testb $0x1, %al
jne 0x120fdc0
jmp 0x120fdd0
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x12149e5
movl $0x0, 0xf48(%rsp)
movl 0xf48(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x1210825
movq 0x1f18(%rsp), %rcx
movl 0xf48(%rsp), %eax
movq %rcx, 0x2b18(%rsp)
movl %eax, 0x2b14(%rsp)
movq 0x2b18(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2b14(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xf40(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0xf48(%rsp), %eax
leaq 0xef0(%rsp), %rdx
movq %rdx, 0x2078(%rsp)
movq %rcx, 0x2070(%rsp)
movl %eax, 0x206c(%rsp)
movq 0x2070(%rsp), %rax
movq %rax, 0x298(%rsp)
movb $0x0, 0x206b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x206c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xef0(%rsp), %r10
movq %r10, 0x3958(%rsp)
movl %r9d, 0x3954(%rsp)
movl %r8d, 0x3950(%rsp)
movl %edi, 0x394c(%rsp)
movq %rsi, 0x3940(%rsp)
movq %rdx, 0x3938(%rsp)
movl %ecx, 0x3934(%rsp)
movq %rax, 0x3928(%rsp)
movq 0x3958(%rsp), %rcx
movq %rcx, 0x290(%rsp)
movq 0x3940(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3938(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3934(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3928(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3954(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3950(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x394c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ad0(%rsp)
movl $0x10, 0x3acc(%rsp)
movq 0x3ad0(%rsp), %rax
movslq 0x3acc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3acc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x298(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf18(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x120fff4
movq 0x298(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xf30(%rsp)
movb $0x1, 0x206b(%rsp)
testb $0x1, 0x206b(%rsp)
jne 0x121012f
leaq 0xef0(%rsp), %rax
movq %rax, 0x2530(%rsp)
movq 0x2530(%rsp), %rax
movq %rax, 0x4390(%rsp)
movq 0x4390(%rsp), %rax
movq %rax, 0x288(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12100d2
movq 0x288(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x438c(%rsp) # imm = 0xFFFFFFFF
movl 0x438c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4388(%rsp)
cmpl $0x1, 0x4388(%rsp)
jne 0x12100d2
movq 0x288(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12100a3
movq 0x288(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12100a1
jmp 0x12100d0
movq 0x288(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4638(%rsp)
cmpq $0x0, 0x4638(%rsp)
je 0x12100ce
movq 0x4638(%rsp), %rdi
callq 0x5f480
jmp 0x12100d0
jmp 0x12100d2
movq 0x288(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121012d
movq %rax, %rdi
callq 0x678a0
jmp 0x121012f
leaq 0xef0(%rsp), %rax
movq %rax, 0x2358(%rsp)
movq 0x2358(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x278(%rsp)
leaq 0xef0(%rsp), %rax
movq %rax, 0x26d0(%rsp)
movq 0x26d0(%rsp), %rax
movq %rax, 0x4050(%rsp)
movq 0x4050(%rsp), %rax
movq %rax, 0x280(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121021a
movq 0x280(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x404c(%rsp) # imm = 0xFFFFFFFF
movl 0x404c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4048(%rsp)
cmpl $0x1, 0x4048(%rsp)
jne 0x121021a
movq 0x280(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12101eb
movq 0x280(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12101e9
jmp 0x1210218
movq 0x280(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47d8(%rsp)
cmpq $0x0, 0x47d8(%rsp)
je 0x1210216
movq 0x47d8(%rsp), %rdi
callq 0x5f480
jmp 0x1210218
jmp 0x121021a
movq 0x280(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1210275
movq %rax, %rdi
callq 0x678a0
movq 0x278(%rsp), %rax
movq %rax, 0xf38(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0xf48(%rsp), %eax
leaq 0xea0(%rsp), %rdx
movq %rdx, 0x27e0(%rsp)
movq %rcx, 0x27d8(%rsp)
movl %eax, 0x27d4(%rsp)
movq 0x27d8(%rsp), %rax
movq %rax, 0x270(%rsp)
movb $0x0, 0x27d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x27d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xea0(%rsp), %r10
movq %r10, 0x31e8(%rsp)
movl %r9d, 0x31e4(%rsp)
movl %r8d, 0x31e0(%rsp)
movl %edi, 0x31dc(%rsp)
movq %rsi, 0x31d0(%rsp)
movq %rdx, 0x31c8(%rsp)
movl %ecx, 0x31c4(%rsp)
movq %rax, 0x31b8(%rsp)
movq 0x31e8(%rsp), %rcx
movq %rcx, 0x268(%rsp)
movq 0x31d0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x31c8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x31c4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x31b8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x31e4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x31e0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x31dc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3cf0(%rsp)
movl $0x10, 0x3cec(%rsp)
movq 0x3cf0(%rsp), %rax
movslq 0x3cec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x270(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xec8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1210441
movq 0x270(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xee0(%rsp)
movb $0x1, 0x27d3(%rsp)
testb $0x1, 0x27d3(%rsp)
jne 0x121057c
leaq 0xea0(%rsp), %rax
movq %rax, 0x27e8(%rsp)
movq 0x27e8(%rsp), %rax
movq %rax, 0x3f40(%rsp)
movq 0x3f40(%rsp), %rax
movq %rax, 0x260(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121051f
movq 0x260(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f3c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f3c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f38(%rsp)
cmpl $0x1, 0x3f38(%rsp)
jne 0x121051f
movq 0x260(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12104f0
movq 0x260(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12104ee
jmp 0x121051d
movq 0x260(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4860(%rsp)
cmpq $0x0, 0x4860(%rsp)
je 0x121051b
movq 0x4860(%rsp), %rdi
callq 0x5f480
jmp 0x121051d
jmp 0x121051f
movq 0x260(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121057a
movq %rax, %rdi
callq 0x678a0
jmp 0x121057c
leaq 0xea0(%rsp), %rax
movq %rax, 0x2a68(%rsp)
movq 0x2a68(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x250(%rsp)
leaq 0xea0(%rsp), %rax
movq %rax, 0x26d8(%rsp)
movq 0x26d8(%rsp), %rax
movq %rax, 0x4040(%rsp)
movq 0x4040(%rsp), %rax
movq %rax, 0x258(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1210667
movq 0x258(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x403c(%rsp) # imm = 0xFFFFFFFF
movl 0x403c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4038(%rsp)
cmpl $0x1, 0x4038(%rsp)
jne 0x1210667
movq 0x258(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1210638
movq 0x258(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1210636
jmp 0x1210665
movq 0x258(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47e0(%rsp)
cmpq $0x0, 0x47e0(%rsp)
je 0x1210663
movq 0x47e0(%rsp), %rdi
callq 0x5f480
jmp 0x1210665
jmp 0x1210667
movq 0x258(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12106c2
movq %rax, %rdi
callq 0x678a0
movq 0x250(%rsp), %rax
movq %rax, 0xee8(%rsp)
movl $0x0, 0xe9c(%rsp)
movl 0xe9c(%rsp), %eax
cmpl 0x1ed4(%rsp), %eax
jge 0x121080d
movq 0xf40(%rsp), %rax
movslq 0xe9c(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xe98(%rsp)
movl $0x0, 0xe94(%rsp)
movl 0xe94(%rsp), %eax
cmpl 0x1ed8(%rsp), %eax
jge 0x12107f5
movl $0x0, 0xe90(%rsp)
movl 0xe90(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x121079d
movq 0xf38(%rsp), %rdx
movslq 0xe90(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xe98(%rsp), %rsi
callq 0x1278030
movq 0xee8(%rsp), %rax
movslq 0xe90(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xe90(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xe90(%rsp)
jmp 0x1210739
movl 0x1edc(%rsp), %ecx
movq 0xf38(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xf38(%rsp)
movl 0x1edc(%rsp), %ecx
movq 0xee8(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xee8(%rsp)
movl 0xe94(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xe94(%rsp)
jmp 0x121071a
jmp 0x12107f7
movl 0xe9c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xe9c(%rsp)
jmp 0x12106dd
jmp 0x121080f
movl 0xf48(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xf48(%rsp)
jmp 0x120fddb
movl $0x0, 0x1f24(%rsp)
jmp 0x12149e5
movq 0x1f10(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1211329
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed0(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f78(%rsp)
movq 0x1f78(%rsp), %rcx
movq %rcx, 0x240(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x24f(%rsp)
je 0x12108de
movq 0x240(%rsp), %rax
movq %rax, 0x2d70(%rsp)
movq 0x2d70(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x24f(%rsp)
movb 0x24f(%rsp), %al
testb $0x1, %al
jne 0x12108eb
jmp 0x12108fb
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x12149e5
movl $0x0, 0xe8c(%rsp)
movl 0xe8c(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x1211319
movq 0x1f18(%rsp), %rcx
movl 0xe8c(%rsp), %eax
movq %rcx, 0x2b08(%rsp)
movl %eax, 0x2b04(%rsp)
movq 0x2b08(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2b04(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xe80(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0xe8c(%rsp), %eax
leaq 0xe30(%rsp), %rdx
movq %rdx, 0x2060(%rsp)
movq %rcx, 0x2058(%rsp)
movl %eax, 0x2054(%rsp)
movq 0x2058(%rsp), %rax
movq %rax, 0x238(%rsp)
movb $0x0, 0x2053(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2054(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xe30(%rsp), %r10
movq %r10, 0x3990(%rsp)
movl %r9d, 0x398c(%rsp)
movl %r8d, 0x3988(%rsp)
movl %edi, 0x3984(%rsp)
movq %rsi, 0x3978(%rsp)
movq %rdx, 0x3970(%rsp)
movl %ecx, 0x396c(%rsp)
movq %rax, 0x3960(%rsp)
movq 0x3990(%rsp), %rcx
movq %rcx, 0x230(%rsp)
movq 0x3978(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3970(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x396c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3960(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x398c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3988(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3984(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ac0(%rsp)
movl $0x10, 0x3abc(%rsp)
movq 0x3ac0(%rsp), %rax
movslq 0x3abc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3abc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x238(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xe58(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1210b1f
movq 0x238(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xe70(%rsp)
movb $0x1, 0x2053(%rsp)
testb $0x1, 0x2053(%rsp)
jne 0x1210c5a
leaq 0xe30(%rsp), %rax
movq %rax, 0x2538(%rsp)
movq 0x2538(%rsp), %rax
movq %rax, 0x4380(%rsp)
movq 0x4380(%rsp), %rax
movq %rax, 0x228(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1210bfd
movq 0x228(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x437c(%rsp) # imm = 0xFFFFFFFF
movl 0x437c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4378(%rsp)
cmpl $0x1, 0x4378(%rsp)
jne 0x1210bfd
movq 0x228(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1210bce
movq 0x228(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1210bcc
jmp 0x1210bfb
movq 0x228(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4640(%rsp)
cmpq $0x0, 0x4640(%rsp)
je 0x1210bf9
movq 0x4640(%rsp), %rdi
callq 0x5f480
jmp 0x1210bfb
jmp 0x1210bfd
movq 0x228(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1210c58
movq %rax, %rdi
callq 0x678a0
jmp 0x1210c5a
leaq 0xe30(%rsp), %rax
movq %rax, 0x2350(%rsp)
movq 0x2350(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x218(%rsp)
leaq 0xe30(%rsp), %rax
movq %rax, 0x26e0(%rsp)
movq 0x26e0(%rsp), %rax
movq %rax, 0x4030(%rsp)
movq 0x4030(%rsp), %rax
movq %rax, 0x220(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1210d45
movq 0x220(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x402c(%rsp) # imm = 0xFFFFFFFF
movl 0x402c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4028(%rsp)
cmpl $0x1, 0x4028(%rsp)
jne 0x1210d45
movq 0x220(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1210d16
movq 0x220(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1210d14
jmp 0x1210d43
movq 0x220(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47e8(%rsp)
cmpq $0x0, 0x47e8(%rsp)
je 0x1210d41
movq 0x47e8(%rsp), %rdi
callq 0x5f480
jmp 0x1210d43
jmp 0x1210d45
movq 0x220(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1210da0
movq %rax, %rdi
callq 0x678a0
movq 0x218(%rsp), %rax
movq %rax, 0xe78(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0xe8c(%rsp), %eax
leaq 0xde0(%rsp), %rdx
movq %rdx, 0x27c0(%rsp)
movq %rcx, 0x27b8(%rsp)
movl %eax, 0x27b4(%rsp)
movq 0x27b8(%rsp), %rax
movq %rax, 0x210(%rsp)
movb $0x0, 0x27b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x27b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xde0(%rsp), %r10
movq %r10, 0x3220(%rsp)
movl %r9d, 0x321c(%rsp)
movl %r8d, 0x3218(%rsp)
movl %edi, 0x3214(%rsp)
movq %rsi, 0x3208(%rsp)
movq %rdx, 0x3200(%rsp)
movl %ecx, 0x31fc(%rsp)
movq %rax, 0x31f0(%rsp)
movq 0x3220(%rsp), %rcx
movq %rcx, 0x208(%rsp)
movq 0x3208(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3200(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x31fc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x31f0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x321c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3218(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3214(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ce0(%rsp)
movl $0x10, 0x3cdc(%rsp)
movq 0x3ce0(%rsp), %rax
movslq 0x3cdc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cdc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x210(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xe08(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1210f6c
movq 0x210(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xe20(%rsp)
movb $0x1, 0x27b3(%rsp)
testb $0x1, 0x27b3(%rsp)
jne 0x12110a7
leaq 0xde0(%rsp), %rax
movq %rax, 0x27c8(%rsp)
movq 0x27c8(%rsp), %rax
movq %rax, 0x3f50(%rsp)
movq 0x3f50(%rsp), %rax
movq %rax, 0x200(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121104a
movq 0x200(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f4c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f4c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f48(%rsp)
cmpl $0x1, 0x3f48(%rsp)
jne 0x121104a
movq 0x200(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121101b
movq 0x200(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1211019
jmp 0x1211048
movq 0x200(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4858(%rsp)
cmpq $0x0, 0x4858(%rsp)
je 0x1211046
movq 0x4858(%rsp), %rdi
callq 0x5f480
jmp 0x1211048
jmp 0x121104a
movq 0x200(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12110a5
movq %rax, %rdi
callq 0x678a0
jmp 0x12110a7
leaq 0xde0(%rsp), %rax
movq %rax, 0x2a60(%rsp)
movq 0x2a60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1f0(%rsp)
leaq 0xde0(%rsp), %rax
movq %rax, 0x26e8(%rsp)
movq 0x26e8(%rsp), %rax
movq %rax, 0x4020(%rsp)
movq 0x4020(%rsp), %rax
movq %rax, 0x1f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1211192
movq 0x1f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x401c(%rsp) # imm = 0xFFFFFFFF
movl 0x401c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4018(%rsp)
cmpl $0x1, 0x4018(%rsp)
jne 0x1211192
movq 0x1f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1211163
movq 0x1f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1211161
jmp 0x1211190
movq 0x1f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47f0(%rsp)
cmpq $0x0, 0x47f0(%rsp)
je 0x121118e
movq 0x47f0(%rsp), %rdi
callq 0x5f480
jmp 0x1211190
jmp 0x1211192
movq 0x1f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12111ed
movq %rax, %rdi
callq 0x678a0
movq 0x1f0(%rsp), %rax
movq %rax, 0xe28(%rsp)
movl $0x0, 0xddc(%rsp)
movl 0xddc(%rsp), %eax
cmpl 0x1ed8(%rsp), %eax
jge 0x1211301
movq 0xe80(%rsp), %rax
movslq 0xddc(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xdd8(%rsp)
movl $0x0, 0xdd4(%rsp)
movl 0xdd4(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x12112a9
movq 0xe78(%rsp), %rdx
movslq 0xdd4(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xdd8(%rsp), %rsi
callq 0x1278030
movq 0xe28(%rsp), %rax
movslq 0xdd4(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xdd4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdd4(%rsp)
jmp 0x1211245
movl 0x1edc(%rsp), %ecx
movq 0xe78(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xe78(%rsp)
movl 0x1edc(%rsp), %ecx
movq 0xe28(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xe28(%rsp)
movl 0xddc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xddc(%rsp)
jmp 0x1211208
jmp 0x1211303
movl 0xe8c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xe8c(%rsp)
jmp 0x1210906
movl $0x0, 0x1f24(%rsp)
jmp 0x12149e5
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movq 0x1ee0(%rsp), %rcx
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6f5a0
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f70(%rsp)
movq 0x1f70(%rsp), %rcx
movq %rcx, 0x1e0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1ef(%rsp)
je 0x12113b9
movq 0x1e0(%rsp), %rax
movq %rax, 0x2d78(%rsp)
movq 0x2d78(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1ef(%rsp)
movb 0x1ef(%rsp), %al
testb $0x1, %al
jne 0x12113c6
jmp 0x12113d6
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x12149e5
movq 0x1f10(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x12114e6
movl $0x0, 0xdd0(%rsp)
movl 0xdd0(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x12114d6
movq 0x1f18(%rsp), %rcx
movslq 0xdd0(%rsp), %rax
movq %rcx, 0x2c58(%rsp)
movq %rax, 0x2c50(%rsp)
movq 0x2c58(%rsp), %rax
movq (%rax), %rsi
movq 0x2c50(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1f10(%rsp), %rcx
movslq 0xdd0(%rsp), %rax
movq %rcx, 0x2c48(%rsp)
movq %rax, 0x2c40(%rsp)
movq 0x2c48(%rsp), %rax
movq (%rax), %rdx
movq 0x2c40(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x1278030
movq 0x1f08(%rsp), %rcx
movslq 0xdd0(%rsp), %rax
movq %rcx, 0x2cf8(%rsp)
movq %rax, 0x2cf0(%rsp)
movq 0x2cf8(%rsp), %rax
movq (%rax), %rax
movq 0x2cf0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xdd0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdd0(%rsp)
jmp 0x12113f3
movl $0x0, 0x1f24(%rsp)
jmp 0x12149e5
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x121183d
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movq 0x1ee0(%rsp), %rcx
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6f5a0
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f68(%rsp)
movq 0x1f68(%rsp), %rcx
movq %rcx, 0x1d0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1df(%rsp)
je 0x1211588
movq 0x1d0(%rsp), %rax
movq %rax, 0x2d80(%rsp)
movq 0x2d80(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1df(%rsp)
movb 0x1df(%rsp), %al
testb $0x1, %al
jne 0x1211595
jmp 0x12115a5
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x12149e5
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x12116c0
movq 0x1f10(%rsp), %rax
movq %rax, 0x2c38(%rsp)
movq $0x0, 0x2c30(%rsp)
movq 0x2c38(%rsp), %rax
movq (%rax), %rax
movq 0x2c30(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xdcc(%rsp)
movl $0x0, 0xdc8(%rsp)
movl 0xdc8(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x12116b0
movq 0x1f18(%rsp), %rcx
movslq 0xdc8(%rsp), %rax
movq %rcx, 0x2c28(%rsp)
movq %rax, 0x2c20(%rsp)
movq 0x2c28(%rsp), %rax
movq (%rax), %rsi
movq 0x2c20(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0xdcc(%rsp), %rdx
callq 0x1278030
movq 0x1f08(%rsp), %rcx
movslq 0xdc8(%rsp), %rax
movq %rcx, 0x2ce8(%rsp)
movq %rax, 0x2ce0(%rsp)
movq 0x2ce8(%rsp), %rax
movq (%rax), %rax
movq 0x2ce0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xdc8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdc8(%rsp)
jmp 0x12115ff
movl $0x0, 0x1f24(%rsp)
jmp 0x12149e5
movq 0x1f18(%rsp), %rax
movq %rax, 0x2348(%rsp)
movq 0x2348(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xdc0(%rsp)
movq 0x1f08(%rsp), %rax
movq %rax, 0x2a58(%rsp)
movq 0x2a58(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xdb8(%rsp)
movl $0x0, 0xdb4(%rsp)
movl 0xdb4(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jge 0x121182d
movq 0x1f10(%rsp), %rcx
movslq 0xdb4(%rsp), %rax
movq %rcx, 0x2c18(%rsp)
movq %rax, 0x2c10(%rsp)
movq 0x2c18(%rsp), %rax
movq (%rax), %rax
movq 0x2c10(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xdb0(%rsp)
movl $0x0, 0xdac(%rsp)
movl 0xdac(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x12117d5
movq 0xdc0(%rsp), %rsi
movslq 0xdac(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0xdb0(%rsp), %rdx
callq 0x1278030
movq 0xdb8(%rsp), %rax
movslq 0xdac(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xdac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdac(%rsp)
jmp 0x1211771
movl 0x1ef8(%rsp), %ecx
movq 0xdc0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xdc0(%rsp)
movl 0x1ef8(%rsp), %ecx
movq 0xdb8(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xdb8(%rsp)
movl 0xdb4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdb4(%rsp)
jmp 0x1211711
movl $0x0, 0x1f24(%rsp)
jmp 0x12149e5
jmp 0x12149d6
movq 0x1f18(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x12149d4
movq 0x1f18(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x12130a3
movq 0x1f10(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x12122c5
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed4(%rsp), %ecx
movl 0x1ed0(%rsp), %r8d
movq 0x1ee0(%rsp), %r9
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6fb30
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f60(%rsp)
movq 0x1f60(%rsp), %rcx
movq %rcx, 0x1c0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1cf(%rsp)
je 0x121191b
movq 0x1c0(%rsp), %rax
movq %rax, 0x2d88(%rsp)
movq 0x2d88(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1cf(%rsp)
movb 0x1cf(%rsp), %al
testb $0x1, %al
jne 0x1211928
jmp 0x1211938
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x12149e5
movq 0x1f18(%rsp), %rax
movq %rax, 0x2c08(%rsp)
movq $0x0, 0x2c00(%rsp)
movq 0x2c08(%rsp), %rax
movq (%rax), %rax
movq 0x2c00(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xda8(%rsp)
movl $0x0, 0xda4(%rsp)
movl 0xda4(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x12122b5
movq 0x1f10(%rsp), %rcx
movl 0xda4(%rsp), %eax
leaq 0xd50(%rsp), %rdx
movq %rdx, 0x2048(%rsp)
movq %rcx, 0x2040(%rsp)
movl %eax, 0x203c(%rsp)
movq 0x2040(%rsp), %rax
movq %rax, 0x1b8(%rsp)
movb $0x0, 0x203b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x203c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xd50(%rsp), %r10
movq %r10, 0x39c8(%rsp)
movl %r9d, 0x39c4(%rsp)
movl %r8d, 0x39c0(%rsp)
movl %edi, 0x39bc(%rsp)
movq %rsi, 0x39b0(%rsp)
movq %rdx, 0x39a8(%rsp)
movl %ecx, 0x39a4(%rsp)
movq %rax, 0x3998(%rsp)
movq 0x39c8(%rsp), %rcx
movq %rcx, 0x1b0(%rsp)
movq 0x39b0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x39a8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x39a4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3998(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x39c4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x39c0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x39bc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ab0(%rsp)
movl $0x10, 0x3aac(%rsp)
movq 0x3ab0(%rsp), %rax
movslq 0x3aac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3aac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x1b8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xd78(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1211b50
movq 0x1b8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd90(%rsp)
movb $0x1, 0x203b(%rsp)
testb $0x1, 0x203b(%rsp)
jne 0x1211c8b
leaq 0xd50(%rsp), %rax
movq %rax, 0x2540(%rsp)
movq 0x2540(%rsp), %rax
movq %rax, 0x4370(%rsp)
movq 0x4370(%rsp), %rax
movq %rax, 0x1a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1211c2e
movq 0x1a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x436c(%rsp) # imm = 0xFFFFFFFF
movl 0x436c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4368(%rsp)
cmpl $0x1, 0x4368(%rsp)
jne 0x1211c2e
movq 0x1a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1211bff
movq 0x1a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1211bfd
jmp 0x1211c2c
movq 0x1a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4648(%rsp)
cmpq $0x0, 0x4648(%rsp)
je 0x1211c2a
movq 0x4648(%rsp), %rdi
callq 0x5f480
jmp 0x1211c2c
jmp 0x1211c2e
movq 0x1a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1211c89
movq %rax, %rdi
callq 0x678a0
jmp 0x1211c8b
leaq 0xd50(%rsp), %rax
movq %rax, 0x2340(%rsp)
movq 0x2340(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x198(%rsp)
leaq 0xd50(%rsp), %rax
movq %rax, 0x26f0(%rsp)
movq 0x26f0(%rsp), %rax
movq %rax, 0x4010(%rsp)
movq 0x4010(%rsp), %rax
movq %rax, 0x1a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1211d76
movq 0x1a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x400c(%rsp) # imm = 0xFFFFFFFF
movl 0x400c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4008(%rsp)
cmpl $0x1, 0x4008(%rsp)
jne 0x1211d76
movq 0x1a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1211d47
movq 0x1a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1211d45
jmp 0x1211d74
movq 0x1a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47f8(%rsp)
cmpq $0x0, 0x47f8(%rsp)
je 0x1211d72
movq 0x47f8(%rsp), %rdi
callq 0x5f480
jmp 0x1211d74
jmp 0x1211d76
movq 0x1a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1211dd1
movq %rax, %rdi
callq 0x678a0
movq 0x198(%rsp), %rax
movq %rax, 0xd98(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0xda4(%rsp), %eax
leaq 0xd00(%rsp), %rdx
movq %rdx, 0x27a0(%rsp)
movq %rcx, 0x2798(%rsp)
movl %eax, 0x2794(%rsp)
movq 0x2798(%rsp), %rax
movq %rax, 0x190(%rsp)
movb $0x0, 0x2793(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2794(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xd00(%rsp), %r10
movq %r10, 0x3258(%rsp)
movl %r9d, 0x3254(%rsp)
movl %r8d, 0x3250(%rsp)
movl %edi, 0x324c(%rsp)
movq %rsi, 0x3240(%rsp)
movq %rdx, 0x3238(%rsp)
movl %ecx, 0x3234(%rsp)
movq %rax, 0x3228(%rsp)
movq 0x3258(%rsp), %rcx
movq %rcx, 0x188(%rsp)
movq 0x3240(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3238(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3234(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3228(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3254(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3250(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x324c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3cd0(%rsp)
movl $0x10, 0x3ccc(%rsp)
movq 0x3cd0(%rsp), %rax
movslq 0x3ccc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3ccc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x190(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xd28(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1211f9d
movq 0x190(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd40(%rsp)
movb $0x1, 0x2793(%rsp)
testb $0x1, 0x2793(%rsp)
jne 0x12120d8
leaq 0xd00(%rsp), %rax
movq %rax, 0x27a8(%rsp)
movq 0x27a8(%rsp), %rax
movq %rax, 0x3f60(%rsp)
movq 0x3f60(%rsp), %rax
movq %rax, 0x180(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121207b
movq 0x180(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f5c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f5c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f58(%rsp)
cmpl $0x1, 0x3f58(%rsp)
jne 0x121207b
movq 0x180(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121204c
movq 0x180(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121204a
jmp 0x1212079
movq 0x180(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4850(%rsp)
cmpq $0x0, 0x4850(%rsp)
je 0x1212077
movq 0x4850(%rsp), %rdi
callq 0x5f480
jmp 0x1212079
jmp 0x121207b
movq 0x180(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12120d6
movq %rax, %rdi
callq 0x678a0
jmp 0x12120d8
leaq 0xd00(%rsp), %rax
movq %rax, 0x2a50(%rsp)
movq 0x2a50(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x170(%rsp)
leaq 0xd00(%rsp), %rax
movq %rax, 0x26f8(%rsp)
movq 0x26f8(%rsp), %rax
movq %rax, 0x4000(%rsp)
movq 0x4000(%rsp), %rax
movq %rax, 0x178(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12121c3
movq 0x178(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ffc(%rsp) # imm = 0xFFFFFFFF
movl 0x3ffc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ff8(%rsp)
cmpl $0x1, 0x3ff8(%rsp)
jne 0x12121c3
movq 0x178(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1212194
movq 0x178(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1212192
jmp 0x12121c1
movq 0x178(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4800(%rsp)
cmpq $0x0, 0x4800(%rsp)
je 0x12121bf
movq 0x4800(%rsp), %rdi
callq 0x5f480
jmp 0x12121c1
jmp 0x12121c3
movq 0x178(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121221e
movq %rax, %rdi
callq 0x678a0
movq 0x170(%rsp), %rax
movq %rax, 0xd48(%rsp)
movl $0x0, 0xcfc(%rsp)
movl 0xcfc(%rsp), %eax
cmpl 0x1ecc(%rsp), %eax
jge 0x121229d
movq 0xd98(%rsp), %rdx
movslq 0xcfc(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xda8(%rsp), %rsi
callq 0x1278030
movq 0xd48(%rsp), %rax
movslq 0xcfc(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xcfc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xcfc(%rsp)
jmp 0x1212239
jmp 0x121229f
movl 0xda4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xda4(%rsp)
jmp 0x1211980
movl $0x0, 0x1f24(%rsp)
jmp 0x12149e5
movq 0x1f10(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1212d18
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed0(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f58(%rsp)
movq 0x1f58(%rsp), %rcx
movq %rcx, 0x160(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x16f(%rsp)
je 0x121236e
movq 0x160(%rsp), %rax
movq %rax, 0x2d90(%rsp)
movq 0x2d90(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x16f(%rsp)
movb 0x16f(%rsp), %al
testb $0x1, %al
jne 0x121237b
jmp 0x121238b
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x12149e5
movq 0x1f18(%rsp), %rax
movq %rax, 0x2bf8(%rsp)
movq $0x0, 0x2bf0(%rsp)
movq 0x2bf8(%rsp), %rax
movq (%rax), %rax
movq 0x2bf0(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xcf8(%rsp)
movl $0x0, 0xcf4(%rsp)
movl 0xcf4(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x1212d08
movq 0x1f10(%rsp), %rcx
movl 0xcf4(%rsp), %eax
leaq 0xca0(%rsp), %rdx
movq %rdx, 0x2030(%rsp)
movq %rcx, 0x2028(%rsp)
movl %eax, 0x2024(%rsp)
movq 0x2028(%rsp), %rax
movq %rax, 0x158(%rsp)
movb $0x0, 0x2023(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2024(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xca0(%rsp), %r10
movq %r10, 0x3a00(%rsp)
movl %r9d, 0x39fc(%rsp)
movl %r8d, 0x39f8(%rsp)
movl %edi, 0x39f4(%rsp)
movq %rsi, 0x39e8(%rsp)
movq %rdx, 0x39e0(%rsp)
movl %ecx, 0x39dc(%rsp)
movq %rax, 0x39d0(%rsp)
movq 0x3a00(%rsp), %rcx
movq %rcx, 0x150(%rsp)
movq 0x39e8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x39e0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x39dc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x39d0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x39fc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x39f8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x39f4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3aa0(%rsp)
movl $0x10, 0x3a9c(%rsp)
movq 0x3aa0(%rsp), %rax
movslq 0x3a9c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3a9c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x158(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xcc8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12125a3
movq 0x158(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xce0(%rsp)
movb $0x1, 0x2023(%rsp)
testb $0x1, 0x2023(%rsp)
jne 0x12126de
leaq 0xca0(%rsp), %rax
movq %rax, 0x2548(%rsp)
movq 0x2548(%rsp), %rax
movq %rax, 0x4360(%rsp)
movq 0x4360(%rsp), %rax
movq %rax, 0x148(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1212681
movq 0x148(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x435c(%rsp) # imm = 0xFFFFFFFF
movl 0x435c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4358(%rsp)
cmpl $0x1, 0x4358(%rsp)
jne 0x1212681
movq 0x148(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1212652
movq 0x148(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1212650
jmp 0x121267f
movq 0x148(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4650(%rsp)
cmpq $0x0, 0x4650(%rsp)
je 0x121267d
movq 0x4650(%rsp), %rdi
callq 0x5f480
jmp 0x121267f
jmp 0x1212681
movq 0x148(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12126dc
movq %rax, %rdi
callq 0x678a0
jmp 0x12126de
leaq 0xca0(%rsp), %rax
movq %rax, 0x2338(%rsp)
movq 0x2338(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x138(%rsp)
leaq 0xca0(%rsp), %rax
movq %rax, 0x2700(%rsp)
movq 0x2700(%rsp), %rax
movq %rax, 0x3ff0(%rsp)
movq 0x3ff0(%rsp), %rax
movq %rax, 0x140(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12127c9
movq 0x140(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fec(%rsp) # imm = 0xFFFFFFFF
movl 0x3fec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fe8(%rsp)
cmpl $0x1, 0x3fe8(%rsp)
jne 0x12127c9
movq 0x140(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121279a
movq 0x140(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1212798
jmp 0x12127c7
movq 0x140(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4808(%rsp)
cmpq $0x0, 0x4808(%rsp)
je 0x12127c5
movq 0x4808(%rsp), %rdi
callq 0x5f480
jmp 0x12127c7
jmp 0x12127c9
movq 0x140(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1212824
movq %rax, %rdi
callq 0x678a0
movq 0x138(%rsp), %rax
movq %rax, 0xce8(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0xcf4(%rsp), %eax
leaq 0xc50(%rsp), %rdx
movq %rdx, 0x2780(%rsp)
movq %rcx, 0x2778(%rsp)
movl %eax, 0x2774(%rsp)
movq 0x2778(%rsp), %rax
movq %rax, 0x130(%rsp)
movb $0x0, 0x2773(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2774(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xc50(%rsp), %r10
movq %r10, 0x3290(%rsp)
movl %r9d, 0x328c(%rsp)
movl %r8d, 0x3288(%rsp)
movl %edi, 0x3284(%rsp)
movq %rsi, 0x3278(%rsp)
movq %rdx, 0x3270(%rsp)
movl %ecx, 0x326c(%rsp)
movq %rax, 0x3260(%rsp)
movq 0x3290(%rsp), %rcx
movq %rcx, 0x128(%rsp)
movq 0x3278(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3270(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x326c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3260(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x328c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3288(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3284(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3cc0(%rsp)
movl $0x10, 0x3cbc(%rsp)
movq 0x3cc0(%rsp), %rax
movslq 0x3cbc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cbc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x130(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc78(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12129f0
movq 0x130(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xc90(%rsp)
movb $0x1, 0x2773(%rsp)
testb $0x1, 0x2773(%rsp)
jne 0x1212b2b
leaq 0xc50(%rsp), %rax
movq %rax, 0x2788(%rsp)
movq 0x2788(%rsp), %rax
movq %rax, 0x3f70(%rsp)
movq 0x3f70(%rsp), %rax
movq %rax, 0x120(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1212ace
movq 0x120(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f6c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f6c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f68(%rsp)
cmpl $0x1, 0x3f68(%rsp)
jne 0x1212ace
movq 0x120(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1212a9f
movq 0x120(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1212a9d
jmp 0x1212acc
movq 0x120(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4848(%rsp)
cmpq $0x0, 0x4848(%rsp)
je 0x1212aca
movq 0x4848(%rsp), %rdi
callq 0x5f480
jmp 0x1212acc
jmp 0x1212ace
movq 0x120(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1212b29
movq %rax, %rdi
callq 0x678a0
jmp 0x1212b2b
leaq 0xc50(%rsp), %rax
movq %rax, 0x2a48(%rsp)
movq 0x2a48(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x110(%rsp)
leaq 0xc50(%rsp), %rax
movq %rax, 0x2708(%rsp)
movq 0x2708(%rsp), %rax
movq %rax, 0x3fe0(%rsp)
movq 0x3fe0(%rsp), %rax
movq %rax, 0x118(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1212c16
movq 0x118(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fdc(%rsp) # imm = 0xFFFFFFFF
movl 0x3fdc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fd8(%rsp)
cmpl $0x1, 0x3fd8(%rsp)
jne 0x1212c16
movq 0x118(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1212be7
movq 0x118(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1212be5
jmp 0x1212c14
movq 0x118(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4810(%rsp)
cmpq $0x0, 0x4810(%rsp)
je 0x1212c12
movq 0x4810(%rsp), %rdi
callq 0x5f480
jmp 0x1212c14
jmp 0x1212c16
movq 0x118(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1212c71
movq %rax, %rdi
callq 0x678a0
movq 0x110(%rsp), %rax
movq %rax, 0xc98(%rsp)
movl $0x0, 0xc4c(%rsp)
movl 0xc4c(%rsp), %eax
cmpl 0x1ecc(%rsp), %eax
jge 0x1212cf0
movq 0xce8(%rsp), %rdx
movslq 0xc4c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xcf8(%rsp), %rsi
callq 0x1278030
movq 0xc98(%rsp), %rax
movslq 0xc4c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xc4c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xc4c(%rsp)
jmp 0x1212c8c
jmp 0x1212cf2
movl 0xcf4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xcf4(%rsp)
jmp 0x12123d3
movl $0x0, 0x1f24(%rsp)
jmp 0x12149e5
movq 0x1f10(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1212ee0
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movq 0x1ee0(%rsp), %rcx
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6f5a0
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f50(%rsp)
movq 0x1f50(%rsp), %rcx
movq %rcx, 0x100(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x10f(%rsp)
je 0x1212dba
movq 0x100(%rsp), %rax
movq %rax, 0x2d98(%rsp)
movq 0x2d98(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x10f(%rsp)
movb 0x10f(%rsp), %al
testb $0x1, %al
jne 0x1212dc7
jmp 0x1212dd7
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x12149e5
movq 0x1f18(%rsp), %rax
movq %rax, 0x2be8(%rsp)
movq $0x0, 0x2be0(%rsp)
movq 0x2be8(%rsp), %rax
movq (%rax), %rax
movq 0x2be0(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xc48(%rsp)
movl $0x0, 0xc44(%rsp)
movl 0xc44(%rsp), %eax
cmpl 0x1ecc(%rsp), %eax
jge 0x1212ed0
movq 0x1f10(%rsp), %rcx
movslq 0xc44(%rsp), %rax
movq %rcx, 0x2bd8(%rsp)
movq %rax, 0x2bd0(%rsp)
movq 0x2bd8(%rsp), %rax
movq (%rax), %rdx
movq 0x2bd0(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xc48(%rsp), %rsi
callq 0x1278030
movq 0x1f08(%rsp), %rcx
movslq 0xc44(%rsp), %rax
movq %rcx, 0x2cd8(%rsp)
movq %rax, 0x2cd0(%rsp)
movq 0x2cd8(%rsp), %rax
movq (%rax), %rax
movq 0x2cd0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xc44(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xc44(%rsp)
jmp 0x1212e1f
movl $0x0, 0x1f24(%rsp)
jmp 0x12149e5
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x12130a1
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movq 0x1ee0(%rsp), %rdx
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rcx
callq 0x6f320
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f48(%rsp)
movq 0x1f48(%rsp), %rcx
movq %rcx, 0xf0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xff(%rsp)
je 0x1212f7b
movq 0xf0(%rsp), %rax
movq %rax, 0x2da0(%rsp)
movq 0x2da0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xff(%rsp)
movb 0xff(%rsp), %al
testb $0x1, %al
jne 0x1212f88
jmp 0x1212f98
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x12149e5
movq 0x1f18(%rsp), %rax
movq %rax, 0x2bc8(%rsp)
movq $0x0, 0x2bc0(%rsp)
movq 0x2bc8(%rsp), %rax
movq (%rax), %rax
movq 0x2bc0(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xc40(%rsp)
movl $0x0, 0xc3c(%rsp)
movl 0xc3c(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x1213091
movq 0x1f10(%rsp), %rcx
movslq 0xc3c(%rsp), %rax
movq %rcx, 0x2bb8(%rsp)
movq %rax, 0x2bb0(%rsp)
movq 0x2bb8(%rsp), %rax
movq (%rax), %rdx
movq 0x2bb0(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xc40(%rsp), %rsi
callq 0x1278030
movq 0x1f08(%rsp), %rcx
movslq 0xc3c(%rsp), %rax
movq %rcx, 0x2cc8(%rsp)
movq %rax, 0x2cc0(%rsp)
movq 0x2cc8(%rsp), %rax
movq (%rax), %rax
movq 0x2cc0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xc3c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xc3c(%rsp)
jmp 0x1212fe0
movl $0x0, 0x1f24(%rsp)
jmp 0x12149e5
jmp 0x12130a3
movq 0x1f10(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1213b06
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed4(%rsp), %ecx
movl 0x1ed0(%rsp), %r8d
movq 0x1ee0(%rsp), %r9
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6fb30
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f40(%rsp)
movq 0x1f40(%rsp), %rcx
movq %rcx, 0xe0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xef(%rsp)
je 0x1213158
movq 0xe0(%rsp), %rax
movq %rax, 0x2da8(%rsp)
movq 0x2da8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xef(%rsp)
movb 0xef(%rsp), %al
testb $0x1, %al
jne 0x1213165
jmp 0x1213175
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x12149e5
movl $0x0, 0xc38(%rsp)
movl 0xc38(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x1213af6
movq 0x1f18(%rsp), %rcx
movslq 0xc38(%rsp), %rax
movq %rcx, 0x2ba8(%rsp)
movq %rax, 0x2ba0(%rsp)
movq 0x2ba8(%rsp), %rax
movq (%rax), %rax
movq 0x2ba0(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xc34(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0xc38(%rsp), %eax
leaq 0xbe0(%rsp), %rdx
movq %rdx, 0x2018(%rsp)
movq %rcx, 0x2010(%rsp)
movl %eax, 0x200c(%rsp)
movq 0x2010(%rsp), %rax
movq %rax, 0xd8(%rsp)
movb $0x0, 0x200b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x200c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xbe0(%rsp), %r10
movq %r10, 0x3a38(%rsp)
movl %r9d, 0x3a34(%rsp)
movl %r8d, 0x3a30(%rsp)
movl %edi, 0x3a2c(%rsp)
movq %rsi, 0x3a20(%rsp)
movq %rdx, 0x3a18(%rsp)
movl %ecx, 0x3a14(%rsp)
movq %rax, 0x3a08(%rsp)
movq 0x3a38(%rsp), %rcx
movq %rcx, 0xd0(%rsp)
movq 0x3a20(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3a18(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3a14(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3a08(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3a34(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3a30(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3a2c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3a90(%rsp)
movl $0x10, 0x3a8c(%rsp)
movq 0x3a90(%rsp), %rax
movslq 0x3a8c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3a8c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xd8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc08(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1213391
movq 0xd8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xc20(%rsp)
movb $0x1, 0x200b(%rsp)
testb $0x1, 0x200b(%rsp)
jne 0x12134cc
leaq 0xbe0(%rsp), %rax
movq %rax, 0x2550(%rsp)
movq 0x2550(%rsp), %rax
movq %rax, 0x4350(%rsp)
movq 0x4350(%rsp), %rax
movq %rax, 0xc8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121346f
movq 0xc8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x434c(%rsp) # imm = 0xFFFFFFFF
movl 0x434c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4348(%rsp)
cmpl $0x1, 0x4348(%rsp)
jne 0x121346f
movq 0xc8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1213440
movq 0xc8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121343e
jmp 0x121346d
movq 0xc8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4658(%rsp)
cmpq $0x0, 0x4658(%rsp)
je 0x121346b
movq 0x4658(%rsp), %rdi
callq 0x5f480
jmp 0x121346d
jmp 0x121346f
movq 0xc8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12134ca
movq %rax, %rdi
callq 0x678a0
jmp 0x12134cc
leaq 0xbe0(%rsp), %rax
movq %rax, 0x2330(%rsp)
movq 0x2330(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xb8(%rsp)
leaq 0xbe0(%rsp), %rax
movq %rax, 0x2710(%rsp)
movq 0x2710(%rsp), %rax
movq %rax, 0x3fd0(%rsp)
movq 0x3fd0(%rsp), %rax
movq %rax, 0xc0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12135b7
movq 0xc0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fcc(%rsp) # imm = 0xFFFFFFFF
movl 0x3fcc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fc8(%rsp)
cmpl $0x1, 0x3fc8(%rsp)
jne 0x12135b7
movq 0xc0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1213588
movq 0xc0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1213586
jmp 0x12135b5
movq 0xc0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4818(%rsp)
cmpq $0x0, 0x4818(%rsp)
je 0x12135b3
movq 0x4818(%rsp), %rdi
callq 0x5f480
jmp 0x12135b5
jmp 0x12135b7
movq 0xc0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1213612
movq %rax, %rdi
callq 0x678a0
movq 0xb8(%rsp), %rax
movq %rax, 0xc28(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0xc38(%rsp), %eax
leaq 0xb90(%rsp), %rdx
movq %rdx, 0x2760(%rsp)
movq %rcx, 0x2758(%rsp)
movl %eax, 0x2754(%rsp)
movq 0x2758(%rsp), %rax
movq %rax, 0xb0(%rsp)
movb $0x0, 0x2753(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2754(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xb90(%rsp), %r10
movq %r10, 0x32c8(%rsp)
movl %r9d, 0x32c4(%rsp)
movl %r8d, 0x32c0(%rsp)
movl %edi, 0x32bc(%rsp)
movq %rsi, 0x32b0(%rsp)
movq %rdx, 0x32a8(%rsp)
movl %ecx, 0x32a4(%rsp)
movq %rax, 0x3298(%rsp)
movq 0x32c8(%rsp), %rcx
movq %rcx, 0xa8(%rsp)
movq 0x32b0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x32a8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x32a4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3298(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x32c4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x32c0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x32bc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3cb0(%rsp)
movl $0x10, 0x3cac(%rsp)
movq 0x3cb0(%rsp), %rax
movslq 0x3cac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xb0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xbb8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12137de
movq 0xb0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xbd0(%rsp)
movb $0x1, 0x2753(%rsp)
testb $0x1, 0x2753(%rsp)
jne 0x1213919
leaq 0xb90(%rsp), %rax
movq %rax, 0x2768(%rsp)
movq 0x2768(%rsp), %rax
movq %rax, 0x3f80(%rsp)
movq 0x3f80(%rsp), %rax
movq %rax, 0xa0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12138bc
movq 0xa0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f7c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f7c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f78(%rsp)
cmpl $0x1, 0x3f78(%rsp)
jne 0x12138bc
movq 0xa0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121388d
movq 0xa0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121388b
jmp 0x12138ba
movq 0xa0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4840(%rsp)
cmpq $0x0, 0x4840(%rsp)
je 0x12138b8
movq 0x4840(%rsp), %rdi
callq 0x5f480
jmp 0x12138ba
jmp 0x12138bc
movq 0xa0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1213917
movq %rax, %rdi
callq 0x678a0
jmp 0x1213919
leaq 0xb90(%rsp), %rax
movq %rax, 0x2a40(%rsp)
movq 0x2a40(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x90(%rsp)
leaq 0xb90(%rsp), %rax
movq %rax, 0x2718(%rsp)
movq 0x2718(%rsp), %rax
movq %rax, 0x3fc0(%rsp)
movq 0x3fc0(%rsp), %rax
movq %rax, 0x98(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1213a04
movq 0x98(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fbc(%rsp) # imm = 0xFFFFFFFF
movl 0x3fbc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fb8(%rsp)
cmpl $0x1, 0x3fb8(%rsp)
jne 0x1213a04
movq 0x98(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12139d5
movq 0x98(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12139d3
jmp 0x1213a02
movq 0x98(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4820(%rsp)
cmpq $0x0, 0x4820(%rsp)
je 0x1213a00
movq 0x4820(%rsp), %rdi
callq 0x5f480
jmp 0x1213a02
jmp 0x1213a04
movq 0x98(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1213a5f
movq %rax, %rdi
callq 0x678a0
movq 0x90(%rsp), %rax
movq %rax, 0xbd8(%rsp)
movl $0x0, 0xb8c(%rsp)
movl 0xb8c(%rsp), %eax
cmpl 0x1ecc(%rsp), %eax
jge 0x1213ade
movq 0xc28(%rsp), %rdx
movslq 0xb8c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xc34(%rsp), %rsi
callq 0x1278030
movq 0xbd8(%rsp), %rax
movslq 0xb8c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xb8c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xb8c(%rsp)
jmp 0x1213a7a
jmp 0x1213ae0
movl 0xc38(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xc38(%rsp)
jmp 0x1213180
movl $0x0, 0x1f24(%rsp)
jmp 0x12149e5
movq 0x1f10(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x12144f1
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed0(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f38(%rsp)
movq 0x1f38(%rsp), %rcx
movq %rcx, 0x80(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x8f(%rsp)
je 0x1213baf
movq 0x80(%rsp), %rax
movq %rax, 0x2db0(%rsp)
movq 0x2db0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x8f(%rsp)
movb 0x8f(%rsp), %al
testb $0x1, %al
jne 0x1213bbc
jmp 0x1213bcc
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x12149e5
movl $0x0, 0xb88(%rsp)
movl 0xb88(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x12144e1
movq 0x1f18(%rsp), %rcx
movslq 0xb88(%rsp), %rax
movq %rcx, 0x2b98(%rsp)
movq %rax, 0x2b90(%rsp)
movq 0x2b98(%rsp), %rax
movq (%rax), %rax
movq 0x2b90(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xb84(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0xb88(%rsp), %eax
leaq 0xb30(%rsp), %rdx
movq %rdx, 0x2000(%rsp)
movq %rcx, 0x1ff8(%rsp)
movl %eax, 0x1ff4(%rsp)
movq 0x1ff8(%rsp), %rax
movq %rax, 0x78(%rsp)
movb $0x0, 0x1ff3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1ff4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xb30(%rsp), %r10
movq %r10, 0x3a70(%rsp)
movl %r9d, 0x3a6c(%rsp)
movl %r8d, 0x3a68(%rsp)
movl %edi, 0x3a64(%rsp)
movq %rsi, 0x3a58(%rsp)
movq %rdx, 0x3a50(%rsp)
movl %ecx, 0x3a4c(%rsp)
movq %rax, 0x3a40(%rsp)
movq 0x3a70(%rsp), %rcx
movq %rcx, 0x70(%rsp)
movq 0x3a58(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3a50(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3a4c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3a40(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3a6c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3a68(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3a64(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3a80(%rsp)
movl $0x10, 0x3a7c(%rsp)
movq 0x3a80(%rsp), %rax
movslq 0x3a7c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3a7c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x78(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xb58(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1213ddc
movq 0x78(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xb70(%rsp)
movb $0x1, 0x1ff3(%rsp)
testb $0x1, 0x1ff3(%rsp)
jne 0x1213f05
leaq 0xb30(%rsp), %rax
movq %rax, 0x2558(%rsp)
movq 0x2558(%rsp), %rax
movq %rax, 0x4340(%rsp)
movq 0x4340(%rsp), %rax
movq %rax, 0x68(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1213eab
movq 0x68(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x433c(%rsp) # imm = 0xFFFFFFFF
movl 0x433c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4338(%rsp)
cmpl $0x1, 0x4338(%rsp)
jne 0x1213eab
movq 0x68(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1213e7f
movq 0x68(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1213e7d
jmp 0x1213ea9
movq 0x68(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4660(%rsp)
cmpq $0x0, 0x4660(%rsp)
je 0x1213ea7
movq 0x4660(%rsp), %rdi
callq 0x5f480
jmp 0x1213ea9
jmp 0x1213eab
movq 0x68(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1213f03
movq %rax, %rdi
callq 0x678a0
jmp 0x1213f05
leaq 0xb30(%rsp), %rax
movq %rax, 0x2328(%rsp)
movq 0x2328(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x58(%rsp)
leaq 0xb30(%rsp), %rax
movq %rax, 0x2720(%rsp)
movq 0x2720(%rsp), %rax
movq %rax, 0x3fb0(%rsp)
movq 0x3fb0(%rsp), %rax
movq %rax, 0x60(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1213fde
movq 0x60(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fac(%rsp) # imm = 0xFFFFFFFF
movl 0x3fac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fa8(%rsp)
cmpl $0x1, 0x3fa8(%rsp)
jne 0x1213fde
movq 0x60(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1213fb2
movq 0x60(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1213fb0
jmp 0x1213fdc
movq 0x60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4828(%rsp)
cmpq $0x0, 0x4828(%rsp)
je 0x1213fda
movq 0x4828(%rsp), %rdi
callq 0x5f480
jmp 0x1213fdc
jmp 0x1213fde
movq 0x60(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1214036
movq %rax, %rdi
callq 0x678a0
movq 0x58(%rsp), %rax
movq %rax, 0xb78(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0xb88(%rsp), %eax
leaq 0xae0(%rsp), %rdx
movq %rdx, 0x2740(%rsp)
movq %rcx, 0x2738(%rsp)
movl %eax, 0x2734(%rsp)
movq 0x2738(%rsp), %rax
movq %rax, 0x50(%rsp)
movb $0x0, 0x2733(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2734(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xae0(%rsp), %r10
movq %r10, 0x3300(%rsp)
movl %r9d, 0x32fc(%rsp)
movl %r8d, 0x32f8(%rsp)
movl %edi, 0x32f4(%rsp)
movq %rsi, 0x32e8(%rsp)
movq %rdx, 0x32e0(%rsp)
movl %ecx, 0x32dc(%rsp)
movq %rax, 0x32d0(%rsp)
movq 0x3300(%rsp), %rcx
movq %rcx, 0x48(%rsp)
movq 0x32e8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x32e0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x32dc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x32d0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x32fc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x32f8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x32f4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ca0(%rsp)
movl $0x10, 0x3c9c(%rsp)
movq 0x3ca0(%rsp), %rax
movslq 0x3c9c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c9c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x50(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xb08(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12141f3
movq 0x50(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xb20(%rsp)
movb $0x1, 0x2733(%rsp)
testb $0x1, 0x2733(%rsp)
jne 0x121431c
leaq 0xae0(%rsp), %rax
movq %rax, 0x2748(%rsp)
movq 0x2748(%rsp), %rax
movq %rax, 0x3f90(%rsp)
movq 0x3f90(%rsp), %rax
movq %rax, 0x40(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12142c2
movq 0x40(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f8c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f8c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f88(%rsp)
cmpl $0x1, 0x3f88(%rsp)
jne 0x12142c2
movq 0x40(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1214296
movq 0x40(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1214294
jmp 0x12142c0
movq 0x40(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4838(%rsp)
cmpq $0x0, 0x4838(%rsp)
je 0x12142be
movq 0x4838(%rsp), %rdi
callq 0x5f480
jmp 0x12142c0
jmp 0x12142c2
movq 0x40(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121431a
movq %rax, %rdi
callq 0x678a0
jmp 0x121431c
leaq 0xae0(%rsp), %rax
movq %rax, 0x2a38(%rsp)
movq 0x2a38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x30(%rsp)
leaq 0xae0(%rsp), %rax
movq %rax, 0x2728(%rsp)
movq 0x2728(%rsp), %rax
movq %rax, 0x3fa0(%rsp)
movq 0x3fa0(%rsp), %rax
movq %rax, 0x38(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12143f5
movq 0x38(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f9c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f9c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f98(%rsp)
cmpl $0x1, 0x3f98(%rsp)
jne 0x12143f5
movq 0x38(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12143c9
movq 0x38(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12143c7
jmp 0x12143f3
movq 0x38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4830(%rsp)
cmpq $0x0, 0x4830(%rsp)
je 0x12143f1
movq 0x4830(%rsp), %rdi
callq 0x5f480
jmp 0x12143f3
jmp 0x12143f5
movq 0x38(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121444d
movq %rax, %rdi
callq 0x678a0
movq 0x30(%rsp), %rax
movq %rax, 0xb28(%rsp)
movl $0x0, 0xadc(%rsp)
movl 0xadc(%rsp), %eax
cmpl 0x1ecc(%rsp), %eax
jge 0x12144c9
movq 0xb78(%rsp), %rdx
movslq 0xadc(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xb84(%rsp), %rsi
callq 0x1278030
movq 0xb28(%rsp), %rax
movslq 0xadc(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xadc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xadc(%rsp)
jmp 0x1214465
jmp 0x12144cb
movl 0xb88(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xb88(%rsp)
jmp 0x1213bd7
movl $0x0, 0x1f24(%rsp)
jmp 0x12149e5
movq 0x1f10(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x121471e
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movq 0x1ee0(%rsp), %rcx
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6f5a0
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f30(%rsp)
movq 0x1f30(%rsp), %rcx
movq %rcx, 0x20(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x2f(%rsp)
je 0x1214587
movq 0x20(%rsp), %rax
movq %rax, 0x2db8(%rsp)
movq 0x2db8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x2f(%rsp)
movb 0x2f(%rsp), %al
testb $0x1, %al
jne 0x1214591
jmp 0x12145a1
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x12149e5
movq 0x1f10(%rsp), %rax
movq %rax, 0x2320(%rsp)
movq 0x2320(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xad0(%rsp)
movq 0x1f08(%rsp), %rax
movq %rax, 0x2a30(%rsp)
movq 0x2a30(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xac8(%rsp)
movl $0x0, 0xac4(%rsp)
movl 0xac4(%rsp), %eax
cmpl 0x1ed8(%rsp), %eax
jge 0x121470e
movq 0x1f18(%rsp), %rcx
movslq 0xac4(%rsp), %rax
movq %rcx, 0x2b88(%rsp)
movq %rax, 0x2b80(%rsp)
movq 0x2b88(%rsp), %rax
movq (%rax), %rax
movq 0x2b80(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xac0(%rsp)
movl $0x0, 0xabc(%rsp)
movl 0xabc(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x12146b6
movq 0xad0(%rsp), %rdx
movslq 0xabc(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xac0(%rsp), %rsi
callq 0x1278030
movq 0xac8(%rsp), %rax
movslq 0xabc(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xabc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xabc(%rsp)
jmp 0x1214652
movl 0x1edc(%rsp), %ecx
movq 0xad0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xad0(%rsp)
movl 0x1edc(%rsp), %ecx
movq 0xac8(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xac8(%rsp)
movl 0xac4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xac4(%rsp)
jmp 0x12145f2
movl $0x0, 0x1f24(%rsp)
jmp 0x12149e5
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x12149d2
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movq 0x1ee0(%rsp), %rdx
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rcx
callq 0x6f320
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f28(%rsp)
movq 0x1f28(%rsp), %rcx
movq %rcx, 0x10(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1f(%rsp)
je 0x12147ad
movq 0x10(%rsp), %rax
movq %rax, 0x2dc0(%rsp)
movq 0x2dc0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1f(%rsp)
movb 0x1f(%rsp), %al
testb $0x1, %al
jne 0x12147b7
jmp 0x12147c7
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x12149e5
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x12148e2
movq 0x1f10(%rsp), %rax
movq %rax, 0x2b78(%rsp)
movq $0x0, 0x2b70(%rsp)
movq 0x2b78(%rsp), %rax
movq (%rax), %rax
movq 0x2b70(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xab8(%rsp)
movl $0x0, 0xab4(%rsp)
movl 0xab4(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x12148d2
movq 0x1f18(%rsp), %rcx
movslq 0xab4(%rsp), %rax
movq %rcx, 0x2b68(%rsp)
movq %rax, 0x2b60(%rsp)
movq 0x2b68(%rsp), %rax
movq (%rax), %rsi
movq 0x2b60(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0xab8(%rsp), %rdx
callq 0x1278030
movq 0x1f08(%rsp), %rcx
movslq 0xab4(%rsp), %rax
movq %rcx, 0x2cb8(%rsp)
movq %rax, 0x2cb0(%rsp)
movq 0x2cb8(%rsp), %rax
movq (%rax), %rax
movq 0x2cb0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xab4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xab4(%rsp)
jmp 0x1214821
movl $0x0, 0x1f24(%rsp)
jmp 0x12149e5
movl $0x0, 0xab0(%rsp)
movl 0xab0(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x12149d0
movq 0x1f18(%rsp), %rcx
movslq 0xab0(%rsp), %rax
movq %rcx, 0x2b58(%rsp)
movq %rax, 0x2b50(%rsp)
movq 0x2b58(%rsp), %rax
movq (%rax), %rsi
movq 0x2b50(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1f10(%rsp), %rcx
movslq 0xab0(%rsp), %rax
movq %rcx, 0x2b48(%rsp)
movq %rax, 0x2b40(%rsp)
movq 0x2b48(%rsp), %rax
movq (%rax), %rdx
movq 0x2b40(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x1278030
movq 0x1f08(%rsp), %rcx
movslq 0xab0(%rsp), %rax
movq %rcx, 0x2ca8(%rsp)
movq %rax, 0x2ca0(%rsp)
movq 0x2ca8(%rsp), %rax
movq (%rax), %rax
movq 0x2ca0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xab0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xab0(%rsp)
jmp 0x12148ed
jmp 0x12149d2
jmp 0x12149d4
jmp 0x12149d6
jmp 0x12149d8
jmp 0x12149da
movl $0x0, 0x1f24(%rsp)
movl 0x1f24(%rsp), %eax
addq $0x48f8, %rsp # imm = 0x48F8
retq
nopw %cs:(%rax,%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/binaryop.cpp
|
2,112,802
|
int ncnn::binary_op<ncnn::binary_op_mul>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int size = w * h * d;
size_t elemsize = a.elemsize;
int w1 = b.w;
int h1 = b.h;
int d1 = b.d;
int channels1 = b.c;
int size1 = w1 * h1 * d1;
if (a.dims == 4)
{
if (b.dims == 4)
{
// type 29
c.create(w, h, d, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], ptr1[i]);
}
}
return 0;
}
c.create(w, h, d, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 3)
{
// type 28
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
for (int y = 0; y < h; y++)
{
const float b0 = ptr1[y];
for (int x = 0; x < w; x++)
{
outptr[x] = op(ptr[x], b0);
}
ptr += w;
outptr += w;
}
ptr1 += h;
}
}
return 0;
}
if (b.dims == 2)
{
// type 27
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
const float b0 = ptr1[z];
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
outptr[x] = op(ptr[x], b0);
}
ptr += w;
outptr += w;
}
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1)
{
// type 25
const float b0 = b[0];
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], b0);
}
}
return 0;
}
// type 26
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float b0 = b[q];
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], b0);
}
}
return 0;
}
}
else if (a.dims == 3)
{
if (b.dims == 4)
{
// type 23
c.create(w1, h1, d1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
for (int y = 0; y < h1; y++)
{
const float a0 = ptr[y];
for (int x = 0; x < w1; x++)
{
outptr[x] = op(a0, ptr1[x]);
}
ptr1 += w1;
outptr += w1;
}
ptr += h1;
}
}
return 0;
}
if (b.dims == 3)
{
if (w1 == 1 && h1 == 1 && channels1 == channels)
{
// special type 1
c.create(w, h, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* b0 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], b0[0]);
}
}
return 0;
}
if (w1 == w && h1 == h && channels1 == 1)
{
// special type 2
c.create(w, h, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b;
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], ptr1[i]);
}
}
return 0;
}
if (w == 1 && h == 1 && channels1 == channels)
{
// special type 3
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* a0 = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
outptr[i] = op(a0[0], ptr1[i]);
}
}
return 0;
}
if (w1 == w && h1 == h && channels == 1)
{
// special type 4
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a;
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
outptr[i] = op(ptr[i], ptr1[i]);
}
}
return 0;
}
if (w != 1 && w1 == 1 && h1 == h && channels1 == channels)
{
// special type 5
c.create(w, h, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
const float b0 = ptr1[y];
for (int x = 0; x < w; x++)
{
outptr[x] = op(ptr[x], b0);
}
ptr += w;
outptr += w;
}
}
return 0;
}
if (w1 == w && h != 1 && h1 == 1 && channels1 == channels)
{
// special type 6
c.create(w, h, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
outptr[x] = op(ptr[x], ptr1[x]);
}
ptr += w;
outptr += w;
}
}
return 0;
}
if (w1 != 1 && w == 1 && h1 == h && channels1 == channels)
{
// special type 7
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
const float a0 = ptr[y];
for (int x = 0; x < w1; x++)
{
outptr[x] = op(a0, ptr1[x]);
}
ptr1 += w1;
outptr += w1;
}
}
return 0;
}
if (w1 == w && h1 != 1 && h == 1 && channels1 == channels)
{
// special type 8
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
outptr[x] = op(ptr[x], ptr1[x]);
}
ptr1 += w1;
outptr += w1;
}
}
return 0;
}
// type 19
c.create(w, h, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], ptr1[i]);
}
}
return 0;
}
c.create(w, h, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 18
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
const float b0 = ptr1[y];
for (int x = 0; x < w; x++)
{
outptr[x] = op(ptr[x], b0);
}
ptr += w;
outptr += w;
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1)
{
// type 16
const float b0 = b[0];
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], b0);
}
}
return 0;
}
// type 17
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float b0 = b[q];
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], b0);
}
}
return 0;
}
}
else if (a.dims == 2)
{
if (b.dims == 4)
{
// type 22
c.create(w1, h1, d1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
const float a0 = ptr[z];
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
outptr[x] = op(a0, ptr1[x]);
}
ptr1 += w1;
outptr += w1;
}
}
}
return 0;
}
if (b.dims == 3)
{
// type 14
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
const float a0 = ptr[y];
for (int x = 0; x < w1; x++)
{
outptr[x] = op(a0, ptr1[x]);
}
ptr1 += w1;
outptr += w1;
}
}
return 0;
}
c.create(w, h, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 13
for (int i = 0; i < size; i++)
{
c[i] = op(a[i], b[i]);
}
return 0;
}
if (b.dims == 1)
{
c.create(w, h, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1)
{
// type 11
const float b0 = b[0];
for (int i = 0; i < size; i++)
{
c[i] = op(a[i], b0);
}
return 0;
}
// type 12
const float* ptr = a;
float* outptr = c;
for (int y = 0; y < h; y++)
{
const float b0 = b[y];
for (int x = 0; x < w; x++)
{
outptr[x] = op(ptr[x], b0);
}
ptr += w;
outptr += w;
}
return 0;
}
}
else if (a.dims == 1)
{
if (a.w == 1)
{
if (b.dims == 4)
{
// type 20
c.create(w1, h1, d1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
const float a0 = a[0];
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
outptr[i] = op(a0, ptr1[i]);
}
}
return 0;
}
if (b.dims == 3)
{
// type 4
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
const float a0 = a[0];
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
outptr[i] = op(a0, ptr1[i]);
}
}
return 0;
}
if (b.dims == 2)
{
// type 3
c.create(w1, h1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
const float a0 = a[0];
for (int i = 0; i < size1; i++)
{
c[i] = op(a0, b[i]);
}
return 0;
}
if (b.dims == 1)
{
// type 2
c.create(w1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
const float a0 = a[0];
for (int i = 0; i < w1; i++)
{
c[i] = op(a0, b[i]);
}
return 0;
}
}
if (b.dims == 4)
{
// type 21
c.create(w1, h1, d1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float a0 = a[q];
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
outptr[i] = op(a0, ptr1[i]);
}
}
return 0;
}
if (b.dims == 3)
{
// type 9
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float a0 = a[q];
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
outptr[i] = op(a0, ptr1[i]);
}
}
return 0;
}
if (b.dims == 2)
{
// type 8
c.create(w1, h1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
const float* ptr1 = b;
float* outptr = c;
for (int y = 0; y < h1; y++)
{
const float a0 = a[y];
for (int x = 0; x < w1; x++)
{
outptr[x] = op(a0, ptr1[x]);
}
ptr1 += w1;
outptr += w1;
}
return 0;
}
if (b.dims == 1)
{
c.create(w, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1)
{
// type 6
const float b0 = b[0];
for (int i = 0; i < w; i++)
{
c[i] = op(a[i], b0);
}
return 0;
}
// type 7
for (int i = 0; i < w; i++)
{
c[i] = op(a[i], b[i]);
}
}
}
return 0;
}
|
subq $0x48f8, %rsp # imm = 0x48F8
movq %rdi, 0x1f18(%rsp)
movq %rsi, 0x1f10(%rsp)
movq %rdx, 0x1f08(%rsp)
movq %rcx, 0x1f00(%rsp)
movq 0x1f18(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x1ef8(%rsp)
movq 0x1f18(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x1ef4(%rsp)
movq 0x1f18(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x1ef0(%rsp)
movq 0x1f18(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x1eec(%rsp)
movl 0x1ef8(%rsp), %eax
imull 0x1ef4(%rsp), %eax
imull 0x1ef0(%rsp), %eax
movl %eax, 0x1ee8(%rsp)
movq 0x1f18(%rsp), %rax
movq 0x10(%rax), %rax
movq %rax, 0x1ee0(%rsp)
movq 0x1f10(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x1edc(%rsp)
movq 0x1f10(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x1ed8(%rsp)
movq 0x1f10(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x1ed4(%rsp)
movq 0x1f10(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x1ed0(%rsp)
movl 0x1edc(%rsp), %eax
imull 0x1ed8(%rsp), %eax
imull 0x1ed4(%rsp), %eax
movl %eax, 0x1ecc(%rsp)
movq 0x1f18(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x12186af
movq 0x1f10(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1215997
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1ef0(%rsp), %ecx
movl 0x1eec(%rsp), %r8d
movq 0x1ee0(%rsp), %r9
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6fb30
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fe8(%rsp)
movq 0x1fe8(%rsp), %rcx
movq %rcx, 0xaa0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xaaf(%rsp)
je 0x1214bce
movq 0xaa0(%rsp), %rax
movq %rax, 0x2d00(%rsp)
movq 0x2d00(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xaaf(%rsp)
movb 0xaaf(%rsp), %al
testb $0x1, %al
jne 0x1214bdb
jmp 0x1214beb
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1227e25
movl $0x0, 0x1ec8(%rsp)
movl 0x1ec8(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x1215987
movq 0x1f18(%rsp), %rcx
movl 0x1ec8(%rsp), %eax
leaq 0x1e78(%rsp), %rdx
movq %rdx, 0x2318(%rsp)
movq %rcx, 0x2310(%rsp)
movl %eax, 0x230c(%rsp)
movq 0x2310(%rsp), %rax
movq %rax, 0xa98(%rsp)
movb $0x0, 0x230b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x230c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1e78(%rsp), %r10
movq %r10, 0x3338(%rsp)
movl %r9d, 0x3334(%rsp)
movl %r8d, 0x3330(%rsp)
movl %edi, 0x332c(%rsp)
movq %rsi, 0x3320(%rsp)
movq %rdx, 0x3318(%rsp)
movl %ecx, 0x3314(%rsp)
movq %rax, 0x3308(%rsp)
movq 0x3338(%rsp), %rcx
movq %rcx, 0xa90(%rsp)
movq 0x3320(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3318(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3314(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3308(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3334(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3330(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x332c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c90(%rsp)
movl $0x10, 0x3c8c(%rsp)
movq 0x3c90(%rsp), %rax
movslq 0x3c8c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c8c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xa98(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1ea0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1214dc6
movq 0xa98(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1eb8(%rsp)
movb $0x1, 0x230b(%rsp)
testb $0x1, 0x230b(%rsp)
jne 0x1214f01
leaq 0x1e78(%rsp), %rax
movq %rax, 0x2450(%rsp)
movq 0x2450(%rsp), %rax
movq %rax, 0x4550(%rsp)
movq 0x4550(%rsp), %rax
movq %rax, 0xa88(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1214ea4
movq 0xa88(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x454c(%rsp) # imm = 0xFFFFFFFF
movl 0x454c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4548(%rsp)
cmpl $0x1, 0x4548(%rsp)
jne 0x1214ea4
movq 0xa88(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1214e75
movq 0xa88(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1214e73
jmp 0x1214ea2
movq 0xa88(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4558(%rsp)
cmpq $0x0, 0x4558(%rsp)
je 0x1214ea0
movq 0x4558(%rsp), %rdi
callq 0x5f480
jmp 0x1214ea2
jmp 0x1214ea4
movq 0xa88(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1214eff
movq %rax, %rdi
callq 0x678a0
jmp 0x1214f01
leaq 0x1e78(%rsp), %rax
movq %rax, 0x2448(%rsp)
movq 0x2448(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xa78(%rsp)
leaq 0x1e78(%rsp), %rax
movq %rax, 0x2560(%rsp)
movq 0x2560(%rsp), %rax
movq %rax, 0x4330(%rsp)
movq 0x4330(%rsp), %rax
movq %rax, 0xa80(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1214fec
movq 0xa80(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x432c(%rsp) # imm = 0xFFFFFFFF
movl 0x432c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4328(%rsp)
cmpl $0x1, 0x4328(%rsp)
jne 0x1214fec
movq 0xa80(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1214fbd
movq 0xa80(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1214fbb
jmp 0x1214fea
movq 0xa80(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4668(%rsp)
cmpq $0x0, 0x4668(%rsp)
je 0x1214fe8
movq 0x4668(%rsp), %rdi
callq 0x5f480
jmp 0x1214fea
jmp 0x1214fec
movq 0xa80(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1215047
movq %rax, %rdi
callq 0x678a0
movq 0xa78(%rsp), %rax
movq %rax, 0x1ec0(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1ec8(%rsp), %eax
leaq 0x1e28(%rsp), %rdx
movq %rdx, 0x2300(%rsp)
movq %rcx, 0x22f8(%rsp)
movl %eax, 0x22f4(%rsp)
movq 0x22f8(%rsp), %rax
movq %rax, 0xa70(%rsp)
movb $0x0, 0x22f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1e28(%rsp), %r10
movq %r10, 0x3370(%rsp)
movl %r9d, 0x336c(%rsp)
movl %r8d, 0x3368(%rsp)
movl %edi, 0x3364(%rsp)
movq %rsi, 0x3358(%rsp)
movq %rdx, 0x3350(%rsp)
movl %ecx, 0x334c(%rsp)
movq %rax, 0x3340(%rsp)
movq 0x3370(%rsp), %rcx
movq %rcx, 0xa68(%rsp)
movq 0x3358(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3350(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x334c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3340(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x336c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3368(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3364(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c80(%rsp)
movl $0x10, 0x3c7c(%rsp)
movq 0x3c80(%rsp), %rax
movslq 0x3c7c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c7c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xa70(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1e50(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1215213
movq 0xa70(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1e68(%rsp)
movb $0x1, 0x22f3(%rsp)
testb $0x1, 0x22f3(%rsp)
jne 0x121534e
leaq 0x1e28(%rsp), %rax
movq %rax, 0x2458(%rsp)
movq 0x2458(%rsp), %rax
movq %rax, 0x4540(%rsp)
movq 0x4540(%rsp), %rax
movq %rax, 0xa60(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12152f1
movq 0xa60(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x453c(%rsp) # imm = 0xFFFFFFFF
movl 0x453c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4538(%rsp)
cmpl $0x1, 0x4538(%rsp)
jne 0x12152f1
movq 0xa60(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12152c2
movq 0xa60(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12152c0
jmp 0x12152ef
movq 0xa60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4560(%rsp)
cmpq $0x0, 0x4560(%rsp)
je 0x12152ed
movq 0x4560(%rsp), %rdi
callq 0x5f480
jmp 0x12152ef
jmp 0x12152f1
movq 0xa60(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121534c
movq %rax, %rdi
callq 0x678a0
jmp 0x121534e
leaq 0x1e28(%rsp), %rax
movq %rax, 0x2440(%rsp)
movq 0x2440(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xa50(%rsp)
leaq 0x1e28(%rsp), %rax
movq %rax, 0x2568(%rsp)
movq 0x2568(%rsp), %rax
movq %rax, 0x4320(%rsp)
movq 0x4320(%rsp), %rax
movq %rax, 0xa58(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1215439
movq 0xa58(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x431c(%rsp) # imm = 0xFFFFFFFF
movl 0x431c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4318(%rsp)
cmpl $0x1, 0x4318(%rsp)
jne 0x1215439
movq 0xa58(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121540a
movq 0xa58(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1215408
jmp 0x1215437
movq 0xa58(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4670(%rsp)
cmpq $0x0, 0x4670(%rsp)
je 0x1215435
movq 0x4670(%rsp), %rdi
callq 0x5f480
jmp 0x1215437
jmp 0x1215439
movq 0xa58(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1215494
movq %rax, %rdi
callq 0x678a0
movq 0xa50(%rsp), %rax
movq %rax, 0x1e70(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1ec8(%rsp), %eax
leaq 0x1dd8(%rsp), %rdx
movq %rdx, 0x2a20(%rsp)
movq %rcx, 0x2a18(%rsp)
movl %eax, 0x2a14(%rsp)
movq 0x2a18(%rsp), %rax
movq %rax, 0xa48(%rsp)
movb $0x0, 0x2a13(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2a14(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1dd8(%rsp), %r10
movq %r10, 0x2df8(%rsp)
movl %r9d, 0x2df4(%rsp)
movl %r8d, 0x2df0(%rsp)
movl %edi, 0x2dec(%rsp)
movq %rsi, 0x2de0(%rsp)
movq %rdx, 0x2dd8(%rsp)
movl %ecx, 0x2dd4(%rsp)
movq %rax, 0x2dc8(%rsp)
movq 0x2df8(%rsp), %rcx
movq %rcx, 0xa40(%rsp)
movq 0x2de0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2dd8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2dd4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2dc8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2df4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2df0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2dec(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3e10(%rsp)
movl $0x10, 0x3e0c(%rsp)
movq 0x3e10(%rsp), %rax
movslq 0x3e0c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3e0c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xa48(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1e00(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1215660
movq 0xa48(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1e18(%rsp)
movb $0x1, 0x2a13(%rsp)
testb $0x1, 0x2a13(%rsp)
jne 0x121579b
leaq 0x1dd8(%rsp), %rax
movq %rax, 0x2a28(%rsp)
movq 0x2a28(%rsp), %rax
movq %rax, 0x3e20(%rsp)
movq 0x3e20(%rsp), %rax
movq %rax, 0xa38(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121573e
movq 0xa38(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e1c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e1c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e18(%rsp)
cmpl $0x1, 0x3e18(%rsp)
jne 0x121573e
movq 0xa38(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121570f
movq 0xa38(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121570d
jmp 0x121573c
movq 0xa38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48f0(%rsp)
cmpq $0x0, 0x48f0(%rsp)
je 0x121573a
movq 0x48f0(%rsp), %rdi
callq 0x5f480
jmp 0x121573c
jmp 0x121573e
movq 0xa38(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1215799
movq %rax, %rdi
callq 0x678a0
jmp 0x121579b
leaq 0x1dd8(%rsp), %rax
movq %rax, 0x2af8(%rsp)
movq 0x2af8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xa28(%rsp)
leaq 0x1dd8(%rsp), %rax
movq %rax, 0x2570(%rsp)
movq 0x2570(%rsp), %rax
movq %rax, 0x4310(%rsp)
movq 0x4310(%rsp), %rax
movq %rax, 0xa30(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1215886
movq 0xa30(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x430c(%rsp) # imm = 0xFFFFFFFF
movl 0x430c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4308(%rsp)
cmpl $0x1, 0x4308(%rsp)
jne 0x1215886
movq 0xa30(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1215857
movq 0xa30(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1215855
jmp 0x1215884
movq 0xa30(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4678(%rsp)
cmpq $0x0, 0x4678(%rsp)
je 0x1215882
movq 0x4678(%rsp), %rdi
callq 0x5f480
jmp 0x1215884
jmp 0x1215886
movq 0xa30(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12158e1
movq %rax, %rdi
callq 0x678a0
movq 0xa28(%rsp), %rax
movq %rax, 0x1e20(%rsp)
movl $0x0, 0x1dd4(%rsp)
movl 0x1dd4(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x121596f
movq 0x1ec0(%rsp), %rsi
movslq 0x1dd4(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1e70(%rsp), %rdx
movslq 0x1dd4(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x1278060
movq 0x1e20(%rsp), %rax
movslq 0x1dd4(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1dd4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1dd4(%rsp)
jmp 0x12158fc
jmp 0x1215971
movl 0x1ec8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1ec8(%rsp)
jmp 0x1214bf6
movl $0x0, 0x1f24(%rsp)
jmp 0x1227e25
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1ef0(%rsp), %ecx
movl 0x1eec(%rsp), %r8d
movq 0x1ee0(%rsp), %r9
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6fb30
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fe0(%rsp)
movq 0x1fe0(%rsp), %rcx
movq %rcx, 0xa18(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xa27(%rsp)
je 0x1215a3a
movq 0xa18(%rsp), %rax
movq %rax, 0x2d08(%rsp)
movq 0x2d08(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xa27(%rsp)
movb 0xa27(%rsp), %al
testb $0x1, %al
jne 0x1215a47
jmp 0x1215a57
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1227e25
movq 0x1f10(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x12168f1
movl $0x0, 0x1dd0(%rsp)
movl 0x1dd0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x12168e1
movq 0x1f18(%rsp), %rcx
movl 0x1dd0(%rsp), %eax
leaq 0x1d80(%rsp), %rdx
movq %rdx, 0x22e8(%rsp)
movq %rcx, 0x22e0(%rsp)
movl %eax, 0x22dc(%rsp)
movq 0x22e0(%rsp), %rax
movq %rax, 0xa10(%rsp)
movb $0x0, 0x22db(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22dc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1d80(%rsp), %r10
movq %r10, 0x33a8(%rsp)
movl %r9d, 0x33a4(%rsp)
movl %r8d, 0x33a0(%rsp)
movl %edi, 0x339c(%rsp)
movq %rsi, 0x3390(%rsp)
movq %rdx, 0x3388(%rsp)
movl %ecx, 0x3384(%rsp)
movq %rax, 0x3378(%rsp)
movq 0x33a8(%rsp), %rcx
movq %rcx, 0xa08(%rsp)
movq 0x3390(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3388(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3384(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3378(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x33a4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x33a0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x339c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c70(%rsp)
movl $0x10, 0x3c6c(%rsp)
movq 0x3c70(%rsp), %rax
movslq 0x3c6c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c6c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xa10(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1da8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1215c44
movq 0xa10(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1dc0(%rsp)
movb $0x1, 0x22db(%rsp)
testb $0x1, 0x22db(%rsp)
jne 0x1215d7f
leaq 0x1d80(%rsp), %rax
movq %rax, 0x2460(%rsp)
movq 0x2460(%rsp), %rax
movq %rax, 0x4530(%rsp)
movq 0x4530(%rsp), %rax
movq %rax, 0xa00(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1215d22
movq 0xa00(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x452c(%rsp) # imm = 0xFFFFFFFF
movl 0x452c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4528(%rsp)
cmpl $0x1, 0x4528(%rsp)
jne 0x1215d22
movq 0xa00(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1215cf3
movq 0xa00(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1215cf1
jmp 0x1215d20
movq 0xa00(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4568(%rsp)
cmpq $0x0, 0x4568(%rsp)
je 0x1215d1e
movq 0x4568(%rsp), %rdi
callq 0x5f480
jmp 0x1215d20
jmp 0x1215d22
movq 0xa00(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1215d7d
movq %rax, %rdi
callq 0x678a0
jmp 0x1215d7f
leaq 0x1d80(%rsp), %rax
movq %rax, 0x2438(%rsp)
movq 0x2438(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x9f0(%rsp)
leaq 0x1d80(%rsp), %rax
movq %rax, 0x2578(%rsp)
movq 0x2578(%rsp), %rax
movq %rax, 0x4300(%rsp)
movq 0x4300(%rsp), %rax
movq %rax, 0x9f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1215e6a
movq 0x9f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42fc(%rsp) # imm = 0xFFFFFFFF
movl 0x42fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42f8(%rsp)
cmpl $0x1, 0x42f8(%rsp)
jne 0x1215e6a
movq 0x9f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1215e3b
movq 0x9f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1215e39
jmp 0x1215e68
movq 0x9f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4680(%rsp)
cmpq $0x0, 0x4680(%rsp)
je 0x1215e66
movq 0x4680(%rsp), %rdi
callq 0x5f480
jmp 0x1215e68
jmp 0x1215e6a
movq 0x9f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1215ec5
movq %rax, %rdi
callq 0x678a0
movq 0x9f0(%rsp), %rax
movq %rax, 0x1dc8(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1dd0(%rsp), %eax
leaq 0x1d30(%rsp), %rdx
movq %rdx, 0x22d0(%rsp)
movq %rcx, 0x22c8(%rsp)
movl %eax, 0x22c4(%rsp)
movq 0x22c8(%rsp), %rax
movq %rax, 0x9e8(%rsp)
movb $0x0, 0x22c3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22c4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1d30(%rsp), %r10
movq %r10, 0x33e0(%rsp)
movl %r9d, 0x33dc(%rsp)
movl %r8d, 0x33d8(%rsp)
movl %edi, 0x33d4(%rsp)
movq %rsi, 0x33c8(%rsp)
movq %rdx, 0x33c0(%rsp)
movl %ecx, 0x33bc(%rsp)
movq %rax, 0x33b0(%rsp)
movq 0x33e0(%rsp), %rcx
movq %rcx, 0x9e0(%rsp)
movq 0x33c8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x33c0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x33bc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x33b0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x33dc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x33d8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x33d4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c60(%rsp)
movl $0x10, 0x3c5c(%rsp)
movq 0x3c60(%rsp), %rax
movslq 0x3c5c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c5c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x9e8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1d58(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1216091
movq 0x9e8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1d70(%rsp)
movb $0x1, 0x22c3(%rsp)
testb $0x1, 0x22c3(%rsp)
jne 0x12161cc
leaq 0x1d30(%rsp), %rax
movq %rax, 0x2468(%rsp)
movq 0x2468(%rsp), %rax
movq %rax, 0x4520(%rsp)
movq 0x4520(%rsp), %rax
movq %rax, 0x9d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121616f
movq 0x9d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x451c(%rsp) # imm = 0xFFFFFFFF
movl 0x451c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4518(%rsp)
cmpl $0x1, 0x4518(%rsp)
jne 0x121616f
movq 0x9d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1216140
movq 0x9d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121613e
jmp 0x121616d
movq 0x9d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4570(%rsp)
cmpq $0x0, 0x4570(%rsp)
je 0x121616b
movq 0x4570(%rsp), %rdi
callq 0x5f480
jmp 0x121616d
jmp 0x121616f
movq 0x9d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12161ca
movq %rax, %rdi
callq 0x678a0
jmp 0x12161cc
leaq 0x1d30(%rsp), %rax
movq %rax, 0x2430(%rsp)
movq 0x2430(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x9c8(%rsp)
leaq 0x1d30(%rsp), %rax
movq %rax, 0x2580(%rsp)
movq 0x2580(%rsp), %rax
movq %rax, 0x42f0(%rsp)
movq 0x42f0(%rsp), %rax
movq %rax, 0x9d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12162b7
movq 0x9d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42ec(%rsp) # imm = 0xFFFFFFFF
movl 0x42ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42e8(%rsp)
cmpl $0x1, 0x42e8(%rsp)
jne 0x12162b7
movq 0x9d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1216288
movq 0x9d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1216286
jmp 0x12162b5
movq 0x9d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4688(%rsp)
cmpq $0x0, 0x4688(%rsp)
je 0x12162b3
movq 0x4688(%rsp), %rdi
callq 0x5f480
jmp 0x12162b5
jmp 0x12162b7
movq 0x9d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1216312
movq %rax, %rdi
callq 0x678a0
movq 0x9c8(%rsp), %rax
movq %rax, 0x1d78(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1dd0(%rsp), %eax
leaq 0x1ce0(%rsp), %rdx
movq %rdx, 0x2a00(%rsp)
movq %rcx, 0x29f8(%rsp)
movl %eax, 0x29f4(%rsp)
movq 0x29f8(%rsp), %rax
movq %rax, 0x9c0(%rsp)
movb $0x0, 0x29f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x29f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1ce0(%rsp), %r10
movq %r10, 0x2e30(%rsp)
movl %r9d, 0x2e2c(%rsp)
movl %r8d, 0x2e28(%rsp)
movl %edi, 0x2e24(%rsp)
movq %rsi, 0x2e18(%rsp)
movq %rdx, 0x2e10(%rsp)
movl %ecx, 0x2e0c(%rsp)
movq %rax, 0x2e00(%rsp)
movq 0x2e30(%rsp), %rcx
movq %rcx, 0x9b8(%rsp)
movq 0x2e18(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2e10(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2e0c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2e00(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2e2c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2e28(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2e24(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3e00(%rsp)
movl $0x10, 0x3dfc(%rsp)
movq 0x3e00(%rsp), %rax
movslq 0x3dfc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3dfc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x9c0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1d08(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12164de
movq 0x9c0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1d20(%rsp)
movb $0x1, 0x29f3(%rsp)
testb $0x1, 0x29f3(%rsp)
jne 0x1216619
leaq 0x1ce0(%rsp), %rax
movq %rax, 0x2a08(%rsp)
movq 0x2a08(%rsp), %rax
movq %rax, 0x3e30(%rsp)
movq 0x3e30(%rsp), %rax
movq %rax, 0x9b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12165bc
movq 0x9b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e2c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e2c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e28(%rsp)
cmpl $0x1, 0x3e28(%rsp)
jne 0x12165bc
movq 0x9b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121658d
movq 0x9b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121658b
jmp 0x12165ba
movq 0x9b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48e8(%rsp)
cmpq $0x0, 0x48e8(%rsp)
je 0x12165b8
movq 0x48e8(%rsp), %rdi
callq 0x5f480
jmp 0x12165ba
jmp 0x12165bc
movq 0x9b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1216617
movq %rax, %rdi
callq 0x678a0
jmp 0x1216619
leaq 0x1ce0(%rsp), %rax
movq %rax, 0x2af0(%rsp)
movq 0x2af0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x9a0(%rsp)
leaq 0x1ce0(%rsp), %rax
movq %rax, 0x2588(%rsp)
movq 0x2588(%rsp), %rax
movq %rax, 0x42e0(%rsp)
movq 0x42e0(%rsp), %rax
movq %rax, 0x9a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1216704
movq 0x9a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42dc(%rsp) # imm = 0xFFFFFFFF
movl 0x42dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42d8(%rsp)
cmpl $0x1, 0x42d8(%rsp)
jne 0x1216704
movq 0x9a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12166d5
movq 0x9a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12166d3
jmp 0x1216702
movq 0x9a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4690(%rsp)
cmpq $0x0, 0x4690(%rsp)
je 0x1216700
movq 0x4690(%rsp), %rdi
callq 0x5f480
jmp 0x1216702
jmp 0x1216704
movq 0x9a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121675f
movq %rax, %rdi
callq 0x678a0
movq 0x9a0(%rsp), %rax
movq %rax, 0x1d28(%rsp)
movl $0x0, 0x1cdc(%rsp)
movl 0x1cdc(%rsp), %eax
cmpl 0x1ef0(%rsp), %eax
jge 0x12168c9
movl $0x0, 0x1cd8(%rsp)
movl 0x1cd8(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jge 0x1216892
movq 0x1d78(%rsp), %rax
movslq 0x1cd8(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x1cd4(%rsp)
movl $0x0, 0x1cd0(%rsp)
movl 0x1cd0(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x121683a
movq 0x1dc8(%rsp), %rsi
movslq 0x1cd0(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0x1cd4(%rsp), %rdx
callq 0x1278060
movq 0x1d28(%rsp), %rax
movslq 0x1cd0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1cd0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1cd0(%rsp)
jmp 0x12167d6
movl 0x1ef8(%rsp), %ecx
movq 0x1dc8(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1dc8(%rsp)
movl 0x1ef8(%rsp), %ecx
movq 0x1d28(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1d28(%rsp)
movl 0x1cd8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1cd8(%rsp)
jmp 0x1216799
movl 0x1ef4(%rsp), %ecx
movq 0x1d78(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1d78(%rsp)
movl 0x1cdc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1cdc(%rsp)
jmp 0x121677a
jmp 0x12168cb
movl 0x1dd0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1dd0(%rsp)
jmp 0x1215a74
movl $0x0, 0x1f24(%rsp)
jmp 0x1227e25
movq 0x1f10(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1217368
movl $0x0, 0x1ccc(%rsp)
movl 0x1ccc(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x1217358
movq 0x1f18(%rsp), %rcx
movl 0x1ccc(%rsp), %eax
leaq 0x1c78(%rsp), %rdx
movq %rdx, 0x22b8(%rsp)
movq %rcx, 0x22b0(%rsp)
movl %eax, 0x22ac(%rsp)
movq 0x22b0(%rsp), %rax
movq %rax, 0x998(%rsp)
movb $0x0, 0x22ab(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22ac(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1c78(%rsp), %r10
movq %r10, 0x3418(%rsp)
movl %r9d, 0x3414(%rsp)
movl %r8d, 0x3410(%rsp)
movl %edi, 0x340c(%rsp)
movq %rsi, 0x3400(%rsp)
movq %rdx, 0x33f8(%rsp)
movl %ecx, 0x33f4(%rsp)
movq %rax, 0x33e8(%rsp)
movq 0x3418(%rsp), %rcx
movq %rcx, 0x990(%rsp)
movq 0x3400(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x33f8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x33f4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x33e8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3414(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3410(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x340c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c50(%rsp)
movl $0x10, 0x3c4c(%rsp)
movq 0x3c50(%rsp), %rax
movslq 0x3c4c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c4c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x998(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1ca0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1216ade
movq 0x998(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1cb8(%rsp)
movb $0x1, 0x22ab(%rsp)
testb $0x1, 0x22ab(%rsp)
jne 0x1216c19
leaq 0x1c78(%rsp), %rax
movq %rax, 0x2470(%rsp)
movq 0x2470(%rsp), %rax
movq %rax, 0x4510(%rsp)
movq 0x4510(%rsp), %rax
movq %rax, 0x988(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1216bbc
movq 0x988(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x450c(%rsp) # imm = 0xFFFFFFFF
movl 0x450c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4508(%rsp)
cmpl $0x1, 0x4508(%rsp)
jne 0x1216bbc
movq 0x988(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1216b8d
movq 0x988(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1216b8b
jmp 0x1216bba
movq 0x988(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4578(%rsp)
cmpq $0x0, 0x4578(%rsp)
je 0x1216bb8
movq 0x4578(%rsp), %rdi
callq 0x5f480
jmp 0x1216bba
jmp 0x1216bbc
movq 0x988(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1216c17
movq %rax, %rdi
callq 0x678a0
jmp 0x1216c19
leaq 0x1c78(%rsp), %rax
movq %rax, 0x2428(%rsp)
movq 0x2428(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x978(%rsp)
leaq 0x1c78(%rsp), %rax
movq %rax, 0x2590(%rsp)
movq 0x2590(%rsp), %rax
movq %rax, 0x42d0(%rsp)
movq 0x42d0(%rsp), %rax
movq %rax, 0x980(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1216d04
movq 0x980(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42cc(%rsp) # imm = 0xFFFFFFFF
movl 0x42cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42c8(%rsp)
cmpl $0x1, 0x42c8(%rsp)
jne 0x1216d04
movq 0x980(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1216cd5
movq 0x980(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1216cd3
jmp 0x1216d02
movq 0x980(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4698(%rsp)
cmpq $0x0, 0x4698(%rsp)
je 0x1216d00
movq 0x4698(%rsp), %rdi
callq 0x5f480
jmp 0x1216d02
jmp 0x1216d04
movq 0x980(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1216d5f
movq %rax, %rdi
callq 0x678a0
movq 0x978(%rsp), %rax
movq %rax, 0x1cc0(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1ccc(%rsp), %eax
movq %rcx, 0x2b38(%rsp)
movl %eax, 0x2b34(%rsp)
movq 0x2b38(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2b34(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x1c70(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1ccc(%rsp), %eax
leaq 0x1c20(%rsp), %rdx
movq %rdx, 0x29e0(%rsp)
movq %rcx, 0x29d8(%rsp)
movl %eax, 0x29d4(%rsp)
movq 0x29d8(%rsp), %rax
movq %rax, 0x970(%rsp)
movb $0x0, 0x29d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x29d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1c20(%rsp), %r10
movq %r10, 0x2e68(%rsp)
movl %r9d, 0x2e64(%rsp)
movl %r8d, 0x2e60(%rsp)
movl %edi, 0x2e5c(%rsp)
movq %rsi, 0x2e50(%rsp)
movq %rdx, 0x2e48(%rsp)
movl %ecx, 0x2e44(%rsp)
movq %rax, 0x2e38(%rsp)
movq 0x2e68(%rsp), %rcx
movq %rcx, 0x968(%rsp)
movq 0x2e50(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2e48(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2e44(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2e38(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2e64(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2e60(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2e5c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3df0(%rsp)
movl $0x10, 0x3dec(%rsp)
movq 0x3df0(%rsp), %rax
movslq 0x3dec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3dec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x970(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1c48(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1216f74
movq 0x970(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1c60(%rsp)
movb $0x1, 0x29d3(%rsp)
testb $0x1, 0x29d3(%rsp)
jne 0x12170af
leaq 0x1c20(%rsp), %rax
movq %rax, 0x29e8(%rsp)
movq 0x29e8(%rsp), %rax
movq %rax, 0x3e40(%rsp)
movq 0x3e40(%rsp), %rax
movq %rax, 0x960(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1217052
movq 0x960(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e3c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e3c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e38(%rsp)
cmpl $0x1, 0x3e38(%rsp)
jne 0x1217052
movq 0x960(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1217023
movq 0x960(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1217021
jmp 0x1217050
movq 0x960(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48e0(%rsp)
cmpq $0x0, 0x48e0(%rsp)
je 0x121704e
movq 0x48e0(%rsp), %rdi
callq 0x5f480
jmp 0x1217050
jmp 0x1217052
movq 0x960(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12170ad
movq %rax, %rdi
callq 0x678a0
jmp 0x12170af
leaq 0x1c20(%rsp), %rax
movq %rax, 0x2ae8(%rsp)
movq 0x2ae8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x950(%rsp)
leaq 0x1c20(%rsp), %rax
movq %rax, 0x2598(%rsp)
movq 0x2598(%rsp), %rax
movq %rax, 0x42c0(%rsp)
movq 0x42c0(%rsp), %rax
movq %rax, 0x958(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121719a
movq 0x958(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42bc(%rsp) # imm = 0xFFFFFFFF
movl 0x42bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42b8(%rsp)
cmpl $0x1, 0x42b8(%rsp)
jne 0x121719a
movq 0x958(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121716b
movq 0x958(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1217169
jmp 0x1217198
movq 0x958(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46a0(%rsp)
cmpq $0x0, 0x46a0(%rsp)
je 0x1217196
movq 0x46a0(%rsp), %rdi
callq 0x5f480
jmp 0x1217198
jmp 0x121719a
movq 0x958(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12171f5
movq %rax, %rdi
callq 0x678a0
movq 0x950(%rsp), %rax
movq %rax, 0x1c68(%rsp)
movl $0x0, 0x1c1c(%rsp)
movl 0x1c1c(%rsp), %eax
cmpl 0x1ef0(%rsp), %eax
jge 0x1217340
movq 0x1c70(%rsp), %rax
movslq 0x1c1c(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x1c18(%rsp)
movl $0x0, 0x1c14(%rsp)
movl 0x1c14(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jge 0x1217328
movl $0x0, 0x1c10(%rsp)
movl 0x1c10(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x12172d0
movq 0x1cc0(%rsp), %rsi
movslq 0x1c10(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0x1c18(%rsp), %rdx
callq 0x1278060
movq 0x1c68(%rsp), %rax
movslq 0x1c10(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1c10(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c10(%rsp)
jmp 0x121726c
movl 0x1ef8(%rsp), %ecx
movq 0x1cc0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1cc0(%rsp)
movl 0x1ef8(%rsp), %ecx
movq 0x1c68(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1c68(%rsp)
movl 0x1c14(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c14(%rsp)
jmp 0x121724d
jmp 0x121732a
movl 0x1c1c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c1c(%rsp)
jmp 0x1217210
jmp 0x1217342
movl 0x1ccc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1ccc(%rsp)
jmp 0x121690e
movl $0x0, 0x1f24(%rsp)
jmp 0x1227e25
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x12186aa
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1217d19
movq 0x1f10(%rsp), %rax
movq %rax, 0x2c98(%rsp)
movq $0x0, 0x2c90(%rsp)
movq 0x2c98(%rsp), %rax
movq (%rax), %rax
movq 0x2c90(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x1c0c(%rsp)
movl $0x0, 0x1c08(%rsp)
movl 0x1c08(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x1217d09
movq 0x1f18(%rsp), %rcx
movl 0x1c08(%rsp), %eax
leaq 0x1bb8(%rsp), %rdx
movq %rdx, 0x22a0(%rsp)
movq %rcx, 0x2298(%rsp)
movl %eax, 0x2294(%rsp)
movq 0x2298(%rsp), %rax
movq %rax, 0x948(%rsp)
movb $0x0, 0x2293(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2294(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1bb8(%rsp), %r10
movq %r10, 0x3450(%rsp)
movl %r9d, 0x344c(%rsp)
movl %r8d, 0x3448(%rsp)
movl %edi, 0x3444(%rsp)
movq %rsi, 0x3438(%rsp)
movq %rdx, 0x3430(%rsp)
movl %ecx, 0x342c(%rsp)
movq %rax, 0x3420(%rsp)
movq 0x3450(%rsp), %rcx
movq %rcx, 0x940(%rsp)
movq 0x3438(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3430(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x342c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3420(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x344c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3448(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3444(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c40(%rsp)
movl $0x10, 0x3c3c(%rsp)
movq 0x3c40(%rsp), %rax
movslq 0x3c3c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c3c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x948(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1be0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12175a4
movq 0x948(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1bf8(%rsp)
movb $0x1, 0x2293(%rsp)
testb $0x1, 0x2293(%rsp)
jne 0x12176df
leaq 0x1bb8(%rsp), %rax
movq %rax, 0x2478(%rsp)
movq 0x2478(%rsp), %rax
movq %rax, 0x4500(%rsp)
movq 0x4500(%rsp), %rax
movq %rax, 0x938(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1217682
movq 0x938(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x44fc(%rsp) # imm = 0xFFFFFFFF
movl 0x44fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x44f8(%rsp)
cmpl $0x1, 0x44f8(%rsp)
jne 0x1217682
movq 0x938(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1217653
movq 0x938(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1217651
jmp 0x1217680
movq 0x938(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4580(%rsp)
cmpq $0x0, 0x4580(%rsp)
je 0x121767e
movq 0x4580(%rsp), %rdi
callq 0x5f480
jmp 0x1217680
jmp 0x1217682
movq 0x938(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12176dd
movq %rax, %rdi
callq 0x678a0
jmp 0x12176df
leaq 0x1bb8(%rsp), %rax
movq %rax, 0x2420(%rsp)
movq 0x2420(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x928(%rsp)
leaq 0x1bb8(%rsp), %rax
movq %rax, 0x25a0(%rsp)
movq 0x25a0(%rsp), %rax
movq %rax, 0x42b0(%rsp)
movq 0x42b0(%rsp), %rax
movq %rax, 0x930(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12177ca
movq 0x930(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42ac(%rsp) # imm = 0xFFFFFFFF
movl 0x42ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42a8(%rsp)
cmpl $0x1, 0x42a8(%rsp)
jne 0x12177ca
movq 0x930(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121779b
movq 0x930(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1217799
jmp 0x12177c8
movq 0x930(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46a8(%rsp)
cmpq $0x0, 0x46a8(%rsp)
je 0x12177c6
movq 0x46a8(%rsp), %rdi
callq 0x5f480
jmp 0x12177c8
jmp 0x12177ca
movq 0x930(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1217825
movq %rax, %rdi
callq 0x678a0
movq 0x928(%rsp), %rax
movq %rax, 0x1c00(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1c08(%rsp), %eax
leaq 0x1b68(%rsp), %rdx
movq %rdx, 0x29c0(%rsp)
movq %rcx, 0x29b8(%rsp)
movl %eax, 0x29b4(%rsp)
movq 0x29b8(%rsp), %rax
movq %rax, 0x920(%rsp)
movb $0x0, 0x29b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x29b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1b68(%rsp), %r10
movq %r10, 0x2ea0(%rsp)
movl %r9d, 0x2e9c(%rsp)
movl %r8d, 0x2e98(%rsp)
movl %edi, 0x2e94(%rsp)
movq %rsi, 0x2e88(%rsp)
movq %rdx, 0x2e80(%rsp)
movl %ecx, 0x2e7c(%rsp)
movq %rax, 0x2e70(%rsp)
movq 0x2ea0(%rsp), %rcx
movq %rcx, 0x918(%rsp)
movq 0x2e88(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2e80(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2e7c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2e70(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2e9c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2e98(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2e94(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3de0(%rsp)
movl $0x10, 0x3ddc(%rsp)
movq 0x3de0(%rsp), %rax
movslq 0x3ddc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3ddc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x920(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1b90(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12179f1
movq 0x920(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1ba8(%rsp)
movb $0x1, 0x29b3(%rsp)
testb $0x1, 0x29b3(%rsp)
jne 0x1217b2c
leaq 0x1b68(%rsp), %rax
movq %rax, 0x29c8(%rsp)
movq 0x29c8(%rsp), %rax
movq %rax, 0x3e50(%rsp)
movq 0x3e50(%rsp), %rax
movq %rax, 0x910(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1217acf
movq 0x910(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e4c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e4c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e48(%rsp)
cmpl $0x1, 0x3e48(%rsp)
jne 0x1217acf
movq 0x910(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1217aa0
movq 0x910(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1217a9e
jmp 0x1217acd
movq 0x910(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48d8(%rsp)
cmpq $0x0, 0x48d8(%rsp)
je 0x1217acb
movq 0x48d8(%rsp), %rdi
callq 0x5f480
jmp 0x1217acd
jmp 0x1217acf
movq 0x910(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1217b2a
movq %rax, %rdi
callq 0x678a0
jmp 0x1217b2c
leaq 0x1b68(%rsp), %rax
movq %rax, 0x2ae0(%rsp)
movq 0x2ae0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x900(%rsp)
leaq 0x1b68(%rsp), %rax
movq %rax, 0x25a8(%rsp)
movq 0x25a8(%rsp), %rax
movq %rax, 0x42a0(%rsp)
movq 0x42a0(%rsp), %rax
movq %rax, 0x908(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1217c17
movq 0x908(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x429c(%rsp) # imm = 0xFFFFFFFF
movl 0x429c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4298(%rsp)
cmpl $0x1, 0x4298(%rsp)
jne 0x1217c17
movq 0x908(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1217be8
movq 0x908(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1217be6
jmp 0x1217c15
movq 0x908(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46b0(%rsp)
cmpq $0x0, 0x46b0(%rsp)
je 0x1217c13
movq 0x46b0(%rsp), %rdi
callq 0x5f480
jmp 0x1217c15
jmp 0x1217c17
movq 0x908(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1217c72
movq %rax, %rdi
callq 0x678a0
movq 0x900(%rsp), %rax
movq %rax, 0x1bb0(%rsp)
movl $0x0, 0x1b64(%rsp)
movl 0x1b64(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x1217cf1
movq 0x1c00(%rsp), %rsi
movslq 0x1b64(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0x1c0c(%rsp), %rdx
callq 0x1278060
movq 0x1bb0(%rsp), %rax
movslq 0x1b64(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1b64(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b64(%rsp)
jmp 0x1217c8d
jmp 0x1217cf3
movl 0x1c08(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c08(%rsp)
jmp 0x12173d4
movl $0x0, 0x1f24(%rsp)
jmp 0x1227e25
movl $0x0, 0x1b60(%rsp)
movl 0x1b60(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x121869a
movq 0x1f18(%rsp), %rcx
movl 0x1b60(%rsp), %eax
leaq 0x1b10(%rsp), %rdx
movq %rdx, 0x2288(%rsp)
movq %rcx, 0x2280(%rsp)
movl %eax, 0x227c(%rsp)
movq 0x2280(%rsp), %rax
movq %rax, 0x8f8(%rsp)
movb $0x0, 0x227b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x227c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1b10(%rsp), %r10
movq %r10, 0x3488(%rsp)
movl %r9d, 0x3484(%rsp)
movl %r8d, 0x3480(%rsp)
movl %edi, 0x347c(%rsp)
movq %rsi, 0x3470(%rsp)
movq %rdx, 0x3468(%rsp)
movl %ecx, 0x3464(%rsp)
movq %rax, 0x3458(%rsp)
movq 0x3488(%rsp), %rcx
movq %rcx, 0x8f0(%rsp)
movq 0x3470(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3468(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3464(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3458(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3484(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3480(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x347c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c30(%rsp)
movl $0x10, 0x3c2c(%rsp)
movq 0x3c30(%rsp), %rax
movslq 0x3c2c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c2c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x8f8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1b38(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1217ef4
movq 0x8f8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1b50(%rsp)
movb $0x1, 0x227b(%rsp)
testb $0x1, 0x227b(%rsp)
jne 0x121802f
leaq 0x1b10(%rsp), %rax
movq %rax, 0x2480(%rsp)
movq 0x2480(%rsp), %rax
movq %rax, 0x44f0(%rsp)
movq 0x44f0(%rsp), %rax
movq %rax, 0x8e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1217fd2
movq 0x8e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x44ec(%rsp) # imm = 0xFFFFFFFF
movl 0x44ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x44e8(%rsp)
cmpl $0x1, 0x44e8(%rsp)
jne 0x1217fd2
movq 0x8e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1217fa3
movq 0x8e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1217fa1
jmp 0x1217fd0
movq 0x8e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4588(%rsp)
cmpq $0x0, 0x4588(%rsp)
je 0x1217fce
movq 0x4588(%rsp), %rdi
callq 0x5f480
jmp 0x1217fd0
jmp 0x1217fd2
movq 0x8e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121802d
movq %rax, %rdi
callq 0x678a0
jmp 0x121802f
leaq 0x1b10(%rsp), %rax
movq %rax, 0x2418(%rsp)
movq 0x2418(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8d8(%rsp)
leaq 0x1b10(%rsp), %rax
movq %rax, 0x25b0(%rsp)
movq 0x25b0(%rsp), %rax
movq %rax, 0x4290(%rsp)
movq 0x4290(%rsp), %rax
movq %rax, 0x8e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121811a
movq 0x8e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x428c(%rsp) # imm = 0xFFFFFFFF
movl 0x428c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4288(%rsp)
cmpl $0x1, 0x4288(%rsp)
jne 0x121811a
movq 0x8e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12180eb
movq 0x8e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12180e9
jmp 0x1218118
movq 0x8e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46b8(%rsp)
cmpq $0x0, 0x46b8(%rsp)
je 0x1218116
movq 0x46b8(%rsp), %rdi
callq 0x5f480
jmp 0x1218118
jmp 0x121811a
movq 0x8e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1218175
movq %rax, %rdi
callq 0x678a0
movq 0x8d8(%rsp), %rax
movq %rax, 0x1b58(%rsp)
movq 0x1f10(%rsp), %rcx
movslq 0x1b60(%rsp), %rax
movq %rcx, 0x2c88(%rsp)
movq %rax, 0x2c80(%rsp)
movq 0x2c88(%rsp), %rax
movq (%rax), %rax
movq 0x2c80(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x1b0c(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1b60(%rsp), %eax
leaq 0x1ab8(%rsp), %rdx
movq %rdx, 0x29a0(%rsp)
movq %rcx, 0x2998(%rsp)
movl %eax, 0x2994(%rsp)
movq 0x2998(%rsp), %rax
movq %rax, 0x8d0(%rsp)
movb $0x0, 0x2993(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2994(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1ab8(%rsp), %r10
movq %r10, 0x2ed8(%rsp)
movl %r9d, 0x2ed4(%rsp)
movl %r8d, 0x2ed0(%rsp)
movl %edi, 0x2ecc(%rsp)
movq %rsi, 0x2ec0(%rsp)
movq %rdx, 0x2eb8(%rsp)
movl %ecx, 0x2eb4(%rsp)
movq %rax, 0x2ea8(%rsp)
movq 0x2ed8(%rsp), %rcx
movq %rcx, 0x8c8(%rsp)
movq 0x2ec0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2eb8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2eb4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ea8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2ed4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2ed0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2ecc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3dd0(%rsp)
movl $0x10, 0x3dcc(%rsp)
movq 0x3dd0(%rsp), %rax
movslq 0x3dcc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3dcc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x8d0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1ae0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1218382
movq 0x8d0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1af8(%rsp)
movb $0x1, 0x2993(%rsp)
testb $0x1, 0x2993(%rsp)
jne 0x12184bd
leaq 0x1ab8(%rsp), %rax
movq %rax, 0x29a8(%rsp)
movq 0x29a8(%rsp), %rax
movq %rax, 0x3e60(%rsp)
movq 0x3e60(%rsp), %rax
movq %rax, 0x8c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1218460
movq 0x8c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e5c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e5c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e58(%rsp)
cmpl $0x1, 0x3e58(%rsp)
jne 0x1218460
movq 0x8c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1218431
movq 0x8c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121842f
jmp 0x121845e
movq 0x8c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48d0(%rsp)
cmpq $0x0, 0x48d0(%rsp)
je 0x121845c
movq 0x48d0(%rsp), %rdi
callq 0x5f480
jmp 0x121845e
jmp 0x1218460
movq 0x8c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12184bb
movq %rax, %rdi
callq 0x678a0
jmp 0x12184bd
leaq 0x1ab8(%rsp), %rax
movq %rax, 0x2ad8(%rsp)
movq 0x2ad8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8b0(%rsp)
leaq 0x1ab8(%rsp), %rax
movq %rax, 0x25b8(%rsp)
movq 0x25b8(%rsp), %rax
movq %rax, 0x4280(%rsp)
movq 0x4280(%rsp), %rax
movq %rax, 0x8b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12185a8
movq 0x8b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x427c(%rsp) # imm = 0xFFFFFFFF
movl 0x427c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4278(%rsp)
cmpl $0x1, 0x4278(%rsp)
jne 0x12185a8
movq 0x8b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1218579
movq 0x8b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1218577
jmp 0x12185a6
movq 0x8b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46c0(%rsp)
cmpq $0x0, 0x46c0(%rsp)
je 0x12185a4
movq 0x46c0(%rsp), %rdi
callq 0x5f480
jmp 0x12185a6
jmp 0x12185a8
movq 0x8b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1218603
movq %rax, %rdi
callq 0x678a0
movq 0x8b0(%rsp), %rax
movq %rax, 0x1b00(%rsp)
movl $0x0, 0x1ab4(%rsp)
movl 0x1ab4(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x1218682
movq 0x1b58(%rsp), %rsi
movslq 0x1ab4(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0x1b0c(%rsp), %rdx
callq 0x1278060
movq 0x1b00(%rsp), %rax
movslq 0x1ab4(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1ab4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1ab4(%rsp)
jmp 0x121861e
jmp 0x1218684
movl 0x1b60(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b60(%rsp)
jmp 0x1217d24
movl $0x0, 0x1f24(%rsp)
jmp 0x1227e25
jmp 0x1227e1a
movq 0x1f18(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x122312c
movq 0x1f10(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x121961b
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed4(%rsp), %ecx
movl 0x1ed0(%rsp), %r8d
movq 0x1ee0(%rsp), %r9
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6fb30
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fd8(%rsp)
movq 0x1fd8(%rsp), %rcx
movq %rcx, 0x8a0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x8af(%rsp)
je 0x1218776
movq 0x8a0(%rsp), %rax
movq %rax, 0x2d10(%rsp)
movq 0x2d10(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x8af(%rsp)
movb 0x8af(%rsp), %al
testb $0x1, %al
jne 0x1218783
jmp 0x1218793
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1227e25
movl $0x0, 0x1ab0(%rsp)
movl 0x1ab0(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x121960b
movq 0x1f18(%rsp), %rcx
movl 0x1ab0(%rsp), %eax
leaq 0x1a60(%rsp), %rdx
movq %rdx, 0x2270(%rsp)
movq %rcx, 0x2268(%rsp)
movl %eax, 0x2264(%rsp)
movq 0x2268(%rsp), %rax
movq %rax, 0x898(%rsp)
movb $0x0, 0x2263(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2264(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1a60(%rsp), %r10
movq %r10, 0x34c0(%rsp)
movl %r9d, 0x34bc(%rsp)
movl %r8d, 0x34b8(%rsp)
movl %edi, 0x34b4(%rsp)
movq %rsi, 0x34a8(%rsp)
movq %rdx, 0x34a0(%rsp)
movl %ecx, 0x349c(%rsp)
movq %rax, 0x3490(%rsp)
movq 0x34c0(%rsp), %rcx
movq %rcx, 0x890(%rsp)
movq 0x34a8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x34a0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x349c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3490(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x34bc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x34b8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x34b4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c20(%rsp)
movl $0x10, 0x3c1c(%rsp)
movq 0x3c20(%rsp), %rax
movslq 0x3c1c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c1c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x898(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1a88(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x121896e
movq 0x898(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1aa0(%rsp)
movb $0x1, 0x2263(%rsp)
testb $0x1, 0x2263(%rsp)
jne 0x1218aa9
leaq 0x1a60(%rsp), %rax
movq %rax, 0x2488(%rsp)
movq 0x2488(%rsp), %rax
movq %rax, 0x44e0(%rsp)
movq 0x44e0(%rsp), %rax
movq %rax, 0x888(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1218a4c
movq 0x888(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x44dc(%rsp) # imm = 0xFFFFFFFF
movl 0x44dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x44d8(%rsp)
cmpl $0x1, 0x44d8(%rsp)
jne 0x1218a4c
movq 0x888(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1218a1d
movq 0x888(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1218a1b
jmp 0x1218a4a
movq 0x888(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4590(%rsp)
cmpq $0x0, 0x4590(%rsp)
je 0x1218a48
movq 0x4590(%rsp), %rdi
callq 0x5f480
jmp 0x1218a4a
jmp 0x1218a4c
movq 0x888(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1218aa7
movq %rax, %rdi
callq 0x678a0
jmp 0x1218aa9
leaq 0x1a60(%rsp), %rax
movq %rax, 0x2410(%rsp)
movq 0x2410(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x878(%rsp)
leaq 0x1a60(%rsp), %rax
movq %rax, 0x25c0(%rsp)
movq 0x25c0(%rsp), %rax
movq %rax, 0x4270(%rsp)
movq 0x4270(%rsp), %rax
movq %rax, 0x880(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1218b94
movq 0x880(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x426c(%rsp) # imm = 0xFFFFFFFF
movl 0x426c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4268(%rsp)
cmpl $0x1, 0x4268(%rsp)
jne 0x1218b94
movq 0x880(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1218b65
movq 0x880(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1218b63
jmp 0x1218b92
movq 0x880(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46c8(%rsp)
cmpq $0x0, 0x46c8(%rsp)
je 0x1218b90
movq 0x46c8(%rsp), %rdi
callq 0x5f480
jmp 0x1218b92
jmp 0x1218b94
movq 0x880(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1218bef
movq %rax, %rdi
callq 0x678a0
movq 0x878(%rsp), %rax
movq %rax, 0x1aa8(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1ab0(%rsp), %eax
leaq 0x1a10(%rsp), %rdx
movq %rdx, 0x2258(%rsp)
movq %rcx, 0x2250(%rsp)
movl %eax, 0x224c(%rsp)
movq 0x2250(%rsp), %rax
movq %rax, 0x870(%rsp)
movb $0x0, 0x224b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x224c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1a10(%rsp), %r10
movq %r10, 0x34f8(%rsp)
movl %r9d, 0x34f4(%rsp)
movl %r8d, 0x34f0(%rsp)
movl %edi, 0x34ec(%rsp)
movq %rsi, 0x34e0(%rsp)
movq %rdx, 0x34d8(%rsp)
movl %ecx, 0x34d4(%rsp)
movq %rax, 0x34c8(%rsp)
movq 0x34f8(%rsp), %rcx
movq %rcx, 0x868(%rsp)
movq 0x34e0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x34d8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x34d4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x34c8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x34f4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x34f0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x34ec(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c10(%rsp)
movl $0x10, 0x3c0c(%rsp)
movq 0x3c10(%rsp), %rax
movslq 0x3c0c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c0c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x870(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1a38(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1218dbb
movq 0x870(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1a50(%rsp)
movb $0x1, 0x224b(%rsp)
testb $0x1, 0x224b(%rsp)
jne 0x1218ef6
leaq 0x1a10(%rsp), %rax
movq %rax, 0x2490(%rsp)
movq 0x2490(%rsp), %rax
movq %rax, 0x44d0(%rsp)
movq 0x44d0(%rsp), %rax
movq %rax, 0x860(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1218e99
movq 0x860(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x44cc(%rsp) # imm = 0xFFFFFFFF
movl 0x44cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x44c8(%rsp)
cmpl $0x1, 0x44c8(%rsp)
jne 0x1218e99
movq 0x860(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1218e6a
movq 0x860(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1218e68
jmp 0x1218e97
movq 0x860(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4598(%rsp)
cmpq $0x0, 0x4598(%rsp)
je 0x1218e95
movq 0x4598(%rsp), %rdi
callq 0x5f480
jmp 0x1218e97
jmp 0x1218e99
movq 0x860(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1218ef4
movq %rax, %rdi
callq 0x678a0
jmp 0x1218ef6
leaq 0x1a10(%rsp), %rax
movq %rax, 0x2408(%rsp)
movq 0x2408(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x850(%rsp)
leaq 0x1a10(%rsp), %rax
movq %rax, 0x25c8(%rsp)
movq 0x25c8(%rsp), %rax
movq %rax, 0x4260(%rsp)
movq 0x4260(%rsp), %rax
movq %rax, 0x858(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1218fe1
movq 0x858(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x425c(%rsp) # imm = 0xFFFFFFFF
movl 0x425c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4258(%rsp)
cmpl $0x1, 0x4258(%rsp)
jne 0x1218fe1
movq 0x858(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1218fb2
movq 0x858(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1218fb0
jmp 0x1218fdf
movq 0x858(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46d0(%rsp)
cmpq $0x0, 0x46d0(%rsp)
je 0x1218fdd
movq 0x46d0(%rsp), %rdi
callq 0x5f480
jmp 0x1218fdf
jmp 0x1218fe1
movq 0x858(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121903c
movq %rax, %rdi
callq 0x678a0
movq 0x850(%rsp), %rax
movq %rax, 0x1a58(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1ab0(%rsp), %eax
leaq 0x19c0(%rsp), %rdx
movq %rdx, 0x2980(%rsp)
movq %rcx, 0x2978(%rsp)
movl %eax, 0x2974(%rsp)
movq 0x2978(%rsp), %rax
movq %rax, 0x848(%rsp)
movb $0x0, 0x2973(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2974(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x19c0(%rsp), %r10
movq %r10, 0x2f10(%rsp)
movl %r9d, 0x2f0c(%rsp)
movl %r8d, 0x2f08(%rsp)
movl %edi, 0x2f04(%rsp)
movq %rsi, 0x2ef8(%rsp)
movq %rdx, 0x2ef0(%rsp)
movl %ecx, 0x2eec(%rsp)
movq %rax, 0x2ee0(%rsp)
movq 0x2f10(%rsp), %rcx
movq %rcx, 0x840(%rsp)
movq 0x2ef8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2ef0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2eec(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ee0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2f0c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f08(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f04(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3dc0(%rsp)
movl $0x10, 0x3dbc(%rsp)
movq 0x3dc0(%rsp), %rax
movslq 0x3dbc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3dbc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x848(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x19e8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1219208
movq 0x848(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1a00(%rsp)
movb $0x1, 0x2973(%rsp)
testb $0x1, 0x2973(%rsp)
jne 0x1219343
leaq 0x19c0(%rsp), %rax
movq %rax, 0x2988(%rsp)
movq 0x2988(%rsp), %rax
movq %rax, 0x3e70(%rsp)
movq 0x3e70(%rsp), %rax
movq %rax, 0x838(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12192e6
movq 0x838(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e6c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e6c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e68(%rsp)
cmpl $0x1, 0x3e68(%rsp)
jne 0x12192e6
movq 0x838(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12192b7
movq 0x838(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12192b5
jmp 0x12192e4
movq 0x838(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48c8(%rsp)
cmpq $0x0, 0x48c8(%rsp)
je 0x12192e2
movq 0x48c8(%rsp), %rdi
callq 0x5f480
jmp 0x12192e4
jmp 0x12192e6
movq 0x838(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1219341
movq %rax, %rdi
callq 0x678a0
jmp 0x1219343
leaq 0x19c0(%rsp), %rax
movq %rax, 0x2ad0(%rsp)
movq 0x2ad0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x828(%rsp)
leaq 0x19c0(%rsp), %rax
movq %rax, 0x25d0(%rsp)
movq 0x25d0(%rsp), %rax
movq %rax, 0x4250(%rsp)
movq 0x4250(%rsp), %rax
movq %rax, 0x830(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121942e
movq 0x830(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x424c(%rsp) # imm = 0xFFFFFFFF
movl 0x424c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4248(%rsp)
cmpl $0x1, 0x4248(%rsp)
jne 0x121942e
movq 0x830(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12193ff
movq 0x830(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12193fd
jmp 0x121942c
movq 0x830(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46d8(%rsp)
cmpq $0x0, 0x46d8(%rsp)
je 0x121942a
movq 0x46d8(%rsp), %rdi
callq 0x5f480
jmp 0x121942c
jmp 0x121942e
movq 0x830(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1219489
movq %rax, %rdi
callq 0x678a0
movq 0x828(%rsp), %rax
movq %rax, 0x1a08(%rsp)
movl $0x0, 0x19bc(%rsp)
movl 0x19bc(%rsp), %eax
cmpl 0x1ed4(%rsp), %eax
jge 0x12195f3
movl $0x0, 0x19b8(%rsp)
movl 0x19b8(%rsp), %eax
cmpl 0x1ed8(%rsp), %eax
jge 0x12195bc
movq 0x1aa8(%rsp), %rax
movslq 0x19b8(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x19b4(%rsp)
movl $0x0, 0x19b0(%rsp)
movl 0x19b0(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x1219564
movq 0x1a58(%rsp), %rdx
movslq 0x19b0(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0x19b4(%rsp), %rsi
callq 0x1278060
movq 0x1a08(%rsp), %rax
movslq 0x19b0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x19b0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x19b0(%rsp)
jmp 0x1219500
movl 0x1edc(%rsp), %ecx
movq 0x1a58(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1a58(%rsp)
movl 0x1edc(%rsp), %ecx
movq 0x1a08(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1a08(%rsp)
movl 0x19b8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x19b8(%rsp)
jmp 0x12194c3
movl 0x1ed8(%rsp), %ecx
movq 0x1aa8(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1aa8(%rsp)
movl 0x19bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x19bc(%rsp)
jmp 0x12194a4
jmp 0x12195f5
movl 0x1ab0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1ab0(%rsp)
jmp 0x121879e
movl $0x0, 0x1f24(%rsp)
jmp 0x1227e25
movq 0x1f10(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x12212f1
cmpl $0x1, 0x1edc(%rsp)
jne 0x121a4ae
cmpl $0x1, 0x1ed8(%rsp)
jne 0x121a4ae
movl 0x1ed0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jne 0x121a4ae
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1eec(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fd0(%rsp)
movq 0x1fd0(%rsp), %rcx
movq %rcx, 0x818(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x827(%rsp)
je 0x12196f4
movq 0x818(%rsp), %rax
movq %rax, 0x2d18(%rsp)
movq 0x2d18(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x827(%rsp)
movb 0x827(%rsp), %al
testb $0x1, %al
jne 0x1219701
jmp 0x1219711
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1227e25
movl $0x0, 0x19ac(%rsp)
movl 0x19ac(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x121a49e
movq 0x1f18(%rsp), %rcx
movl 0x19ac(%rsp), %eax
leaq 0x1958(%rsp), %rdx
movq %rdx, 0x2240(%rsp)
movq %rcx, 0x2238(%rsp)
movl %eax, 0x2234(%rsp)
movq 0x2238(%rsp), %rax
movq %rax, 0x810(%rsp)
movb $0x0, 0x2233(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2234(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1958(%rsp), %r10
movq %r10, 0x3530(%rsp)
movl %r9d, 0x352c(%rsp)
movl %r8d, 0x3528(%rsp)
movl %edi, 0x3524(%rsp)
movq %rsi, 0x3518(%rsp)
movq %rdx, 0x3510(%rsp)
movl %ecx, 0x350c(%rsp)
movq %rax, 0x3500(%rsp)
movq 0x3530(%rsp), %rcx
movq %rcx, 0x808(%rsp)
movq 0x3518(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3510(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x350c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3500(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x352c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3528(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3524(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c00(%rsp)
movl $0x10, 0x3bfc(%rsp)
movq 0x3c00(%rsp), %rax
movslq 0x3bfc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bfc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x810(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1980(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12198ec
movq 0x810(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1998(%rsp)
movb $0x1, 0x2233(%rsp)
testb $0x1, 0x2233(%rsp)
jne 0x1219a27
leaq 0x1958(%rsp), %rax
movq %rax, 0x2498(%rsp)
movq 0x2498(%rsp), %rax
movq %rax, 0x44c0(%rsp)
movq 0x44c0(%rsp), %rax
movq %rax, 0x800(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12199ca
movq 0x800(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x44bc(%rsp) # imm = 0xFFFFFFFF
movl 0x44bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x44b8(%rsp)
cmpl $0x1, 0x44b8(%rsp)
jne 0x12199ca
movq 0x800(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121999b
movq 0x800(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1219999
jmp 0x12199c8
movq 0x800(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45a0(%rsp)
cmpq $0x0, 0x45a0(%rsp)
je 0x12199c6
movq 0x45a0(%rsp), %rdi
callq 0x5f480
jmp 0x12199c8
jmp 0x12199ca
movq 0x800(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1219a25
movq %rax, %rdi
callq 0x678a0
jmp 0x1219a27
leaq 0x1958(%rsp), %rax
movq %rax, 0x2400(%rsp)
movq 0x2400(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7f0(%rsp)
leaq 0x1958(%rsp), %rax
movq %rax, 0x25d8(%rsp)
movq 0x25d8(%rsp), %rax
movq %rax, 0x4240(%rsp)
movq 0x4240(%rsp), %rax
movq %rax, 0x7f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1219b12
movq 0x7f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x423c(%rsp) # imm = 0xFFFFFFFF
movl 0x423c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4238(%rsp)
cmpl $0x1, 0x4238(%rsp)
jne 0x1219b12
movq 0x7f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1219ae3
movq 0x7f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1219ae1
jmp 0x1219b10
movq 0x7f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46e0(%rsp)
cmpq $0x0, 0x46e0(%rsp)
je 0x1219b0e
movq 0x46e0(%rsp), %rdi
callq 0x5f480
jmp 0x1219b10
jmp 0x1219b12
movq 0x7f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1219b6d
movq %rax, %rdi
callq 0x678a0
movq 0x7f0(%rsp), %rax
movq %rax, 0x19a0(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x19ac(%rsp), %eax
leaq 0x1908(%rsp), %rdx
movq %rdx, 0x2228(%rsp)
movq %rcx, 0x2220(%rsp)
movl %eax, 0x221c(%rsp)
movq 0x2220(%rsp), %rax
movq %rax, 0x7e8(%rsp)
movb $0x0, 0x221b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x221c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1908(%rsp), %r10
movq %r10, 0x3568(%rsp)
movl %r9d, 0x3564(%rsp)
movl %r8d, 0x3560(%rsp)
movl %edi, 0x355c(%rsp)
movq %rsi, 0x3550(%rsp)
movq %rdx, 0x3548(%rsp)
movl %ecx, 0x3544(%rsp)
movq %rax, 0x3538(%rsp)
movq 0x3568(%rsp), %rcx
movq %rcx, 0x7e0(%rsp)
movq 0x3550(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3548(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3544(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3538(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3564(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3560(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x355c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3bf0(%rsp)
movl $0x10, 0x3bec(%rsp)
movq 0x3bf0(%rsp), %rax
movslq 0x3bec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7e8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1930(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1219d39
movq 0x7e8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1948(%rsp)
movb $0x1, 0x221b(%rsp)
testb $0x1, 0x221b(%rsp)
jne 0x1219e74
leaq 0x1908(%rsp), %rax
movq %rax, 0x24a0(%rsp)
movq 0x24a0(%rsp), %rax
movq %rax, 0x44b0(%rsp)
movq 0x44b0(%rsp), %rax
movq %rax, 0x7d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1219e17
movq 0x7d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x44ac(%rsp) # imm = 0xFFFFFFFF
movl 0x44ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x44a8(%rsp)
cmpl $0x1, 0x44a8(%rsp)
jne 0x1219e17
movq 0x7d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1219de8
movq 0x7d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1219de6
jmp 0x1219e15
movq 0x7d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45a8(%rsp)
cmpq $0x0, 0x45a8(%rsp)
je 0x1219e13
movq 0x45a8(%rsp), %rdi
callq 0x5f480
jmp 0x1219e15
jmp 0x1219e17
movq 0x7d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1219e72
movq %rax, %rdi
callq 0x678a0
jmp 0x1219e74
leaq 0x1908(%rsp), %rax
movq %rax, 0x23f8(%rsp)
movq 0x23f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7c8(%rsp)
leaq 0x1908(%rsp), %rax
movq %rax, 0x25e0(%rsp)
movq 0x25e0(%rsp), %rax
movq %rax, 0x4230(%rsp)
movq 0x4230(%rsp), %rax
movq %rax, 0x7d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1219f5f
movq 0x7d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x422c(%rsp) # imm = 0xFFFFFFFF
movl 0x422c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4228(%rsp)
cmpl $0x1, 0x4228(%rsp)
jne 0x1219f5f
movq 0x7d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1219f30
movq 0x7d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1219f2e
jmp 0x1219f5d
movq 0x7d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46e8(%rsp)
cmpq $0x0, 0x46e8(%rsp)
je 0x1219f5b
movq 0x46e8(%rsp), %rdi
callq 0x5f480
jmp 0x1219f5d
jmp 0x1219f5f
movq 0x7d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1219fba
movq %rax, %rdi
callq 0x678a0
movq 0x7c8(%rsp), %rax
movq %rax, 0x1950(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x19ac(%rsp), %eax
leaq 0x18b8(%rsp), %rdx
movq %rdx, 0x2960(%rsp)
movq %rcx, 0x2958(%rsp)
movl %eax, 0x2954(%rsp)
movq 0x2958(%rsp), %rax
movq %rax, 0x7c0(%rsp)
movb $0x0, 0x2953(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2954(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x18b8(%rsp), %r10
movq %r10, 0x2f48(%rsp)
movl %r9d, 0x2f44(%rsp)
movl %r8d, 0x2f40(%rsp)
movl %edi, 0x2f3c(%rsp)
movq %rsi, 0x2f30(%rsp)
movq %rdx, 0x2f28(%rsp)
movl %ecx, 0x2f24(%rsp)
movq %rax, 0x2f18(%rsp)
movq 0x2f48(%rsp), %rcx
movq %rcx, 0x7b8(%rsp)
movq 0x2f30(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2f28(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2f24(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2f18(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2f44(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f40(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f3c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3db0(%rsp)
movl $0x10, 0x3dac(%rsp)
movq 0x3db0(%rsp), %rax
movslq 0x3dac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3dac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7c0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x18e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x121a186
movq 0x7c0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x18f8(%rsp)
movb $0x1, 0x2953(%rsp)
testb $0x1, 0x2953(%rsp)
jne 0x121a2c1
leaq 0x18b8(%rsp), %rax
movq %rax, 0x2968(%rsp)
movq 0x2968(%rsp), %rax
movq %rax, 0x3e80(%rsp)
movq 0x3e80(%rsp), %rax
movq %rax, 0x7b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121a264
movq 0x7b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e7c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e7c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e78(%rsp)
cmpl $0x1, 0x3e78(%rsp)
jne 0x121a264
movq 0x7b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121a235
movq 0x7b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121a233
jmp 0x121a262
movq 0x7b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48c0(%rsp)
cmpq $0x0, 0x48c0(%rsp)
je 0x121a260
movq 0x48c0(%rsp), %rdi
callq 0x5f480
jmp 0x121a262
jmp 0x121a264
movq 0x7b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121a2bf
movq %rax, %rdi
callq 0x678a0
jmp 0x121a2c1
leaq 0x18b8(%rsp), %rax
movq %rax, 0x2ac8(%rsp)
movq 0x2ac8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7a0(%rsp)
leaq 0x18b8(%rsp), %rax
movq %rax, 0x25e8(%rsp)
movq 0x25e8(%rsp), %rax
movq %rax, 0x4220(%rsp)
movq 0x4220(%rsp), %rax
movq %rax, 0x7a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121a3ac
movq 0x7a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x421c(%rsp) # imm = 0xFFFFFFFF
movl 0x421c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4218(%rsp)
cmpl $0x1, 0x4218(%rsp)
jne 0x121a3ac
movq 0x7a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121a37d
movq 0x7a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121a37b
jmp 0x121a3aa
movq 0x7a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46f0(%rsp)
cmpq $0x0, 0x46f0(%rsp)
je 0x121a3a8
movq 0x46f0(%rsp), %rdi
callq 0x5f480
jmp 0x121a3aa
jmp 0x121a3ac
movq 0x7a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121a407
movq %rax, %rdi
callq 0x678a0
movq 0x7a0(%rsp), %rax
movq %rax, 0x1900(%rsp)
movl $0x0, 0x18b4(%rsp)
movl 0x18b4(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x121a486
movq 0x19a0(%rsp), %rsi
movslq 0x18b4(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1950(%rsp), %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x1278060
movq 0x1900(%rsp), %rax
movslq 0x18b4(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x18b4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x18b4(%rsp)
jmp 0x121a422
jmp 0x121a488
movl 0x19ac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x19ac(%rsp)
jmp 0x121971c
movl $0x0, 0x1f24(%rsp)
jmp 0x1227e25
movl 0x1edc(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jne 0x121af1a
movl 0x1ed8(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jne 0x121af1a
cmpl $0x1, 0x1ed0(%rsp)
jne 0x121af1a
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1eec(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fc8(%rsp)
movq 0x1fc8(%rsp), %rcx
movq %rcx, 0x790(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x79f(%rsp)
je 0x121a57b
movq 0x790(%rsp), %rax
movq %rax, 0x2d20(%rsp)
movq 0x2d20(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x79f(%rsp)
movb 0x79f(%rsp), %al
testb $0x1, %al
jne 0x121a588
jmp 0x121a598
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1227e25
movl $0x0, 0x18b0(%rsp)
movl 0x18b0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x121af0a
movq 0x1f18(%rsp), %rcx
movl 0x18b0(%rsp), %eax
leaq 0x1860(%rsp), %rdx
movq %rdx, 0x2210(%rsp)
movq %rcx, 0x2208(%rsp)
movl %eax, 0x2204(%rsp)
movq 0x2208(%rsp), %rax
movq %rax, 0x788(%rsp)
movb $0x0, 0x2203(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2204(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1860(%rsp), %r10
movq %r10, 0x35a0(%rsp)
movl %r9d, 0x359c(%rsp)
movl %r8d, 0x3598(%rsp)
movl %edi, 0x3594(%rsp)
movq %rsi, 0x3588(%rsp)
movq %rdx, 0x3580(%rsp)
movl %ecx, 0x357c(%rsp)
movq %rax, 0x3570(%rsp)
movq 0x35a0(%rsp), %rcx
movq %rcx, 0x780(%rsp)
movq 0x3588(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3580(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x357c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3570(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x359c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3598(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3594(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3be0(%rsp)
movl $0x10, 0x3bdc(%rsp)
movq 0x3be0(%rsp), %rax
movslq 0x3bdc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bdc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x788(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1888(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x121a773
movq 0x788(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x18a0(%rsp)
movb $0x1, 0x2203(%rsp)
testb $0x1, 0x2203(%rsp)
jne 0x121a8ae
leaq 0x1860(%rsp), %rax
movq %rax, 0x24a8(%rsp)
movq 0x24a8(%rsp), %rax
movq %rax, 0x44a0(%rsp)
movq 0x44a0(%rsp), %rax
movq %rax, 0x778(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121a851
movq 0x778(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x449c(%rsp) # imm = 0xFFFFFFFF
movl 0x449c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4498(%rsp)
cmpl $0x1, 0x4498(%rsp)
jne 0x121a851
movq 0x778(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121a822
movq 0x778(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121a820
jmp 0x121a84f
movq 0x778(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45b0(%rsp)
cmpq $0x0, 0x45b0(%rsp)
je 0x121a84d
movq 0x45b0(%rsp), %rdi
callq 0x5f480
jmp 0x121a84f
jmp 0x121a851
movq 0x778(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121a8ac
movq %rax, %rdi
callq 0x678a0
jmp 0x121a8ae
leaq 0x1860(%rsp), %rax
movq %rax, 0x23f0(%rsp)
movq 0x23f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x768(%rsp)
leaq 0x1860(%rsp), %rax
movq %rax, 0x25f0(%rsp)
movq 0x25f0(%rsp), %rax
movq %rax, 0x4210(%rsp)
movq 0x4210(%rsp), %rax
movq %rax, 0x770(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121a999
movq 0x770(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x420c(%rsp) # imm = 0xFFFFFFFF
movl 0x420c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4208(%rsp)
cmpl $0x1, 0x4208(%rsp)
jne 0x121a999
movq 0x770(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121a96a
movq 0x770(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121a968
jmp 0x121a997
movq 0x770(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46f8(%rsp)
cmpq $0x0, 0x46f8(%rsp)
je 0x121a995
movq 0x46f8(%rsp), %rdi
callq 0x5f480
jmp 0x121a997
jmp 0x121a999
movq 0x770(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121a9f4
movq %rax, %rdi
callq 0x678a0
movq 0x768(%rsp), %rax
movq %rax, 0x18a8(%rsp)
movq 0x1f10(%rsp), %rax
movq %rax, 0x23e8(%rsp)
movq 0x23e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1858(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x18b0(%rsp), %eax
leaq 0x1808(%rsp), %rdx
movq %rdx, 0x2940(%rsp)
movq %rcx, 0x2938(%rsp)
movl %eax, 0x2934(%rsp)
movq 0x2938(%rsp), %rax
movq %rax, 0x760(%rsp)
movb $0x0, 0x2933(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2934(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1808(%rsp), %r10
movq %r10, 0x2f80(%rsp)
movl %r9d, 0x2f7c(%rsp)
movl %r8d, 0x2f78(%rsp)
movl %edi, 0x2f74(%rsp)
movq %rsi, 0x2f68(%rsp)
movq %rdx, 0x2f60(%rsp)
movl %ecx, 0x2f5c(%rsp)
movq %rax, 0x2f50(%rsp)
movq 0x2f80(%rsp), %rcx
movq %rcx, 0x758(%rsp)
movq 0x2f68(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2f60(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2f5c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2f50(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2f7c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f78(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f74(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3da0(%rsp)
movl $0x10, 0x3d9c(%rsp)
movq 0x3da0(%rsp), %rax
movslq 0x3d9c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d9c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x760(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1830(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x121abe3
movq 0x760(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1848(%rsp)
movb $0x1, 0x2933(%rsp)
testb $0x1, 0x2933(%rsp)
jne 0x121ad1e
leaq 0x1808(%rsp), %rax
movq %rax, 0x2948(%rsp)
movq 0x2948(%rsp), %rax
movq %rax, 0x3e90(%rsp)
movq 0x3e90(%rsp), %rax
movq %rax, 0x750(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121acc1
movq 0x750(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e8c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e8c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e88(%rsp)
cmpl $0x1, 0x3e88(%rsp)
jne 0x121acc1
movq 0x750(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121ac92
movq 0x750(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121ac90
jmp 0x121acbf
movq 0x750(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48b8(%rsp)
cmpq $0x0, 0x48b8(%rsp)
je 0x121acbd
movq 0x48b8(%rsp), %rdi
callq 0x5f480
jmp 0x121acbf
jmp 0x121acc1
movq 0x750(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121ad1c
movq %rax, %rdi
callq 0x678a0
jmp 0x121ad1e
leaq 0x1808(%rsp), %rax
movq %rax, 0x2ac0(%rsp)
movq 0x2ac0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x740(%rsp)
leaq 0x1808(%rsp), %rax
movq %rax, 0x25f8(%rsp)
movq 0x25f8(%rsp), %rax
movq %rax, 0x4200(%rsp)
movq 0x4200(%rsp), %rax
movq %rax, 0x748(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121ae09
movq 0x748(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41fc(%rsp) # imm = 0xFFFFFFFF
movl 0x41fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41f8(%rsp)
cmpl $0x1, 0x41f8(%rsp)
jne 0x121ae09
movq 0x748(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121adda
movq 0x748(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121add8
jmp 0x121ae07
movq 0x748(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4700(%rsp)
cmpq $0x0, 0x4700(%rsp)
je 0x121ae05
movq 0x4700(%rsp), %rdi
callq 0x5f480
jmp 0x121ae07
jmp 0x121ae09
movq 0x748(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121ae64
movq %rax, %rdi
callq 0x678a0
movq 0x740(%rsp), %rax
movq %rax, 0x1850(%rsp)
movl $0x0, 0x1804(%rsp)
movl 0x1804(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x121aef2
movq 0x18a8(%rsp), %rsi
movslq 0x1804(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1858(%rsp), %rdx
movslq 0x1804(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x1278060
movq 0x1850(%rsp), %rax
movslq 0x1804(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1804(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1804(%rsp)
jmp 0x121ae7f
jmp 0x121aef4
movl 0x18b0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x18b0(%rsp)
jmp 0x121a5a3
movl $0x0, 0x1f24(%rsp)
jmp 0x1227e25
cmpl $0x1, 0x1ef8(%rsp)
jne 0x121bd9b
cmpl $0x1, 0x1ef4(%rsp)
jne 0x121bd9b
movl 0x1ed0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jne 0x121bd9b
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed0(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fc0(%rsp)
movq 0x1fc0(%rsp), %rcx
movq %rcx, 0x730(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x73f(%rsp)
je 0x121afe1
movq 0x730(%rsp), %rax
movq %rax, 0x2d28(%rsp)
movq 0x2d28(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x73f(%rsp)
movb 0x73f(%rsp), %al
testb $0x1, %al
jne 0x121afee
jmp 0x121affe
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1227e25
movl $0x0, 0x1800(%rsp)
movl 0x1800(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x121bd8b
movq 0x1f18(%rsp), %rcx
movl 0x1800(%rsp), %eax
leaq 0x17b0(%rsp), %rdx
movq %rdx, 0x21f8(%rsp)
movq %rcx, 0x21f0(%rsp)
movl %eax, 0x21ec(%rsp)
movq 0x21f0(%rsp), %rax
movq %rax, 0x728(%rsp)
movb $0x0, 0x21eb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x21ec(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x17b0(%rsp), %r10
movq %r10, 0x35d8(%rsp)
movl %r9d, 0x35d4(%rsp)
movl %r8d, 0x35d0(%rsp)
movl %edi, 0x35cc(%rsp)
movq %rsi, 0x35c0(%rsp)
movq %rdx, 0x35b8(%rsp)
movl %ecx, 0x35b4(%rsp)
movq %rax, 0x35a8(%rsp)
movq 0x35d8(%rsp), %rcx
movq %rcx, 0x720(%rsp)
movq 0x35c0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x35b8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x35b4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x35a8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x35d4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x35d0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x35cc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3bd0(%rsp)
movl $0x10, 0x3bcc(%rsp)
movq 0x3bd0(%rsp), %rax
movslq 0x3bcc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bcc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x728(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x17d8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x121b1d9
movq 0x728(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x17f0(%rsp)
movb $0x1, 0x21eb(%rsp)
testb $0x1, 0x21eb(%rsp)
jne 0x121b314
leaq 0x17b0(%rsp), %rax
movq %rax, 0x24b0(%rsp)
movq 0x24b0(%rsp), %rax
movq %rax, 0x4490(%rsp)
movq 0x4490(%rsp), %rax
movq %rax, 0x718(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121b2b7
movq 0x718(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x448c(%rsp) # imm = 0xFFFFFFFF
movl 0x448c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4488(%rsp)
cmpl $0x1, 0x4488(%rsp)
jne 0x121b2b7
movq 0x718(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121b288
movq 0x718(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121b286
jmp 0x121b2b5
movq 0x718(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45b8(%rsp)
cmpq $0x0, 0x45b8(%rsp)
je 0x121b2b3
movq 0x45b8(%rsp), %rdi
callq 0x5f480
jmp 0x121b2b5
jmp 0x121b2b7
movq 0x718(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121b312
movq %rax, %rdi
callq 0x678a0
jmp 0x121b314
leaq 0x17b0(%rsp), %rax
movq %rax, 0x23e0(%rsp)
movq 0x23e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x708(%rsp)
leaq 0x17b0(%rsp), %rax
movq %rax, 0x2600(%rsp)
movq 0x2600(%rsp), %rax
movq %rax, 0x41f0(%rsp)
movq 0x41f0(%rsp), %rax
movq %rax, 0x710(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121b3ff
movq 0x710(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41ec(%rsp) # imm = 0xFFFFFFFF
movl 0x41ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41e8(%rsp)
cmpl $0x1, 0x41e8(%rsp)
jne 0x121b3ff
movq 0x710(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121b3d0
movq 0x710(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121b3ce
jmp 0x121b3fd
movq 0x710(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4708(%rsp)
cmpq $0x0, 0x4708(%rsp)
je 0x121b3fb
movq 0x4708(%rsp), %rdi
callq 0x5f480
jmp 0x121b3fd
jmp 0x121b3ff
movq 0x710(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121b45a
movq %rax, %rdi
callq 0x678a0
movq 0x708(%rsp), %rax
movq %rax, 0x17f8(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1800(%rsp), %eax
leaq 0x1760(%rsp), %rdx
movq %rdx, 0x21e0(%rsp)
movq %rcx, 0x21d8(%rsp)
movl %eax, 0x21d4(%rsp)
movq 0x21d8(%rsp), %rax
movq %rax, 0x700(%rsp)
movb $0x0, 0x21d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x21d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1760(%rsp), %r10
movq %r10, 0x3610(%rsp)
movl %r9d, 0x360c(%rsp)
movl %r8d, 0x3608(%rsp)
movl %edi, 0x3604(%rsp)
movq %rsi, 0x35f8(%rsp)
movq %rdx, 0x35f0(%rsp)
movl %ecx, 0x35ec(%rsp)
movq %rax, 0x35e0(%rsp)
movq 0x3610(%rsp), %rcx
movq %rcx, 0x6f8(%rsp)
movq 0x35f8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x35f0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x35ec(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x35e0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x360c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3608(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3604(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3bc0(%rsp)
movl $0x10, 0x3bbc(%rsp)
movq 0x3bc0(%rsp), %rax
movslq 0x3bbc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bbc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x700(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1788(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x121b626
movq 0x700(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x17a0(%rsp)
movb $0x1, 0x21d3(%rsp)
testb $0x1, 0x21d3(%rsp)
jne 0x121b761
leaq 0x1760(%rsp), %rax
movq %rax, 0x24b8(%rsp)
movq 0x24b8(%rsp), %rax
movq %rax, 0x4480(%rsp)
movq 0x4480(%rsp), %rax
movq %rax, 0x6f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121b704
movq 0x6f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x447c(%rsp) # imm = 0xFFFFFFFF
movl 0x447c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4478(%rsp)
cmpl $0x1, 0x4478(%rsp)
jne 0x121b704
movq 0x6f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121b6d5
movq 0x6f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121b6d3
jmp 0x121b702
movq 0x6f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45c0(%rsp)
cmpq $0x0, 0x45c0(%rsp)
je 0x121b700
movq 0x45c0(%rsp), %rdi
callq 0x5f480
jmp 0x121b702
jmp 0x121b704
movq 0x6f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121b75f
movq %rax, %rdi
callq 0x678a0
jmp 0x121b761
leaq 0x1760(%rsp), %rax
movq %rax, 0x23d8(%rsp)
movq 0x23d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6e0(%rsp)
leaq 0x1760(%rsp), %rax
movq %rax, 0x2608(%rsp)
movq 0x2608(%rsp), %rax
movq %rax, 0x41e0(%rsp)
movq 0x41e0(%rsp), %rax
movq %rax, 0x6e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121b84c
movq 0x6e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41dc(%rsp) # imm = 0xFFFFFFFF
movl 0x41dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41d8(%rsp)
cmpl $0x1, 0x41d8(%rsp)
jne 0x121b84c
movq 0x6e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121b81d
movq 0x6e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121b81b
jmp 0x121b84a
movq 0x6e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4710(%rsp)
cmpq $0x0, 0x4710(%rsp)
je 0x121b848
movq 0x4710(%rsp), %rdi
callq 0x5f480
jmp 0x121b84a
jmp 0x121b84c
movq 0x6e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121b8a7
movq %rax, %rdi
callq 0x678a0
movq 0x6e0(%rsp), %rax
movq %rax, 0x17a8(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1800(%rsp), %eax
leaq 0x1710(%rsp), %rdx
movq %rdx, 0x2920(%rsp)
movq %rcx, 0x2918(%rsp)
movl %eax, 0x2914(%rsp)
movq 0x2918(%rsp), %rax
movq %rax, 0x6d8(%rsp)
movb $0x0, 0x2913(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2914(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1710(%rsp), %r10
movq %r10, 0x2fb8(%rsp)
movl %r9d, 0x2fb4(%rsp)
movl %r8d, 0x2fb0(%rsp)
movl %edi, 0x2fac(%rsp)
movq %rsi, 0x2fa0(%rsp)
movq %rdx, 0x2f98(%rsp)
movl %ecx, 0x2f94(%rsp)
movq %rax, 0x2f88(%rsp)
movq 0x2fb8(%rsp), %rcx
movq %rcx, 0x6d0(%rsp)
movq 0x2fa0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2f98(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2f94(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2f88(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2fb4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2fb0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2fac(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d90(%rsp)
movl $0x10, 0x3d8c(%rsp)
movq 0x3d90(%rsp), %rax
movslq 0x3d8c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d8c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6d8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1738(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x121ba73
movq 0x6d8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1750(%rsp)
movb $0x1, 0x2913(%rsp)
testb $0x1, 0x2913(%rsp)
jne 0x121bbae
leaq 0x1710(%rsp), %rax
movq %rax, 0x2928(%rsp)
movq 0x2928(%rsp), %rax
movq %rax, 0x3ea0(%rsp)
movq 0x3ea0(%rsp), %rax
movq %rax, 0x6c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121bb51
movq 0x6c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e9c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e9c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e98(%rsp)
cmpl $0x1, 0x3e98(%rsp)
jne 0x121bb51
movq 0x6c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121bb22
movq 0x6c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121bb20
jmp 0x121bb4f
movq 0x6c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48b0(%rsp)
cmpq $0x0, 0x48b0(%rsp)
je 0x121bb4d
movq 0x48b0(%rsp), %rdi
callq 0x5f480
jmp 0x121bb4f
jmp 0x121bb51
movq 0x6c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121bbac
movq %rax, %rdi
callq 0x678a0
jmp 0x121bbae
leaq 0x1710(%rsp), %rax
movq %rax, 0x2ab8(%rsp)
movq 0x2ab8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6b8(%rsp)
leaq 0x1710(%rsp), %rax
movq %rax, 0x2610(%rsp)
movq 0x2610(%rsp), %rax
movq %rax, 0x41d0(%rsp)
movq 0x41d0(%rsp), %rax
movq %rax, 0x6c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121bc99
movq 0x6c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41cc(%rsp) # imm = 0xFFFFFFFF
movl 0x41cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41c8(%rsp)
cmpl $0x1, 0x41c8(%rsp)
jne 0x121bc99
movq 0x6c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121bc6a
movq 0x6c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121bc68
jmp 0x121bc97
movq 0x6c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4718(%rsp)
cmpq $0x0, 0x4718(%rsp)
je 0x121bc95
movq 0x4718(%rsp), %rdi
callq 0x5f480
jmp 0x121bc97
jmp 0x121bc99
movq 0x6c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121bcf4
movq %rax, %rdi
callq 0x678a0
movq 0x6b8(%rsp), %rax
movq %rax, 0x1758(%rsp)
movl $0x0, 0x170c(%rsp)
movl 0x170c(%rsp), %eax
cmpl 0x1ecc(%rsp), %eax
jge 0x121bd73
movq 0x17f8(%rsp), %rsi
movq 0x17a8(%rsp), %rdx
movslq 0x170c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x1278060
movq 0x1758(%rsp), %rax
movslq 0x170c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x170c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x170c(%rsp)
jmp 0x121bd0f
jmp 0x121bd75
movl 0x1800(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1800(%rsp)
jmp 0x121b009
movl $0x0, 0x1f24(%rsp)
jmp 0x1227e25
movl 0x1edc(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jne 0x121c807
movl 0x1ed8(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jne 0x121c807
cmpl $0x1, 0x1eec(%rsp)
jne 0x121c807
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed0(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fb8(%rsp)
movq 0x1fb8(%rsp), %rcx
movq %rcx, 0x6a8(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x6b7(%rsp)
je 0x121be68
movq 0x6a8(%rsp), %rax
movq %rax, 0x2d30(%rsp)
movq 0x2d30(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x6b7(%rsp)
movb 0x6b7(%rsp), %al
testb $0x1, %al
jne 0x121be75
jmp 0x121be85
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1227e25
movl $0x0, 0x1708(%rsp)
movl 0x1708(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x121c7f7
movq 0x1f18(%rsp), %rax
movq %rax, 0x23d0(%rsp)
movq 0x23d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1700(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1708(%rsp), %eax
leaq 0x16b0(%rsp), %rdx
movq %rdx, 0x21c8(%rsp)
movq %rcx, 0x21c0(%rsp)
movl %eax, 0x21bc(%rsp)
movq 0x21c0(%rsp), %rax
movq %rax, 0x6a0(%rsp)
movb $0x0, 0x21bb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x21bc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x16b0(%rsp), %r10
movq %r10, 0x3648(%rsp)
movl %r9d, 0x3644(%rsp)
movl %r8d, 0x3640(%rsp)
movl %edi, 0x363c(%rsp)
movq %rsi, 0x3630(%rsp)
movq %rdx, 0x3628(%rsp)
movl %ecx, 0x3624(%rsp)
movq %rax, 0x3618(%rsp)
movq 0x3648(%rsp), %rcx
movq %rcx, 0x698(%rsp)
movq 0x3630(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3628(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3624(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3618(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3644(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3640(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x363c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3bb0(%rsp)
movl $0x10, 0x3bac(%rsp)
movq 0x3bb0(%rsp), %rax
movslq 0x3bac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6a0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x16d8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x121c083
movq 0x6a0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x16f0(%rsp)
movb $0x1, 0x21bb(%rsp)
testb $0x1, 0x21bb(%rsp)
jne 0x121c1be
leaq 0x16b0(%rsp), %rax
movq %rax, 0x24c0(%rsp)
movq 0x24c0(%rsp), %rax
movq %rax, 0x4470(%rsp)
movq 0x4470(%rsp), %rax
movq %rax, 0x690(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121c161
movq 0x690(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x446c(%rsp) # imm = 0xFFFFFFFF
movl 0x446c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4468(%rsp)
cmpl $0x1, 0x4468(%rsp)
jne 0x121c161
movq 0x690(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121c132
movq 0x690(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121c130
jmp 0x121c15f
movq 0x690(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45c8(%rsp)
cmpq $0x0, 0x45c8(%rsp)
je 0x121c15d
movq 0x45c8(%rsp), %rdi
callq 0x5f480
jmp 0x121c15f
jmp 0x121c161
movq 0x690(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121c1bc
movq %rax, %rdi
callq 0x678a0
jmp 0x121c1be
leaq 0x16b0(%rsp), %rax
movq %rax, 0x23c8(%rsp)
movq 0x23c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x680(%rsp)
leaq 0x16b0(%rsp), %rax
movq %rax, 0x2618(%rsp)
movq 0x2618(%rsp), %rax
movq %rax, 0x41c0(%rsp)
movq 0x41c0(%rsp), %rax
movq %rax, 0x688(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121c2a9
movq 0x688(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41bc(%rsp) # imm = 0xFFFFFFFF
movl 0x41bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41b8(%rsp)
cmpl $0x1, 0x41b8(%rsp)
jne 0x121c2a9
movq 0x688(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121c27a
movq 0x688(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121c278
jmp 0x121c2a7
movq 0x688(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4720(%rsp)
cmpq $0x0, 0x4720(%rsp)
je 0x121c2a5
movq 0x4720(%rsp), %rdi
callq 0x5f480
jmp 0x121c2a7
jmp 0x121c2a9
movq 0x688(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121c304
movq %rax, %rdi
callq 0x678a0
movq 0x680(%rsp), %rax
movq %rax, 0x16f8(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1708(%rsp), %eax
leaq 0x1660(%rsp), %rdx
movq %rdx, 0x2900(%rsp)
movq %rcx, 0x28f8(%rsp)
movl %eax, 0x28f4(%rsp)
movq 0x28f8(%rsp), %rax
movq %rax, 0x678(%rsp)
movb $0x0, 0x28f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x28f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1660(%rsp), %r10
movq %r10, 0x2ff0(%rsp)
movl %r9d, 0x2fec(%rsp)
movl %r8d, 0x2fe8(%rsp)
movl %edi, 0x2fe4(%rsp)
movq %rsi, 0x2fd8(%rsp)
movq %rdx, 0x2fd0(%rsp)
movl %ecx, 0x2fcc(%rsp)
movq %rax, 0x2fc0(%rsp)
movq 0x2ff0(%rsp), %rcx
movq %rcx, 0x670(%rsp)
movq 0x2fd8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2fd0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2fcc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2fc0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2fec(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2fe8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2fe4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d80(%rsp)
movl $0x10, 0x3d7c(%rsp)
movq 0x3d80(%rsp), %rax
movslq 0x3d7c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d7c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x678(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1688(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x121c4d0
movq 0x678(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x16a0(%rsp)
movb $0x1, 0x28f3(%rsp)
testb $0x1, 0x28f3(%rsp)
jne 0x121c60b
leaq 0x1660(%rsp), %rax
movq %rax, 0x2908(%rsp)
movq 0x2908(%rsp), %rax
movq %rax, 0x3eb0(%rsp)
movq 0x3eb0(%rsp), %rax
movq %rax, 0x668(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121c5ae
movq 0x668(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3eac(%rsp) # imm = 0xFFFFFFFF
movl 0x3eac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ea8(%rsp)
cmpl $0x1, 0x3ea8(%rsp)
jne 0x121c5ae
movq 0x668(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121c57f
movq 0x668(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121c57d
jmp 0x121c5ac
movq 0x668(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48a8(%rsp)
cmpq $0x0, 0x48a8(%rsp)
je 0x121c5aa
movq 0x48a8(%rsp), %rdi
callq 0x5f480
jmp 0x121c5ac
jmp 0x121c5ae
movq 0x668(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121c609
movq %rax, %rdi
callq 0x678a0
jmp 0x121c60b
leaq 0x1660(%rsp), %rax
movq %rax, 0x2ab0(%rsp)
movq 0x2ab0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x658(%rsp)
leaq 0x1660(%rsp), %rax
movq %rax, 0x2620(%rsp)
movq 0x2620(%rsp), %rax
movq %rax, 0x41b0(%rsp)
movq 0x41b0(%rsp), %rax
movq %rax, 0x660(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121c6f6
movq 0x660(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41ac(%rsp) # imm = 0xFFFFFFFF
movl 0x41ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41a8(%rsp)
cmpl $0x1, 0x41a8(%rsp)
jne 0x121c6f6
movq 0x660(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121c6c7
movq 0x660(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121c6c5
jmp 0x121c6f4
movq 0x660(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4728(%rsp)
cmpq $0x0, 0x4728(%rsp)
je 0x121c6f2
movq 0x4728(%rsp), %rdi
callq 0x5f480
jmp 0x121c6f4
jmp 0x121c6f6
movq 0x660(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121c751
movq %rax, %rdi
callq 0x678a0
movq 0x658(%rsp), %rax
movq %rax, 0x16a8(%rsp)
movl $0x0, 0x165c(%rsp)
movl 0x165c(%rsp), %eax
cmpl 0x1ecc(%rsp), %eax
jge 0x121c7df
movq 0x1700(%rsp), %rsi
movslq 0x165c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x16f8(%rsp), %rdx
movslq 0x165c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x1278060
movq 0x16a8(%rsp), %rax
movslq 0x165c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x165c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x165c(%rsp)
jmp 0x121c76c
jmp 0x121c7e1
movl 0x1708(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1708(%rsp)
jmp 0x121be90
movl $0x0, 0x1f24(%rsp)
jmp 0x1227e25
cmpl $0x1, 0x1ef8(%rsp)
je 0x121d731
cmpl $0x1, 0x1edc(%rsp)
jne 0x121d731
movl 0x1ed8(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jne 0x121d731
movl 0x1ed0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jne 0x121d731
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1eec(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fb0(%rsp)
movq 0x1fb0(%rsp), %rcx
movq %rcx, 0x648(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x657(%rsp)
je 0x121c8e2
movq 0x648(%rsp), %rax
movq %rax, 0x2d38(%rsp)
movq 0x2d38(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x657(%rsp)
movb 0x657(%rsp), %al
testb $0x1, %al
jne 0x121c8ef
jmp 0x121c8ff
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1227e25
movl $0x0, 0x1658(%rsp)
movl 0x1658(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x121d721
movq 0x1f18(%rsp), %rcx
movl 0x1658(%rsp), %eax
leaq 0x1608(%rsp), %rdx
movq %rdx, 0x21b0(%rsp)
movq %rcx, 0x21a8(%rsp)
movl %eax, 0x21a4(%rsp)
movq 0x21a8(%rsp), %rax
movq %rax, 0x640(%rsp)
movb $0x0, 0x21a3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x21a4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1608(%rsp), %r10
movq %r10, 0x3680(%rsp)
movl %r9d, 0x367c(%rsp)
movl %r8d, 0x3678(%rsp)
movl %edi, 0x3674(%rsp)
movq %rsi, 0x3668(%rsp)
movq %rdx, 0x3660(%rsp)
movl %ecx, 0x365c(%rsp)
movq %rax, 0x3650(%rsp)
movq 0x3680(%rsp), %rcx
movq %rcx, 0x638(%rsp)
movq 0x3668(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3660(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x365c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3650(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x367c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3678(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3674(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ba0(%rsp)
movl $0x10, 0x3b9c(%rsp)
movq 0x3ba0(%rsp), %rax
movslq 0x3b9c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b9c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x640(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1630(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x121cada
movq 0x640(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1648(%rsp)
movb $0x1, 0x21a3(%rsp)
testb $0x1, 0x21a3(%rsp)
jne 0x121cc15
leaq 0x1608(%rsp), %rax
movq %rax, 0x24c8(%rsp)
movq 0x24c8(%rsp), %rax
movq %rax, 0x4460(%rsp)
movq 0x4460(%rsp), %rax
movq %rax, 0x630(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121cbb8
movq 0x630(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x445c(%rsp) # imm = 0xFFFFFFFF
movl 0x445c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4458(%rsp)
cmpl $0x1, 0x4458(%rsp)
jne 0x121cbb8
movq 0x630(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121cb89
movq 0x630(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121cb87
jmp 0x121cbb6
movq 0x630(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45d0(%rsp)
cmpq $0x0, 0x45d0(%rsp)
je 0x121cbb4
movq 0x45d0(%rsp), %rdi
callq 0x5f480
jmp 0x121cbb6
jmp 0x121cbb8
movq 0x630(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121cc13
movq %rax, %rdi
callq 0x678a0
jmp 0x121cc15
leaq 0x1608(%rsp), %rax
movq %rax, 0x23c0(%rsp)
movq 0x23c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x620(%rsp)
leaq 0x1608(%rsp), %rax
movq %rax, 0x2628(%rsp)
movq 0x2628(%rsp), %rax
movq %rax, 0x41a0(%rsp)
movq 0x41a0(%rsp), %rax
movq %rax, 0x628(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121cd00
movq 0x628(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x419c(%rsp) # imm = 0xFFFFFFFF
movl 0x419c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4198(%rsp)
cmpl $0x1, 0x4198(%rsp)
jne 0x121cd00
movq 0x628(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121ccd1
movq 0x628(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121cccf
jmp 0x121ccfe
movq 0x628(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4730(%rsp)
cmpq $0x0, 0x4730(%rsp)
je 0x121ccfc
movq 0x4730(%rsp), %rdi
callq 0x5f480
jmp 0x121ccfe
jmp 0x121cd00
movq 0x628(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121cd5b
movq %rax, %rdi
callq 0x678a0
movq 0x620(%rsp), %rax
movq %rax, 0x1650(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1658(%rsp), %eax
leaq 0x15b8(%rsp), %rdx
movq %rdx, 0x2198(%rsp)
movq %rcx, 0x2190(%rsp)
movl %eax, 0x218c(%rsp)
movq 0x2190(%rsp), %rax
movq %rax, 0x618(%rsp)
movb $0x0, 0x218b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x218c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x15b8(%rsp), %r10
movq %r10, 0x36b8(%rsp)
movl %r9d, 0x36b4(%rsp)
movl %r8d, 0x36b0(%rsp)
movl %edi, 0x36ac(%rsp)
movq %rsi, 0x36a0(%rsp)
movq %rdx, 0x3698(%rsp)
movl %ecx, 0x3694(%rsp)
movq %rax, 0x3688(%rsp)
movq 0x36b8(%rsp), %rcx
movq %rcx, 0x610(%rsp)
movq 0x36a0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3698(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3694(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3688(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x36b4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x36b0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x36ac(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b90(%rsp)
movl $0x10, 0x3b8c(%rsp)
movq 0x3b90(%rsp), %rax
movslq 0x3b8c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b8c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x618(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x15e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x121cf27
movq 0x618(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x15f8(%rsp)
movb $0x1, 0x218b(%rsp)
testb $0x1, 0x218b(%rsp)
jne 0x121d062
leaq 0x15b8(%rsp), %rax
movq %rax, 0x24d0(%rsp)
movq 0x24d0(%rsp), %rax
movq %rax, 0x4450(%rsp)
movq 0x4450(%rsp), %rax
movq %rax, 0x608(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121d005
movq 0x608(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x444c(%rsp) # imm = 0xFFFFFFFF
movl 0x444c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4448(%rsp)
cmpl $0x1, 0x4448(%rsp)
jne 0x121d005
movq 0x608(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121cfd6
movq 0x608(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121cfd4
jmp 0x121d003
movq 0x608(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45d8(%rsp)
cmpq $0x0, 0x45d8(%rsp)
je 0x121d001
movq 0x45d8(%rsp), %rdi
callq 0x5f480
jmp 0x121d003
jmp 0x121d005
movq 0x608(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121d060
movq %rax, %rdi
callq 0x678a0
jmp 0x121d062
leaq 0x15b8(%rsp), %rax
movq %rax, 0x23b8(%rsp)
movq 0x23b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5f8(%rsp)
leaq 0x15b8(%rsp), %rax
movq %rax, 0x2630(%rsp)
movq 0x2630(%rsp), %rax
movq %rax, 0x4190(%rsp)
movq 0x4190(%rsp), %rax
movq %rax, 0x600(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121d14d
movq 0x600(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x418c(%rsp) # imm = 0xFFFFFFFF
movl 0x418c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4188(%rsp)
cmpl $0x1, 0x4188(%rsp)
jne 0x121d14d
movq 0x600(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121d11e
movq 0x600(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121d11c
jmp 0x121d14b
movq 0x600(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4738(%rsp)
cmpq $0x0, 0x4738(%rsp)
je 0x121d149
movq 0x4738(%rsp), %rdi
callq 0x5f480
jmp 0x121d14b
jmp 0x121d14d
movq 0x600(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121d1a8
movq %rax, %rdi
callq 0x678a0
movq 0x5f8(%rsp), %rax
movq %rax, 0x1600(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1658(%rsp), %eax
leaq 0x1568(%rsp), %rdx
movq %rdx, 0x28e0(%rsp)
movq %rcx, 0x28d8(%rsp)
movl %eax, 0x28d4(%rsp)
movq 0x28d8(%rsp), %rax
movq %rax, 0x5f0(%rsp)
movb $0x0, 0x28d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x28d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1568(%rsp), %r10
movq %r10, 0x3028(%rsp)
movl %r9d, 0x3024(%rsp)
movl %r8d, 0x3020(%rsp)
movl %edi, 0x301c(%rsp)
movq %rsi, 0x3010(%rsp)
movq %rdx, 0x3008(%rsp)
movl %ecx, 0x3004(%rsp)
movq %rax, 0x2ff8(%rsp)
movq 0x3028(%rsp), %rcx
movq %rcx, 0x5e8(%rsp)
movq 0x3010(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3008(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3004(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ff8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3024(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3020(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x301c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d70(%rsp)
movl $0x10, 0x3d6c(%rsp)
movq 0x3d70(%rsp), %rax
movslq 0x3d6c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d6c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5f0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1590(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x121d374
movq 0x5f0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x15a8(%rsp)
movb $0x1, 0x28d3(%rsp)
testb $0x1, 0x28d3(%rsp)
jne 0x121d4af
leaq 0x1568(%rsp), %rax
movq %rax, 0x28e8(%rsp)
movq 0x28e8(%rsp), %rax
movq %rax, 0x3ec0(%rsp)
movq 0x3ec0(%rsp), %rax
movq %rax, 0x5e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121d452
movq 0x5e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ebc(%rsp) # imm = 0xFFFFFFFF
movl 0x3ebc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3eb8(%rsp)
cmpl $0x1, 0x3eb8(%rsp)
jne 0x121d452
movq 0x5e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121d423
movq 0x5e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121d421
jmp 0x121d450
movq 0x5e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48a0(%rsp)
cmpq $0x0, 0x48a0(%rsp)
je 0x121d44e
movq 0x48a0(%rsp), %rdi
callq 0x5f480
jmp 0x121d450
jmp 0x121d452
movq 0x5e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121d4ad
movq %rax, %rdi
callq 0x678a0
jmp 0x121d4af
leaq 0x1568(%rsp), %rax
movq %rax, 0x2aa8(%rsp)
movq 0x2aa8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5d0(%rsp)
leaq 0x1568(%rsp), %rax
movq %rax, 0x2638(%rsp)
movq 0x2638(%rsp), %rax
movq %rax, 0x4180(%rsp)
movq 0x4180(%rsp), %rax
movq %rax, 0x5d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121d59a
movq 0x5d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x417c(%rsp) # imm = 0xFFFFFFFF
movl 0x417c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4178(%rsp)
cmpl $0x1, 0x4178(%rsp)
jne 0x121d59a
movq 0x5d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121d56b
movq 0x5d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121d569
jmp 0x121d598
movq 0x5d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4740(%rsp)
cmpq $0x0, 0x4740(%rsp)
je 0x121d596
movq 0x4740(%rsp), %rdi
callq 0x5f480
jmp 0x121d598
jmp 0x121d59a
movq 0x5d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121d5f5
movq %rax, %rdi
callq 0x678a0
movq 0x5d0(%rsp), %rax
movq %rax, 0x15b0(%rsp)
movl $0x0, 0x1564(%rsp)
movl 0x1564(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jge 0x121d709
movq 0x1600(%rsp), %rax
movslq 0x1564(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x1560(%rsp)
movl $0x0, 0x155c(%rsp)
movl 0x155c(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x121d6b1
movq 0x1650(%rsp), %rsi
movslq 0x155c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0x1560(%rsp), %rdx
callq 0x1278060
movq 0x15b0(%rsp), %rax
movslq 0x155c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x155c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x155c(%rsp)
jmp 0x121d64d
movl 0x1ef8(%rsp), %ecx
movq 0x1650(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1650(%rsp)
movl 0x1ef8(%rsp), %ecx
movq 0x15b0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x15b0(%rsp)
movl 0x1564(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1564(%rsp)
jmp 0x121d610
jmp 0x121d70b
movl 0x1658(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1658(%rsp)
jmp 0x121c90a
movl $0x0, 0x1f24(%rsp)
jmp 0x1227e25
movl 0x1edc(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jne 0x121e64c
cmpl $0x1, 0x1ef4(%rsp)
je 0x121e64c
cmpl $0x1, 0x1ed8(%rsp)
jne 0x121e64c
movl 0x1ed0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jne 0x121e64c
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1eec(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fa8(%rsp)
movq 0x1fa8(%rsp), %rcx
movq %rcx, 0x5c0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x5cf(%rsp)
je 0x121d80c
movq 0x5c0(%rsp), %rax
movq %rax, 0x2d40(%rsp)
movq 0x2d40(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x5cf(%rsp)
movb 0x5cf(%rsp), %al
testb $0x1, %al
jne 0x121d819
jmp 0x121d829
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1227e25
movl $0x0, 0x1558(%rsp)
movl 0x1558(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x121e63c
movq 0x1f18(%rsp), %rcx
movl 0x1558(%rsp), %eax
leaq 0x1508(%rsp), %rdx
movq %rdx, 0x2180(%rsp)
movq %rcx, 0x2178(%rsp)
movl %eax, 0x2174(%rsp)
movq 0x2178(%rsp), %rax
movq %rax, 0x5b8(%rsp)
movb $0x0, 0x2173(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2174(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1508(%rsp), %r10
movq %r10, 0x36f0(%rsp)
movl %r9d, 0x36ec(%rsp)
movl %r8d, 0x36e8(%rsp)
movl %edi, 0x36e4(%rsp)
movq %rsi, 0x36d8(%rsp)
movq %rdx, 0x36d0(%rsp)
movl %ecx, 0x36cc(%rsp)
movq %rax, 0x36c0(%rsp)
movq 0x36f0(%rsp), %rcx
movq %rcx, 0x5b0(%rsp)
movq 0x36d8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x36d0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x36cc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x36c0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x36ec(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x36e8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x36e4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b80(%rsp)
movl $0x10, 0x3b7c(%rsp)
movq 0x3b80(%rsp), %rax
movslq 0x3b7c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b7c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5b8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1530(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x121da04
movq 0x5b8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1548(%rsp)
movb $0x1, 0x2173(%rsp)
testb $0x1, 0x2173(%rsp)
jne 0x121db3f
leaq 0x1508(%rsp), %rax
movq %rax, 0x24d8(%rsp)
movq 0x24d8(%rsp), %rax
movq %rax, 0x4440(%rsp)
movq 0x4440(%rsp), %rax
movq %rax, 0x5a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121dae2
movq 0x5a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x443c(%rsp) # imm = 0xFFFFFFFF
movl 0x443c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4438(%rsp)
cmpl $0x1, 0x4438(%rsp)
jne 0x121dae2
movq 0x5a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121dab3
movq 0x5a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121dab1
jmp 0x121dae0
movq 0x5a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45e0(%rsp)
cmpq $0x0, 0x45e0(%rsp)
je 0x121dade
movq 0x45e0(%rsp), %rdi
callq 0x5f480
jmp 0x121dae0
jmp 0x121dae2
movq 0x5a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121db3d
movq %rax, %rdi
callq 0x678a0
jmp 0x121db3f
leaq 0x1508(%rsp), %rax
movq %rax, 0x23b0(%rsp)
movq 0x23b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x598(%rsp)
leaq 0x1508(%rsp), %rax
movq %rax, 0x2640(%rsp)
movq 0x2640(%rsp), %rax
movq %rax, 0x4170(%rsp)
movq 0x4170(%rsp), %rax
movq %rax, 0x5a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121dc2a
movq 0x5a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x416c(%rsp) # imm = 0xFFFFFFFF
movl 0x416c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4168(%rsp)
cmpl $0x1, 0x4168(%rsp)
jne 0x121dc2a
movq 0x5a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121dbfb
movq 0x5a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121dbf9
jmp 0x121dc28
movq 0x5a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4748(%rsp)
cmpq $0x0, 0x4748(%rsp)
je 0x121dc26
movq 0x4748(%rsp), %rdi
callq 0x5f480
jmp 0x121dc28
jmp 0x121dc2a
movq 0x5a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121dc85
movq %rax, %rdi
callq 0x678a0
movq 0x598(%rsp), %rax
movq %rax, 0x1550(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1558(%rsp), %eax
leaq 0x14b8(%rsp), %rdx
movq %rdx, 0x2168(%rsp)
movq %rcx, 0x2160(%rsp)
movl %eax, 0x215c(%rsp)
movq 0x2160(%rsp), %rax
movq %rax, 0x590(%rsp)
movb $0x0, 0x215b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x215c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x14b8(%rsp), %r10
movq %r10, 0x3728(%rsp)
movl %r9d, 0x3724(%rsp)
movl %r8d, 0x3720(%rsp)
movl %edi, 0x371c(%rsp)
movq %rsi, 0x3710(%rsp)
movq %rdx, 0x3708(%rsp)
movl %ecx, 0x3704(%rsp)
movq %rax, 0x36f8(%rsp)
movq 0x3728(%rsp), %rcx
movq %rcx, 0x588(%rsp)
movq 0x3710(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3708(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3704(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x36f8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3724(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3720(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x371c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b70(%rsp)
movl $0x10, 0x3b6c(%rsp)
movq 0x3b70(%rsp), %rax
movslq 0x3b6c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b6c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x590(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x14e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x121de51
movq 0x590(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x14f8(%rsp)
movb $0x1, 0x215b(%rsp)
testb $0x1, 0x215b(%rsp)
jne 0x121df8c
leaq 0x14b8(%rsp), %rax
movq %rax, 0x24e0(%rsp)
movq 0x24e0(%rsp), %rax
movq %rax, 0x4430(%rsp)
movq 0x4430(%rsp), %rax
movq %rax, 0x580(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121df2f
movq 0x580(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x442c(%rsp) # imm = 0xFFFFFFFF
movl 0x442c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4428(%rsp)
cmpl $0x1, 0x4428(%rsp)
jne 0x121df2f
movq 0x580(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121df00
movq 0x580(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121defe
jmp 0x121df2d
movq 0x580(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45e8(%rsp)
cmpq $0x0, 0x45e8(%rsp)
je 0x121df2b
movq 0x45e8(%rsp), %rdi
callq 0x5f480
jmp 0x121df2d
jmp 0x121df2f
movq 0x580(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121df8a
movq %rax, %rdi
callq 0x678a0
jmp 0x121df8c
leaq 0x14b8(%rsp), %rax
movq %rax, 0x23a8(%rsp)
movq 0x23a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x570(%rsp)
leaq 0x14b8(%rsp), %rax
movq %rax, 0x2648(%rsp)
movq 0x2648(%rsp), %rax
movq %rax, 0x4160(%rsp)
movq 0x4160(%rsp), %rax
movq %rax, 0x578(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121e077
movq 0x578(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x415c(%rsp) # imm = 0xFFFFFFFF
movl 0x415c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4158(%rsp)
cmpl $0x1, 0x4158(%rsp)
jne 0x121e077
movq 0x578(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121e048
movq 0x578(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121e046
jmp 0x121e075
movq 0x578(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4750(%rsp)
cmpq $0x0, 0x4750(%rsp)
je 0x121e073
movq 0x4750(%rsp), %rdi
callq 0x5f480
jmp 0x121e075
jmp 0x121e077
movq 0x578(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121e0d2
movq %rax, %rdi
callq 0x678a0
movq 0x570(%rsp), %rax
movq %rax, 0x1500(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1558(%rsp), %eax
leaq 0x1468(%rsp), %rdx
movq %rdx, 0x28c0(%rsp)
movq %rcx, 0x28b8(%rsp)
movl %eax, 0x28b4(%rsp)
movq 0x28b8(%rsp), %rax
movq %rax, 0x568(%rsp)
movb $0x0, 0x28b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x28b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1468(%rsp), %r10
movq %r10, 0x3060(%rsp)
movl %r9d, 0x305c(%rsp)
movl %r8d, 0x3058(%rsp)
movl %edi, 0x3054(%rsp)
movq %rsi, 0x3048(%rsp)
movq %rdx, 0x3040(%rsp)
movl %ecx, 0x303c(%rsp)
movq %rax, 0x3030(%rsp)
movq 0x3060(%rsp), %rcx
movq %rcx, 0x560(%rsp)
movq 0x3048(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3040(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x303c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3030(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x305c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3058(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3054(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d60(%rsp)
movl $0x10, 0x3d5c(%rsp)
movq 0x3d60(%rsp), %rax
movslq 0x3d5c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d5c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x568(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1490(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x121e29e
movq 0x568(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x14a8(%rsp)
movb $0x1, 0x28b3(%rsp)
testb $0x1, 0x28b3(%rsp)
jne 0x121e3d9
leaq 0x1468(%rsp), %rax
movq %rax, 0x28c8(%rsp)
movq 0x28c8(%rsp), %rax
movq %rax, 0x3ed0(%rsp)
movq 0x3ed0(%rsp), %rax
movq %rax, 0x558(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121e37c
movq 0x558(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ecc(%rsp) # imm = 0xFFFFFFFF
movl 0x3ecc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ec8(%rsp)
cmpl $0x1, 0x3ec8(%rsp)
jne 0x121e37c
movq 0x558(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121e34d
movq 0x558(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121e34b
jmp 0x121e37a
movq 0x558(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4898(%rsp)
cmpq $0x0, 0x4898(%rsp)
je 0x121e378
movq 0x4898(%rsp), %rdi
callq 0x5f480
jmp 0x121e37a
jmp 0x121e37c
movq 0x558(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121e3d7
movq %rax, %rdi
callq 0x678a0
jmp 0x121e3d9
leaq 0x1468(%rsp), %rax
movq %rax, 0x2aa0(%rsp)
movq 0x2aa0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x548(%rsp)
leaq 0x1468(%rsp), %rax
movq %rax, 0x2650(%rsp)
movq 0x2650(%rsp), %rax
movq %rax, 0x4150(%rsp)
movq 0x4150(%rsp), %rax
movq %rax, 0x550(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121e4c4
movq 0x550(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x414c(%rsp) # imm = 0xFFFFFFFF
movl 0x414c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4148(%rsp)
cmpl $0x1, 0x4148(%rsp)
jne 0x121e4c4
movq 0x550(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121e495
movq 0x550(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121e493
jmp 0x121e4c2
movq 0x550(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4758(%rsp)
cmpq $0x0, 0x4758(%rsp)
je 0x121e4c0
movq 0x4758(%rsp), %rdi
callq 0x5f480
jmp 0x121e4c2
jmp 0x121e4c4
movq 0x550(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121e51f
movq %rax, %rdi
callq 0x678a0
movq 0x548(%rsp), %rax
movq %rax, 0x14b0(%rsp)
movl $0x0, 0x1464(%rsp)
movl 0x1464(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jge 0x121e624
movl $0x0, 0x1460(%rsp)
movl 0x1460(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x121e5cc
movq 0x1550(%rsp), %rsi
movslq 0x1460(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1500(%rsp), %rdx
movslq 0x1460(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x1278060
movq 0x14b0(%rsp), %rax
movslq 0x1460(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1460(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1460(%rsp)
jmp 0x121e559
movl 0x1ef8(%rsp), %ecx
movq 0x1550(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1550(%rsp)
movl 0x1ef8(%rsp), %ecx
movq 0x14b0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x14b0(%rsp)
movl 0x1464(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1464(%rsp)
jmp 0x121e53a
jmp 0x121e626
movl 0x1558(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1558(%rsp)
jmp 0x121d834
movl $0x0, 0x1f24(%rsp)
jmp 0x1227e25
cmpl $0x1, 0x1edc(%rsp)
je 0x121f576
cmpl $0x1, 0x1ef8(%rsp)
jne 0x121f576
movl 0x1ed8(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jne 0x121f576
movl 0x1ed0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jne 0x121f576
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed0(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fa0(%rsp)
movq 0x1fa0(%rsp), %rcx
movq %rcx, 0x538(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x547(%rsp)
je 0x121e727
movq 0x538(%rsp), %rax
movq %rax, 0x2d48(%rsp)
movq 0x2d48(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x547(%rsp)
movb 0x547(%rsp), %al
testb $0x1, %al
jne 0x121e734
jmp 0x121e744
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1227e25
movl $0x0, 0x145c(%rsp)
movl 0x145c(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x121f566
movq 0x1f18(%rsp), %rcx
movl 0x145c(%rsp), %eax
leaq 0x1408(%rsp), %rdx
movq %rdx, 0x2150(%rsp)
movq %rcx, 0x2148(%rsp)
movl %eax, 0x2144(%rsp)
movq 0x2148(%rsp), %rax
movq %rax, 0x530(%rsp)
movb $0x0, 0x2143(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2144(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1408(%rsp), %r10
movq %r10, 0x3760(%rsp)
movl %r9d, 0x375c(%rsp)
movl %r8d, 0x3758(%rsp)
movl %edi, 0x3754(%rsp)
movq %rsi, 0x3748(%rsp)
movq %rdx, 0x3740(%rsp)
movl %ecx, 0x373c(%rsp)
movq %rax, 0x3730(%rsp)
movq 0x3760(%rsp), %rcx
movq %rcx, 0x528(%rsp)
movq 0x3748(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3740(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x373c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3730(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x375c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3758(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3754(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b60(%rsp)
movl $0x10, 0x3b5c(%rsp)
movq 0x3b60(%rsp), %rax
movslq 0x3b5c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b5c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x530(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1430(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x121e91f
movq 0x530(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1448(%rsp)
movb $0x1, 0x2143(%rsp)
testb $0x1, 0x2143(%rsp)
jne 0x121ea5a
leaq 0x1408(%rsp), %rax
movq %rax, 0x24e8(%rsp)
movq 0x24e8(%rsp), %rax
movq %rax, 0x4420(%rsp)
movq 0x4420(%rsp), %rax
movq %rax, 0x520(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121e9fd
movq 0x520(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x441c(%rsp) # imm = 0xFFFFFFFF
movl 0x441c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4418(%rsp)
cmpl $0x1, 0x4418(%rsp)
jne 0x121e9fd
movq 0x520(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121e9ce
movq 0x520(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121e9cc
jmp 0x121e9fb
movq 0x520(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45f0(%rsp)
cmpq $0x0, 0x45f0(%rsp)
je 0x121e9f9
movq 0x45f0(%rsp), %rdi
callq 0x5f480
jmp 0x121e9fb
jmp 0x121e9fd
movq 0x520(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121ea58
movq %rax, %rdi
callq 0x678a0
jmp 0x121ea5a
leaq 0x1408(%rsp), %rax
movq %rax, 0x23a0(%rsp)
movq 0x23a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x510(%rsp)
leaq 0x1408(%rsp), %rax
movq %rax, 0x2658(%rsp)
movq 0x2658(%rsp), %rax
movq %rax, 0x4140(%rsp)
movq 0x4140(%rsp), %rax
movq %rax, 0x518(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121eb45
movq 0x518(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x413c(%rsp) # imm = 0xFFFFFFFF
movl 0x413c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4138(%rsp)
cmpl $0x1, 0x4138(%rsp)
jne 0x121eb45
movq 0x518(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121eb16
movq 0x518(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121eb14
jmp 0x121eb43
movq 0x518(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4760(%rsp)
cmpq $0x0, 0x4760(%rsp)
je 0x121eb41
movq 0x4760(%rsp), %rdi
callq 0x5f480
jmp 0x121eb43
jmp 0x121eb45
movq 0x518(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121eba0
movq %rax, %rdi
callq 0x678a0
movq 0x510(%rsp), %rax
movq %rax, 0x1450(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x145c(%rsp), %eax
leaq 0x13b8(%rsp), %rdx
movq %rdx, 0x2138(%rsp)
movq %rcx, 0x2130(%rsp)
movl %eax, 0x212c(%rsp)
movq 0x2130(%rsp), %rax
movq %rax, 0x508(%rsp)
movb $0x0, 0x212b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x212c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x13b8(%rsp), %r10
movq %r10, 0x3798(%rsp)
movl %r9d, 0x3794(%rsp)
movl %r8d, 0x3790(%rsp)
movl %edi, 0x378c(%rsp)
movq %rsi, 0x3780(%rsp)
movq %rdx, 0x3778(%rsp)
movl %ecx, 0x3774(%rsp)
movq %rax, 0x3768(%rsp)
movq 0x3798(%rsp), %rcx
movq %rcx, 0x500(%rsp)
movq 0x3780(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3778(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3774(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3768(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3794(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3790(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x378c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b50(%rsp)
movl $0x10, 0x3b4c(%rsp)
movq 0x3b50(%rsp), %rax
movslq 0x3b4c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b4c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x508(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x13e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x121ed6c
movq 0x508(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x13f8(%rsp)
movb $0x1, 0x212b(%rsp)
testb $0x1, 0x212b(%rsp)
jne 0x121eea7
leaq 0x13b8(%rsp), %rax
movq %rax, 0x24f0(%rsp)
movq 0x24f0(%rsp), %rax
movq %rax, 0x4410(%rsp)
movq 0x4410(%rsp), %rax
movq %rax, 0x4f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121ee4a
movq 0x4f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x440c(%rsp) # imm = 0xFFFFFFFF
movl 0x440c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4408(%rsp)
cmpl $0x1, 0x4408(%rsp)
jne 0x121ee4a
movq 0x4f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121ee1b
movq 0x4f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121ee19
jmp 0x121ee48
movq 0x4f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45f8(%rsp)
cmpq $0x0, 0x45f8(%rsp)
je 0x121ee46
movq 0x45f8(%rsp), %rdi
callq 0x5f480
jmp 0x121ee48
jmp 0x121ee4a
movq 0x4f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121eea5
movq %rax, %rdi
callq 0x678a0
jmp 0x121eea7
leaq 0x13b8(%rsp), %rax
movq %rax, 0x2398(%rsp)
movq 0x2398(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4e8(%rsp)
leaq 0x13b8(%rsp), %rax
movq %rax, 0x2660(%rsp)
movq 0x2660(%rsp), %rax
movq %rax, 0x4130(%rsp)
movq 0x4130(%rsp), %rax
movq %rax, 0x4f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121ef92
movq 0x4f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x412c(%rsp) # imm = 0xFFFFFFFF
movl 0x412c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4128(%rsp)
cmpl $0x1, 0x4128(%rsp)
jne 0x121ef92
movq 0x4f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121ef63
movq 0x4f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121ef61
jmp 0x121ef90
movq 0x4f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4768(%rsp)
cmpq $0x0, 0x4768(%rsp)
je 0x121ef8e
movq 0x4768(%rsp), %rdi
callq 0x5f480
jmp 0x121ef90
jmp 0x121ef92
movq 0x4f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121efed
movq %rax, %rdi
callq 0x678a0
movq 0x4e8(%rsp), %rax
movq %rax, 0x1400(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x145c(%rsp), %eax
leaq 0x1368(%rsp), %rdx
movq %rdx, 0x28a0(%rsp)
movq %rcx, 0x2898(%rsp)
movl %eax, 0x2894(%rsp)
movq 0x2898(%rsp), %rax
movq %rax, 0x4e0(%rsp)
movb $0x0, 0x2893(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2894(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1368(%rsp), %r10
movq %r10, 0x3098(%rsp)
movl %r9d, 0x3094(%rsp)
movl %r8d, 0x3090(%rsp)
movl %edi, 0x308c(%rsp)
movq %rsi, 0x3080(%rsp)
movq %rdx, 0x3078(%rsp)
movl %ecx, 0x3074(%rsp)
movq %rax, 0x3068(%rsp)
movq 0x3098(%rsp), %rcx
movq %rcx, 0x4d8(%rsp)
movq 0x3080(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3078(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3074(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3068(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3094(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3090(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x308c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d50(%rsp)
movl $0x10, 0x3d4c(%rsp)
movq 0x3d50(%rsp), %rax
movslq 0x3d4c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d4c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4e0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1390(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x121f1b9
movq 0x4e0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x13a8(%rsp)
movb $0x1, 0x2893(%rsp)
testb $0x1, 0x2893(%rsp)
jne 0x121f2f4
leaq 0x1368(%rsp), %rax
movq %rax, 0x28a8(%rsp)
movq 0x28a8(%rsp), %rax
movq %rax, 0x3ee0(%rsp)
movq 0x3ee0(%rsp), %rax
movq %rax, 0x4d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121f297
movq 0x4d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3edc(%rsp) # imm = 0xFFFFFFFF
movl 0x3edc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ed8(%rsp)
cmpl $0x1, 0x3ed8(%rsp)
jne 0x121f297
movq 0x4d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121f268
movq 0x4d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121f266
jmp 0x121f295
movq 0x4d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4890(%rsp)
cmpq $0x0, 0x4890(%rsp)
je 0x121f293
movq 0x4890(%rsp), %rdi
callq 0x5f480
jmp 0x121f295
jmp 0x121f297
movq 0x4d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121f2f2
movq %rax, %rdi
callq 0x678a0
jmp 0x121f2f4
leaq 0x1368(%rsp), %rax
movq %rax, 0x2a98(%rsp)
movq 0x2a98(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4c0(%rsp)
leaq 0x1368(%rsp), %rax
movq %rax, 0x2668(%rsp)
movq 0x2668(%rsp), %rax
movq %rax, 0x4120(%rsp)
movq 0x4120(%rsp), %rax
movq %rax, 0x4c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121f3df
movq 0x4c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x411c(%rsp) # imm = 0xFFFFFFFF
movl 0x411c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4118(%rsp)
cmpl $0x1, 0x4118(%rsp)
jne 0x121f3df
movq 0x4c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121f3b0
movq 0x4c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121f3ae
jmp 0x121f3dd
movq 0x4c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4770(%rsp)
cmpq $0x0, 0x4770(%rsp)
je 0x121f3db
movq 0x4770(%rsp), %rdi
callq 0x5f480
jmp 0x121f3dd
jmp 0x121f3df
movq 0x4c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121f43a
movq %rax, %rdi
callq 0x678a0
movq 0x4c0(%rsp), %rax
movq %rax, 0x13b0(%rsp)
movl $0x0, 0x1364(%rsp)
movl 0x1364(%rsp), %eax
cmpl 0x1ed8(%rsp), %eax
jge 0x121f54e
movq 0x1450(%rsp), %rax
movslq 0x1364(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x1360(%rsp)
movl $0x0, 0x135c(%rsp)
movl 0x135c(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x121f4f6
movq 0x1400(%rsp), %rdx
movslq 0x135c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0x1360(%rsp), %rsi
callq 0x1278060
movq 0x13b0(%rsp), %rax
movslq 0x135c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x135c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x135c(%rsp)
jmp 0x121f492
movl 0x1edc(%rsp), %ecx
movq 0x1400(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1400(%rsp)
movl 0x1edc(%rsp), %ecx
movq 0x13b0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x13b0(%rsp)
movl 0x1364(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1364(%rsp)
jmp 0x121f455
jmp 0x121f550
movl 0x145c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x145c(%rsp)
jmp 0x121e74f
movl $0x0, 0x1f24(%rsp)
jmp 0x1227e25
movl 0x1edc(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jne 0x1220491
cmpl $0x1, 0x1ed8(%rsp)
je 0x1220491
cmpl $0x1, 0x1ef4(%rsp)
jne 0x1220491
movl 0x1ed0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jne 0x1220491
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed0(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f98(%rsp)
movq 0x1f98(%rsp), %rcx
movq %rcx, 0x4b0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x4bf(%rsp)
je 0x121f651
movq 0x4b0(%rsp), %rax
movq %rax, 0x2d50(%rsp)
movq 0x2d50(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x4bf(%rsp)
movb 0x4bf(%rsp), %al
testb $0x1, %al
jne 0x121f65e
jmp 0x121f66e
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1227e25
movl $0x0, 0x1358(%rsp)
movl 0x1358(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x1220481
movq 0x1f18(%rsp), %rcx
movl 0x1358(%rsp), %eax
leaq 0x1308(%rsp), %rdx
movq %rdx, 0x2120(%rsp)
movq %rcx, 0x2118(%rsp)
movl %eax, 0x2114(%rsp)
movq 0x2118(%rsp), %rax
movq %rax, 0x4a8(%rsp)
movb $0x0, 0x2113(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2114(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1308(%rsp), %r10
movq %r10, 0x37d0(%rsp)
movl %r9d, 0x37cc(%rsp)
movl %r8d, 0x37c8(%rsp)
movl %edi, 0x37c4(%rsp)
movq %rsi, 0x37b8(%rsp)
movq %rdx, 0x37b0(%rsp)
movl %ecx, 0x37ac(%rsp)
movq %rax, 0x37a0(%rsp)
movq 0x37d0(%rsp), %rcx
movq %rcx, 0x4a0(%rsp)
movq 0x37b8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x37b0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x37ac(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x37a0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x37cc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x37c8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x37c4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b40(%rsp)
movl $0x10, 0x3b3c(%rsp)
movq 0x3b40(%rsp), %rax
movslq 0x3b3c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b3c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4a8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1330(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x121f849
movq 0x4a8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1348(%rsp)
movb $0x1, 0x2113(%rsp)
testb $0x1, 0x2113(%rsp)
jne 0x121f984
leaq 0x1308(%rsp), %rax
movq %rax, 0x24f8(%rsp)
movq 0x24f8(%rsp), %rax
movq %rax, 0x4400(%rsp)
movq 0x4400(%rsp), %rax
movq %rax, 0x498(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121f927
movq 0x498(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x43fc(%rsp) # imm = 0xFFFFFFFF
movl 0x43fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x43f8(%rsp)
cmpl $0x1, 0x43f8(%rsp)
jne 0x121f927
movq 0x498(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121f8f8
movq 0x498(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121f8f6
jmp 0x121f925
movq 0x498(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4600(%rsp)
cmpq $0x0, 0x4600(%rsp)
je 0x121f923
movq 0x4600(%rsp), %rdi
callq 0x5f480
jmp 0x121f925
jmp 0x121f927
movq 0x498(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121f982
movq %rax, %rdi
callq 0x678a0
jmp 0x121f984
leaq 0x1308(%rsp), %rax
movq %rax, 0x2390(%rsp)
movq 0x2390(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x488(%rsp)
leaq 0x1308(%rsp), %rax
movq %rax, 0x2670(%rsp)
movq 0x2670(%rsp), %rax
movq %rax, 0x4110(%rsp)
movq 0x4110(%rsp), %rax
movq %rax, 0x490(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121fa6f
movq 0x490(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x410c(%rsp) # imm = 0xFFFFFFFF
movl 0x410c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4108(%rsp)
cmpl $0x1, 0x4108(%rsp)
jne 0x121fa6f
movq 0x490(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121fa40
movq 0x490(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121fa3e
jmp 0x121fa6d
movq 0x490(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4778(%rsp)
cmpq $0x0, 0x4778(%rsp)
je 0x121fa6b
movq 0x4778(%rsp), %rdi
callq 0x5f480
jmp 0x121fa6d
jmp 0x121fa6f
movq 0x490(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121faca
movq %rax, %rdi
callq 0x678a0
movq 0x488(%rsp), %rax
movq %rax, 0x1350(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1358(%rsp), %eax
leaq 0x12b8(%rsp), %rdx
movq %rdx, 0x2108(%rsp)
movq %rcx, 0x2100(%rsp)
movl %eax, 0x20fc(%rsp)
movq 0x2100(%rsp), %rax
movq %rax, 0x480(%rsp)
movb $0x0, 0x20fb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x20fc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x12b8(%rsp), %r10
movq %r10, 0x3808(%rsp)
movl %r9d, 0x3804(%rsp)
movl %r8d, 0x3800(%rsp)
movl %edi, 0x37fc(%rsp)
movq %rsi, 0x37f0(%rsp)
movq %rdx, 0x37e8(%rsp)
movl %ecx, 0x37e4(%rsp)
movq %rax, 0x37d8(%rsp)
movq 0x3808(%rsp), %rcx
movq %rcx, 0x478(%rsp)
movq 0x37f0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x37e8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x37e4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x37d8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3804(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3800(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x37fc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b30(%rsp)
movl $0x10, 0x3b2c(%rsp)
movq 0x3b30(%rsp), %rax
movslq 0x3b2c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b2c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x480(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x12e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x121fc96
movq 0x480(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x12f8(%rsp)
movb $0x1, 0x20fb(%rsp)
testb $0x1, 0x20fb(%rsp)
jne 0x121fdd1
leaq 0x12b8(%rsp), %rax
movq %rax, 0x2500(%rsp)
movq 0x2500(%rsp), %rax
movq %rax, 0x43f0(%rsp)
movq 0x43f0(%rsp), %rax
movq %rax, 0x470(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121fd74
movq 0x470(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x43ec(%rsp) # imm = 0xFFFFFFFF
movl 0x43ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x43e8(%rsp)
cmpl $0x1, 0x43e8(%rsp)
jne 0x121fd74
movq 0x470(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121fd45
movq 0x470(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121fd43
jmp 0x121fd72
movq 0x470(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4608(%rsp)
cmpq $0x0, 0x4608(%rsp)
je 0x121fd70
movq 0x4608(%rsp), %rdi
callq 0x5f480
jmp 0x121fd72
jmp 0x121fd74
movq 0x470(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121fdcf
movq %rax, %rdi
callq 0x678a0
jmp 0x121fdd1
leaq 0x12b8(%rsp), %rax
movq %rax, 0x2388(%rsp)
movq 0x2388(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x460(%rsp)
leaq 0x12b8(%rsp), %rax
movq %rax, 0x2678(%rsp)
movq 0x2678(%rsp), %rax
movq %rax, 0x4100(%rsp)
movq 0x4100(%rsp), %rax
movq %rax, 0x468(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x121febc
movq 0x468(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40fc(%rsp) # imm = 0xFFFFFFFF
movl 0x40fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40f8(%rsp)
cmpl $0x1, 0x40f8(%rsp)
jne 0x121febc
movq 0x468(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x121fe8d
movq 0x468(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x121fe8b
jmp 0x121feba
movq 0x468(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4780(%rsp)
cmpq $0x0, 0x4780(%rsp)
je 0x121feb8
movq 0x4780(%rsp), %rdi
callq 0x5f480
jmp 0x121feba
jmp 0x121febc
movq 0x468(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x121ff17
movq %rax, %rdi
callq 0x678a0
movq 0x460(%rsp), %rax
movq %rax, 0x1300(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1358(%rsp), %eax
leaq 0x1268(%rsp), %rdx
movq %rdx, 0x2880(%rsp)
movq %rcx, 0x2878(%rsp)
movl %eax, 0x2874(%rsp)
movq 0x2878(%rsp), %rax
movq %rax, 0x458(%rsp)
movb $0x0, 0x2873(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2874(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1268(%rsp), %r10
movq %r10, 0x30d0(%rsp)
movl %r9d, 0x30cc(%rsp)
movl %r8d, 0x30c8(%rsp)
movl %edi, 0x30c4(%rsp)
movq %rsi, 0x30b8(%rsp)
movq %rdx, 0x30b0(%rsp)
movl %ecx, 0x30ac(%rsp)
movq %rax, 0x30a0(%rsp)
movq 0x30d0(%rsp), %rcx
movq %rcx, 0x450(%rsp)
movq 0x30b8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x30b0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x30ac(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x30a0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x30cc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x30c8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x30c4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d40(%rsp)
movl $0x10, 0x3d3c(%rsp)
movq 0x3d40(%rsp), %rax
movslq 0x3d3c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d3c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x458(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1290(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12200e3
movq 0x458(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x12a8(%rsp)
movb $0x1, 0x2873(%rsp)
testb $0x1, 0x2873(%rsp)
jne 0x122021e
leaq 0x1268(%rsp), %rax
movq %rax, 0x2888(%rsp)
movq 0x2888(%rsp), %rax
movq %rax, 0x3ef0(%rsp)
movq 0x3ef0(%rsp), %rax
movq %rax, 0x448(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12201c1
movq 0x448(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3eec(%rsp) # imm = 0xFFFFFFFF
movl 0x3eec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ee8(%rsp)
cmpl $0x1, 0x3ee8(%rsp)
jne 0x12201c1
movq 0x448(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1220192
movq 0x448(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1220190
jmp 0x12201bf
movq 0x448(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4888(%rsp)
cmpq $0x0, 0x4888(%rsp)
je 0x12201bd
movq 0x4888(%rsp), %rdi
callq 0x5f480
jmp 0x12201bf
jmp 0x12201c1
movq 0x448(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122021c
movq %rax, %rdi
callq 0x678a0
jmp 0x122021e
leaq 0x1268(%rsp), %rax
movq %rax, 0x2a90(%rsp)
movq 0x2a90(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x438(%rsp)
leaq 0x1268(%rsp), %rax
movq %rax, 0x2680(%rsp)
movq 0x2680(%rsp), %rax
movq %rax, 0x40f0(%rsp)
movq 0x40f0(%rsp), %rax
movq %rax, 0x440(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1220309
movq 0x440(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40ec(%rsp) # imm = 0xFFFFFFFF
movl 0x40ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40e8(%rsp)
cmpl $0x1, 0x40e8(%rsp)
jne 0x1220309
movq 0x440(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12202da
movq 0x440(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12202d8
jmp 0x1220307
movq 0x440(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4788(%rsp)
cmpq $0x0, 0x4788(%rsp)
je 0x1220305
movq 0x4788(%rsp), %rdi
callq 0x5f480
jmp 0x1220307
jmp 0x1220309
movq 0x440(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1220364
movq %rax, %rdi
callq 0x678a0
movq 0x438(%rsp), %rax
movq %rax, 0x12b0(%rsp)
movl $0x0, 0x1264(%rsp)
movl 0x1264(%rsp), %eax
cmpl 0x1ed8(%rsp), %eax
jge 0x1220469
movl $0x0, 0x1260(%rsp)
movl 0x1260(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x1220411
movq 0x1350(%rsp), %rsi
movslq 0x1260(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1300(%rsp), %rdx
movslq 0x1260(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x1278060
movq 0x12b0(%rsp), %rax
movslq 0x1260(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1260(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1260(%rsp)
jmp 0x122039e
movl 0x1edc(%rsp), %ecx
movq 0x1300(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1300(%rsp)
movl 0x1edc(%rsp), %ecx
movq 0x12b0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x12b0(%rsp)
movl 0x1264(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1264(%rsp)
jmp 0x122037f
jmp 0x122046b
movl 0x1358(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1358(%rsp)
jmp 0x121f679
movl $0x0, 0x1f24(%rsp)
jmp 0x1227e25
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1eec(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f90(%rsp)
movq 0x1f90(%rsp), %rcx
movq %rcx, 0x428(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x437(%rsp)
je 0x1220528
movq 0x428(%rsp), %rax
movq %rax, 0x2d58(%rsp)
movq 0x2d58(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x437(%rsp)
movb 0x437(%rsp), %al
testb $0x1, %al
jne 0x1220535
jmp 0x1220545
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1227e25
movl $0x0, 0x125c(%rsp)
movl 0x125c(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x12212e1
movq 0x1f18(%rsp), %rcx
movl 0x125c(%rsp), %eax
leaq 0x1208(%rsp), %rdx
movq %rdx, 0x20f0(%rsp)
movq %rcx, 0x20e8(%rsp)
movl %eax, 0x20e4(%rsp)
movq 0x20e8(%rsp), %rax
movq %rax, 0x420(%rsp)
movb $0x0, 0x20e3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x20e4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1208(%rsp), %r10
movq %r10, 0x3840(%rsp)
movl %r9d, 0x383c(%rsp)
movl %r8d, 0x3838(%rsp)
movl %edi, 0x3834(%rsp)
movq %rsi, 0x3828(%rsp)
movq %rdx, 0x3820(%rsp)
movl %ecx, 0x381c(%rsp)
movq %rax, 0x3810(%rsp)
movq 0x3840(%rsp), %rcx
movq %rcx, 0x418(%rsp)
movq 0x3828(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3820(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x381c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3810(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x383c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3838(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3834(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b20(%rsp)
movl $0x10, 0x3b1c(%rsp)
movq 0x3b20(%rsp), %rax
movslq 0x3b1c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b1c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x420(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1230(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1220720
movq 0x420(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1248(%rsp)
movb $0x1, 0x20e3(%rsp)
testb $0x1, 0x20e3(%rsp)
jne 0x122085b
leaq 0x1208(%rsp), %rax
movq %rax, 0x2508(%rsp)
movq 0x2508(%rsp), %rax
movq %rax, 0x43e0(%rsp)
movq 0x43e0(%rsp), %rax
movq %rax, 0x410(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12207fe
movq 0x410(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x43dc(%rsp) # imm = 0xFFFFFFFF
movl 0x43dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x43d8(%rsp)
cmpl $0x1, 0x43d8(%rsp)
jne 0x12207fe
movq 0x410(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12207cf
movq 0x410(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12207cd
jmp 0x12207fc
movq 0x410(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4610(%rsp)
cmpq $0x0, 0x4610(%rsp)
je 0x12207fa
movq 0x4610(%rsp), %rdi
callq 0x5f480
jmp 0x12207fc
jmp 0x12207fe
movq 0x410(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1220859
movq %rax, %rdi
callq 0x678a0
jmp 0x122085b
leaq 0x1208(%rsp), %rax
movq %rax, 0x2380(%rsp)
movq 0x2380(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x400(%rsp)
leaq 0x1208(%rsp), %rax
movq %rax, 0x2688(%rsp)
movq 0x2688(%rsp), %rax
movq %rax, 0x40e0(%rsp)
movq 0x40e0(%rsp), %rax
movq %rax, 0x408(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1220946
movq 0x408(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40dc(%rsp) # imm = 0xFFFFFFFF
movl 0x40dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40d8(%rsp)
cmpl $0x1, 0x40d8(%rsp)
jne 0x1220946
movq 0x408(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1220917
movq 0x408(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1220915
jmp 0x1220944
movq 0x408(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4790(%rsp)
cmpq $0x0, 0x4790(%rsp)
je 0x1220942
movq 0x4790(%rsp), %rdi
callq 0x5f480
jmp 0x1220944
jmp 0x1220946
movq 0x408(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12209a1
movq %rax, %rdi
callq 0x678a0
movq 0x400(%rsp), %rax
movq %rax, 0x1250(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x125c(%rsp), %eax
leaq 0x11b8(%rsp), %rdx
movq %rdx, 0x20d8(%rsp)
movq %rcx, 0x20d0(%rsp)
movl %eax, 0x20cc(%rsp)
movq 0x20d0(%rsp), %rax
movq %rax, 0x3f8(%rsp)
movb $0x0, 0x20cb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x20cc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x11b8(%rsp), %r10
movq %r10, 0x3878(%rsp)
movl %r9d, 0x3874(%rsp)
movl %r8d, 0x3870(%rsp)
movl %edi, 0x386c(%rsp)
movq %rsi, 0x3860(%rsp)
movq %rdx, 0x3858(%rsp)
movl %ecx, 0x3854(%rsp)
movq %rax, 0x3848(%rsp)
movq 0x3878(%rsp), %rcx
movq %rcx, 0x3f0(%rsp)
movq 0x3860(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3858(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3854(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3848(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3874(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3870(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x386c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b10(%rsp)
movl $0x10, 0x3b0c(%rsp)
movq 0x3b10(%rsp), %rax
movslq 0x3b0c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b0c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3f8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x11e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1220b6d
movq 0x3f8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x11f8(%rsp)
movb $0x1, 0x20cb(%rsp)
testb $0x1, 0x20cb(%rsp)
jne 0x1220ca8
leaq 0x11b8(%rsp), %rax
movq %rax, 0x2510(%rsp)
movq 0x2510(%rsp), %rax
movq %rax, 0x43d0(%rsp)
movq 0x43d0(%rsp), %rax
movq %rax, 0x3e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1220c4b
movq 0x3e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x43cc(%rsp) # imm = 0xFFFFFFFF
movl 0x43cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x43c8(%rsp)
cmpl $0x1, 0x43c8(%rsp)
jne 0x1220c4b
movq 0x3e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1220c1c
movq 0x3e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1220c1a
jmp 0x1220c49
movq 0x3e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4618(%rsp)
cmpq $0x0, 0x4618(%rsp)
je 0x1220c47
movq 0x4618(%rsp), %rdi
callq 0x5f480
jmp 0x1220c49
jmp 0x1220c4b
movq 0x3e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1220ca6
movq %rax, %rdi
callq 0x678a0
jmp 0x1220ca8
leaq 0x11b8(%rsp), %rax
movq %rax, 0x2378(%rsp)
movq 0x2378(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d8(%rsp)
leaq 0x11b8(%rsp), %rax
movq %rax, 0x2690(%rsp)
movq 0x2690(%rsp), %rax
movq %rax, 0x40d0(%rsp)
movq 0x40d0(%rsp), %rax
movq %rax, 0x3e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1220d93
movq 0x3e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40cc(%rsp) # imm = 0xFFFFFFFF
movl 0x40cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40c8(%rsp)
cmpl $0x1, 0x40c8(%rsp)
jne 0x1220d93
movq 0x3e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1220d64
movq 0x3e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1220d62
jmp 0x1220d91
movq 0x3e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4798(%rsp)
cmpq $0x0, 0x4798(%rsp)
je 0x1220d8f
movq 0x4798(%rsp), %rdi
callq 0x5f480
jmp 0x1220d91
jmp 0x1220d93
movq 0x3e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1220dee
movq %rax, %rdi
callq 0x678a0
movq 0x3d8(%rsp), %rax
movq %rax, 0x1200(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x125c(%rsp), %eax
leaq 0x1168(%rsp), %rdx
movq %rdx, 0x2860(%rsp)
movq %rcx, 0x2858(%rsp)
movl %eax, 0x2854(%rsp)
movq 0x2858(%rsp), %rax
movq %rax, 0x3d0(%rsp)
movb $0x0, 0x2853(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2854(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1168(%rsp), %r10
movq %r10, 0x3108(%rsp)
movl %r9d, 0x3104(%rsp)
movl %r8d, 0x3100(%rsp)
movl %edi, 0x30fc(%rsp)
movq %rsi, 0x30f0(%rsp)
movq %rdx, 0x30e8(%rsp)
movl %ecx, 0x30e4(%rsp)
movq %rax, 0x30d8(%rsp)
movq 0x3108(%rsp), %rcx
movq %rcx, 0x3c8(%rsp)
movq 0x30f0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x30e8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x30e4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x30d8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3104(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3100(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x30fc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d30(%rsp)
movl $0x10, 0x3d2c(%rsp)
movq 0x3d30(%rsp), %rax
movslq 0x3d2c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d2c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3d0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1190(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1220fba
movq 0x3d0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x11a8(%rsp)
movb $0x1, 0x2853(%rsp)
testb $0x1, 0x2853(%rsp)
jne 0x12210f5
leaq 0x1168(%rsp), %rax
movq %rax, 0x2868(%rsp)
movq 0x2868(%rsp), %rax
movq %rax, 0x3f00(%rsp)
movq 0x3f00(%rsp), %rax
movq %rax, 0x3c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1221098
movq 0x3c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3efc(%rsp) # imm = 0xFFFFFFFF
movl 0x3efc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ef8(%rsp)
cmpl $0x1, 0x3ef8(%rsp)
jne 0x1221098
movq 0x3c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1221069
movq 0x3c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1221067
jmp 0x1221096
movq 0x3c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4880(%rsp)
cmpq $0x0, 0x4880(%rsp)
je 0x1221094
movq 0x4880(%rsp), %rdi
callq 0x5f480
jmp 0x1221096
jmp 0x1221098
movq 0x3c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12210f3
movq %rax, %rdi
callq 0x678a0
jmp 0x12210f5
leaq 0x1168(%rsp), %rax
movq %rax, 0x2a88(%rsp)
movq 0x2a88(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3b0(%rsp)
leaq 0x1168(%rsp), %rax
movq %rax, 0x2698(%rsp)
movq 0x2698(%rsp), %rax
movq %rax, 0x40c0(%rsp)
movq 0x40c0(%rsp), %rax
movq %rax, 0x3b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12211e0
movq 0x3b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40bc(%rsp) # imm = 0xFFFFFFFF
movl 0x40bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40b8(%rsp)
cmpl $0x1, 0x40b8(%rsp)
jne 0x12211e0
movq 0x3b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12211b1
movq 0x3b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12211af
jmp 0x12211de
movq 0x3b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47a0(%rsp)
cmpq $0x0, 0x47a0(%rsp)
je 0x12211dc
movq 0x47a0(%rsp), %rdi
callq 0x5f480
jmp 0x12211de
jmp 0x12211e0
movq 0x3b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122123b
movq %rax, %rdi
callq 0x678a0
movq 0x3b0(%rsp), %rax
movq %rax, 0x11b0(%rsp)
movl $0x0, 0x1164(%rsp)
movl 0x1164(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x12212c9
movq 0x1250(%rsp), %rsi
movslq 0x1164(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1200(%rsp), %rdx
movslq 0x1164(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x1278060
movq 0x11b0(%rsp), %rax
movslq 0x1164(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1164(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1164(%rsp)
jmp 0x1221256
jmp 0x12212cb
movl 0x125c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x125c(%rsp)
jmp 0x1220550
movl $0x0, 0x1f24(%rsp)
jmp 0x1227e25
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1eec(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f88(%rsp)
movq 0x1f88(%rsp), %rcx
movq %rcx, 0x3a0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x3af(%rsp)
je 0x1221388
movq 0x3a0(%rsp), %rax
movq %rax, 0x2d60(%rsp)
movq 0x2d60(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x3af(%rsp)
movb 0x3af(%rsp), %al
testb $0x1, %al
jne 0x1221395
jmp 0x12213a5
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1227e25
movq 0x1f10(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1221de5
movl $0x0, 0x1160(%rsp)
movl 0x1160(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x1221dd5
movq 0x1f18(%rsp), %rcx
movl 0x1160(%rsp), %eax
leaq 0x1110(%rsp), %rdx
movq %rdx, 0x20c0(%rsp)
movq %rcx, 0x20b8(%rsp)
movl %eax, 0x20b4(%rsp)
movq 0x20b8(%rsp), %rax
movq %rax, 0x398(%rsp)
movb $0x0, 0x20b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x20b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1110(%rsp), %r10
movq %r10, 0x38b0(%rsp)
movl %r9d, 0x38ac(%rsp)
movl %r8d, 0x38a8(%rsp)
movl %edi, 0x38a4(%rsp)
movq %rsi, 0x3898(%rsp)
movq %rdx, 0x3890(%rsp)
movl %ecx, 0x388c(%rsp)
movq %rax, 0x3880(%rsp)
movq 0x38b0(%rsp), %rcx
movq %rcx, 0x390(%rsp)
movq 0x3898(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3890(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x388c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3880(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x38ac(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x38a8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x38a4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b00(%rsp)
movl $0x10, 0x3afc(%rsp)
movq 0x3b00(%rsp), %rax
movslq 0x3afc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3afc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x398(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1138(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1221592
movq 0x398(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1150(%rsp)
movb $0x1, 0x20b3(%rsp)
testb $0x1, 0x20b3(%rsp)
jne 0x12216cd
leaq 0x1110(%rsp), %rax
movq %rax, 0x2518(%rsp)
movq 0x2518(%rsp), %rax
movq %rax, 0x43c0(%rsp)
movq 0x43c0(%rsp), %rax
movq %rax, 0x388(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1221670
movq 0x388(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x43bc(%rsp) # imm = 0xFFFFFFFF
movl 0x43bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x43b8(%rsp)
cmpl $0x1, 0x43b8(%rsp)
jne 0x1221670
movq 0x388(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1221641
movq 0x388(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122163f
jmp 0x122166e
movq 0x388(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4620(%rsp)
cmpq $0x0, 0x4620(%rsp)
je 0x122166c
movq 0x4620(%rsp), %rdi
callq 0x5f480
jmp 0x122166e
jmp 0x1221670
movq 0x388(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12216cb
movq %rax, %rdi
callq 0x678a0
jmp 0x12216cd
leaq 0x1110(%rsp), %rax
movq %rax, 0x2370(%rsp)
movq 0x2370(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x378(%rsp)
leaq 0x1110(%rsp), %rax
movq %rax, 0x26a0(%rsp)
movq 0x26a0(%rsp), %rax
movq %rax, 0x40b0(%rsp)
movq 0x40b0(%rsp), %rax
movq %rax, 0x380(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12217b8
movq 0x380(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40ac(%rsp) # imm = 0xFFFFFFFF
movl 0x40ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40a8(%rsp)
cmpl $0x1, 0x40a8(%rsp)
jne 0x12217b8
movq 0x380(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1221789
movq 0x380(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1221787
jmp 0x12217b6
movq 0x380(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47a8(%rsp)
cmpq $0x0, 0x47a8(%rsp)
je 0x12217b4
movq 0x47a8(%rsp), %rdi
callq 0x5f480
jmp 0x12217b6
jmp 0x12217b8
movq 0x380(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1221813
movq %rax, %rdi
callq 0x678a0
movq 0x378(%rsp), %rax
movq %rax, 0x1158(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1160(%rsp), %eax
movq %rcx, 0x2b28(%rsp)
movl %eax, 0x2b24(%rsp)
movq 0x2b28(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2b24(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x1108(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1160(%rsp), %eax
leaq 0x10b8(%rsp), %rdx
movq %rdx, 0x2840(%rsp)
movq %rcx, 0x2838(%rsp)
movl %eax, 0x2834(%rsp)
movq 0x2838(%rsp), %rax
movq %rax, 0x370(%rsp)
movb $0x0, 0x2833(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2834(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x10b8(%rsp), %r10
movq %r10, 0x3140(%rsp)
movl %r9d, 0x313c(%rsp)
movl %r8d, 0x3138(%rsp)
movl %edi, 0x3134(%rsp)
movq %rsi, 0x3128(%rsp)
movq %rdx, 0x3120(%rsp)
movl %ecx, 0x311c(%rsp)
movq %rax, 0x3110(%rsp)
movq 0x3140(%rsp), %rcx
movq %rcx, 0x368(%rsp)
movq 0x3128(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3120(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x311c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3110(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x313c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3138(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3134(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d20(%rsp)
movl $0x10, 0x3d1c(%rsp)
movq 0x3d20(%rsp), %rax
movslq 0x3d1c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d1c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x370(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x10e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1221a28
movq 0x370(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x10f8(%rsp)
movb $0x1, 0x2833(%rsp)
testb $0x1, 0x2833(%rsp)
jne 0x1221b63
leaq 0x10b8(%rsp), %rax
movq %rax, 0x2848(%rsp)
movq 0x2848(%rsp), %rax
movq %rax, 0x3f10(%rsp)
movq 0x3f10(%rsp), %rax
movq %rax, 0x360(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1221b06
movq 0x360(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f0c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f0c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f08(%rsp)
cmpl $0x1, 0x3f08(%rsp)
jne 0x1221b06
movq 0x360(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1221ad7
movq 0x360(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1221ad5
jmp 0x1221b04
movq 0x360(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4878(%rsp)
cmpq $0x0, 0x4878(%rsp)
je 0x1221b02
movq 0x4878(%rsp), %rdi
callq 0x5f480
jmp 0x1221b04
jmp 0x1221b06
movq 0x360(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1221b61
movq %rax, %rdi
callq 0x678a0
jmp 0x1221b63
leaq 0x10b8(%rsp), %rax
movq %rax, 0x2a80(%rsp)
movq 0x2a80(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x350(%rsp)
leaq 0x10b8(%rsp), %rax
movq %rax, 0x26a8(%rsp)
movq 0x26a8(%rsp), %rax
movq %rax, 0x40a0(%rsp)
movq 0x40a0(%rsp), %rax
movq %rax, 0x358(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1221c4e
movq 0x358(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x409c(%rsp) # imm = 0xFFFFFFFF
movl 0x409c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4098(%rsp)
cmpl $0x1, 0x4098(%rsp)
jne 0x1221c4e
movq 0x358(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1221c1f
movq 0x358(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1221c1d
jmp 0x1221c4c
movq 0x358(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47b0(%rsp)
cmpq $0x0, 0x47b0(%rsp)
je 0x1221c4a
movq 0x47b0(%rsp), %rdi
callq 0x5f480
jmp 0x1221c4c
jmp 0x1221c4e
movq 0x358(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1221ca9
movq %rax, %rdi
callq 0x678a0
movq 0x350(%rsp), %rax
movq %rax, 0x1100(%rsp)
movl $0x0, 0x10b4(%rsp)
movl 0x10b4(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jge 0x1221dbd
movq 0x1108(%rsp), %rax
movslq 0x10b4(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x10b0(%rsp)
movl $0x0, 0x10ac(%rsp)
movl 0x10ac(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x1221d65
movq 0x1158(%rsp), %rsi
movslq 0x10ac(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0x10b0(%rsp), %rdx
callq 0x1278060
movq 0x1100(%rsp), %rax
movslq 0x10ac(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x10ac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x10ac(%rsp)
jmp 0x1221d01
movl 0x1ef8(%rsp), %ecx
movq 0x1158(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1158(%rsp)
movl 0x1ef8(%rsp), %ecx
movq 0x1100(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1100(%rsp)
movl 0x10b4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x10b4(%rsp)
jmp 0x1221cc4
jmp 0x1221dbf
movl 0x1160(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1160(%rsp)
jmp 0x12213c2
movl $0x0, 0x1f24(%rsp)
jmp 0x1227e25
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1223127
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1222796
movq 0x1f10(%rsp), %rax
movq %rax, 0x2c78(%rsp)
movq $0x0, 0x2c70(%rsp)
movq 0x2c78(%rsp), %rax
movq (%rax), %rax
movq 0x2c70(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x10a8(%rsp)
movl $0x0, 0x10a4(%rsp)
movl 0x10a4(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x1222786
movq 0x1f18(%rsp), %rcx
movl 0x10a4(%rsp), %eax
leaq 0x1050(%rsp), %rdx
movq %rdx, 0x20a8(%rsp)
movq %rcx, 0x20a0(%rsp)
movl %eax, 0x209c(%rsp)
movq 0x20a0(%rsp), %rax
movq %rax, 0x348(%rsp)
movb $0x0, 0x209b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x209c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1050(%rsp), %r10
movq %r10, 0x38e8(%rsp)
movl %r9d, 0x38e4(%rsp)
movl %r8d, 0x38e0(%rsp)
movl %edi, 0x38dc(%rsp)
movq %rsi, 0x38d0(%rsp)
movq %rdx, 0x38c8(%rsp)
movl %ecx, 0x38c4(%rsp)
movq %rax, 0x38b8(%rsp)
movq 0x38e8(%rsp), %rcx
movq %rcx, 0x340(%rsp)
movq 0x38d0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x38c8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x38c4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x38b8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x38e4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x38e0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x38dc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3af0(%rsp)
movl $0x10, 0x3aec(%rsp)
movq 0x3af0(%rsp), %rax
movslq 0x3aec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3aec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x348(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1078(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1222021
movq 0x348(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1090(%rsp)
movb $0x1, 0x209b(%rsp)
testb $0x1, 0x209b(%rsp)
jne 0x122215c
leaq 0x1050(%rsp), %rax
movq %rax, 0x2520(%rsp)
movq 0x2520(%rsp), %rax
movq %rax, 0x43b0(%rsp)
movq 0x43b0(%rsp), %rax
movq %rax, 0x338(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12220ff
movq 0x338(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x43ac(%rsp) # imm = 0xFFFFFFFF
movl 0x43ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x43a8(%rsp)
cmpl $0x1, 0x43a8(%rsp)
jne 0x12220ff
movq 0x338(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12220d0
movq 0x338(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12220ce
jmp 0x12220fd
movq 0x338(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4628(%rsp)
cmpq $0x0, 0x4628(%rsp)
je 0x12220fb
movq 0x4628(%rsp), %rdi
callq 0x5f480
jmp 0x12220fd
jmp 0x12220ff
movq 0x338(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122215a
movq %rax, %rdi
callq 0x678a0
jmp 0x122215c
leaq 0x1050(%rsp), %rax
movq %rax, 0x2368(%rsp)
movq 0x2368(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x328(%rsp)
leaq 0x1050(%rsp), %rax
movq %rax, 0x26b0(%rsp)
movq 0x26b0(%rsp), %rax
movq %rax, 0x4090(%rsp)
movq 0x4090(%rsp), %rax
movq %rax, 0x330(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1222247
movq 0x330(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x408c(%rsp) # imm = 0xFFFFFFFF
movl 0x408c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4088(%rsp)
cmpl $0x1, 0x4088(%rsp)
jne 0x1222247
movq 0x330(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1222218
movq 0x330(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1222216
jmp 0x1222245
movq 0x330(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47b8(%rsp)
cmpq $0x0, 0x47b8(%rsp)
je 0x1222243
movq 0x47b8(%rsp), %rdi
callq 0x5f480
jmp 0x1222245
jmp 0x1222247
movq 0x330(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12222a2
movq %rax, %rdi
callq 0x678a0
movq 0x328(%rsp), %rax
movq %rax, 0x1098(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x10a4(%rsp), %eax
leaq 0x1000(%rsp), %rdx
movq %rdx, 0x2820(%rsp)
movq %rcx, 0x2818(%rsp)
movl %eax, 0x2814(%rsp)
movq 0x2818(%rsp), %rax
movq %rax, 0x320(%rsp)
movb $0x0, 0x2813(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2814(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1000(%rsp), %r10
movq %r10, 0x3178(%rsp)
movl %r9d, 0x3174(%rsp)
movl %r8d, 0x3170(%rsp)
movl %edi, 0x316c(%rsp)
movq %rsi, 0x3160(%rsp)
movq %rdx, 0x3158(%rsp)
movl %ecx, 0x3154(%rsp)
movq %rax, 0x3148(%rsp)
movq 0x3178(%rsp), %rcx
movq %rcx, 0x318(%rsp)
movq 0x3160(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3158(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3154(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3148(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3174(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3170(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x316c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d10(%rsp)
movl $0x10, 0x3d0c(%rsp)
movq 0x3d10(%rsp), %rax
movslq 0x3d0c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d0c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x320(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1028(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x122246e
movq 0x320(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1040(%rsp)
movb $0x1, 0x2813(%rsp)
testb $0x1, 0x2813(%rsp)
jne 0x12225a9
leaq 0x1000(%rsp), %rax
movq %rax, 0x2828(%rsp)
movq 0x2828(%rsp), %rax
movq %rax, 0x3f20(%rsp)
movq 0x3f20(%rsp), %rax
movq %rax, 0x310(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122254c
movq 0x310(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f1c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f1c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f18(%rsp)
cmpl $0x1, 0x3f18(%rsp)
jne 0x122254c
movq 0x310(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122251d
movq 0x310(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122251b
jmp 0x122254a
movq 0x310(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4870(%rsp)
cmpq $0x0, 0x4870(%rsp)
je 0x1222548
movq 0x4870(%rsp), %rdi
callq 0x5f480
jmp 0x122254a
jmp 0x122254c
movq 0x310(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12225a7
movq %rax, %rdi
callq 0x678a0
jmp 0x12225a9
leaq 0x1000(%rsp), %rax
movq %rax, 0x2a78(%rsp)
movq 0x2a78(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x300(%rsp)
leaq 0x1000(%rsp), %rax
movq %rax, 0x26b8(%rsp)
movq 0x26b8(%rsp), %rax
movq %rax, 0x4080(%rsp)
movq 0x4080(%rsp), %rax
movq %rax, 0x308(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1222694
movq 0x308(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x407c(%rsp) # imm = 0xFFFFFFFF
movl 0x407c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4078(%rsp)
cmpl $0x1, 0x4078(%rsp)
jne 0x1222694
movq 0x308(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1222665
movq 0x308(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1222663
jmp 0x1222692
movq 0x308(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47c0(%rsp)
cmpq $0x0, 0x47c0(%rsp)
je 0x1222690
movq 0x47c0(%rsp), %rdi
callq 0x5f480
jmp 0x1222692
jmp 0x1222694
movq 0x308(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12226ef
movq %rax, %rdi
callq 0x678a0
movq 0x300(%rsp), %rax
movq %rax, 0x1048(%rsp)
movl $0x0, 0xffc(%rsp)
movl 0xffc(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x122276e
movq 0x1098(%rsp), %rsi
movslq 0xffc(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0x10a8(%rsp), %rdx
callq 0x1278060
movq 0x1048(%rsp), %rax
movslq 0xffc(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xffc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xffc(%rsp)
jmp 0x122270a
jmp 0x1222770
movl 0x10a4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x10a4(%rsp)
jmp 0x1221e51
movl $0x0, 0x1f24(%rsp)
jmp 0x1227e25
movl $0x0, 0xff8(%rsp)
movl 0xff8(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x1223117
movq 0x1f18(%rsp), %rcx
movl 0xff8(%rsp), %eax
leaq 0xfa8(%rsp), %rdx
movq %rdx, 0x2090(%rsp)
movq %rcx, 0x2088(%rsp)
movl %eax, 0x2084(%rsp)
movq 0x2088(%rsp), %rax
movq %rax, 0x2f8(%rsp)
movb $0x0, 0x2083(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2084(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xfa8(%rsp), %r10
movq %r10, 0x3920(%rsp)
movl %r9d, 0x391c(%rsp)
movl %r8d, 0x3918(%rsp)
movl %edi, 0x3914(%rsp)
movq %rsi, 0x3908(%rsp)
movq %rdx, 0x3900(%rsp)
movl %ecx, 0x38fc(%rsp)
movq %rax, 0x38f0(%rsp)
movq 0x3920(%rsp), %rcx
movq %rcx, 0x2f0(%rsp)
movq 0x3908(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3900(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x38fc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x38f0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x391c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3918(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3914(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ae0(%rsp)
movl $0x10, 0x3adc(%rsp)
movq 0x3ae0(%rsp), %rax
movslq 0x3adc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3adc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2f8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xfd0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1222971
movq 0x2f8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xfe8(%rsp)
movb $0x1, 0x2083(%rsp)
testb $0x1, 0x2083(%rsp)
jne 0x1222aac
leaq 0xfa8(%rsp), %rax
movq %rax, 0x2528(%rsp)
movq 0x2528(%rsp), %rax
movq %rax, 0x43a0(%rsp)
movq 0x43a0(%rsp), %rax
movq %rax, 0x2e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1222a4f
movq 0x2e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x439c(%rsp) # imm = 0xFFFFFFFF
movl 0x439c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4398(%rsp)
cmpl $0x1, 0x4398(%rsp)
jne 0x1222a4f
movq 0x2e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1222a20
movq 0x2e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1222a1e
jmp 0x1222a4d
movq 0x2e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4630(%rsp)
cmpq $0x0, 0x4630(%rsp)
je 0x1222a4b
movq 0x4630(%rsp), %rdi
callq 0x5f480
jmp 0x1222a4d
jmp 0x1222a4f
movq 0x2e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1222aaa
movq %rax, %rdi
callq 0x678a0
jmp 0x1222aac
leaq 0xfa8(%rsp), %rax
movq %rax, 0x2360(%rsp)
movq 0x2360(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2d8(%rsp)
leaq 0xfa8(%rsp), %rax
movq %rax, 0x26c0(%rsp)
movq 0x26c0(%rsp), %rax
movq %rax, 0x4070(%rsp)
movq 0x4070(%rsp), %rax
movq %rax, 0x2e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1222b97
movq 0x2e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x406c(%rsp) # imm = 0xFFFFFFFF
movl 0x406c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4068(%rsp)
cmpl $0x1, 0x4068(%rsp)
jne 0x1222b97
movq 0x2e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1222b68
movq 0x2e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1222b66
jmp 0x1222b95
movq 0x2e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47c8(%rsp)
cmpq $0x0, 0x47c8(%rsp)
je 0x1222b93
movq 0x47c8(%rsp), %rdi
callq 0x5f480
jmp 0x1222b95
jmp 0x1222b97
movq 0x2e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1222bf2
movq %rax, %rdi
callq 0x678a0
movq 0x2d8(%rsp), %rax
movq %rax, 0xff0(%rsp)
movq 0x1f10(%rsp), %rcx
movslq 0xff8(%rsp), %rax
movq %rcx, 0x2c68(%rsp)
movq %rax, 0x2c60(%rsp)
movq 0x2c68(%rsp), %rax
movq (%rax), %rax
movq 0x2c60(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xfa4(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0xff8(%rsp), %eax
leaq 0xf50(%rsp), %rdx
movq %rdx, 0x2800(%rsp)
movq %rcx, 0x27f8(%rsp)
movl %eax, 0x27f4(%rsp)
movq 0x27f8(%rsp), %rax
movq %rax, 0x2d0(%rsp)
movb $0x0, 0x27f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x27f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xf50(%rsp), %r10
movq %r10, 0x31b0(%rsp)
movl %r9d, 0x31ac(%rsp)
movl %r8d, 0x31a8(%rsp)
movl %edi, 0x31a4(%rsp)
movq %rsi, 0x3198(%rsp)
movq %rdx, 0x3190(%rsp)
movl %ecx, 0x318c(%rsp)
movq %rax, 0x3180(%rsp)
movq 0x31b0(%rsp), %rcx
movq %rcx, 0x2c8(%rsp)
movq 0x3198(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3190(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x318c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3180(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x31ac(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x31a8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x31a4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d00(%rsp)
movl $0x10, 0x3cfc(%rsp)
movq 0x3d00(%rsp), %rax
movslq 0x3cfc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cfc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2d0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf78(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1222dff
movq 0x2d0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xf90(%rsp)
movb $0x1, 0x27f3(%rsp)
testb $0x1, 0x27f3(%rsp)
jne 0x1222f3a
leaq 0xf50(%rsp), %rax
movq %rax, 0x2808(%rsp)
movq 0x2808(%rsp), %rax
movq %rax, 0x3f30(%rsp)
movq 0x3f30(%rsp), %rax
movq %rax, 0x2c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1222edd
movq 0x2c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f2c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f2c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f28(%rsp)
cmpl $0x1, 0x3f28(%rsp)
jne 0x1222edd
movq 0x2c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1222eae
movq 0x2c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1222eac
jmp 0x1222edb
movq 0x2c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4868(%rsp)
cmpq $0x0, 0x4868(%rsp)
je 0x1222ed9
movq 0x4868(%rsp), %rdi
callq 0x5f480
jmp 0x1222edb
jmp 0x1222edd
movq 0x2c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1222f38
movq %rax, %rdi
callq 0x678a0
jmp 0x1222f3a
leaq 0xf50(%rsp), %rax
movq %rax, 0x2a70(%rsp)
movq 0x2a70(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2b0(%rsp)
leaq 0xf50(%rsp), %rax
movq %rax, 0x26c8(%rsp)
movq 0x26c8(%rsp), %rax
movq %rax, 0x4060(%rsp)
movq 0x4060(%rsp), %rax
movq %rax, 0x2b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1223025
movq 0x2b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x405c(%rsp) # imm = 0xFFFFFFFF
movl 0x405c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4058(%rsp)
cmpl $0x1, 0x4058(%rsp)
jne 0x1223025
movq 0x2b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1222ff6
movq 0x2b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1222ff4
jmp 0x1223023
movq 0x2b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47d0(%rsp)
cmpq $0x0, 0x47d0(%rsp)
je 0x1223021
movq 0x47d0(%rsp), %rdi
callq 0x5f480
jmp 0x1223023
jmp 0x1223025
movq 0x2b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1223080
movq %rax, %rdi
callq 0x678a0
movq 0x2b0(%rsp), %rax
movq %rax, 0xf98(%rsp)
movl $0x0, 0xf4c(%rsp)
movl 0xf4c(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x12230ff
movq 0xff0(%rsp), %rsi
movslq 0xf4c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0xfa4(%rsp), %rdx
callq 0x1278060
movq 0xf98(%rsp), %rax
movslq 0xf4c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xf4c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xf4c(%rsp)
jmp 0x122309b
jmp 0x1223101
movl 0xff8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xff8(%rsp)
jmp 0x12227a1
movl $0x0, 0x1f24(%rsp)
jmp 0x1227e25
jmp 0x1227e18
movq 0x1f18(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1224c82
movq 0x1f10(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1223c75
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed4(%rsp), %ecx
movl 0x1ed0(%rsp), %r8d
movq 0x1ee0(%rsp), %r9
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6fb30
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f80(%rsp)
movq 0x1f80(%rsp), %rcx
movq %rcx, 0x2a0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x2af(%rsp)
je 0x12231f3
movq 0x2a0(%rsp), %rax
movq %rax, 0x2d68(%rsp)
movq 0x2d68(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x2af(%rsp)
movb 0x2af(%rsp), %al
testb $0x1, %al
jne 0x1223200
jmp 0x1223210
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1227e25
movl $0x0, 0xf48(%rsp)
movl 0xf48(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x1223c65
movq 0x1f18(%rsp), %rcx
movl 0xf48(%rsp), %eax
movq %rcx, 0x2b18(%rsp)
movl %eax, 0x2b14(%rsp)
movq 0x2b18(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2b14(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xf40(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0xf48(%rsp), %eax
leaq 0xef0(%rsp), %rdx
movq %rdx, 0x2078(%rsp)
movq %rcx, 0x2070(%rsp)
movl %eax, 0x206c(%rsp)
movq 0x2070(%rsp), %rax
movq %rax, 0x298(%rsp)
movb $0x0, 0x206b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x206c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xef0(%rsp), %r10
movq %r10, 0x3958(%rsp)
movl %r9d, 0x3954(%rsp)
movl %r8d, 0x3950(%rsp)
movl %edi, 0x394c(%rsp)
movq %rsi, 0x3940(%rsp)
movq %rdx, 0x3938(%rsp)
movl %ecx, 0x3934(%rsp)
movq %rax, 0x3928(%rsp)
movq 0x3958(%rsp), %rcx
movq %rcx, 0x290(%rsp)
movq 0x3940(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3938(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3934(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3928(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3954(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3950(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x394c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ad0(%rsp)
movl $0x10, 0x3acc(%rsp)
movq 0x3ad0(%rsp), %rax
movslq 0x3acc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3acc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x298(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf18(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1223434
movq 0x298(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xf30(%rsp)
movb $0x1, 0x206b(%rsp)
testb $0x1, 0x206b(%rsp)
jne 0x122356f
leaq 0xef0(%rsp), %rax
movq %rax, 0x2530(%rsp)
movq 0x2530(%rsp), %rax
movq %rax, 0x4390(%rsp)
movq 0x4390(%rsp), %rax
movq %rax, 0x288(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1223512
movq 0x288(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x438c(%rsp) # imm = 0xFFFFFFFF
movl 0x438c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4388(%rsp)
cmpl $0x1, 0x4388(%rsp)
jne 0x1223512
movq 0x288(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12234e3
movq 0x288(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12234e1
jmp 0x1223510
movq 0x288(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4638(%rsp)
cmpq $0x0, 0x4638(%rsp)
je 0x122350e
movq 0x4638(%rsp), %rdi
callq 0x5f480
jmp 0x1223510
jmp 0x1223512
movq 0x288(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122356d
movq %rax, %rdi
callq 0x678a0
jmp 0x122356f
leaq 0xef0(%rsp), %rax
movq %rax, 0x2358(%rsp)
movq 0x2358(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x278(%rsp)
leaq 0xef0(%rsp), %rax
movq %rax, 0x26d0(%rsp)
movq 0x26d0(%rsp), %rax
movq %rax, 0x4050(%rsp)
movq 0x4050(%rsp), %rax
movq %rax, 0x280(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122365a
movq 0x280(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x404c(%rsp) # imm = 0xFFFFFFFF
movl 0x404c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4048(%rsp)
cmpl $0x1, 0x4048(%rsp)
jne 0x122365a
movq 0x280(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122362b
movq 0x280(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1223629
jmp 0x1223658
movq 0x280(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47d8(%rsp)
cmpq $0x0, 0x47d8(%rsp)
je 0x1223656
movq 0x47d8(%rsp), %rdi
callq 0x5f480
jmp 0x1223658
jmp 0x122365a
movq 0x280(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12236b5
movq %rax, %rdi
callq 0x678a0
movq 0x278(%rsp), %rax
movq %rax, 0xf38(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0xf48(%rsp), %eax
leaq 0xea0(%rsp), %rdx
movq %rdx, 0x27e0(%rsp)
movq %rcx, 0x27d8(%rsp)
movl %eax, 0x27d4(%rsp)
movq 0x27d8(%rsp), %rax
movq %rax, 0x270(%rsp)
movb $0x0, 0x27d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x27d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xea0(%rsp), %r10
movq %r10, 0x31e8(%rsp)
movl %r9d, 0x31e4(%rsp)
movl %r8d, 0x31e0(%rsp)
movl %edi, 0x31dc(%rsp)
movq %rsi, 0x31d0(%rsp)
movq %rdx, 0x31c8(%rsp)
movl %ecx, 0x31c4(%rsp)
movq %rax, 0x31b8(%rsp)
movq 0x31e8(%rsp), %rcx
movq %rcx, 0x268(%rsp)
movq 0x31d0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x31c8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x31c4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x31b8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x31e4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x31e0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x31dc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3cf0(%rsp)
movl $0x10, 0x3cec(%rsp)
movq 0x3cf0(%rsp), %rax
movslq 0x3cec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x270(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xec8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1223881
movq 0x270(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xee0(%rsp)
movb $0x1, 0x27d3(%rsp)
testb $0x1, 0x27d3(%rsp)
jne 0x12239bc
leaq 0xea0(%rsp), %rax
movq %rax, 0x27e8(%rsp)
movq 0x27e8(%rsp), %rax
movq %rax, 0x3f40(%rsp)
movq 0x3f40(%rsp), %rax
movq %rax, 0x260(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122395f
movq 0x260(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f3c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f3c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f38(%rsp)
cmpl $0x1, 0x3f38(%rsp)
jne 0x122395f
movq 0x260(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1223930
movq 0x260(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122392e
jmp 0x122395d
movq 0x260(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4860(%rsp)
cmpq $0x0, 0x4860(%rsp)
je 0x122395b
movq 0x4860(%rsp), %rdi
callq 0x5f480
jmp 0x122395d
jmp 0x122395f
movq 0x260(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12239ba
movq %rax, %rdi
callq 0x678a0
jmp 0x12239bc
leaq 0xea0(%rsp), %rax
movq %rax, 0x2a68(%rsp)
movq 0x2a68(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x250(%rsp)
leaq 0xea0(%rsp), %rax
movq %rax, 0x26d8(%rsp)
movq 0x26d8(%rsp), %rax
movq %rax, 0x4040(%rsp)
movq 0x4040(%rsp), %rax
movq %rax, 0x258(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1223aa7
movq 0x258(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x403c(%rsp) # imm = 0xFFFFFFFF
movl 0x403c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4038(%rsp)
cmpl $0x1, 0x4038(%rsp)
jne 0x1223aa7
movq 0x258(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1223a78
movq 0x258(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1223a76
jmp 0x1223aa5
movq 0x258(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47e0(%rsp)
cmpq $0x0, 0x47e0(%rsp)
je 0x1223aa3
movq 0x47e0(%rsp), %rdi
callq 0x5f480
jmp 0x1223aa5
jmp 0x1223aa7
movq 0x258(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1223b02
movq %rax, %rdi
callq 0x678a0
movq 0x250(%rsp), %rax
movq %rax, 0xee8(%rsp)
movl $0x0, 0xe9c(%rsp)
movl 0xe9c(%rsp), %eax
cmpl 0x1ed4(%rsp), %eax
jge 0x1223c4d
movq 0xf40(%rsp), %rax
movslq 0xe9c(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xe98(%rsp)
movl $0x0, 0xe94(%rsp)
movl 0xe94(%rsp), %eax
cmpl 0x1ed8(%rsp), %eax
jge 0x1223c35
movl $0x0, 0xe90(%rsp)
movl 0xe90(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x1223bdd
movq 0xf38(%rsp), %rdx
movslq 0xe90(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xe98(%rsp), %rsi
callq 0x1278060
movq 0xee8(%rsp), %rax
movslq 0xe90(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xe90(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xe90(%rsp)
jmp 0x1223b79
movl 0x1edc(%rsp), %ecx
movq 0xf38(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xf38(%rsp)
movl 0x1edc(%rsp), %ecx
movq 0xee8(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xee8(%rsp)
movl 0xe94(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xe94(%rsp)
jmp 0x1223b5a
jmp 0x1223c37
movl 0xe9c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xe9c(%rsp)
jmp 0x1223b1d
jmp 0x1223c4f
movl 0xf48(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xf48(%rsp)
jmp 0x122321b
movl $0x0, 0x1f24(%rsp)
jmp 0x1227e25
movq 0x1f10(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1224769
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed0(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f78(%rsp)
movq 0x1f78(%rsp), %rcx
movq %rcx, 0x240(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x24f(%rsp)
je 0x1223d1e
movq 0x240(%rsp), %rax
movq %rax, 0x2d70(%rsp)
movq 0x2d70(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x24f(%rsp)
movb 0x24f(%rsp), %al
testb $0x1, %al
jne 0x1223d2b
jmp 0x1223d3b
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1227e25
movl $0x0, 0xe8c(%rsp)
movl 0xe8c(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x1224759
movq 0x1f18(%rsp), %rcx
movl 0xe8c(%rsp), %eax
movq %rcx, 0x2b08(%rsp)
movl %eax, 0x2b04(%rsp)
movq 0x2b08(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2b04(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xe80(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0xe8c(%rsp), %eax
leaq 0xe30(%rsp), %rdx
movq %rdx, 0x2060(%rsp)
movq %rcx, 0x2058(%rsp)
movl %eax, 0x2054(%rsp)
movq 0x2058(%rsp), %rax
movq %rax, 0x238(%rsp)
movb $0x0, 0x2053(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2054(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xe30(%rsp), %r10
movq %r10, 0x3990(%rsp)
movl %r9d, 0x398c(%rsp)
movl %r8d, 0x3988(%rsp)
movl %edi, 0x3984(%rsp)
movq %rsi, 0x3978(%rsp)
movq %rdx, 0x3970(%rsp)
movl %ecx, 0x396c(%rsp)
movq %rax, 0x3960(%rsp)
movq 0x3990(%rsp), %rcx
movq %rcx, 0x230(%rsp)
movq 0x3978(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3970(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x396c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3960(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x398c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3988(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3984(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ac0(%rsp)
movl $0x10, 0x3abc(%rsp)
movq 0x3ac0(%rsp), %rax
movslq 0x3abc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3abc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x238(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xe58(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1223f5f
movq 0x238(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xe70(%rsp)
movb $0x1, 0x2053(%rsp)
testb $0x1, 0x2053(%rsp)
jne 0x122409a
leaq 0xe30(%rsp), %rax
movq %rax, 0x2538(%rsp)
movq 0x2538(%rsp), %rax
movq %rax, 0x4380(%rsp)
movq 0x4380(%rsp), %rax
movq %rax, 0x228(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122403d
movq 0x228(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x437c(%rsp) # imm = 0xFFFFFFFF
movl 0x437c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4378(%rsp)
cmpl $0x1, 0x4378(%rsp)
jne 0x122403d
movq 0x228(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122400e
movq 0x228(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122400c
jmp 0x122403b
movq 0x228(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4640(%rsp)
cmpq $0x0, 0x4640(%rsp)
je 0x1224039
movq 0x4640(%rsp), %rdi
callq 0x5f480
jmp 0x122403b
jmp 0x122403d
movq 0x228(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1224098
movq %rax, %rdi
callq 0x678a0
jmp 0x122409a
leaq 0xe30(%rsp), %rax
movq %rax, 0x2350(%rsp)
movq 0x2350(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x218(%rsp)
leaq 0xe30(%rsp), %rax
movq %rax, 0x26e0(%rsp)
movq 0x26e0(%rsp), %rax
movq %rax, 0x4030(%rsp)
movq 0x4030(%rsp), %rax
movq %rax, 0x220(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1224185
movq 0x220(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x402c(%rsp) # imm = 0xFFFFFFFF
movl 0x402c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4028(%rsp)
cmpl $0x1, 0x4028(%rsp)
jne 0x1224185
movq 0x220(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1224156
movq 0x220(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1224154
jmp 0x1224183
movq 0x220(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47e8(%rsp)
cmpq $0x0, 0x47e8(%rsp)
je 0x1224181
movq 0x47e8(%rsp), %rdi
callq 0x5f480
jmp 0x1224183
jmp 0x1224185
movq 0x220(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12241e0
movq %rax, %rdi
callq 0x678a0
movq 0x218(%rsp), %rax
movq %rax, 0xe78(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0xe8c(%rsp), %eax
leaq 0xde0(%rsp), %rdx
movq %rdx, 0x27c0(%rsp)
movq %rcx, 0x27b8(%rsp)
movl %eax, 0x27b4(%rsp)
movq 0x27b8(%rsp), %rax
movq %rax, 0x210(%rsp)
movb $0x0, 0x27b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x27b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xde0(%rsp), %r10
movq %r10, 0x3220(%rsp)
movl %r9d, 0x321c(%rsp)
movl %r8d, 0x3218(%rsp)
movl %edi, 0x3214(%rsp)
movq %rsi, 0x3208(%rsp)
movq %rdx, 0x3200(%rsp)
movl %ecx, 0x31fc(%rsp)
movq %rax, 0x31f0(%rsp)
movq 0x3220(%rsp), %rcx
movq %rcx, 0x208(%rsp)
movq 0x3208(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3200(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x31fc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x31f0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x321c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3218(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3214(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ce0(%rsp)
movl $0x10, 0x3cdc(%rsp)
movq 0x3ce0(%rsp), %rax
movslq 0x3cdc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cdc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x210(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xe08(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12243ac
movq 0x210(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xe20(%rsp)
movb $0x1, 0x27b3(%rsp)
testb $0x1, 0x27b3(%rsp)
jne 0x12244e7
leaq 0xde0(%rsp), %rax
movq %rax, 0x27c8(%rsp)
movq 0x27c8(%rsp), %rax
movq %rax, 0x3f50(%rsp)
movq 0x3f50(%rsp), %rax
movq %rax, 0x200(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122448a
movq 0x200(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f4c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f4c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f48(%rsp)
cmpl $0x1, 0x3f48(%rsp)
jne 0x122448a
movq 0x200(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122445b
movq 0x200(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1224459
jmp 0x1224488
movq 0x200(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4858(%rsp)
cmpq $0x0, 0x4858(%rsp)
je 0x1224486
movq 0x4858(%rsp), %rdi
callq 0x5f480
jmp 0x1224488
jmp 0x122448a
movq 0x200(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12244e5
movq %rax, %rdi
callq 0x678a0
jmp 0x12244e7
leaq 0xde0(%rsp), %rax
movq %rax, 0x2a60(%rsp)
movq 0x2a60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1f0(%rsp)
leaq 0xde0(%rsp), %rax
movq %rax, 0x26e8(%rsp)
movq 0x26e8(%rsp), %rax
movq %rax, 0x4020(%rsp)
movq 0x4020(%rsp), %rax
movq %rax, 0x1f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12245d2
movq 0x1f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x401c(%rsp) # imm = 0xFFFFFFFF
movl 0x401c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4018(%rsp)
cmpl $0x1, 0x4018(%rsp)
jne 0x12245d2
movq 0x1f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12245a3
movq 0x1f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12245a1
jmp 0x12245d0
movq 0x1f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47f0(%rsp)
cmpq $0x0, 0x47f0(%rsp)
je 0x12245ce
movq 0x47f0(%rsp), %rdi
callq 0x5f480
jmp 0x12245d0
jmp 0x12245d2
movq 0x1f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122462d
movq %rax, %rdi
callq 0x678a0
movq 0x1f0(%rsp), %rax
movq %rax, 0xe28(%rsp)
movl $0x0, 0xddc(%rsp)
movl 0xddc(%rsp), %eax
cmpl 0x1ed8(%rsp), %eax
jge 0x1224741
movq 0xe80(%rsp), %rax
movslq 0xddc(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xdd8(%rsp)
movl $0x0, 0xdd4(%rsp)
movl 0xdd4(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x12246e9
movq 0xe78(%rsp), %rdx
movslq 0xdd4(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xdd8(%rsp), %rsi
callq 0x1278060
movq 0xe28(%rsp), %rax
movslq 0xdd4(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xdd4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdd4(%rsp)
jmp 0x1224685
movl 0x1edc(%rsp), %ecx
movq 0xe78(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xe78(%rsp)
movl 0x1edc(%rsp), %ecx
movq 0xe28(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xe28(%rsp)
movl 0xddc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xddc(%rsp)
jmp 0x1224648
jmp 0x1224743
movl 0xe8c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xe8c(%rsp)
jmp 0x1223d46
movl $0x0, 0x1f24(%rsp)
jmp 0x1227e25
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movq 0x1ee0(%rsp), %rcx
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6f5a0
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f70(%rsp)
movq 0x1f70(%rsp), %rcx
movq %rcx, 0x1e0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1ef(%rsp)
je 0x12247f9
movq 0x1e0(%rsp), %rax
movq %rax, 0x2d78(%rsp)
movq 0x2d78(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1ef(%rsp)
movb 0x1ef(%rsp), %al
testb $0x1, %al
jne 0x1224806
jmp 0x1224816
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1227e25
movq 0x1f10(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1224926
movl $0x0, 0xdd0(%rsp)
movl 0xdd0(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x1224916
movq 0x1f18(%rsp), %rcx
movslq 0xdd0(%rsp), %rax
movq %rcx, 0x2c58(%rsp)
movq %rax, 0x2c50(%rsp)
movq 0x2c58(%rsp), %rax
movq (%rax), %rsi
movq 0x2c50(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1f10(%rsp), %rcx
movslq 0xdd0(%rsp), %rax
movq %rcx, 0x2c48(%rsp)
movq %rax, 0x2c40(%rsp)
movq 0x2c48(%rsp), %rax
movq (%rax), %rdx
movq 0x2c40(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x1278060
movq 0x1f08(%rsp), %rcx
movslq 0xdd0(%rsp), %rax
movq %rcx, 0x2cf8(%rsp)
movq %rax, 0x2cf0(%rsp)
movq 0x2cf8(%rsp), %rax
movq (%rax), %rax
movq 0x2cf0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xdd0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdd0(%rsp)
jmp 0x1224833
movl $0x0, 0x1f24(%rsp)
jmp 0x1227e25
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1224c7d
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movq 0x1ee0(%rsp), %rcx
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6f5a0
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f68(%rsp)
movq 0x1f68(%rsp), %rcx
movq %rcx, 0x1d0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1df(%rsp)
je 0x12249c8
movq 0x1d0(%rsp), %rax
movq %rax, 0x2d80(%rsp)
movq 0x2d80(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1df(%rsp)
movb 0x1df(%rsp), %al
testb $0x1, %al
jne 0x12249d5
jmp 0x12249e5
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1227e25
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1224b00
movq 0x1f10(%rsp), %rax
movq %rax, 0x2c38(%rsp)
movq $0x0, 0x2c30(%rsp)
movq 0x2c38(%rsp), %rax
movq (%rax), %rax
movq 0x2c30(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xdcc(%rsp)
movl $0x0, 0xdc8(%rsp)
movl 0xdc8(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x1224af0
movq 0x1f18(%rsp), %rcx
movslq 0xdc8(%rsp), %rax
movq %rcx, 0x2c28(%rsp)
movq %rax, 0x2c20(%rsp)
movq 0x2c28(%rsp), %rax
movq (%rax), %rsi
movq 0x2c20(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0xdcc(%rsp), %rdx
callq 0x1278060
movq 0x1f08(%rsp), %rcx
movslq 0xdc8(%rsp), %rax
movq %rcx, 0x2ce8(%rsp)
movq %rax, 0x2ce0(%rsp)
movq 0x2ce8(%rsp), %rax
movq (%rax), %rax
movq 0x2ce0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xdc8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdc8(%rsp)
jmp 0x1224a3f
movl $0x0, 0x1f24(%rsp)
jmp 0x1227e25
movq 0x1f18(%rsp), %rax
movq %rax, 0x2348(%rsp)
movq 0x2348(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xdc0(%rsp)
movq 0x1f08(%rsp), %rax
movq %rax, 0x2a58(%rsp)
movq 0x2a58(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xdb8(%rsp)
movl $0x0, 0xdb4(%rsp)
movl 0xdb4(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jge 0x1224c6d
movq 0x1f10(%rsp), %rcx
movslq 0xdb4(%rsp), %rax
movq %rcx, 0x2c18(%rsp)
movq %rax, 0x2c10(%rsp)
movq 0x2c18(%rsp), %rax
movq (%rax), %rax
movq 0x2c10(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xdb0(%rsp)
movl $0x0, 0xdac(%rsp)
movl 0xdac(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x1224c15
movq 0xdc0(%rsp), %rsi
movslq 0xdac(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0xdb0(%rsp), %rdx
callq 0x1278060
movq 0xdb8(%rsp), %rax
movslq 0xdac(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xdac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdac(%rsp)
jmp 0x1224bb1
movl 0x1ef8(%rsp), %ecx
movq 0xdc0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xdc0(%rsp)
movl 0x1ef8(%rsp), %ecx
movq 0xdb8(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xdb8(%rsp)
movl 0xdb4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdb4(%rsp)
jmp 0x1224b51
movl $0x0, 0x1f24(%rsp)
jmp 0x1227e25
jmp 0x1227e16
movq 0x1f18(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1227e14
movq 0x1f18(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x12264e3
movq 0x1f10(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1225705
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed4(%rsp), %ecx
movl 0x1ed0(%rsp), %r8d
movq 0x1ee0(%rsp), %r9
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6fb30
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f60(%rsp)
movq 0x1f60(%rsp), %rcx
movq %rcx, 0x1c0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1cf(%rsp)
je 0x1224d5b
movq 0x1c0(%rsp), %rax
movq %rax, 0x2d88(%rsp)
movq 0x2d88(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1cf(%rsp)
movb 0x1cf(%rsp), %al
testb $0x1, %al
jne 0x1224d68
jmp 0x1224d78
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1227e25
movq 0x1f18(%rsp), %rax
movq %rax, 0x2c08(%rsp)
movq $0x0, 0x2c00(%rsp)
movq 0x2c08(%rsp), %rax
movq (%rax), %rax
movq 0x2c00(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xda8(%rsp)
movl $0x0, 0xda4(%rsp)
movl 0xda4(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x12256f5
movq 0x1f10(%rsp), %rcx
movl 0xda4(%rsp), %eax
leaq 0xd50(%rsp), %rdx
movq %rdx, 0x2048(%rsp)
movq %rcx, 0x2040(%rsp)
movl %eax, 0x203c(%rsp)
movq 0x2040(%rsp), %rax
movq %rax, 0x1b8(%rsp)
movb $0x0, 0x203b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x203c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xd50(%rsp), %r10
movq %r10, 0x39c8(%rsp)
movl %r9d, 0x39c4(%rsp)
movl %r8d, 0x39c0(%rsp)
movl %edi, 0x39bc(%rsp)
movq %rsi, 0x39b0(%rsp)
movq %rdx, 0x39a8(%rsp)
movl %ecx, 0x39a4(%rsp)
movq %rax, 0x3998(%rsp)
movq 0x39c8(%rsp), %rcx
movq %rcx, 0x1b0(%rsp)
movq 0x39b0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x39a8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x39a4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3998(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x39c4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x39c0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x39bc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ab0(%rsp)
movl $0x10, 0x3aac(%rsp)
movq 0x3ab0(%rsp), %rax
movslq 0x3aac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3aac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x1b8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xd78(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1224f90
movq 0x1b8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd90(%rsp)
movb $0x1, 0x203b(%rsp)
testb $0x1, 0x203b(%rsp)
jne 0x12250cb
leaq 0xd50(%rsp), %rax
movq %rax, 0x2540(%rsp)
movq 0x2540(%rsp), %rax
movq %rax, 0x4370(%rsp)
movq 0x4370(%rsp), %rax
movq %rax, 0x1a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122506e
movq 0x1a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x436c(%rsp) # imm = 0xFFFFFFFF
movl 0x436c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4368(%rsp)
cmpl $0x1, 0x4368(%rsp)
jne 0x122506e
movq 0x1a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122503f
movq 0x1a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122503d
jmp 0x122506c
movq 0x1a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4648(%rsp)
cmpq $0x0, 0x4648(%rsp)
je 0x122506a
movq 0x4648(%rsp), %rdi
callq 0x5f480
jmp 0x122506c
jmp 0x122506e
movq 0x1a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12250c9
movq %rax, %rdi
callq 0x678a0
jmp 0x12250cb
leaq 0xd50(%rsp), %rax
movq %rax, 0x2340(%rsp)
movq 0x2340(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x198(%rsp)
leaq 0xd50(%rsp), %rax
movq %rax, 0x26f0(%rsp)
movq 0x26f0(%rsp), %rax
movq %rax, 0x4010(%rsp)
movq 0x4010(%rsp), %rax
movq %rax, 0x1a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12251b6
movq 0x1a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x400c(%rsp) # imm = 0xFFFFFFFF
movl 0x400c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4008(%rsp)
cmpl $0x1, 0x4008(%rsp)
jne 0x12251b6
movq 0x1a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1225187
movq 0x1a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1225185
jmp 0x12251b4
movq 0x1a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47f8(%rsp)
cmpq $0x0, 0x47f8(%rsp)
je 0x12251b2
movq 0x47f8(%rsp), %rdi
callq 0x5f480
jmp 0x12251b4
jmp 0x12251b6
movq 0x1a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1225211
movq %rax, %rdi
callq 0x678a0
movq 0x198(%rsp), %rax
movq %rax, 0xd98(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0xda4(%rsp), %eax
leaq 0xd00(%rsp), %rdx
movq %rdx, 0x27a0(%rsp)
movq %rcx, 0x2798(%rsp)
movl %eax, 0x2794(%rsp)
movq 0x2798(%rsp), %rax
movq %rax, 0x190(%rsp)
movb $0x0, 0x2793(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2794(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xd00(%rsp), %r10
movq %r10, 0x3258(%rsp)
movl %r9d, 0x3254(%rsp)
movl %r8d, 0x3250(%rsp)
movl %edi, 0x324c(%rsp)
movq %rsi, 0x3240(%rsp)
movq %rdx, 0x3238(%rsp)
movl %ecx, 0x3234(%rsp)
movq %rax, 0x3228(%rsp)
movq 0x3258(%rsp), %rcx
movq %rcx, 0x188(%rsp)
movq 0x3240(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3238(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3234(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3228(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3254(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3250(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x324c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3cd0(%rsp)
movl $0x10, 0x3ccc(%rsp)
movq 0x3cd0(%rsp), %rax
movslq 0x3ccc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3ccc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x190(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xd28(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12253dd
movq 0x190(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd40(%rsp)
movb $0x1, 0x2793(%rsp)
testb $0x1, 0x2793(%rsp)
jne 0x1225518
leaq 0xd00(%rsp), %rax
movq %rax, 0x27a8(%rsp)
movq 0x27a8(%rsp), %rax
movq %rax, 0x3f60(%rsp)
movq 0x3f60(%rsp), %rax
movq %rax, 0x180(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12254bb
movq 0x180(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f5c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f5c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f58(%rsp)
cmpl $0x1, 0x3f58(%rsp)
jne 0x12254bb
movq 0x180(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122548c
movq 0x180(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122548a
jmp 0x12254b9
movq 0x180(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4850(%rsp)
cmpq $0x0, 0x4850(%rsp)
je 0x12254b7
movq 0x4850(%rsp), %rdi
callq 0x5f480
jmp 0x12254b9
jmp 0x12254bb
movq 0x180(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1225516
movq %rax, %rdi
callq 0x678a0
jmp 0x1225518
leaq 0xd00(%rsp), %rax
movq %rax, 0x2a50(%rsp)
movq 0x2a50(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x170(%rsp)
leaq 0xd00(%rsp), %rax
movq %rax, 0x26f8(%rsp)
movq 0x26f8(%rsp), %rax
movq %rax, 0x4000(%rsp)
movq 0x4000(%rsp), %rax
movq %rax, 0x178(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1225603
movq 0x178(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ffc(%rsp) # imm = 0xFFFFFFFF
movl 0x3ffc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ff8(%rsp)
cmpl $0x1, 0x3ff8(%rsp)
jne 0x1225603
movq 0x178(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12255d4
movq 0x178(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12255d2
jmp 0x1225601
movq 0x178(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4800(%rsp)
cmpq $0x0, 0x4800(%rsp)
je 0x12255ff
movq 0x4800(%rsp), %rdi
callq 0x5f480
jmp 0x1225601
jmp 0x1225603
movq 0x178(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122565e
movq %rax, %rdi
callq 0x678a0
movq 0x170(%rsp), %rax
movq %rax, 0xd48(%rsp)
movl $0x0, 0xcfc(%rsp)
movl 0xcfc(%rsp), %eax
cmpl 0x1ecc(%rsp), %eax
jge 0x12256dd
movq 0xd98(%rsp), %rdx
movslq 0xcfc(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xda8(%rsp), %rsi
callq 0x1278060
movq 0xd48(%rsp), %rax
movslq 0xcfc(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xcfc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xcfc(%rsp)
jmp 0x1225679
jmp 0x12256df
movl 0xda4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xda4(%rsp)
jmp 0x1224dc0
movl $0x0, 0x1f24(%rsp)
jmp 0x1227e25
movq 0x1f10(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1226158
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed0(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f58(%rsp)
movq 0x1f58(%rsp), %rcx
movq %rcx, 0x160(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x16f(%rsp)
je 0x12257ae
movq 0x160(%rsp), %rax
movq %rax, 0x2d90(%rsp)
movq 0x2d90(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x16f(%rsp)
movb 0x16f(%rsp), %al
testb $0x1, %al
jne 0x12257bb
jmp 0x12257cb
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1227e25
movq 0x1f18(%rsp), %rax
movq %rax, 0x2bf8(%rsp)
movq $0x0, 0x2bf0(%rsp)
movq 0x2bf8(%rsp), %rax
movq (%rax), %rax
movq 0x2bf0(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xcf8(%rsp)
movl $0x0, 0xcf4(%rsp)
movl 0xcf4(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x1226148
movq 0x1f10(%rsp), %rcx
movl 0xcf4(%rsp), %eax
leaq 0xca0(%rsp), %rdx
movq %rdx, 0x2030(%rsp)
movq %rcx, 0x2028(%rsp)
movl %eax, 0x2024(%rsp)
movq 0x2028(%rsp), %rax
movq %rax, 0x158(%rsp)
movb $0x0, 0x2023(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2024(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xca0(%rsp), %r10
movq %r10, 0x3a00(%rsp)
movl %r9d, 0x39fc(%rsp)
movl %r8d, 0x39f8(%rsp)
movl %edi, 0x39f4(%rsp)
movq %rsi, 0x39e8(%rsp)
movq %rdx, 0x39e0(%rsp)
movl %ecx, 0x39dc(%rsp)
movq %rax, 0x39d0(%rsp)
movq 0x3a00(%rsp), %rcx
movq %rcx, 0x150(%rsp)
movq 0x39e8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x39e0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x39dc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x39d0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x39fc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x39f8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x39f4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3aa0(%rsp)
movl $0x10, 0x3a9c(%rsp)
movq 0x3aa0(%rsp), %rax
movslq 0x3a9c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3a9c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x158(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xcc8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12259e3
movq 0x158(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xce0(%rsp)
movb $0x1, 0x2023(%rsp)
testb $0x1, 0x2023(%rsp)
jne 0x1225b1e
leaq 0xca0(%rsp), %rax
movq %rax, 0x2548(%rsp)
movq 0x2548(%rsp), %rax
movq %rax, 0x4360(%rsp)
movq 0x4360(%rsp), %rax
movq %rax, 0x148(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1225ac1
movq 0x148(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x435c(%rsp) # imm = 0xFFFFFFFF
movl 0x435c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4358(%rsp)
cmpl $0x1, 0x4358(%rsp)
jne 0x1225ac1
movq 0x148(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1225a92
movq 0x148(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1225a90
jmp 0x1225abf
movq 0x148(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4650(%rsp)
cmpq $0x0, 0x4650(%rsp)
je 0x1225abd
movq 0x4650(%rsp), %rdi
callq 0x5f480
jmp 0x1225abf
jmp 0x1225ac1
movq 0x148(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1225b1c
movq %rax, %rdi
callq 0x678a0
jmp 0x1225b1e
leaq 0xca0(%rsp), %rax
movq %rax, 0x2338(%rsp)
movq 0x2338(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x138(%rsp)
leaq 0xca0(%rsp), %rax
movq %rax, 0x2700(%rsp)
movq 0x2700(%rsp), %rax
movq %rax, 0x3ff0(%rsp)
movq 0x3ff0(%rsp), %rax
movq %rax, 0x140(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1225c09
movq 0x140(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fec(%rsp) # imm = 0xFFFFFFFF
movl 0x3fec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fe8(%rsp)
cmpl $0x1, 0x3fe8(%rsp)
jne 0x1225c09
movq 0x140(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1225bda
movq 0x140(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1225bd8
jmp 0x1225c07
movq 0x140(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4808(%rsp)
cmpq $0x0, 0x4808(%rsp)
je 0x1225c05
movq 0x4808(%rsp), %rdi
callq 0x5f480
jmp 0x1225c07
jmp 0x1225c09
movq 0x140(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1225c64
movq %rax, %rdi
callq 0x678a0
movq 0x138(%rsp), %rax
movq %rax, 0xce8(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0xcf4(%rsp), %eax
leaq 0xc50(%rsp), %rdx
movq %rdx, 0x2780(%rsp)
movq %rcx, 0x2778(%rsp)
movl %eax, 0x2774(%rsp)
movq 0x2778(%rsp), %rax
movq %rax, 0x130(%rsp)
movb $0x0, 0x2773(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2774(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xc50(%rsp), %r10
movq %r10, 0x3290(%rsp)
movl %r9d, 0x328c(%rsp)
movl %r8d, 0x3288(%rsp)
movl %edi, 0x3284(%rsp)
movq %rsi, 0x3278(%rsp)
movq %rdx, 0x3270(%rsp)
movl %ecx, 0x326c(%rsp)
movq %rax, 0x3260(%rsp)
movq 0x3290(%rsp), %rcx
movq %rcx, 0x128(%rsp)
movq 0x3278(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3270(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x326c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3260(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x328c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3288(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3284(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3cc0(%rsp)
movl $0x10, 0x3cbc(%rsp)
movq 0x3cc0(%rsp), %rax
movslq 0x3cbc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cbc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x130(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc78(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1225e30
movq 0x130(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xc90(%rsp)
movb $0x1, 0x2773(%rsp)
testb $0x1, 0x2773(%rsp)
jne 0x1225f6b
leaq 0xc50(%rsp), %rax
movq %rax, 0x2788(%rsp)
movq 0x2788(%rsp), %rax
movq %rax, 0x3f70(%rsp)
movq 0x3f70(%rsp), %rax
movq %rax, 0x120(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1225f0e
movq 0x120(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f6c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f6c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f68(%rsp)
cmpl $0x1, 0x3f68(%rsp)
jne 0x1225f0e
movq 0x120(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1225edf
movq 0x120(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1225edd
jmp 0x1225f0c
movq 0x120(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4848(%rsp)
cmpq $0x0, 0x4848(%rsp)
je 0x1225f0a
movq 0x4848(%rsp), %rdi
callq 0x5f480
jmp 0x1225f0c
jmp 0x1225f0e
movq 0x120(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1225f69
movq %rax, %rdi
callq 0x678a0
jmp 0x1225f6b
leaq 0xc50(%rsp), %rax
movq %rax, 0x2a48(%rsp)
movq 0x2a48(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x110(%rsp)
leaq 0xc50(%rsp), %rax
movq %rax, 0x2708(%rsp)
movq 0x2708(%rsp), %rax
movq %rax, 0x3fe0(%rsp)
movq 0x3fe0(%rsp), %rax
movq %rax, 0x118(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1226056
movq 0x118(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fdc(%rsp) # imm = 0xFFFFFFFF
movl 0x3fdc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fd8(%rsp)
cmpl $0x1, 0x3fd8(%rsp)
jne 0x1226056
movq 0x118(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1226027
movq 0x118(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1226025
jmp 0x1226054
movq 0x118(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4810(%rsp)
cmpq $0x0, 0x4810(%rsp)
je 0x1226052
movq 0x4810(%rsp), %rdi
callq 0x5f480
jmp 0x1226054
jmp 0x1226056
movq 0x118(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12260b1
movq %rax, %rdi
callq 0x678a0
movq 0x110(%rsp), %rax
movq %rax, 0xc98(%rsp)
movl $0x0, 0xc4c(%rsp)
movl 0xc4c(%rsp), %eax
cmpl 0x1ecc(%rsp), %eax
jge 0x1226130
movq 0xce8(%rsp), %rdx
movslq 0xc4c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xcf8(%rsp), %rsi
callq 0x1278060
movq 0xc98(%rsp), %rax
movslq 0xc4c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xc4c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xc4c(%rsp)
jmp 0x12260cc
jmp 0x1226132
movl 0xcf4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xcf4(%rsp)
jmp 0x1225813
movl $0x0, 0x1f24(%rsp)
jmp 0x1227e25
movq 0x1f10(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1226320
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movq 0x1ee0(%rsp), %rcx
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6f5a0
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f50(%rsp)
movq 0x1f50(%rsp), %rcx
movq %rcx, 0x100(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x10f(%rsp)
je 0x12261fa
movq 0x100(%rsp), %rax
movq %rax, 0x2d98(%rsp)
movq 0x2d98(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x10f(%rsp)
movb 0x10f(%rsp), %al
testb $0x1, %al
jne 0x1226207
jmp 0x1226217
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1227e25
movq 0x1f18(%rsp), %rax
movq %rax, 0x2be8(%rsp)
movq $0x0, 0x2be0(%rsp)
movq 0x2be8(%rsp), %rax
movq (%rax), %rax
movq 0x2be0(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xc48(%rsp)
movl $0x0, 0xc44(%rsp)
movl 0xc44(%rsp), %eax
cmpl 0x1ecc(%rsp), %eax
jge 0x1226310
movq 0x1f10(%rsp), %rcx
movslq 0xc44(%rsp), %rax
movq %rcx, 0x2bd8(%rsp)
movq %rax, 0x2bd0(%rsp)
movq 0x2bd8(%rsp), %rax
movq (%rax), %rdx
movq 0x2bd0(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xc48(%rsp), %rsi
callq 0x1278060
movq 0x1f08(%rsp), %rcx
movslq 0xc44(%rsp), %rax
movq %rcx, 0x2cd8(%rsp)
movq %rax, 0x2cd0(%rsp)
movq 0x2cd8(%rsp), %rax
movq (%rax), %rax
movq 0x2cd0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xc44(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xc44(%rsp)
jmp 0x122625f
movl $0x0, 0x1f24(%rsp)
jmp 0x1227e25
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x12264e1
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movq 0x1ee0(%rsp), %rdx
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rcx
callq 0x6f320
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f48(%rsp)
movq 0x1f48(%rsp), %rcx
movq %rcx, 0xf0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xff(%rsp)
je 0x12263bb
movq 0xf0(%rsp), %rax
movq %rax, 0x2da0(%rsp)
movq 0x2da0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xff(%rsp)
movb 0xff(%rsp), %al
testb $0x1, %al
jne 0x12263c8
jmp 0x12263d8
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1227e25
movq 0x1f18(%rsp), %rax
movq %rax, 0x2bc8(%rsp)
movq $0x0, 0x2bc0(%rsp)
movq 0x2bc8(%rsp), %rax
movq (%rax), %rax
movq 0x2bc0(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xc40(%rsp)
movl $0x0, 0xc3c(%rsp)
movl 0xc3c(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x12264d1
movq 0x1f10(%rsp), %rcx
movslq 0xc3c(%rsp), %rax
movq %rcx, 0x2bb8(%rsp)
movq %rax, 0x2bb0(%rsp)
movq 0x2bb8(%rsp), %rax
movq (%rax), %rdx
movq 0x2bb0(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xc40(%rsp), %rsi
callq 0x1278060
movq 0x1f08(%rsp), %rcx
movslq 0xc3c(%rsp), %rax
movq %rcx, 0x2cc8(%rsp)
movq %rax, 0x2cc0(%rsp)
movq 0x2cc8(%rsp), %rax
movq (%rax), %rax
movq 0x2cc0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xc3c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xc3c(%rsp)
jmp 0x1226420
movl $0x0, 0x1f24(%rsp)
jmp 0x1227e25
jmp 0x12264e3
movq 0x1f10(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1226f46
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed4(%rsp), %ecx
movl 0x1ed0(%rsp), %r8d
movq 0x1ee0(%rsp), %r9
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6fb30
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f40(%rsp)
movq 0x1f40(%rsp), %rcx
movq %rcx, 0xe0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xef(%rsp)
je 0x1226598
movq 0xe0(%rsp), %rax
movq %rax, 0x2da8(%rsp)
movq 0x2da8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xef(%rsp)
movb 0xef(%rsp), %al
testb $0x1, %al
jne 0x12265a5
jmp 0x12265b5
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1227e25
movl $0x0, 0xc38(%rsp)
movl 0xc38(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x1226f36
movq 0x1f18(%rsp), %rcx
movslq 0xc38(%rsp), %rax
movq %rcx, 0x2ba8(%rsp)
movq %rax, 0x2ba0(%rsp)
movq 0x2ba8(%rsp), %rax
movq (%rax), %rax
movq 0x2ba0(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xc34(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0xc38(%rsp), %eax
leaq 0xbe0(%rsp), %rdx
movq %rdx, 0x2018(%rsp)
movq %rcx, 0x2010(%rsp)
movl %eax, 0x200c(%rsp)
movq 0x2010(%rsp), %rax
movq %rax, 0xd8(%rsp)
movb $0x0, 0x200b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x200c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xbe0(%rsp), %r10
movq %r10, 0x3a38(%rsp)
movl %r9d, 0x3a34(%rsp)
movl %r8d, 0x3a30(%rsp)
movl %edi, 0x3a2c(%rsp)
movq %rsi, 0x3a20(%rsp)
movq %rdx, 0x3a18(%rsp)
movl %ecx, 0x3a14(%rsp)
movq %rax, 0x3a08(%rsp)
movq 0x3a38(%rsp), %rcx
movq %rcx, 0xd0(%rsp)
movq 0x3a20(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3a18(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3a14(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3a08(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3a34(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3a30(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3a2c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3a90(%rsp)
movl $0x10, 0x3a8c(%rsp)
movq 0x3a90(%rsp), %rax
movslq 0x3a8c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3a8c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xd8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc08(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12267d1
movq 0xd8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xc20(%rsp)
movb $0x1, 0x200b(%rsp)
testb $0x1, 0x200b(%rsp)
jne 0x122690c
leaq 0xbe0(%rsp), %rax
movq %rax, 0x2550(%rsp)
movq 0x2550(%rsp), %rax
movq %rax, 0x4350(%rsp)
movq 0x4350(%rsp), %rax
movq %rax, 0xc8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12268af
movq 0xc8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x434c(%rsp) # imm = 0xFFFFFFFF
movl 0x434c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4348(%rsp)
cmpl $0x1, 0x4348(%rsp)
jne 0x12268af
movq 0xc8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1226880
movq 0xc8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122687e
jmp 0x12268ad
movq 0xc8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4658(%rsp)
cmpq $0x0, 0x4658(%rsp)
je 0x12268ab
movq 0x4658(%rsp), %rdi
callq 0x5f480
jmp 0x12268ad
jmp 0x12268af
movq 0xc8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122690a
movq %rax, %rdi
callq 0x678a0
jmp 0x122690c
leaq 0xbe0(%rsp), %rax
movq %rax, 0x2330(%rsp)
movq 0x2330(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xb8(%rsp)
leaq 0xbe0(%rsp), %rax
movq %rax, 0x2710(%rsp)
movq 0x2710(%rsp), %rax
movq %rax, 0x3fd0(%rsp)
movq 0x3fd0(%rsp), %rax
movq %rax, 0xc0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12269f7
movq 0xc0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fcc(%rsp) # imm = 0xFFFFFFFF
movl 0x3fcc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fc8(%rsp)
cmpl $0x1, 0x3fc8(%rsp)
jne 0x12269f7
movq 0xc0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12269c8
movq 0xc0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12269c6
jmp 0x12269f5
movq 0xc0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4818(%rsp)
cmpq $0x0, 0x4818(%rsp)
je 0x12269f3
movq 0x4818(%rsp), %rdi
callq 0x5f480
jmp 0x12269f5
jmp 0x12269f7
movq 0xc0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1226a52
movq %rax, %rdi
callq 0x678a0
movq 0xb8(%rsp), %rax
movq %rax, 0xc28(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0xc38(%rsp), %eax
leaq 0xb90(%rsp), %rdx
movq %rdx, 0x2760(%rsp)
movq %rcx, 0x2758(%rsp)
movl %eax, 0x2754(%rsp)
movq 0x2758(%rsp), %rax
movq %rax, 0xb0(%rsp)
movb $0x0, 0x2753(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2754(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xb90(%rsp), %r10
movq %r10, 0x32c8(%rsp)
movl %r9d, 0x32c4(%rsp)
movl %r8d, 0x32c0(%rsp)
movl %edi, 0x32bc(%rsp)
movq %rsi, 0x32b0(%rsp)
movq %rdx, 0x32a8(%rsp)
movl %ecx, 0x32a4(%rsp)
movq %rax, 0x3298(%rsp)
movq 0x32c8(%rsp), %rcx
movq %rcx, 0xa8(%rsp)
movq 0x32b0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x32a8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x32a4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3298(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x32c4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x32c0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x32bc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3cb0(%rsp)
movl $0x10, 0x3cac(%rsp)
movq 0x3cb0(%rsp), %rax
movslq 0x3cac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xb0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xbb8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1226c1e
movq 0xb0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xbd0(%rsp)
movb $0x1, 0x2753(%rsp)
testb $0x1, 0x2753(%rsp)
jne 0x1226d59
leaq 0xb90(%rsp), %rax
movq %rax, 0x2768(%rsp)
movq 0x2768(%rsp), %rax
movq %rax, 0x3f80(%rsp)
movq 0x3f80(%rsp), %rax
movq %rax, 0xa0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1226cfc
movq 0xa0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f7c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f7c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f78(%rsp)
cmpl $0x1, 0x3f78(%rsp)
jne 0x1226cfc
movq 0xa0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1226ccd
movq 0xa0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1226ccb
jmp 0x1226cfa
movq 0xa0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4840(%rsp)
cmpq $0x0, 0x4840(%rsp)
je 0x1226cf8
movq 0x4840(%rsp), %rdi
callq 0x5f480
jmp 0x1226cfa
jmp 0x1226cfc
movq 0xa0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1226d57
movq %rax, %rdi
callq 0x678a0
jmp 0x1226d59
leaq 0xb90(%rsp), %rax
movq %rax, 0x2a40(%rsp)
movq 0x2a40(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x90(%rsp)
leaq 0xb90(%rsp), %rax
movq %rax, 0x2718(%rsp)
movq 0x2718(%rsp), %rax
movq %rax, 0x3fc0(%rsp)
movq 0x3fc0(%rsp), %rax
movq %rax, 0x98(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1226e44
movq 0x98(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fbc(%rsp) # imm = 0xFFFFFFFF
movl 0x3fbc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fb8(%rsp)
cmpl $0x1, 0x3fb8(%rsp)
jne 0x1226e44
movq 0x98(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1226e15
movq 0x98(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1226e13
jmp 0x1226e42
movq 0x98(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4820(%rsp)
cmpq $0x0, 0x4820(%rsp)
je 0x1226e40
movq 0x4820(%rsp), %rdi
callq 0x5f480
jmp 0x1226e42
jmp 0x1226e44
movq 0x98(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1226e9f
movq %rax, %rdi
callq 0x678a0
movq 0x90(%rsp), %rax
movq %rax, 0xbd8(%rsp)
movl $0x0, 0xb8c(%rsp)
movl 0xb8c(%rsp), %eax
cmpl 0x1ecc(%rsp), %eax
jge 0x1226f1e
movq 0xc28(%rsp), %rdx
movslq 0xb8c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xc34(%rsp), %rsi
callq 0x1278060
movq 0xbd8(%rsp), %rax
movslq 0xb8c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xb8c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xb8c(%rsp)
jmp 0x1226eba
jmp 0x1226f20
movl 0xc38(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xc38(%rsp)
jmp 0x12265c0
movl $0x0, 0x1f24(%rsp)
jmp 0x1227e25
movq 0x1f10(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1227931
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed0(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f38(%rsp)
movq 0x1f38(%rsp), %rcx
movq %rcx, 0x80(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x8f(%rsp)
je 0x1226fef
movq 0x80(%rsp), %rax
movq %rax, 0x2db0(%rsp)
movq 0x2db0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x8f(%rsp)
movb 0x8f(%rsp), %al
testb $0x1, %al
jne 0x1226ffc
jmp 0x122700c
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1227e25
movl $0x0, 0xb88(%rsp)
movl 0xb88(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x1227921
movq 0x1f18(%rsp), %rcx
movslq 0xb88(%rsp), %rax
movq %rcx, 0x2b98(%rsp)
movq %rax, 0x2b90(%rsp)
movq 0x2b98(%rsp), %rax
movq (%rax), %rax
movq 0x2b90(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xb84(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0xb88(%rsp), %eax
leaq 0xb30(%rsp), %rdx
movq %rdx, 0x2000(%rsp)
movq %rcx, 0x1ff8(%rsp)
movl %eax, 0x1ff4(%rsp)
movq 0x1ff8(%rsp), %rax
movq %rax, 0x78(%rsp)
movb $0x0, 0x1ff3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1ff4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xb30(%rsp), %r10
movq %r10, 0x3a70(%rsp)
movl %r9d, 0x3a6c(%rsp)
movl %r8d, 0x3a68(%rsp)
movl %edi, 0x3a64(%rsp)
movq %rsi, 0x3a58(%rsp)
movq %rdx, 0x3a50(%rsp)
movl %ecx, 0x3a4c(%rsp)
movq %rax, 0x3a40(%rsp)
movq 0x3a70(%rsp), %rcx
movq %rcx, 0x70(%rsp)
movq 0x3a58(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3a50(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3a4c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3a40(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3a6c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3a68(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3a64(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3a80(%rsp)
movl $0x10, 0x3a7c(%rsp)
movq 0x3a80(%rsp), %rax
movslq 0x3a7c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3a7c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x78(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xb58(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x122721c
movq 0x78(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xb70(%rsp)
movb $0x1, 0x1ff3(%rsp)
testb $0x1, 0x1ff3(%rsp)
jne 0x1227345
leaq 0xb30(%rsp), %rax
movq %rax, 0x2558(%rsp)
movq 0x2558(%rsp), %rax
movq %rax, 0x4340(%rsp)
movq 0x4340(%rsp), %rax
movq %rax, 0x68(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12272eb
movq 0x68(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x433c(%rsp) # imm = 0xFFFFFFFF
movl 0x433c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4338(%rsp)
cmpl $0x1, 0x4338(%rsp)
jne 0x12272eb
movq 0x68(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12272bf
movq 0x68(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12272bd
jmp 0x12272e9
movq 0x68(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4660(%rsp)
cmpq $0x0, 0x4660(%rsp)
je 0x12272e7
movq 0x4660(%rsp), %rdi
callq 0x5f480
jmp 0x12272e9
jmp 0x12272eb
movq 0x68(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1227343
movq %rax, %rdi
callq 0x678a0
jmp 0x1227345
leaq 0xb30(%rsp), %rax
movq %rax, 0x2328(%rsp)
movq 0x2328(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x58(%rsp)
leaq 0xb30(%rsp), %rax
movq %rax, 0x2720(%rsp)
movq 0x2720(%rsp), %rax
movq %rax, 0x3fb0(%rsp)
movq 0x3fb0(%rsp), %rax
movq %rax, 0x60(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122741e
movq 0x60(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fac(%rsp) # imm = 0xFFFFFFFF
movl 0x3fac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fa8(%rsp)
cmpl $0x1, 0x3fa8(%rsp)
jne 0x122741e
movq 0x60(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12273f2
movq 0x60(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12273f0
jmp 0x122741c
movq 0x60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4828(%rsp)
cmpq $0x0, 0x4828(%rsp)
je 0x122741a
movq 0x4828(%rsp), %rdi
callq 0x5f480
jmp 0x122741c
jmp 0x122741e
movq 0x60(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1227476
movq %rax, %rdi
callq 0x678a0
movq 0x58(%rsp), %rax
movq %rax, 0xb78(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0xb88(%rsp), %eax
leaq 0xae0(%rsp), %rdx
movq %rdx, 0x2740(%rsp)
movq %rcx, 0x2738(%rsp)
movl %eax, 0x2734(%rsp)
movq 0x2738(%rsp), %rax
movq %rax, 0x50(%rsp)
movb $0x0, 0x2733(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2734(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xae0(%rsp), %r10
movq %r10, 0x3300(%rsp)
movl %r9d, 0x32fc(%rsp)
movl %r8d, 0x32f8(%rsp)
movl %edi, 0x32f4(%rsp)
movq %rsi, 0x32e8(%rsp)
movq %rdx, 0x32e0(%rsp)
movl %ecx, 0x32dc(%rsp)
movq %rax, 0x32d0(%rsp)
movq 0x3300(%rsp), %rcx
movq %rcx, 0x48(%rsp)
movq 0x32e8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x32e0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x32dc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x32d0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x32fc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x32f8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x32f4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ca0(%rsp)
movl $0x10, 0x3c9c(%rsp)
movq 0x3ca0(%rsp), %rax
movslq 0x3c9c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c9c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x50(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xb08(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1227633
movq 0x50(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xb20(%rsp)
movb $0x1, 0x2733(%rsp)
testb $0x1, 0x2733(%rsp)
jne 0x122775c
leaq 0xae0(%rsp), %rax
movq %rax, 0x2748(%rsp)
movq 0x2748(%rsp), %rax
movq %rax, 0x3f90(%rsp)
movq 0x3f90(%rsp), %rax
movq %rax, 0x40(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1227702
movq 0x40(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f8c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f8c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f88(%rsp)
cmpl $0x1, 0x3f88(%rsp)
jne 0x1227702
movq 0x40(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12276d6
movq 0x40(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12276d4
jmp 0x1227700
movq 0x40(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4838(%rsp)
cmpq $0x0, 0x4838(%rsp)
je 0x12276fe
movq 0x4838(%rsp), %rdi
callq 0x5f480
jmp 0x1227700
jmp 0x1227702
movq 0x40(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122775a
movq %rax, %rdi
callq 0x678a0
jmp 0x122775c
leaq 0xae0(%rsp), %rax
movq %rax, 0x2a38(%rsp)
movq 0x2a38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x30(%rsp)
leaq 0xae0(%rsp), %rax
movq %rax, 0x2728(%rsp)
movq 0x2728(%rsp), %rax
movq %rax, 0x3fa0(%rsp)
movq 0x3fa0(%rsp), %rax
movq %rax, 0x38(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1227835
movq 0x38(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f9c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f9c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f98(%rsp)
cmpl $0x1, 0x3f98(%rsp)
jne 0x1227835
movq 0x38(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1227809
movq 0x38(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1227807
jmp 0x1227833
movq 0x38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4830(%rsp)
cmpq $0x0, 0x4830(%rsp)
je 0x1227831
movq 0x4830(%rsp), %rdi
callq 0x5f480
jmp 0x1227833
jmp 0x1227835
movq 0x38(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122788d
movq %rax, %rdi
callq 0x678a0
movq 0x30(%rsp), %rax
movq %rax, 0xb28(%rsp)
movl $0x0, 0xadc(%rsp)
movl 0xadc(%rsp), %eax
cmpl 0x1ecc(%rsp), %eax
jge 0x1227909
movq 0xb78(%rsp), %rdx
movslq 0xadc(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xb84(%rsp), %rsi
callq 0x1278060
movq 0xb28(%rsp), %rax
movslq 0xadc(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xadc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xadc(%rsp)
jmp 0x12278a5
jmp 0x122790b
movl 0xb88(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xb88(%rsp)
jmp 0x1227017
movl $0x0, 0x1f24(%rsp)
jmp 0x1227e25
movq 0x1f10(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1227b5e
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movq 0x1ee0(%rsp), %rcx
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6f5a0
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f30(%rsp)
movq 0x1f30(%rsp), %rcx
movq %rcx, 0x20(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x2f(%rsp)
je 0x12279c7
movq 0x20(%rsp), %rax
movq %rax, 0x2db8(%rsp)
movq 0x2db8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x2f(%rsp)
movb 0x2f(%rsp), %al
testb $0x1, %al
jne 0x12279d1
jmp 0x12279e1
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1227e25
movq 0x1f10(%rsp), %rax
movq %rax, 0x2320(%rsp)
movq 0x2320(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xad0(%rsp)
movq 0x1f08(%rsp), %rax
movq %rax, 0x2a30(%rsp)
movq 0x2a30(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xac8(%rsp)
movl $0x0, 0xac4(%rsp)
movl 0xac4(%rsp), %eax
cmpl 0x1ed8(%rsp), %eax
jge 0x1227b4e
movq 0x1f18(%rsp), %rcx
movslq 0xac4(%rsp), %rax
movq %rcx, 0x2b88(%rsp)
movq %rax, 0x2b80(%rsp)
movq 0x2b88(%rsp), %rax
movq (%rax), %rax
movq 0x2b80(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xac0(%rsp)
movl $0x0, 0xabc(%rsp)
movl 0xabc(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x1227af6
movq 0xad0(%rsp), %rdx
movslq 0xabc(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xac0(%rsp), %rsi
callq 0x1278060
movq 0xac8(%rsp), %rax
movslq 0xabc(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xabc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xabc(%rsp)
jmp 0x1227a92
movl 0x1edc(%rsp), %ecx
movq 0xad0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xad0(%rsp)
movl 0x1edc(%rsp), %ecx
movq 0xac8(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xac8(%rsp)
movl 0xac4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xac4(%rsp)
jmp 0x1227a32
movl $0x0, 0x1f24(%rsp)
jmp 0x1227e25
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1227e12
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movq 0x1ee0(%rsp), %rdx
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rcx
callq 0x6f320
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f28(%rsp)
movq 0x1f28(%rsp), %rcx
movq %rcx, 0x10(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1f(%rsp)
je 0x1227bed
movq 0x10(%rsp), %rax
movq %rax, 0x2dc0(%rsp)
movq 0x2dc0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1f(%rsp)
movb 0x1f(%rsp), %al
testb $0x1, %al
jne 0x1227bf7
jmp 0x1227c07
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1227e25
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1227d22
movq 0x1f10(%rsp), %rax
movq %rax, 0x2b78(%rsp)
movq $0x0, 0x2b70(%rsp)
movq 0x2b78(%rsp), %rax
movq (%rax), %rax
movq 0x2b70(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xab8(%rsp)
movl $0x0, 0xab4(%rsp)
movl 0xab4(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x1227d12
movq 0x1f18(%rsp), %rcx
movslq 0xab4(%rsp), %rax
movq %rcx, 0x2b68(%rsp)
movq %rax, 0x2b60(%rsp)
movq 0x2b68(%rsp), %rax
movq (%rax), %rsi
movq 0x2b60(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0xab8(%rsp), %rdx
callq 0x1278060
movq 0x1f08(%rsp), %rcx
movslq 0xab4(%rsp), %rax
movq %rcx, 0x2cb8(%rsp)
movq %rax, 0x2cb0(%rsp)
movq 0x2cb8(%rsp), %rax
movq (%rax), %rax
movq 0x2cb0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xab4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xab4(%rsp)
jmp 0x1227c61
movl $0x0, 0x1f24(%rsp)
jmp 0x1227e25
movl $0x0, 0xab0(%rsp)
movl 0xab0(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x1227e10
movq 0x1f18(%rsp), %rcx
movslq 0xab0(%rsp), %rax
movq %rcx, 0x2b58(%rsp)
movq %rax, 0x2b50(%rsp)
movq 0x2b58(%rsp), %rax
movq (%rax), %rsi
movq 0x2b50(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1f10(%rsp), %rcx
movslq 0xab0(%rsp), %rax
movq %rcx, 0x2b48(%rsp)
movq %rax, 0x2b40(%rsp)
movq 0x2b48(%rsp), %rax
movq (%rax), %rdx
movq 0x2b40(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x1278060
movq 0x1f08(%rsp), %rcx
movslq 0xab0(%rsp), %rax
movq %rcx, 0x2ca8(%rsp)
movq %rax, 0x2ca0(%rsp)
movq 0x2ca8(%rsp), %rax
movq (%rax), %rax
movq 0x2ca0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xab0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xab0(%rsp)
jmp 0x1227d2d
jmp 0x1227e12
jmp 0x1227e14
jmp 0x1227e16
jmp 0x1227e18
jmp 0x1227e1a
movl $0x0, 0x1f24(%rsp)
movl 0x1f24(%rsp), %eax
addq $0x48f8, %rsp # imm = 0x48F8
retq
nopw %cs:(%rax,%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/binaryop.cpp
|
2,112,803
|
int ncnn::binary_op<ncnn::binary_op_div>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int size = w * h * d;
size_t elemsize = a.elemsize;
int w1 = b.w;
int h1 = b.h;
int d1 = b.d;
int channels1 = b.c;
int size1 = w1 * h1 * d1;
if (a.dims == 4)
{
if (b.dims == 4)
{
// type 29
c.create(w, h, d, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], ptr1[i]);
}
}
return 0;
}
c.create(w, h, d, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 3)
{
// type 28
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
for (int y = 0; y < h; y++)
{
const float b0 = ptr1[y];
for (int x = 0; x < w; x++)
{
outptr[x] = op(ptr[x], b0);
}
ptr += w;
outptr += w;
}
ptr1 += h;
}
}
return 0;
}
if (b.dims == 2)
{
// type 27
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
const float b0 = ptr1[z];
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
outptr[x] = op(ptr[x], b0);
}
ptr += w;
outptr += w;
}
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1)
{
// type 25
const float b0 = b[0];
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], b0);
}
}
return 0;
}
// type 26
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float b0 = b[q];
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], b0);
}
}
return 0;
}
}
else if (a.dims == 3)
{
if (b.dims == 4)
{
// type 23
c.create(w1, h1, d1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
for (int y = 0; y < h1; y++)
{
const float a0 = ptr[y];
for (int x = 0; x < w1; x++)
{
outptr[x] = op(a0, ptr1[x]);
}
ptr1 += w1;
outptr += w1;
}
ptr += h1;
}
}
return 0;
}
if (b.dims == 3)
{
if (w1 == 1 && h1 == 1 && channels1 == channels)
{
// special type 1
c.create(w, h, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* b0 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], b0[0]);
}
}
return 0;
}
if (w1 == w && h1 == h && channels1 == 1)
{
// special type 2
c.create(w, h, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b;
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], ptr1[i]);
}
}
return 0;
}
if (w == 1 && h == 1 && channels1 == channels)
{
// special type 3
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* a0 = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
outptr[i] = op(a0[0], ptr1[i]);
}
}
return 0;
}
if (w1 == w && h1 == h && channels == 1)
{
// special type 4
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a;
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
outptr[i] = op(ptr[i], ptr1[i]);
}
}
return 0;
}
if (w != 1 && w1 == 1 && h1 == h && channels1 == channels)
{
// special type 5
c.create(w, h, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
const float b0 = ptr1[y];
for (int x = 0; x < w; x++)
{
outptr[x] = op(ptr[x], b0);
}
ptr += w;
outptr += w;
}
}
return 0;
}
if (w1 == w && h != 1 && h1 == 1 && channels1 == channels)
{
// special type 6
c.create(w, h, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
outptr[x] = op(ptr[x], ptr1[x]);
}
ptr += w;
outptr += w;
}
}
return 0;
}
if (w1 != 1 && w == 1 && h1 == h && channels1 == channels)
{
// special type 7
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
const float a0 = ptr[y];
for (int x = 0; x < w1; x++)
{
outptr[x] = op(a0, ptr1[x]);
}
ptr1 += w1;
outptr += w1;
}
}
return 0;
}
if (w1 == w && h1 != 1 && h == 1 && channels1 == channels)
{
// special type 8
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
outptr[x] = op(ptr[x], ptr1[x]);
}
ptr1 += w1;
outptr += w1;
}
}
return 0;
}
// type 19
c.create(w, h, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], ptr1[i]);
}
}
return 0;
}
c.create(w, h, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 18
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
const float b0 = ptr1[y];
for (int x = 0; x < w; x++)
{
outptr[x] = op(ptr[x], b0);
}
ptr += w;
outptr += w;
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1)
{
// type 16
const float b0 = b[0];
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], b0);
}
}
return 0;
}
// type 17
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float b0 = b[q];
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], b0);
}
}
return 0;
}
}
else if (a.dims == 2)
{
if (b.dims == 4)
{
// type 22
c.create(w1, h1, d1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
const float a0 = ptr[z];
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
outptr[x] = op(a0, ptr1[x]);
}
ptr1 += w1;
outptr += w1;
}
}
}
return 0;
}
if (b.dims == 3)
{
// type 14
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
const float a0 = ptr[y];
for (int x = 0; x < w1; x++)
{
outptr[x] = op(a0, ptr1[x]);
}
ptr1 += w1;
outptr += w1;
}
}
return 0;
}
c.create(w, h, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 13
for (int i = 0; i < size; i++)
{
c[i] = op(a[i], b[i]);
}
return 0;
}
if (b.dims == 1)
{
c.create(w, h, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1)
{
// type 11
const float b0 = b[0];
for (int i = 0; i < size; i++)
{
c[i] = op(a[i], b0);
}
return 0;
}
// type 12
const float* ptr = a;
float* outptr = c;
for (int y = 0; y < h; y++)
{
const float b0 = b[y];
for (int x = 0; x < w; x++)
{
outptr[x] = op(ptr[x], b0);
}
ptr += w;
outptr += w;
}
return 0;
}
}
else if (a.dims == 1)
{
if (a.w == 1)
{
if (b.dims == 4)
{
// type 20
c.create(w1, h1, d1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
const float a0 = a[0];
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
outptr[i] = op(a0, ptr1[i]);
}
}
return 0;
}
if (b.dims == 3)
{
// type 4
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
const float a0 = a[0];
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
outptr[i] = op(a0, ptr1[i]);
}
}
return 0;
}
if (b.dims == 2)
{
// type 3
c.create(w1, h1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
const float a0 = a[0];
for (int i = 0; i < size1; i++)
{
c[i] = op(a0, b[i]);
}
return 0;
}
if (b.dims == 1)
{
// type 2
c.create(w1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
const float a0 = a[0];
for (int i = 0; i < w1; i++)
{
c[i] = op(a0, b[i]);
}
return 0;
}
}
if (b.dims == 4)
{
// type 21
c.create(w1, h1, d1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float a0 = a[q];
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
outptr[i] = op(a0, ptr1[i]);
}
}
return 0;
}
if (b.dims == 3)
{
// type 9
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float a0 = a[q];
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
outptr[i] = op(a0, ptr1[i]);
}
}
return 0;
}
if (b.dims == 2)
{
// type 8
c.create(w1, h1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
const float* ptr1 = b;
float* outptr = c;
for (int y = 0; y < h1; y++)
{
const float a0 = a[y];
for (int x = 0; x < w1; x++)
{
outptr[x] = op(a0, ptr1[x]);
}
ptr1 += w1;
outptr += w1;
}
return 0;
}
if (b.dims == 1)
{
c.create(w, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1)
{
// type 6
const float b0 = b[0];
for (int i = 0; i < w; i++)
{
c[i] = op(a[i], b0);
}
return 0;
}
// type 7
for (int i = 0; i < w; i++)
{
c[i] = op(a[i], b[i]);
}
}
}
return 0;
}
|
subq $0x48f8, %rsp # imm = 0x48F8
movq %rdi, 0x1f18(%rsp)
movq %rsi, 0x1f10(%rsp)
movq %rdx, 0x1f08(%rsp)
movq %rcx, 0x1f00(%rsp)
movq 0x1f18(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x1ef8(%rsp)
movq 0x1f18(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x1ef4(%rsp)
movq 0x1f18(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x1ef0(%rsp)
movq 0x1f18(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x1eec(%rsp)
movl 0x1ef8(%rsp), %eax
imull 0x1ef4(%rsp), %eax
imull 0x1ef0(%rsp), %eax
movl %eax, 0x1ee8(%rsp)
movq 0x1f18(%rsp), %rax
movq 0x10(%rax), %rax
movq %rax, 0x1ee0(%rsp)
movq 0x1f10(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x1edc(%rsp)
movq 0x1f10(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x1ed8(%rsp)
movq 0x1f10(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x1ed4(%rsp)
movq 0x1f10(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x1ed0(%rsp)
movl 0x1edc(%rsp), %eax
imull 0x1ed8(%rsp), %eax
imull 0x1ed4(%rsp), %eax
movl %eax, 0x1ecc(%rsp)
movq 0x1f18(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x122baef
movq 0x1f10(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1228dd7
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1ef0(%rsp), %ecx
movl 0x1eec(%rsp), %r8d
movq 0x1ee0(%rsp), %r9
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6fb30
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fe8(%rsp)
movq 0x1fe8(%rsp), %rcx
movq %rcx, 0xaa0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xaaf(%rsp)
je 0x122800e
movq 0xaa0(%rsp), %rax
movq %rax, 0x2d00(%rsp)
movq 0x2d00(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xaaf(%rsp)
movb 0xaaf(%rsp), %al
testb $0x1, %al
jne 0x122801b
jmp 0x122802b
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x123b265
movl $0x0, 0x1ec8(%rsp)
movl 0x1ec8(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x1228dc7
movq 0x1f18(%rsp), %rcx
movl 0x1ec8(%rsp), %eax
leaq 0x1e78(%rsp), %rdx
movq %rdx, 0x2318(%rsp)
movq %rcx, 0x2310(%rsp)
movl %eax, 0x230c(%rsp)
movq 0x2310(%rsp), %rax
movq %rax, 0xa98(%rsp)
movb $0x0, 0x230b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x230c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1e78(%rsp), %r10
movq %r10, 0x3338(%rsp)
movl %r9d, 0x3334(%rsp)
movl %r8d, 0x3330(%rsp)
movl %edi, 0x332c(%rsp)
movq %rsi, 0x3320(%rsp)
movq %rdx, 0x3318(%rsp)
movl %ecx, 0x3314(%rsp)
movq %rax, 0x3308(%rsp)
movq 0x3338(%rsp), %rcx
movq %rcx, 0xa90(%rsp)
movq 0x3320(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3318(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3314(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3308(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3334(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3330(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x332c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c90(%rsp)
movl $0x10, 0x3c8c(%rsp)
movq 0x3c90(%rsp), %rax
movslq 0x3c8c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c8c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xa98(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1ea0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1228206
movq 0xa98(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1eb8(%rsp)
movb $0x1, 0x230b(%rsp)
testb $0x1, 0x230b(%rsp)
jne 0x1228341
leaq 0x1e78(%rsp), %rax
movq %rax, 0x2450(%rsp)
movq 0x2450(%rsp), %rax
movq %rax, 0x4550(%rsp)
movq 0x4550(%rsp), %rax
movq %rax, 0xa88(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12282e4
movq 0xa88(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x454c(%rsp) # imm = 0xFFFFFFFF
movl 0x454c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4548(%rsp)
cmpl $0x1, 0x4548(%rsp)
jne 0x12282e4
movq 0xa88(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12282b5
movq 0xa88(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12282b3
jmp 0x12282e2
movq 0xa88(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4558(%rsp)
cmpq $0x0, 0x4558(%rsp)
je 0x12282e0
movq 0x4558(%rsp), %rdi
callq 0x5f480
jmp 0x12282e2
jmp 0x12282e4
movq 0xa88(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122833f
movq %rax, %rdi
callq 0x678a0
jmp 0x1228341
leaq 0x1e78(%rsp), %rax
movq %rax, 0x2448(%rsp)
movq 0x2448(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xa78(%rsp)
leaq 0x1e78(%rsp), %rax
movq %rax, 0x2560(%rsp)
movq 0x2560(%rsp), %rax
movq %rax, 0x4330(%rsp)
movq 0x4330(%rsp), %rax
movq %rax, 0xa80(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122842c
movq 0xa80(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x432c(%rsp) # imm = 0xFFFFFFFF
movl 0x432c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4328(%rsp)
cmpl $0x1, 0x4328(%rsp)
jne 0x122842c
movq 0xa80(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12283fd
movq 0xa80(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12283fb
jmp 0x122842a
movq 0xa80(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4668(%rsp)
cmpq $0x0, 0x4668(%rsp)
je 0x1228428
movq 0x4668(%rsp), %rdi
callq 0x5f480
jmp 0x122842a
jmp 0x122842c
movq 0xa80(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1228487
movq %rax, %rdi
callq 0x678a0
movq 0xa78(%rsp), %rax
movq %rax, 0x1ec0(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1ec8(%rsp), %eax
leaq 0x1e28(%rsp), %rdx
movq %rdx, 0x2300(%rsp)
movq %rcx, 0x22f8(%rsp)
movl %eax, 0x22f4(%rsp)
movq 0x22f8(%rsp), %rax
movq %rax, 0xa70(%rsp)
movb $0x0, 0x22f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1e28(%rsp), %r10
movq %r10, 0x3370(%rsp)
movl %r9d, 0x336c(%rsp)
movl %r8d, 0x3368(%rsp)
movl %edi, 0x3364(%rsp)
movq %rsi, 0x3358(%rsp)
movq %rdx, 0x3350(%rsp)
movl %ecx, 0x334c(%rsp)
movq %rax, 0x3340(%rsp)
movq 0x3370(%rsp), %rcx
movq %rcx, 0xa68(%rsp)
movq 0x3358(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3350(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x334c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3340(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x336c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3368(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3364(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c80(%rsp)
movl $0x10, 0x3c7c(%rsp)
movq 0x3c80(%rsp), %rax
movslq 0x3c7c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c7c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xa70(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1e50(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1228653
movq 0xa70(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1e68(%rsp)
movb $0x1, 0x22f3(%rsp)
testb $0x1, 0x22f3(%rsp)
jne 0x122878e
leaq 0x1e28(%rsp), %rax
movq %rax, 0x2458(%rsp)
movq 0x2458(%rsp), %rax
movq %rax, 0x4540(%rsp)
movq 0x4540(%rsp), %rax
movq %rax, 0xa60(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1228731
movq 0xa60(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x453c(%rsp) # imm = 0xFFFFFFFF
movl 0x453c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4538(%rsp)
cmpl $0x1, 0x4538(%rsp)
jne 0x1228731
movq 0xa60(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1228702
movq 0xa60(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1228700
jmp 0x122872f
movq 0xa60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4560(%rsp)
cmpq $0x0, 0x4560(%rsp)
je 0x122872d
movq 0x4560(%rsp), %rdi
callq 0x5f480
jmp 0x122872f
jmp 0x1228731
movq 0xa60(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122878c
movq %rax, %rdi
callq 0x678a0
jmp 0x122878e
leaq 0x1e28(%rsp), %rax
movq %rax, 0x2440(%rsp)
movq 0x2440(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xa50(%rsp)
leaq 0x1e28(%rsp), %rax
movq %rax, 0x2568(%rsp)
movq 0x2568(%rsp), %rax
movq %rax, 0x4320(%rsp)
movq 0x4320(%rsp), %rax
movq %rax, 0xa58(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1228879
movq 0xa58(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x431c(%rsp) # imm = 0xFFFFFFFF
movl 0x431c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4318(%rsp)
cmpl $0x1, 0x4318(%rsp)
jne 0x1228879
movq 0xa58(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122884a
movq 0xa58(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1228848
jmp 0x1228877
movq 0xa58(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4670(%rsp)
cmpq $0x0, 0x4670(%rsp)
je 0x1228875
movq 0x4670(%rsp), %rdi
callq 0x5f480
jmp 0x1228877
jmp 0x1228879
movq 0xa58(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12288d4
movq %rax, %rdi
callq 0x678a0
movq 0xa50(%rsp), %rax
movq %rax, 0x1e70(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1ec8(%rsp), %eax
leaq 0x1dd8(%rsp), %rdx
movq %rdx, 0x2a20(%rsp)
movq %rcx, 0x2a18(%rsp)
movl %eax, 0x2a14(%rsp)
movq 0x2a18(%rsp), %rax
movq %rax, 0xa48(%rsp)
movb $0x0, 0x2a13(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2a14(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1dd8(%rsp), %r10
movq %r10, 0x2df8(%rsp)
movl %r9d, 0x2df4(%rsp)
movl %r8d, 0x2df0(%rsp)
movl %edi, 0x2dec(%rsp)
movq %rsi, 0x2de0(%rsp)
movq %rdx, 0x2dd8(%rsp)
movl %ecx, 0x2dd4(%rsp)
movq %rax, 0x2dc8(%rsp)
movq 0x2df8(%rsp), %rcx
movq %rcx, 0xa40(%rsp)
movq 0x2de0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2dd8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2dd4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2dc8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2df4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2df0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2dec(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3e10(%rsp)
movl $0x10, 0x3e0c(%rsp)
movq 0x3e10(%rsp), %rax
movslq 0x3e0c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3e0c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xa48(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1e00(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1228aa0
movq 0xa48(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1e18(%rsp)
movb $0x1, 0x2a13(%rsp)
testb $0x1, 0x2a13(%rsp)
jne 0x1228bdb
leaq 0x1dd8(%rsp), %rax
movq %rax, 0x2a28(%rsp)
movq 0x2a28(%rsp), %rax
movq %rax, 0x3e20(%rsp)
movq 0x3e20(%rsp), %rax
movq %rax, 0xa38(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1228b7e
movq 0xa38(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e1c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e1c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e18(%rsp)
cmpl $0x1, 0x3e18(%rsp)
jne 0x1228b7e
movq 0xa38(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1228b4f
movq 0xa38(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1228b4d
jmp 0x1228b7c
movq 0xa38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48f0(%rsp)
cmpq $0x0, 0x48f0(%rsp)
je 0x1228b7a
movq 0x48f0(%rsp), %rdi
callq 0x5f480
jmp 0x1228b7c
jmp 0x1228b7e
movq 0xa38(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1228bd9
movq %rax, %rdi
callq 0x678a0
jmp 0x1228bdb
leaq 0x1dd8(%rsp), %rax
movq %rax, 0x2af8(%rsp)
movq 0x2af8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xa28(%rsp)
leaq 0x1dd8(%rsp), %rax
movq %rax, 0x2570(%rsp)
movq 0x2570(%rsp), %rax
movq %rax, 0x4310(%rsp)
movq 0x4310(%rsp), %rax
movq %rax, 0xa30(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1228cc6
movq 0xa30(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x430c(%rsp) # imm = 0xFFFFFFFF
movl 0x430c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4308(%rsp)
cmpl $0x1, 0x4308(%rsp)
jne 0x1228cc6
movq 0xa30(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1228c97
movq 0xa30(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1228c95
jmp 0x1228cc4
movq 0xa30(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4678(%rsp)
cmpq $0x0, 0x4678(%rsp)
je 0x1228cc2
movq 0x4678(%rsp), %rdi
callq 0x5f480
jmp 0x1228cc4
jmp 0x1228cc6
movq 0xa30(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1228d21
movq %rax, %rdi
callq 0x678a0
movq 0xa28(%rsp), %rax
movq %rax, 0x1e20(%rsp)
movl $0x0, 0x1dd4(%rsp)
movl 0x1dd4(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x1228daf
movq 0x1ec0(%rsp), %rsi
movslq 0x1dd4(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1e70(%rsp), %rdx
movslq 0x1dd4(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x1278090
movq 0x1e20(%rsp), %rax
movslq 0x1dd4(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1dd4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1dd4(%rsp)
jmp 0x1228d3c
jmp 0x1228db1
movl 0x1ec8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1ec8(%rsp)
jmp 0x1228036
movl $0x0, 0x1f24(%rsp)
jmp 0x123b265
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1ef0(%rsp), %ecx
movl 0x1eec(%rsp), %r8d
movq 0x1ee0(%rsp), %r9
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6fb30
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fe0(%rsp)
movq 0x1fe0(%rsp), %rcx
movq %rcx, 0xa18(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xa27(%rsp)
je 0x1228e7a
movq 0xa18(%rsp), %rax
movq %rax, 0x2d08(%rsp)
movq 0x2d08(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xa27(%rsp)
movb 0xa27(%rsp), %al
testb $0x1, %al
jne 0x1228e87
jmp 0x1228e97
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x123b265
movq 0x1f10(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1229d31
movl $0x0, 0x1dd0(%rsp)
movl 0x1dd0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x1229d21
movq 0x1f18(%rsp), %rcx
movl 0x1dd0(%rsp), %eax
leaq 0x1d80(%rsp), %rdx
movq %rdx, 0x22e8(%rsp)
movq %rcx, 0x22e0(%rsp)
movl %eax, 0x22dc(%rsp)
movq 0x22e0(%rsp), %rax
movq %rax, 0xa10(%rsp)
movb $0x0, 0x22db(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22dc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1d80(%rsp), %r10
movq %r10, 0x33a8(%rsp)
movl %r9d, 0x33a4(%rsp)
movl %r8d, 0x33a0(%rsp)
movl %edi, 0x339c(%rsp)
movq %rsi, 0x3390(%rsp)
movq %rdx, 0x3388(%rsp)
movl %ecx, 0x3384(%rsp)
movq %rax, 0x3378(%rsp)
movq 0x33a8(%rsp), %rcx
movq %rcx, 0xa08(%rsp)
movq 0x3390(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3388(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3384(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3378(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x33a4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x33a0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x339c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c70(%rsp)
movl $0x10, 0x3c6c(%rsp)
movq 0x3c70(%rsp), %rax
movslq 0x3c6c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c6c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xa10(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1da8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1229084
movq 0xa10(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1dc0(%rsp)
movb $0x1, 0x22db(%rsp)
testb $0x1, 0x22db(%rsp)
jne 0x12291bf
leaq 0x1d80(%rsp), %rax
movq %rax, 0x2460(%rsp)
movq 0x2460(%rsp), %rax
movq %rax, 0x4530(%rsp)
movq 0x4530(%rsp), %rax
movq %rax, 0xa00(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1229162
movq 0xa00(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x452c(%rsp) # imm = 0xFFFFFFFF
movl 0x452c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4528(%rsp)
cmpl $0x1, 0x4528(%rsp)
jne 0x1229162
movq 0xa00(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1229133
movq 0xa00(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1229131
jmp 0x1229160
movq 0xa00(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4568(%rsp)
cmpq $0x0, 0x4568(%rsp)
je 0x122915e
movq 0x4568(%rsp), %rdi
callq 0x5f480
jmp 0x1229160
jmp 0x1229162
movq 0xa00(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12291bd
movq %rax, %rdi
callq 0x678a0
jmp 0x12291bf
leaq 0x1d80(%rsp), %rax
movq %rax, 0x2438(%rsp)
movq 0x2438(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x9f0(%rsp)
leaq 0x1d80(%rsp), %rax
movq %rax, 0x2578(%rsp)
movq 0x2578(%rsp), %rax
movq %rax, 0x4300(%rsp)
movq 0x4300(%rsp), %rax
movq %rax, 0x9f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12292aa
movq 0x9f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42fc(%rsp) # imm = 0xFFFFFFFF
movl 0x42fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42f8(%rsp)
cmpl $0x1, 0x42f8(%rsp)
jne 0x12292aa
movq 0x9f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122927b
movq 0x9f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1229279
jmp 0x12292a8
movq 0x9f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4680(%rsp)
cmpq $0x0, 0x4680(%rsp)
je 0x12292a6
movq 0x4680(%rsp), %rdi
callq 0x5f480
jmp 0x12292a8
jmp 0x12292aa
movq 0x9f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1229305
movq %rax, %rdi
callq 0x678a0
movq 0x9f0(%rsp), %rax
movq %rax, 0x1dc8(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1dd0(%rsp), %eax
leaq 0x1d30(%rsp), %rdx
movq %rdx, 0x22d0(%rsp)
movq %rcx, 0x22c8(%rsp)
movl %eax, 0x22c4(%rsp)
movq 0x22c8(%rsp), %rax
movq %rax, 0x9e8(%rsp)
movb $0x0, 0x22c3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22c4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1d30(%rsp), %r10
movq %r10, 0x33e0(%rsp)
movl %r9d, 0x33dc(%rsp)
movl %r8d, 0x33d8(%rsp)
movl %edi, 0x33d4(%rsp)
movq %rsi, 0x33c8(%rsp)
movq %rdx, 0x33c0(%rsp)
movl %ecx, 0x33bc(%rsp)
movq %rax, 0x33b0(%rsp)
movq 0x33e0(%rsp), %rcx
movq %rcx, 0x9e0(%rsp)
movq 0x33c8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x33c0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x33bc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x33b0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x33dc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x33d8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x33d4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c60(%rsp)
movl $0x10, 0x3c5c(%rsp)
movq 0x3c60(%rsp), %rax
movslq 0x3c5c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c5c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x9e8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1d58(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12294d1
movq 0x9e8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1d70(%rsp)
movb $0x1, 0x22c3(%rsp)
testb $0x1, 0x22c3(%rsp)
jne 0x122960c
leaq 0x1d30(%rsp), %rax
movq %rax, 0x2468(%rsp)
movq 0x2468(%rsp), %rax
movq %rax, 0x4520(%rsp)
movq 0x4520(%rsp), %rax
movq %rax, 0x9d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12295af
movq 0x9d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x451c(%rsp) # imm = 0xFFFFFFFF
movl 0x451c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4518(%rsp)
cmpl $0x1, 0x4518(%rsp)
jne 0x12295af
movq 0x9d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1229580
movq 0x9d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122957e
jmp 0x12295ad
movq 0x9d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4570(%rsp)
cmpq $0x0, 0x4570(%rsp)
je 0x12295ab
movq 0x4570(%rsp), %rdi
callq 0x5f480
jmp 0x12295ad
jmp 0x12295af
movq 0x9d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122960a
movq %rax, %rdi
callq 0x678a0
jmp 0x122960c
leaq 0x1d30(%rsp), %rax
movq %rax, 0x2430(%rsp)
movq 0x2430(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x9c8(%rsp)
leaq 0x1d30(%rsp), %rax
movq %rax, 0x2580(%rsp)
movq 0x2580(%rsp), %rax
movq %rax, 0x42f0(%rsp)
movq 0x42f0(%rsp), %rax
movq %rax, 0x9d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12296f7
movq 0x9d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42ec(%rsp) # imm = 0xFFFFFFFF
movl 0x42ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42e8(%rsp)
cmpl $0x1, 0x42e8(%rsp)
jne 0x12296f7
movq 0x9d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12296c8
movq 0x9d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12296c6
jmp 0x12296f5
movq 0x9d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4688(%rsp)
cmpq $0x0, 0x4688(%rsp)
je 0x12296f3
movq 0x4688(%rsp), %rdi
callq 0x5f480
jmp 0x12296f5
jmp 0x12296f7
movq 0x9d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1229752
movq %rax, %rdi
callq 0x678a0
movq 0x9c8(%rsp), %rax
movq %rax, 0x1d78(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1dd0(%rsp), %eax
leaq 0x1ce0(%rsp), %rdx
movq %rdx, 0x2a00(%rsp)
movq %rcx, 0x29f8(%rsp)
movl %eax, 0x29f4(%rsp)
movq 0x29f8(%rsp), %rax
movq %rax, 0x9c0(%rsp)
movb $0x0, 0x29f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x29f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1ce0(%rsp), %r10
movq %r10, 0x2e30(%rsp)
movl %r9d, 0x2e2c(%rsp)
movl %r8d, 0x2e28(%rsp)
movl %edi, 0x2e24(%rsp)
movq %rsi, 0x2e18(%rsp)
movq %rdx, 0x2e10(%rsp)
movl %ecx, 0x2e0c(%rsp)
movq %rax, 0x2e00(%rsp)
movq 0x2e30(%rsp), %rcx
movq %rcx, 0x9b8(%rsp)
movq 0x2e18(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2e10(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2e0c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2e00(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2e2c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2e28(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2e24(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3e00(%rsp)
movl $0x10, 0x3dfc(%rsp)
movq 0x3e00(%rsp), %rax
movslq 0x3dfc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3dfc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x9c0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1d08(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x122991e
movq 0x9c0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1d20(%rsp)
movb $0x1, 0x29f3(%rsp)
testb $0x1, 0x29f3(%rsp)
jne 0x1229a59
leaq 0x1ce0(%rsp), %rax
movq %rax, 0x2a08(%rsp)
movq 0x2a08(%rsp), %rax
movq %rax, 0x3e30(%rsp)
movq 0x3e30(%rsp), %rax
movq %rax, 0x9b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12299fc
movq 0x9b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e2c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e2c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e28(%rsp)
cmpl $0x1, 0x3e28(%rsp)
jne 0x12299fc
movq 0x9b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12299cd
movq 0x9b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12299cb
jmp 0x12299fa
movq 0x9b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48e8(%rsp)
cmpq $0x0, 0x48e8(%rsp)
je 0x12299f8
movq 0x48e8(%rsp), %rdi
callq 0x5f480
jmp 0x12299fa
jmp 0x12299fc
movq 0x9b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1229a57
movq %rax, %rdi
callq 0x678a0
jmp 0x1229a59
leaq 0x1ce0(%rsp), %rax
movq %rax, 0x2af0(%rsp)
movq 0x2af0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x9a0(%rsp)
leaq 0x1ce0(%rsp), %rax
movq %rax, 0x2588(%rsp)
movq 0x2588(%rsp), %rax
movq %rax, 0x42e0(%rsp)
movq 0x42e0(%rsp), %rax
movq %rax, 0x9a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1229b44
movq 0x9a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42dc(%rsp) # imm = 0xFFFFFFFF
movl 0x42dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42d8(%rsp)
cmpl $0x1, 0x42d8(%rsp)
jne 0x1229b44
movq 0x9a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1229b15
movq 0x9a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1229b13
jmp 0x1229b42
movq 0x9a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4690(%rsp)
cmpq $0x0, 0x4690(%rsp)
je 0x1229b40
movq 0x4690(%rsp), %rdi
callq 0x5f480
jmp 0x1229b42
jmp 0x1229b44
movq 0x9a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1229b9f
movq %rax, %rdi
callq 0x678a0
movq 0x9a0(%rsp), %rax
movq %rax, 0x1d28(%rsp)
movl $0x0, 0x1cdc(%rsp)
movl 0x1cdc(%rsp), %eax
cmpl 0x1ef0(%rsp), %eax
jge 0x1229d09
movl $0x0, 0x1cd8(%rsp)
movl 0x1cd8(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jge 0x1229cd2
movq 0x1d78(%rsp), %rax
movslq 0x1cd8(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x1cd4(%rsp)
movl $0x0, 0x1cd0(%rsp)
movl 0x1cd0(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x1229c7a
movq 0x1dc8(%rsp), %rsi
movslq 0x1cd0(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0x1cd4(%rsp), %rdx
callq 0x1278090
movq 0x1d28(%rsp), %rax
movslq 0x1cd0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1cd0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1cd0(%rsp)
jmp 0x1229c16
movl 0x1ef8(%rsp), %ecx
movq 0x1dc8(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1dc8(%rsp)
movl 0x1ef8(%rsp), %ecx
movq 0x1d28(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1d28(%rsp)
movl 0x1cd8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1cd8(%rsp)
jmp 0x1229bd9
movl 0x1ef4(%rsp), %ecx
movq 0x1d78(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1d78(%rsp)
movl 0x1cdc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1cdc(%rsp)
jmp 0x1229bba
jmp 0x1229d0b
movl 0x1dd0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1dd0(%rsp)
jmp 0x1228eb4
movl $0x0, 0x1f24(%rsp)
jmp 0x123b265
movq 0x1f10(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x122a7a8
movl $0x0, 0x1ccc(%rsp)
movl 0x1ccc(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x122a798
movq 0x1f18(%rsp), %rcx
movl 0x1ccc(%rsp), %eax
leaq 0x1c78(%rsp), %rdx
movq %rdx, 0x22b8(%rsp)
movq %rcx, 0x22b0(%rsp)
movl %eax, 0x22ac(%rsp)
movq 0x22b0(%rsp), %rax
movq %rax, 0x998(%rsp)
movb $0x0, 0x22ab(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22ac(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1c78(%rsp), %r10
movq %r10, 0x3418(%rsp)
movl %r9d, 0x3414(%rsp)
movl %r8d, 0x3410(%rsp)
movl %edi, 0x340c(%rsp)
movq %rsi, 0x3400(%rsp)
movq %rdx, 0x33f8(%rsp)
movl %ecx, 0x33f4(%rsp)
movq %rax, 0x33e8(%rsp)
movq 0x3418(%rsp), %rcx
movq %rcx, 0x990(%rsp)
movq 0x3400(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x33f8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x33f4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x33e8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3414(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3410(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x340c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c50(%rsp)
movl $0x10, 0x3c4c(%rsp)
movq 0x3c50(%rsp), %rax
movslq 0x3c4c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c4c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x998(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1ca0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1229f1e
movq 0x998(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1cb8(%rsp)
movb $0x1, 0x22ab(%rsp)
testb $0x1, 0x22ab(%rsp)
jne 0x122a059
leaq 0x1c78(%rsp), %rax
movq %rax, 0x2470(%rsp)
movq 0x2470(%rsp), %rax
movq %rax, 0x4510(%rsp)
movq 0x4510(%rsp), %rax
movq %rax, 0x988(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1229ffc
movq 0x988(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x450c(%rsp) # imm = 0xFFFFFFFF
movl 0x450c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4508(%rsp)
cmpl $0x1, 0x4508(%rsp)
jne 0x1229ffc
movq 0x988(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1229fcd
movq 0x988(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1229fcb
jmp 0x1229ffa
movq 0x988(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4578(%rsp)
cmpq $0x0, 0x4578(%rsp)
je 0x1229ff8
movq 0x4578(%rsp), %rdi
callq 0x5f480
jmp 0x1229ffa
jmp 0x1229ffc
movq 0x988(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122a057
movq %rax, %rdi
callq 0x678a0
jmp 0x122a059
leaq 0x1c78(%rsp), %rax
movq %rax, 0x2428(%rsp)
movq 0x2428(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x978(%rsp)
leaq 0x1c78(%rsp), %rax
movq %rax, 0x2590(%rsp)
movq 0x2590(%rsp), %rax
movq %rax, 0x42d0(%rsp)
movq 0x42d0(%rsp), %rax
movq %rax, 0x980(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122a144
movq 0x980(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42cc(%rsp) # imm = 0xFFFFFFFF
movl 0x42cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42c8(%rsp)
cmpl $0x1, 0x42c8(%rsp)
jne 0x122a144
movq 0x980(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122a115
movq 0x980(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122a113
jmp 0x122a142
movq 0x980(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4698(%rsp)
cmpq $0x0, 0x4698(%rsp)
je 0x122a140
movq 0x4698(%rsp), %rdi
callq 0x5f480
jmp 0x122a142
jmp 0x122a144
movq 0x980(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122a19f
movq %rax, %rdi
callq 0x678a0
movq 0x978(%rsp), %rax
movq %rax, 0x1cc0(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1ccc(%rsp), %eax
movq %rcx, 0x2b38(%rsp)
movl %eax, 0x2b34(%rsp)
movq 0x2b38(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2b34(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x1c70(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1ccc(%rsp), %eax
leaq 0x1c20(%rsp), %rdx
movq %rdx, 0x29e0(%rsp)
movq %rcx, 0x29d8(%rsp)
movl %eax, 0x29d4(%rsp)
movq 0x29d8(%rsp), %rax
movq %rax, 0x970(%rsp)
movb $0x0, 0x29d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x29d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1c20(%rsp), %r10
movq %r10, 0x2e68(%rsp)
movl %r9d, 0x2e64(%rsp)
movl %r8d, 0x2e60(%rsp)
movl %edi, 0x2e5c(%rsp)
movq %rsi, 0x2e50(%rsp)
movq %rdx, 0x2e48(%rsp)
movl %ecx, 0x2e44(%rsp)
movq %rax, 0x2e38(%rsp)
movq 0x2e68(%rsp), %rcx
movq %rcx, 0x968(%rsp)
movq 0x2e50(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2e48(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2e44(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2e38(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2e64(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2e60(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2e5c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3df0(%rsp)
movl $0x10, 0x3dec(%rsp)
movq 0x3df0(%rsp), %rax
movslq 0x3dec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3dec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x970(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1c48(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x122a3b4
movq 0x970(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1c60(%rsp)
movb $0x1, 0x29d3(%rsp)
testb $0x1, 0x29d3(%rsp)
jne 0x122a4ef
leaq 0x1c20(%rsp), %rax
movq %rax, 0x29e8(%rsp)
movq 0x29e8(%rsp), %rax
movq %rax, 0x3e40(%rsp)
movq 0x3e40(%rsp), %rax
movq %rax, 0x960(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122a492
movq 0x960(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e3c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e3c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e38(%rsp)
cmpl $0x1, 0x3e38(%rsp)
jne 0x122a492
movq 0x960(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122a463
movq 0x960(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122a461
jmp 0x122a490
movq 0x960(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48e0(%rsp)
cmpq $0x0, 0x48e0(%rsp)
je 0x122a48e
movq 0x48e0(%rsp), %rdi
callq 0x5f480
jmp 0x122a490
jmp 0x122a492
movq 0x960(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122a4ed
movq %rax, %rdi
callq 0x678a0
jmp 0x122a4ef
leaq 0x1c20(%rsp), %rax
movq %rax, 0x2ae8(%rsp)
movq 0x2ae8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x950(%rsp)
leaq 0x1c20(%rsp), %rax
movq %rax, 0x2598(%rsp)
movq 0x2598(%rsp), %rax
movq %rax, 0x42c0(%rsp)
movq 0x42c0(%rsp), %rax
movq %rax, 0x958(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122a5da
movq 0x958(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42bc(%rsp) # imm = 0xFFFFFFFF
movl 0x42bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42b8(%rsp)
cmpl $0x1, 0x42b8(%rsp)
jne 0x122a5da
movq 0x958(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122a5ab
movq 0x958(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122a5a9
jmp 0x122a5d8
movq 0x958(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46a0(%rsp)
cmpq $0x0, 0x46a0(%rsp)
je 0x122a5d6
movq 0x46a0(%rsp), %rdi
callq 0x5f480
jmp 0x122a5d8
jmp 0x122a5da
movq 0x958(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122a635
movq %rax, %rdi
callq 0x678a0
movq 0x950(%rsp), %rax
movq %rax, 0x1c68(%rsp)
movl $0x0, 0x1c1c(%rsp)
movl 0x1c1c(%rsp), %eax
cmpl 0x1ef0(%rsp), %eax
jge 0x122a780
movq 0x1c70(%rsp), %rax
movslq 0x1c1c(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x1c18(%rsp)
movl $0x0, 0x1c14(%rsp)
movl 0x1c14(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jge 0x122a768
movl $0x0, 0x1c10(%rsp)
movl 0x1c10(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x122a710
movq 0x1cc0(%rsp), %rsi
movslq 0x1c10(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0x1c18(%rsp), %rdx
callq 0x1278090
movq 0x1c68(%rsp), %rax
movslq 0x1c10(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1c10(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c10(%rsp)
jmp 0x122a6ac
movl 0x1ef8(%rsp), %ecx
movq 0x1cc0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1cc0(%rsp)
movl 0x1ef8(%rsp), %ecx
movq 0x1c68(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1c68(%rsp)
movl 0x1c14(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c14(%rsp)
jmp 0x122a68d
jmp 0x122a76a
movl 0x1c1c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c1c(%rsp)
jmp 0x122a650
jmp 0x122a782
movl 0x1ccc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1ccc(%rsp)
jmp 0x1229d4e
movl $0x0, 0x1f24(%rsp)
jmp 0x123b265
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x122baea
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x122b159
movq 0x1f10(%rsp), %rax
movq %rax, 0x2c98(%rsp)
movq $0x0, 0x2c90(%rsp)
movq 0x2c98(%rsp), %rax
movq (%rax), %rax
movq 0x2c90(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x1c0c(%rsp)
movl $0x0, 0x1c08(%rsp)
movl 0x1c08(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x122b149
movq 0x1f18(%rsp), %rcx
movl 0x1c08(%rsp), %eax
leaq 0x1bb8(%rsp), %rdx
movq %rdx, 0x22a0(%rsp)
movq %rcx, 0x2298(%rsp)
movl %eax, 0x2294(%rsp)
movq 0x2298(%rsp), %rax
movq %rax, 0x948(%rsp)
movb $0x0, 0x2293(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2294(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1bb8(%rsp), %r10
movq %r10, 0x3450(%rsp)
movl %r9d, 0x344c(%rsp)
movl %r8d, 0x3448(%rsp)
movl %edi, 0x3444(%rsp)
movq %rsi, 0x3438(%rsp)
movq %rdx, 0x3430(%rsp)
movl %ecx, 0x342c(%rsp)
movq %rax, 0x3420(%rsp)
movq 0x3450(%rsp), %rcx
movq %rcx, 0x940(%rsp)
movq 0x3438(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3430(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x342c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3420(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x344c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3448(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3444(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c40(%rsp)
movl $0x10, 0x3c3c(%rsp)
movq 0x3c40(%rsp), %rax
movslq 0x3c3c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c3c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x948(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1be0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x122a9e4
movq 0x948(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1bf8(%rsp)
movb $0x1, 0x2293(%rsp)
testb $0x1, 0x2293(%rsp)
jne 0x122ab1f
leaq 0x1bb8(%rsp), %rax
movq %rax, 0x2478(%rsp)
movq 0x2478(%rsp), %rax
movq %rax, 0x4500(%rsp)
movq 0x4500(%rsp), %rax
movq %rax, 0x938(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122aac2
movq 0x938(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x44fc(%rsp) # imm = 0xFFFFFFFF
movl 0x44fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x44f8(%rsp)
cmpl $0x1, 0x44f8(%rsp)
jne 0x122aac2
movq 0x938(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122aa93
movq 0x938(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122aa91
jmp 0x122aac0
movq 0x938(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4580(%rsp)
cmpq $0x0, 0x4580(%rsp)
je 0x122aabe
movq 0x4580(%rsp), %rdi
callq 0x5f480
jmp 0x122aac0
jmp 0x122aac2
movq 0x938(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122ab1d
movq %rax, %rdi
callq 0x678a0
jmp 0x122ab1f
leaq 0x1bb8(%rsp), %rax
movq %rax, 0x2420(%rsp)
movq 0x2420(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x928(%rsp)
leaq 0x1bb8(%rsp), %rax
movq %rax, 0x25a0(%rsp)
movq 0x25a0(%rsp), %rax
movq %rax, 0x42b0(%rsp)
movq 0x42b0(%rsp), %rax
movq %rax, 0x930(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122ac0a
movq 0x930(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42ac(%rsp) # imm = 0xFFFFFFFF
movl 0x42ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42a8(%rsp)
cmpl $0x1, 0x42a8(%rsp)
jne 0x122ac0a
movq 0x930(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122abdb
movq 0x930(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122abd9
jmp 0x122ac08
movq 0x930(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46a8(%rsp)
cmpq $0x0, 0x46a8(%rsp)
je 0x122ac06
movq 0x46a8(%rsp), %rdi
callq 0x5f480
jmp 0x122ac08
jmp 0x122ac0a
movq 0x930(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122ac65
movq %rax, %rdi
callq 0x678a0
movq 0x928(%rsp), %rax
movq %rax, 0x1c00(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1c08(%rsp), %eax
leaq 0x1b68(%rsp), %rdx
movq %rdx, 0x29c0(%rsp)
movq %rcx, 0x29b8(%rsp)
movl %eax, 0x29b4(%rsp)
movq 0x29b8(%rsp), %rax
movq %rax, 0x920(%rsp)
movb $0x0, 0x29b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x29b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1b68(%rsp), %r10
movq %r10, 0x2ea0(%rsp)
movl %r9d, 0x2e9c(%rsp)
movl %r8d, 0x2e98(%rsp)
movl %edi, 0x2e94(%rsp)
movq %rsi, 0x2e88(%rsp)
movq %rdx, 0x2e80(%rsp)
movl %ecx, 0x2e7c(%rsp)
movq %rax, 0x2e70(%rsp)
movq 0x2ea0(%rsp), %rcx
movq %rcx, 0x918(%rsp)
movq 0x2e88(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2e80(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2e7c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2e70(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2e9c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2e98(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2e94(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3de0(%rsp)
movl $0x10, 0x3ddc(%rsp)
movq 0x3de0(%rsp), %rax
movslq 0x3ddc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3ddc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x920(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1b90(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x122ae31
movq 0x920(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1ba8(%rsp)
movb $0x1, 0x29b3(%rsp)
testb $0x1, 0x29b3(%rsp)
jne 0x122af6c
leaq 0x1b68(%rsp), %rax
movq %rax, 0x29c8(%rsp)
movq 0x29c8(%rsp), %rax
movq %rax, 0x3e50(%rsp)
movq 0x3e50(%rsp), %rax
movq %rax, 0x910(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122af0f
movq 0x910(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e4c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e4c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e48(%rsp)
cmpl $0x1, 0x3e48(%rsp)
jne 0x122af0f
movq 0x910(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122aee0
movq 0x910(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122aede
jmp 0x122af0d
movq 0x910(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48d8(%rsp)
cmpq $0x0, 0x48d8(%rsp)
je 0x122af0b
movq 0x48d8(%rsp), %rdi
callq 0x5f480
jmp 0x122af0d
jmp 0x122af0f
movq 0x910(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122af6a
movq %rax, %rdi
callq 0x678a0
jmp 0x122af6c
leaq 0x1b68(%rsp), %rax
movq %rax, 0x2ae0(%rsp)
movq 0x2ae0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x900(%rsp)
leaq 0x1b68(%rsp), %rax
movq %rax, 0x25a8(%rsp)
movq 0x25a8(%rsp), %rax
movq %rax, 0x42a0(%rsp)
movq 0x42a0(%rsp), %rax
movq %rax, 0x908(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122b057
movq 0x908(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x429c(%rsp) # imm = 0xFFFFFFFF
movl 0x429c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4298(%rsp)
cmpl $0x1, 0x4298(%rsp)
jne 0x122b057
movq 0x908(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122b028
movq 0x908(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122b026
jmp 0x122b055
movq 0x908(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46b0(%rsp)
cmpq $0x0, 0x46b0(%rsp)
je 0x122b053
movq 0x46b0(%rsp), %rdi
callq 0x5f480
jmp 0x122b055
jmp 0x122b057
movq 0x908(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122b0b2
movq %rax, %rdi
callq 0x678a0
movq 0x900(%rsp), %rax
movq %rax, 0x1bb0(%rsp)
movl $0x0, 0x1b64(%rsp)
movl 0x1b64(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x122b131
movq 0x1c00(%rsp), %rsi
movslq 0x1b64(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0x1c0c(%rsp), %rdx
callq 0x1278090
movq 0x1bb0(%rsp), %rax
movslq 0x1b64(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1b64(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b64(%rsp)
jmp 0x122b0cd
jmp 0x122b133
movl 0x1c08(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c08(%rsp)
jmp 0x122a814
movl $0x0, 0x1f24(%rsp)
jmp 0x123b265
movl $0x0, 0x1b60(%rsp)
movl 0x1b60(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x122bada
movq 0x1f18(%rsp), %rcx
movl 0x1b60(%rsp), %eax
leaq 0x1b10(%rsp), %rdx
movq %rdx, 0x2288(%rsp)
movq %rcx, 0x2280(%rsp)
movl %eax, 0x227c(%rsp)
movq 0x2280(%rsp), %rax
movq %rax, 0x8f8(%rsp)
movb $0x0, 0x227b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x227c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1b10(%rsp), %r10
movq %r10, 0x3488(%rsp)
movl %r9d, 0x3484(%rsp)
movl %r8d, 0x3480(%rsp)
movl %edi, 0x347c(%rsp)
movq %rsi, 0x3470(%rsp)
movq %rdx, 0x3468(%rsp)
movl %ecx, 0x3464(%rsp)
movq %rax, 0x3458(%rsp)
movq 0x3488(%rsp), %rcx
movq %rcx, 0x8f0(%rsp)
movq 0x3470(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3468(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3464(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3458(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3484(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3480(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x347c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c30(%rsp)
movl $0x10, 0x3c2c(%rsp)
movq 0x3c30(%rsp), %rax
movslq 0x3c2c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c2c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x8f8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1b38(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x122b334
movq 0x8f8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1b50(%rsp)
movb $0x1, 0x227b(%rsp)
testb $0x1, 0x227b(%rsp)
jne 0x122b46f
leaq 0x1b10(%rsp), %rax
movq %rax, 0x2480(%rsp)
movq 0x2480(%rsp), %rax
movq %rax, 0x44f0(%rsp)
movq 0x44f0(%rsp), %rax
movq %rax, 0x8e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122b412
movq 0x8e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x44ec(%rsp) # imm = 0xFFFFFFFF
movl 0x44ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x44e8(%rsp)
cmpl $0x1, 0x44e8(%rsp)
jne 0x122b412
movq 0x8e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122b3e3
movq 0x8e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122b3e1
jmp 0x122b410
movq 0x8e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4588(%rsp)
cmpq $0x0, 0x4588(%rsp)
je 0x122b40e
movq 0x4588(%rsp), %rdi
callq 0x5f480
jmp 0x122b410
jmp 0x122b412
movq 0x8e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122b46d
movq %rax, %rdi
callq 0x678a0
jmp 0x122b46f
leaq 0x1b10(%rsp), %rax
movq %rax, 0x2418(%rsp)
movq 0x2418(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8d8(%rsp)
leaq 0x1b10(%rsp), %rax
movq %rax, 0x25b0(%rsp)
movq 0x25b0(%rsp), %rax
movq %rax, 0x4290(%rsp)
movq 0x4290(%rsp), %rax
movq %rax, 0x8e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122b55a
movq 0x8e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x428c(%rsp) # imm = 0xFFFFFFFF
movl 0x428c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4288(%rsp)
cmpl $0x1, 0x4288(%rsp)
jne 0x122b55a
movq 0x8e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122b52b
movq 0x8e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122b529
jmp 0x122b558
movq 0x8e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46b8(%rsp)
cmpq $0x0, 0x46b8(%rsp)
je 0x122b556
movq 0x46b8(%rsp), %rdi
callq 0x5f480
jmp 0x122b558
jmp 0x122b55a
movq 0x8e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122b5b5
movq %rax, %rdi
callq 0x678a0
movq 0x8d8(%rsp), %rax
movq %rax, 0x1b58(%rsp)
movq 0x1f10(%rsp), %rcx
movslq 0x1b60(%rsp), %rax
movq %rcx, 0x2c88(%rsp)
movq %rax, 0x2c80(%rsp)
movq 0x2c88(%rsp), %rax
movq (%rax), %rax
movq 0x2c80(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x1b0c(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1b60(%rsp), %eax
leaq 0x1ab8(%rsp), %rdx
movq %rdx, 0x29a0(%rsp)
movq %rcx, 0x2998(%rsp)
movl %eax, 0x2994(%rsp)
movq 0x2998(%rsp), %rax
movq %rax, 0x8d0(%rsp)
movb $0x0, 0x2993(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2994(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1ab8(%rsp), %r10
movq %r10, 0x2ed8(%rsp)
movl %r9d, 0x2ed4(%rsp)
movl %r8d, 0x2ed0(%rsp)
movl %edi, 0x2ecc(%rsp)
movq %rsi, 0x2ec0(%rsp)
movq %rdx, 0x2eb8(%rsp)
movl %ecx, 0x2eb4(%rsp)
movq %rax, 0x2ea8(%rsp)
movq 0x2ed8(%rsp), %rcx
movq %rcx, 0x8c8(%rsp)
movq 0x2ec0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2eb8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2eb4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ea8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2ed4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2ed0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2ecc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3dd0(%rsp)
movl $0x10, 0x3dcc(%rsp)
movq 0x3dd0(%rsp), %rax
movslq 0x3dcc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3dcc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x8d0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1ae0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x122b7c2
movq 0x8d0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1af8(%rsp)
movb $0x1, 0x2993(%rsp)
testb $0x1, 0x2993(%rsp)
jne 0x122b8fd
leaq 0x1ab8(%rsp), %rax
movq %rax, 0x29a8(%rsp)
movq 0x29a8(%rsp), %rax
movq %rax, 0x3e60(%rsp)
movq 0x3e60(%rsp), %rax
movq %rax, 0x8c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122b8a0
movq 0x8c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e5c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e5c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e58(%rsp)
cmpl $0x1, 0x3e58(%rsp)
jne 0x122b8a0
movq 0x8c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122b871
movq 0x8c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122b86f
jmp 0x122b89e
movq 0x8c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48d0(%rsp)
cmpq $0x0, 0x48d0(%rsp)
je 0x122b89c
movq 0x48d0(%rsp), %rdi
callq 0x5f480
jmp 0x122b89e
jmp 0x122b8a0
movq 0x8c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122b8fb
movq %rax, %rdi
callq 0x678a0
jmp 0x122b8fd
leaq 0x1ab8(%rsp), %rax
movq %rax, 0x2ad8(%rsp)
movq 0x2ad8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8b0(%rsp)
leaq 0x1ab8(%rsp), %rax
movq %rax, 0x25b8(%rsp)
movq 0x25b8(%rsp), %rax
movq %rax, 0x4280(%rsp)
movq 0x4280(%rsp), %rax
movq %rax, 0x8b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122b9e8
movq 0x8b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x427c(%rsp) # imm = 0xFFFFFFFF
movl 0x427c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4278(%rsp)
cmpl $0x1, 0x4278(%rsp)
jne 0x122b9e8
movq 0x8b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122b9b9
movq 0x8b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122b9b7
jmp 0x122b9e6
movq 0x8b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46c0(%rsp)
cmpq $0x0, 0x46c0(%rsp)
je 0x122b9e4
movq 0x46c0(%rsp), %rdi
callq 0x5f480
jmp 0x122b9e6
jmp 0x122b9e8
movq 0x8b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122ba43
movq %rax, %rdi
callq 0x678a0
movq 0x8b0(%rsp), %rax
movq %rax, 0x1b00(%rsp)
movl $0x0, 0x1ab4(%rsp)
movl 0x1ab4(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x122bac2
movq 0x1b58(%rsp), %rsi
movslq 0x1ab4(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0x1b0c(%rsp), %rdx
callq 0x1278090
movq 0x1b00(%rsp), %rax
movslq 0x1ab4(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1ab4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1ab4(%rsp)
jmp 0x122ba5e
jmp 0x122bac4
movl 0x1b60(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b60(%rsp)
jmp 0x122b164
movl $0x0, 0x1f24(%rsp)
jmp 0x123b265
jmp 0x123b25a
movq 0x1f18(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x123656c
movq 0x1f10(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x122ca5b
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed4(%rsp), %ecx
movl 0x1ed0(%rsp), %r8d
movq 0x1ee0(%rsp), %r9
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6fb30
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fd8(%rsp)
movq 0x1fd8(%rsp), %rcx
movq %rcx, 0x8a0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x8af(%rsp)
je 0x122bbb6
movq 0x8a0(%rsp), %rax
movq %rax, 0x2d10(%rsp)
movq 0x2d10(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x8af(%rsp)
movb 0x8af(%rsp), %al
testb $0x1, %al
jne 0x122bbc3
jmp 0x122bbd3
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x123b265
movl $0x0, 0x1ab0(%rsp)
movl 0x1ab0(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x122ca4b
movq 0x1f18(%rsp), %rcx
movl 0x1ab0(%rsp), %eax
leaq 0x1a60(%rsp), %rdx
movq %rdx, 0x2270(%rsp)
movq %rcx, 0x2268(%rsp)
movl %eax, 0x2264(%rsp)
movq 0x2268(%rsp), %rax
movq %rax, 0x898(%rsp)
movb $0x0, 0x2263(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2264(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1a60(%rsp), %r10
movq %r10, 0x34c0(%rsp)
movl %r9d, 0x34bc(%rsp)
movl %r8d, 0x34b8(%rsp)
movl %edi, 0x34b4(%rsp)
movq %rsi, 0x34a8(%rsp)
movq %rdx, 0x34a0(%rsp)
movl %ecx, 0x349c(%rsp)
movq %rax, 0x3490(%rsp)
movq 0x34c0(%rsp), %rcx
movq %rcx, 0x890(%rsp)
movq 0x34a8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x34a0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x349c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3490(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x34bc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x34b8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x34b4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c20(%rsp)
movl $0x10, 0x3c1c(%rsp)
movq 0x3c20(%rsp), %rax
movslq 0x3c1c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c1c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x898(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1a88(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x122bdae
movq 0x898(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1aa0(%rsp)
movb $0x1, 0x2263(%rsp)
testb $0x1, 0x2263(%rsp)
jne 0x122bee9
leaq 0x1a60(%rsp), %rax
movq %rax, 0x2488(%rsp)
movq 0x2488(%rsp), %rax
movq %rax, 0x44e0(%rsp)
movq 0x44e0(%rsp), %rax
movq %rax, 0x888(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122be8c
movq 0x888(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x44dc(%rsp) # imm = 0xFFFFFFFF
movl 0x44dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x44d8(%rsp)
cmpl $0x1, 0x44d8(%rsp)
jne 0x122be8c
movq 0x888(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122be5d
movq 0x888(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122be5b
jmp 0x122be8a
movq 0x888(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4590(%rsp)
cmpq $0x0, 0x4590(%rsp)
je 0x122be88
movq 0x4590(%rsp), %rdi
callq 0x5f480
jmp 0x122be8a
jmp 0x122be8c
movq 0x888(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122bee7
movq %rax, %rdi
callq 0x678a0
jmp 0x122bee9
leaq 0x1a60(%rsp), %rax
movq %rax, 0x2410(%rsp)
movq 0x2410(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x878(%rsp)
leaq 0x1a60(%rsp), %rax
movq %rax, 0x25c0(%rsp)
movq 0x25c0(%rsp), %rax
movq %rax, 0x4270(%rsp)
movq 0x4270(%rsp), %rax
movq %rax, 0x880(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122bfd4
movq 0x880(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x426c(%rsp) # imm = 0xFFFFFFFF
movl 0x426c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4268(%rsp)
cmpl $0x1, 0x4268(%rsp)
jne 0x122bfd4
movq 0x880(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122bfa5
movq 0x880(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122bfa3
jmp 0x122bfd2
movq 0x880(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46c8(%rsp)
cmpq $0x0, 0x46c8(%rsp)
je 0x122bfd0
movq 0x46c8(%rsp), %rdi
callq 0x5f480
jmp 0x122bfd2
jmp 0x122bfd4
movq 0x880(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122c02f
movq %rax, %rdi
callq 0x678a0
movq 0x878(%rsp), %rax
movq %rax, 0x1aa8(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1ab0(%rsp), %eax
leaq 0x1a10(%rsp), %rdx
movq %rdx, 0x2258(%rsp)
movq %rcx, 0x2250(%rsp)
movl %eax, 0x224c(%rsp)
movq 0x2250(%rsp), %rax
movq %rax, 0x870(%rsp)
movb $0x0, 0x224b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x224c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1a10(%rsp), %r10
movq %r10, 0x34f8(%rsp)
movl %r9d, 0x34f4(%rsp)
movl %r8d, 0x34f0(%rsp)
movl %edi, 0x34ec(%rsp)
movq %rsi, 0x34e0(%rsp)
movq %rdx, 0x34d8(%rsp)
movl %ecx, 0x34d4(%rsp)
movq %rax, 0x34c8(%rsp)
movq 0x34f8(%rsp), %rcx
movq %rcx, 0x868(%rsp)
movq 0x34e0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x34d8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x34d4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x34c8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x34f4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x34f0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x34ec(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c10(%rsp)
movl $0x10, 0x3c0c(%rsp)
movq 0x3c10(%rsp), %rax
movslq 0x3c0c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c0c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x870(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1a38(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x122c1fb
movq 0x870(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1a50(%rsp)
movb $0x1, 0x224b(%rsp)
testb $0x1, 0x224b(%rsp)
jne 0x122c336
leaq 0x1a10(%rsp), %rax
movq %rax, 0x2490(%rsp)
movq 0x2490(%rsp), %rax
movq %rax, 0x44d0(%rsp)
movq 0x44d0(%rsp), %rax
movq %rax, 0x860(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122c2d9
movq 0x860(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x44cc(%rsp) # imm = 0xFFFFFFFF
movl 0x44cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x44c8(%rsp)
cmpl $0x1, 0x44c8(%rsp)
jne 0x122c2d9
movq 0x860(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122c2aa
movq 0x860(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122c2a8
jmp 0x122c2d7
movq 0x860(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4598(%rsp)
cmpq $0x0, 0x4598(%rsp)
je 0x122c2d5
movq 0x4598(%rsp), %rdi
callq 0x5f480
jmp 0x122c2d7
jmp 0x122c2d9
movq 0x860(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122c334
movq %rax, %rdi
callq 0x678a0
jmp 0x122c336
leaq 0x1a10(%rsp), %rax
movq %rax, 0x2408(%rsp)
movq 0x2408(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x850(%rsp)
leaq 0x1a10(%rsp), %rax
movq %rax, 0x25c8(%rsp)
movq 0x25c8(%rsp), %rax
movq %rax, 0x4260(%rsp)
movq 0x4260(%rsp), %rax
movq %rax, 0x858(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122c421
movq 0x858(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x425c(%rsp) # imm = 0xFFFFFFFF
movl 0x425c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4258(%rsp)
cmpl $0x1, 0x4258(%rsp)
jne 0x122c421
movq 0x858(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122c3f2
movq 0x858(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122c3f0
jmp 0x122c41f
movq 0x858(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46d0(%rsp)
cmpq $0x0, 0x46d0(%rsp)
je 0x122c41d
movq 0x46d0(%rsp), %rdi
callq 0x5f480
jmp 0x122c41f
jmp 0x122c421
movq 0x858(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122c47c
movq %rax, %rdi
callq 0x678a0
movq 0x850(%rsp), %rax
movq %rax, 0x1a58(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1ab0(%rsp), %eax
leaq 0x19c0(%rsp), %rdx
movq %rdx, 0x2980(%rsp)
movq %rcx, 0x2978(%rsp)
movl %eax, 0x2974(%rsp)
movq 0x2978(%rsp), %rax
movq %rax, 0x848(%rsp)
movb $0x0, 0x2973(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2974(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x19c0(%rsp), %r10
movq %r10, 0x2f10(%rsp)
movl %r9d, 0x2f0c(%rsp)
movl %r8d, 0x2f08(%rsp)
movl %edi, 0x2f04(%rsp)
movq %rsi, 0x2ef8(%rsp)
movq %rdx, 0x2ef0(%rsp)
movl %ecx, 0x2eec(%rsp)
movq %rax, 0x2ee0(%rsp)
movq 0x2f10(%rsp), %rcx
movq %rcx, 0x840(%rsp)
movq 0x2ef8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2ef0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2eec(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ee0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2f0c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f08(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f04(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3dc0(%rsp)
movl $0x10, 0x3dbc(%rsp)
movq 0x3dc0(%rsp), %rax
movslq 0x3dbc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3dbc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x848(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x19e8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x122c648
movq 0x848(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1a00(%rsp)
movb $0x1, 0x2973(%rsp)
testb $0x1, 0x2973(%rsp)
jne 0x122c783
leaq 0x19c0(%rsp), %rax
movq %rax, 0x2988(%rsp)
movq 0x2988(%rsp), %rax
movq %rax, 0x3e70(%rsp)
movq 0x3e70(%rsp), %rax
movq %rax, 0x838(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122c726
movq 0x838(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e6c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e6c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e68(%rsp)
cmpl $0x1, 0x3e68(%rsp)
jne 0x122c726
movq 0x838(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122c6f7
movq 0x838(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122c6f5
jmp 0x122c724
movq 0x838(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48c8(%rsp)
cmpq $0x0, 0x48c8(%rsp)
je 0x122c722
movq 0x48c8(%rsp), %rdi
callq 0x5f480
jmp 0x122c724
jmp 0x122c726
movq 0x838(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122c781
movq %rax, %rdi
callq 0x678a0
jmp 0x122c783
leaq 0x19c0(%rsp), %rax
movq %rax, 0x2ad0(%rsp)
movq 0x2ad0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x828(%rsp)
leaq 0x19c0(%rsp), %rax
movq %rax, 0x25d0(%rsp)
movq 0x25d0(%rsp), %rax
movq %rax, 0x4250(%rsp)
movq 0x4250(%rsp), %rax
movq %rax, 0x830(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122c86e
movq 0x830(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x424c(%rsp) # imm = 0xFFFFFFFF
movl 0x424c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4248(%rsp)
cmpl $0x1, 0x4248(%rsp)
jne 0x122c86e
movq 0x830(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122c83f
movq 0x830(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122c83d
jmp 0x122c86c
movq 0x830(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46d8(%rsp)
cmpq $0x0, 0x46d8(%rsp)
je 0x122c86a
movq 0x46d8(%rsp), %rdi
callq 0x5f480
jmp 0x122c86c
jmp 0x122c86e
movq 0x830(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122c8c9
movq %rax, %rdi
callq 0x678a0
movq 0x828(%rsp), %rax
movq %rax, 0x1a08(%rsp)
movl $0x0, 0x19bc(%rsp)
movl 0x19bc(%rsp), %eax
cmpl 0x1ed4(%rsp), %eax
jge 0x122ca33
movl $0x0, 0x19b8(%rsp)
movl 0x19b8(%rsp), %eax
cmpl 0x1ed8(%rsp), %eax
jge 0x122c9fc
movq 0x1aa8(%rsp), %rax
movslq 0x19b8(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x19b4(%rsp)
movl $0x0, 0x19b0(%rsp)
movl 0x19b0(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x122c9a4
movq 0x1a58(%rsp), %rdx
movslq 0x19b0(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0x19b4(%rsp), %rsi
callq 0x1278090
movq 0x1a08(%rsp), %rax
movslq 0x19b0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x19b0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x19b0(%rsp)
jmp 0x122c940
movl 0x1edc(%rsp), %ecx
movq 0x1a58(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1a58(%rsp)
movl 0x1edc(%rsp), %ecx
movq 0x1a08(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1a08(%rsp)
movl 0x19b8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x19b8(%rsp)
jmp 0x122c903
movl 0x1ed8(%rsp), %ecx
movq 0x1aa8(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1aa8(%rsp)
movl 0x19bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x19bc(%rsp)
jmp 0x122c8e4
jmp 0x122ca35
movl 0x1ab0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1ab0(%rsp)
jmp 0x122bbde
movl $0x0, 0x1f24(%rsp)
jmp 0x123b265
movq 0x1f10(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1234731
cmpl $0x1, 0x1edc(%rsp)
jne 0x122d8ee
cmpl $0x1, 0x1ed8(%rsp)
jne 0x122d8ee
movl 0x1ed0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jne 0x122d8ee
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1eec(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fd0(%rsp)
movq 0x1fd0(%rsp), %rcx
movq %rcx, 0x818(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x827(%rsp)
je 0x122cb34
movq 0x818(%rsp), %rax
movq %rax, 0x2d18(%rsp)
movq 0x2d18(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x827(%rsp)
movb 0x827(%rsp), %al
testb $0x1, %al
jne 0x122cb41
jmp 0x122cb51
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x123b265
movl $0x0, 0x19ac(%rsp)
movl 0x19ac(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x122d8de
movq 0x1f18(%rsp), %rcx
movl 0x19ac(%rsp), %eax
leaq 0x1958(%rsp), %rdx
movq %rdx, 0x2240(%rsp)
movq %rcx, 0x2238(%rsp)
movl %eax, 0x2234(%rsp)
movq 0x2238(%rsp), %rax
movq %rax, 0x810(%rsp)
movb $0x0, 0x2233(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2234(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1958(%rsp), %r10
movq %r10, 0x3530(%rsp)
movl %r9d, 0x352c(%rsp)
movl %r8d, 0x3528(%rsp)
movl %edi, 0x3524(%rsp)
movq %rsi, 0x3518(%rsp)
movq %rdx, 0x3510(%rsp)
movl %ecx, 0x350c(%rsp)
movq %rax, 0x3500(%rsp)
movq 0x3530(%rsp), %rcx
movq %rcx, 0x808(%rsp)
movq 0x3518(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3510(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x350c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3500(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x352c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3528(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3524(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c00(%rsp)
movl $0x10, 0x3bfc(%rsp)
movq 0x3c00(%rsp), %rax
movslq 0x3bfc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bfc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x810(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1980(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x122cd2c
movq 0x810(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1998(%rsp)
movb $0x1, 0x2233(%rsp)
testb $0x1, 0x2233(%rsp)
jne 0x122ce67
leaq 0x1958(%rsp), %rax
movq %rax, 0x2498(%rsp)
movq 0x2498(%rsp), %rax
movq %rax, 0x44c0(%rsp)
movq 0x44c0(%rsp), %rax
movq %rax, 0x800(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122ce0a
movq 0x800(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x44bc(%rsp) # imm = 0xFFFFFFFF
movl 0x44bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x44b8(%rsp)
cmpl $0x1, 0x44b8(%rsp)
jne 0x122ce0a
movq 0x800(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122cddb
movq 0x800(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122cdd9
jmp 0x122ce08
movq 0x800(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45a0(%rsp)
cmpq $0x0, 0x45a0(%rsp)
je 0x122ce06
movq 0x45a0(%rsp), %rdi
callq 0x5f480
jmp 0x122ce08
jmp 0x122ce0a
movq 0x800(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122ce65
movq %rax, %rdi
callq 0x678a0
jmp 0x122ce67
leaq 0x1958(%rsp), %rax
movq %rax, 0x2400(%rsp)
movq 0x2400(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7f0(%rsp)
leaq 0x1958(%rsp), %rax
movq %rax, 0x25d8(%rsp)
movq 0x25d8(%rsp), %rax
movq %rax, 0x4240(%rsp)
movq 0x4240(%rsp), %rax
movq %rax, 0x7f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122cf52
movq 0x7f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x423c(%rsp) # imm = 0xFFFFFFFF
movl 0x423c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4238(%rsp)
cmpl $0x1, 0x4238(%rsp)
jne 0x122cf52
movq 0x7f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122cf23
movq 0x7f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122cf21
jmp 0x122cf50
movq 0x7f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46e0(%rsp)
cmpq $0x0, 0x46e0(%rsp)
je 0x122cf4e
movq 0x46e0(%rsp), %rdi
callq 0x5f480
jmp 0x122cf50
jmp 0x122cf52
movq 0x7f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122cfad
movq %rax, %rdi
callq 0x678a0
movq 0x7f0(%rsp), %rax
movq %rax, 0x19a0(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x19ac(%rsp), %eax
leaq 0x1908(%rsp), %rdx
movq %rdx, 0x2228(%rsp)
movq %rcx, 0x2220(%rsp)
movl %eax, 0x221c(%rsp)
movq 0x2220(%rsp), %rax
movq %rax, 0x7e8(%rsp)
movb $0x0, 0x221b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x221c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1908(%rsp), %r10
movq %r10, 0x3568(%rsp)
movl %r9d, 0x3564(%rsp)
movl %r8d, 0x3560(%rsp)
movl %edi, 0x355c(%rsp)
movq %rsi, 0x3550(%rsp)
movq %rdx, 0x3548(%rsp)
movl %ecx, 0x3544(%rsp)
movq %rax, 0x3538(%rsp)
movq 0x3568(%rsp), %rcx
movq %rcx, 0x7e0(%rsp)
movq 0x3550(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3548(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3544(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3538(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3564(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3560(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x355c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3bf0(%rsp)
movl $0x10, 0x3bec(%rsp)
movq 0x3bf0(%rsp), %rax
movslq 0x3bec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7e8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1930(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x122d179
movq 0x7e8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1948(%rsp)
movb $0x1, 0x221b(%rsp)
testb $0x1, 0x221b(%rsp)
jne 0x122d2b4
leaq 0x1908(%rsp), %rax
movq %rax, 0x24a0(%rsp)
movq 0x24a0(%rsp), %rax
movq %rax, 0x44b0(%rsp)
movq 0x44b0(%rsp), %rax
movq %rax, 0x7d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122d257
movq 0x7d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x44ac(%rsp) # imm = 0xFFFFFFFF
movl 0x44ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x44a8(%rsp)
cmpl $0x1, 0x44a8(%rsp)
jne 0x122d257
movq 0x7d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122d228
movq 0x7d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122d226
jmp 0x122d255
movq 0x7d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45a8(%rsp)
cmpq $0x0, 0x45a8(%rsp)
je 0x122d253
movq 0x45a8(%rsp), %rdi
callq 0x5f480
jmp 0x122d255
jmp 0x122d257
movq 0x7d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122d2b2
movq %rax, %rdi
callq 0x678a0
jmp 0x122d2b4
leaq 0x1908(%rsp), %rax
movq %rax, 0x23f8(%rsp)
movq 0x23f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7c8(%rsp)
leaq 0x1908(%rsp), %rax
movq %rax, 0x25e0(%rsp)
movq 0x25e0(%rsp), %rax
movq %rax, 0x4230(%rsp)
movq 0x4230(%rsp), %rax
movq %rax, 0x7d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122d39f
movq 0x7d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x422c(%rsp) # imm = 0xFFFFFFFF
movl 0x422c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4228(%rsp)
cmpl $0x1, 0x4228(%rsp)
jne 0x122d39f
movq 0x7d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122d370
movq 0x7d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122d36e
jmp 0x122d39d
movq 0x7d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46e8(%rsp)
cmpq $0x0, 0x46e8(%rsp)
je 0x122d39b
movq 0x46e8(%rsp), %rdi
callq 0x5f480
jmp 0x122d39d
jmp 0x122d39f
movq 0x7d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122d3fa
movq %rax, %rdi
callq 0x678a0
movq 0x7c8(%rsp), %rax
movq %rax, 0x1950(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x19ac(%rsp), %eax
leaq 0x18b8(%rsp), %rdx
movq %rdx, 0x2960(%rsp)
movq %rcx, 0x2958(%rsp)
movl %eax, 0x2954(%rsp)
movq 0x2958(%rsp), %rax
movq %rax, 0x7c0(%rsp)
movb $0x0, 0x2953(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2954(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x18b8(%rsp), %r10
movq %r10, 0x2f48(%rsp)
movl %r9d, 0x2f44(%rsp)
movl %r8d, 0x2f40(%rsp)
movl %edi, 0x2f3c(%rsp)
movq %rsi, 0x2f30(%rsp)
movq %rdx, 0x2f28(%rsp)
movl %ecx, 0x2f24(%rsp)
movq %rax, 0x2f18(%rsp)
movq 0x2f48(%rsp), %rcx
movq %rcx, 0x7b8(%rsp)
movq 0x2f30(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2f28(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2f24(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2f18(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2f44(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f40(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f3c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3db0(%rsp)
movl $0x10, 0x3dac(%rsp)
movq 0x3db0(%rsp), %rax
movslq 0x3dac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3dac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7c0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x18e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x122d5c6
movq 0x7c0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x18f8(%rsp)
movb $0x1, 0x2953(%rsp)
testb $0x1, 0x2953(%rsp)
jne 0x122d701
leaq 0x18b8(%rsp), %rax
movq %rax, 0x2968(%rsp)
movq 0x2968(%rsp), %rax
movq %rax, 0x3e80(%rsp)
movq 0x3e80(%rsp), %rax
movq %rax, 0x7b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122d6a4
movq 0x7b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e7c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e7c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e78(%rsp)
cmpl $0x1, 0x3e78(%rsp)
jne 0x122d6a4
movq 0x7b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122d675
movq 0x7b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122d673
jmp 0x122d6a2
movq 0x7b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48c0(%rsp)
cmpq $0x0, 0x48c0(%rsp)
je 0x122d6a0
movq 0x48c0(%rsp), %rdi
callq 0x5f480
jmp 0x122d6a2
jmp 0x122d6a4
movq 0x7b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122d6ff
movq %rax, %rdi
callq 0x678a0
jmp 0x122d701
leaq 0x18b8(%rsp), %rax
movq %rax, 0x2ac8(%rsp)
movq 0x2ac8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7a0(%rsp)
leaq 0x18b8(%rsp), %rax
movq %rax, 0x25e8(%rsp)
movq 0x25e8(%rsp), %rax
movq %rax, 0x4220(%rsp)
movq 0x4220(%rsp), %rax
movq %rax, 0x7a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122d7ec
movq 0x7a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x421c(%rsp) # imm = 0xFFFFFFFF
movl 0x421c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4218(%rsp)
cmpl $0x1, 0x4218(%rsp)
jne 0x122d7ec
movq 0x7a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122d7bd
movq 0x7a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122d7bb
jmp 0x122d7ea
movq 0x7a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46f0(%rsp)
cmpq $0x0, 0x46f0(%rsp)
je 0x122d7e8
movq 0x46f0(%rsp), %rdi
callq 0x5f480
jmp 0x122d7ea
jmp 0x122d7ec
movq 0x7a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122d847
movq %rax, %rdi
callq 0x678a0
movq 0x7a0(%rsp), %rax
movq %rax, 0x1900(%rsp)
movl $0x0, 0x18b4(%rsp)
movl 0x18b4(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x122d8c6
movq 0x19a0(%rsp), %rsi
movslq 0x18b4(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1950(%rsp), %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x1278090
movq 0x1900(%rsp), %rax
movslq 0x18b4(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x18b4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x18b4(%rsp)
jmp 0x122d862
jmp 0x122d8c8
movl 0x19ac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x19ac(%rsp)
jmp 0x122cb5c
movl $0x0, 0x1f24(%rsp)
jmp 0x123b265
movl 0x1edc(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jne 0x122e35a
movl 0x1ed8(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jne 0x122e35a
cmpl $0x1, 0x1ed0(%rsp)
jne 0x122e35a
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1eec(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fc8(%rsp)
movq 0x1fc8(%rsp), %rcx
movq %rcx, 0x790(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x79f(%rsp)
je 0x122d9bb
movq 0x790(%rsp), %rax
movq %rax, 0x2d20(%rsp)
movq 0x2d20(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x79f(%rsp)
movb 0x79f(%rsp), %al
testb $0x1, %al
jne 0x122d9c8
jmp 0x122d9d8
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x123b265
movl $0x0, 0x18b0(%rsp)
movl 0x18b0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x122e34a
movq 0x1f18(%rsp), %rcx
movl 0x18b0(%rsp), %eax
leaq 0x1860(%rsp), %rdx
movq %rdx, 0x2210(%rsp)
movq %rcx, 0x2208(%rsp)
movl %eax, 0x2204(%rsp)
movq 0x2208(%rsp), %rax
movq %rax, 0x788(%rsp)
movb $0x0, 0x2203(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2204(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1860(%rsp), %r10
movq %r10, 0x35a0(%rsp)
movl %r9d, 0x359c(%rsp)
movl %r8d, 0x3598(%rsp)
movl %edi, 0x3594(%rsp)
movq %rsi, 0x3588(%rsp)
movq %rdx, 0x3580(%rsp)
movl %ecx, 0x357c(%rsp)
movq %rax, 0x3570(%rsp)
movq 0x35a0(%rsp), %rcx
movq %rcx, 0x780(%rsp)
movq 0x3588(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3580(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x357c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3570(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x359c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3598(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3594(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3be0(%rsp)
movl $0x10, 0x3bdc(%rsp)
movq 0x3be0(%rsp), %rax
movslq 0x3bdc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bdc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x788(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1888(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x122dbb3
movq 0x788(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x18a0(%rsp)
movb $0x1, 0x2203(%rsp)
testb $0x1, 0x2203(%rsp)
jne 0x122dcee
leaq 0x1860(%rsp), %rax
movq %rax, 0x24a8(%rsp)
movq 0x24a8(%rsp), %rax
movq %rax, 0x44a0(%rsp)
movq 0x44a0(%rsp), %rax
movq %rax, 0x778(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122dc91
movq 0x778(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x449c(%rsp) # imm = 0xFFFFFFFF
movl 0x449c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4498(%rsp)
cmpl $0x1, 0x4498(%rsp)
jne 0x122dc91
movq 0x778(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122dc62
movq 0x778(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122dc60
jmp 0x122dc8f
movq 0x778(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45b0(%rsp)
cmpq $0x0, 0x45b0(%rsp)
je 0x122dc8d
movq 0x45b0(%rsp), %rdi
callq 0x5f480
jmp 0x122dc8f
jmp 0x122dc91
movq 0x778(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122dcec
movq %rax, %rdi
callq 0x678a0
jmp 0x122dcee
leaq 0x1860(%rsp), %rax
movq %rax, 0x23f0(%rsp)
movq 0x23f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x768(%rsp)
leaq 0x1860(%rsp), %rax
movq %rax, 0x25f0(%rsp)
movq 0x25f0(%rsp), %rax
movq %rax, 0x4210(%rsp)
movq 0x4210(%rsp), %rax
movq %rax, 0x770(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122ddd9
movq 0x770(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x420c(%rsp) # imm = 0xFFFFFFFF
movl 0x420c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4208(%rsp)
cmpl $0x1, 0x4208(%rsp)
jne 0x122ddd9
movq 0x770(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122ddaa
movq 0x770(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122dda8
jmp 0x122ddd7
movq 0x770(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46f8(%rsp)
cmpq $0x0, 0x46f8(%rsp)
je 0x122ddd5
movq 0x46f8(%rsp), %rdi
callq 0x5f480
jmp 0x122ddd7
jmp 0x122ddd9
movq 0x770(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122de34
movq %rax, %rdi
callq 0x678a0
movq 0x768(%rsp), %rax
movq %rax, 0x18a8(%rsp)
movq 0x1f10(%rsp), %rax
movq %rax, 0x23e8(%rsp)
movq 0x23e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1858(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x18b0(%rsp), %eax
leaq 0x1808(%rsp), %rdx
movq %rdx, 0x2940(%rsp)
movq %rcx, 0x2938(%rsp)
movl %eax, 0x2934(%rsp)
movq 0x2938(%rsp), %rax
movq %rax, 0x760(%rsp)
movb $0x0, 0x2933(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2934(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1808(%rsp), %r10
movq %r10, 0x2f80(%rsp)
movl %r9d, 0x2f7c(%rsp)
movl %r8d, 0x2f78(%rsp)
movl %edi, 0x2f74(%rsp)
movq %rsi, 0x2f68(%rsp)
movq %rdx, 0x2f60(%rsp)
movl %ecx, 0x2f5c(%rsp)
movq %rax, 0x2f50(%rsp)
movq 0x2f80(%rsp), %rcx
movq %rcx, 0x758(%rsp)
movq 0x2f68(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2f60(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2f5c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2f50(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2f7c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f78(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f74(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3da0(%rsp)
movl $0x10, 0x3d9c(%rsp)
movq 0x3da0(%rsp), %rax
movslq 0x3d9c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d9c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x760(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1830(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x122e023
movq 0x760(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1848(%rsp)
movb $0x1, 0x2933(%rsp)
testb $0x1, 0x2933(%rsp)
jne 0x122e15e
leaq 0x1808(%rsp), %rax
movq %rax, 0x2948(%rsp)
movq 0x2948(%rsp), %rax
movq %rax, 0x3e90(%rsp)
movq 0x3e90(%rsp), %rax
movq %rax, 0x750(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122e101
movq 0x750(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e8c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e8c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e88(%rsp)
cmpl $0x1, 0x3e88(%rsp)
jne 0x122e101
movq 0x750(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122e0d2
movq 0x750(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122e0d0
jmp 0x122e0ff
movq 0x750(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48b8(%rsp)
cmpq $0x0, 0x48b8(%rsp)
je 0x122e0fd
movq 0x48b8(%rsp), %rdi
callq 0x5f480
jmp 0x122e0ff
jmp 0x122e101
movq 0x750(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122e15c
movq %rax, %rdi
callq 0x678a0
jmp 0x122e15e
leaq 0x1808(%rsp), %rax
movq %rax, 0x2ac0(%rsp)
movq 0x2ac0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x740(%rsp)
leaq 0x1808(%rsp), %rax
movq %rax, 0x25f8(%rsp)
movq 0x25f8(%rsp), %rax
movq %rax, 0x4200(%rsp)
movq 0x4200(%rsp), %rax
movq %rax, 0x748(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122e249
movq 0x748(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41fc(%rsp) # imm = 0xFFFFFFFF
movl 0x41fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41f8(%rsp)
cmpl $0x1, 0x41f8(%rsp)
jne 0x122e249
movq 0x748(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122e21a
movq 0x748(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122e218
jmp 0x122e247
movq 0x748(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4700(%rsp)
cmpq $0x0, 0x4700(%rsp)
je 0x122e245
movq 0x4700(%rsp), %rdi
callq 0x5f480
jmp 0x122e247
jmp 0x122e249
movq 0x748(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122e2a4
movq %rax, %rdi
callq 0x678a0
movq 0x740(%rsp), %rax
movq %rax, 0x1850(%rsp)
movl $0x0, 0x1804(%rsp)
movl 0x1804(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x122e332
movq 0x18a8(%rsp), %rsi
movslq 0x1804(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1858(%rsp), %rdx
movslq 0x1804(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x1278090
movq 0x1850(%rsp), %rax
movslq 0x1804(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1804(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1804(%rsp)
jmp 0x122e2bf
jmp 0x122e334
movl 0x18b0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x18b0(%rsp)
jmp 0x122d9e3
movl $0x0, 0x1f24(%rsp)
jmp 0x123b265
cmpl $0x1, 0x1ef8(%rsp)
jne 0x122f1db
cmpl $0x1, 0x1ef4(%rsp)
jne 0x122f1db
movl 0x1ed0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jne 0x122f1db
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed0(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fc0(%rsp)
movq 0x1fc0(%rsp), %rcx
movq %rcx, 0x730(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x73f(%rsp)
je 0x122e421
movq 0x730(%rsp), %rax
movq %rax, 0x2d28(%rsp)
movq 0x2d28(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x73f(%rsp)
movb 0x73f(%rsp), %al
testb $0x1, %al
jne 0x122e42e
jmp 0x122e43e
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x123b265
movl $0x0, 0x1800(%rsp)
movl 0x1800(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x122f1cb
movq 0x1f18(%rsp), %rcx
movl 0x1800(%rsp), %eax
leaq 0x17b0(%rsp), %rdx
movq %rdx, 0x21f8(%rsp)
movq %rcx, 0x21f0(%rsp)
movl %eax, 0x21ec(%rsp)
movq 0x21f0(%rsp), %rax
movq %rax, 0x728(%rsp)
movb $0x0, 0x21eb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x21ec(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x17b0(%rsp), %r10
movq %r10, 0x35d8(%rsp)
movl %r9d, 0x35d4(%rsp)
movl %r8d, 0x35d0(%rsp)
movl %edi, 0x35cc(%rsp)
movq %rsi, 0x35c0(%rsp)
movq %rdx, 0x35b8(%rsp)
movl %ecx, 0x35b4(%rsp)
movq %rax, 0x35a8(%rsp)
movq 0x35d8(%rsp), %rcx
movq %rcx, 0x720(%rsp)
movq 0x35c0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x35b8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x35b4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x35a8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x35d4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x35d0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x35cc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3bd0(%rsp)
movl $0x10, 0x3bcc(%rsp)
movq 0x3bd0(%rsp), %rax
movslq 0x3bcc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bcc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x728(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x17d8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x122e619
movq 0x728(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x17f0(%rsp)
movb $0x1, 0x21eb(%rsp)
testb $0x1, 0x21eb(%rsp)
jne 0x122e754
leaq 0x17b0(%rsp), %rax
movq %rax, 0x24b0(%rsp)
movq 0x24b0(%rsp), %rax
movq %rax, 0x4490(%rsp)
movq 0x4490(%rsp), %rax
movq %rax, 0x718(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122e6f7
movq 0x718(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x448c(%rsp) # imm = 0xFFFFFFFF
movl 0x448c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4488(%rsp)
cmpl $0x1, 0x4488(%rsp)
jne 0x122e6f7
movq 0x718(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122e6c8
movq 0x718(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122e6c6
jmp 0x122e6f5
movq 0x718(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45b8(%rsp)
cmpq $0x0, 0x45b8(%rsp)
je 0x122e6f3
movq 0x45b8(%rsp), %rdi
callq 0x5f480
jmp 0x122e6f5
jmp 0x122e6f7
movq 0x718(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122e752
movq %rax, %rdi
callq 0x678a0
jmp 0x122e754
leaq 0x17b0(%rsp), %rax
movq %rax, 0x23e0(%rsp)
movq 0x23e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x708(%rsp)
leaq 0x17b0(%rsp), %rax
movq %rax, 0x2600(%rsp)
movq 0x2600(%rsp), %rax
movq %rax, 0x41f0(%rsp)
movq 0x41f0(%rsp), %rax
movq %rax, 0x710(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122e83f
movq 0x710(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41ec(%rsp) # imm = 0xFFFFFFFF
movl 0x41ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41e8(%rsp)
cmpl $0x1, 0x41e8(%rsp)
jne 0x122e83f
movq 0x710(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122e810
movq 0x710(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122e80e
jmp 0x122e83d
movq 0x710(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4708(%rsp)
cmpq $0x0, 0x4708(%rsp)
je 0x122e83b
movq 0x4708(%rsp), %rdi
callq 0x5f480
jmp 0x122e83d
jmp 0x122e83f
movq 0x710(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122e89a
movq %rax, %rdi
callq 0x678a0
movq 0x708(%rsp), %rax
movq %rax, 0x17f8(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1800(%rsp), %eax
leaq 0x1760(%rsp), %rdx
movq %rdx, 0x21e0(%rsp)
movq %rcx, 0x21d8(%rsp)
movl %eax, 0x21d4(%rsp)
movq 0x21d8(%rsp), %rax
movq %rax, 0x700(%rsp)
movb $0x0, 0x21d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x21d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1760(%rsp), %r10
movq %r10, 0x3610(%rsp)
movl %r9d, 0x360c(%rsp)
movl %r8d, 0x3608(%rsp)
movl %edi, 0x3604(%rsp)
movq %rsi, 0x35f8(%rsp)
movq %rdx, 0x35f0(%rsp)
movl %ecx, 0x35ec(%rsp)
movq %rax, 0x35e0(%rsp)
movq 0x3610(%rsp), %rcx
movq %rcx, 0x6f8(%rsp)
movq 0x35f8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x35f0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x35ec(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x35e0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x360c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3608(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3604(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3bc0(%rsp)
movl $0x10, 0x3bbc(%rsp)
movq 0x3bc0(%rsp), %rax
movslq 0x3bbc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bbc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x700(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1788(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x122ea66
movq 0x700(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x17a0(%rsp)
movb $0x1, 0x21d3(%rsp)
testb $0x1, 0x21d3(%rsp)
jne 0x122eba1
leaq 0x1760(%rsp), %rax
movq %rax, 0x24b8(%rsp)
movq 0x24b8(%rsp), %rax
movq %rax, 0x4480(%rsp)
movq 0x4480(%rsp), %rax
movq %rax, 0x6f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122eb44
movq 0x6f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x447c(%rsp) # imm = 0xFFFFFFFF
movl 0x447c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4478(%rsp)
cmpl $0x1, 0x4478(%rsp)
jne 0x122eb44
movq 0x6f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122eb15
movq 0x6f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122eb13
jmp 0x122eb42
movq 0x6f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45c0(%rsp)
cmpq $0x0, 0x45c0(%rsp)
je 0x122eb40
movq 0x45c0(%rsp), %rdi
callq 0x5f480
jmp 0x122eb42
jmp 0x122eb44
movq 0x6f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122eb9f
movq %rax, %rdi
callq 0x678a0
jmp 0x122eba1
leaq 0x1760(%rsp), %rax
movq %rax, 0x23d8(%rsp)
movq 0x23d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6e0(%rsp)
leaq 0x1760(%rsp), %rax
movq %rax, 0x2608(%rsp)
movq 0x2608(%rsp), %rax
movq %rax, 0x41e0(%rsp)
movq 0x41e0(%rsp), %rax
movq %rax, 0x6e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122ec8c
movq 0x6e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41dc(%rsp) # imm = 0xFFFFFFFF
movl 0x41dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41d8(%rsp)
cmpl $0x1, 0x41d8(%rsp)
jne 0x122ec8c
movq 0x6e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122ec5d
movq 0x6e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122ec5b
jmp 0x122ec8a
movq 0x6e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4710(%rsp)
cmpq $0x0, 0x4710(%rsp)
je 0x122ec88
movq 0x4710(%rsp), %rdi
callq 0x5f480
jmp 0x122ec8a
jmp 0x122ec8c
movq 0x6e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122ece7
movq %rax, %rdi
callq 0x678a0
movq 0x6e0(%rsp), %rax
movq %rax, 0x17a8(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1800(%rsp), %eax
leaq 0x1710(%rsp), %rdx
movq %rdx, 0x2920(%rsp)
movq %rcx, 0x2918(%rsp)
movl %eax, 0x2914(%rsp)
movq 0x2918(%rsp), %rax
movq %rax, 0x6d8(%rsp)
movb $0x0, 0x2913(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2914(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1710(%rsp), %r10
movq %r10, 0x2fb8(%rsp)
movl %r9d, 0x2fb4(%rsp)
movl %r8d, 0x2fb0(%rsp)
movl %edi, 0x2fac(%rsp)
movq %rsi, 0x2fa0(%rsp)
movq %rdx, 0x2f98(%rsp)
movl %ecx, 0x2f94(%rsp)
movq %rax, 0x2f88(%rsp)
movq 0x2fb8(%rsp), %rcx
movq %rcx, 0x6d0(%rsp)
movq 0x2fa0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2f98(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2f94(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2f88(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2fb4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2fb0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2fac(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d90(%rsp)
movl $0x10, 0x3d8c(%rsp)
movq 0x3d90(%rsp), %rax
movslq 0x3d8c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d8c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6d8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1738(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x122eeb3
movq 0x6d8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1750(%rsp)
movb $0x1, 0x2913(%rsp)
testb $0x1, 0x2913(%rsp)
jne 0x122efee
leaq 0x1710(%rsp), %rax
movq %rax, 0x2928(%rsp)
movq 0x2928(%rsp), %rax
movq %rax, 0x3ea0(%rsp)
movq 0x3ea0(%rsp), %rax
movq %rax, 0x6c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122ef91
movq 0x6c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e9c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e9c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e98(%rsp)
cmpl $0x1, 0x3e98(%rsp)
jne 0x122ef91
movq 0x6c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122ef62
movq 0x6c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122ef60
jmp 0x122ef8f
movq 0x6c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48b0(%rsp)
cmpq $0x0, 0x48b0(%rsp)
je 0x122ef8d
movq 0x48b0(%rsp), %rdi
callq 0x5f480
jmp 0x122ef8f
jmp 0x122ef91
movq 0x6c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122efec
movq %rax, %rdi
callq 0x678a0
jmp 0x122efee
leaq 0x1710(%rsp), %rax
movq %rax, 0x2ab8(%rsp)
movq 0x2ab8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6b8(%rsp)
leaq 0x1710(%rsp), %rax
movq %rax, 0x2610(%rsp)
movq 0x2610(%rsp), %rax
movq %rax, 0x41d0(%rsp)
movq 0x41d0(%rsp), %rax
movq %rax, 0x6c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122f0d9
movq 0x6c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41cc(%rsp) # imm = 0xFFFFFFFF
movl 0x41cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41c8(%rsp)
cmpl $0x1, 0x41c8(%rsp)
jne 0x122f0d9
movq 0x6c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122f0aa
movq 0x6c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122f0a8
jmp 0x122f0d7
movq 0x6c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4718(%rsp)
cmpq $0x0, 0x4718(%rsp)
je 0x122f0d5
movq 0x4718(%rsp), %rdi
callq 0x5f480
jmp 0x122f0d7
jmp 0x122f0d9
movq 0x6c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122f134
movq %rax, %rdi
callq 0x678a0
movq 0x6b8(%rsp), %rax
movq %rax, 0x1758(%rsp)
movl $0x0, 0x170c(%rsp)
movl 0x170c(%rsp), %eax
cmpl 0x1ecc(%rsp), %eax
jge 0x122f1b3
movq 0x17f8(%rsp), %rsi
movq 0x17a8(%rsp), %rdx
movslq 0x170c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x1278090
movq 0x1758(%rsp), %rax
movslq 0x170c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x170c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x170c(%rsp)
jmp 0x122f14f
jmp 0x122f1b5
movl 0x1800(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1800(%rsp)
jmp 0x122e449
movl $0x0, 0x1f24(%rsp)
jmp 0x123b265
movl 0x1edc(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jne 0x122fc47
movl 0x1ed8(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jne 0x122fc47
cmpl $0x1, 0x1eec(%rsp)
jne 0x122fc47
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed0(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fb8(%rsp)
movq 0x1fb8(%rsp), %rcx
movq %rcx, 0x6a8(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x6b7(%rsp)
je 0x122f2a8
movq 0x6a8(%rsp), %rax
movq %rax, 0x2d30(%rsp)
movq 0x2d30(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x6b7(%rsp)
movb 0x6b7(%rsp), %al
testb $0x1, %al
jne 0x122f2b5
jmp 0x122f2c5
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x123b265
movl $0x0, 0x1708(%rsp)
movl 0x1708(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x122fc37
movq 0x1f18(%rsp), %rax
movq %rax, 0x23d0(%rsp)
movq 0x23d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1700(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1708(%rsp), %eax
leaq 0x16b0(%rsp), %rdx
movq %rdx, 0x21c8(%rsp)
movq %rcx, 0x21c0(%rsp)
movl %eax, 0x21bc(%rsp)
movq 0x21c0(%rsp), %rax
movq %rax, 0x6a0(%rsp)
movb $0x0, 0x21bb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x21bc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x16b0(%rsp), %r10
movq %r10, 0x3648(%rsp)
movl %r9d, 0x3644(%rsp)
movl %r8d, 0x3640(%rsp)
movl %edi, 0x363c(%rsp)
movq %rsi, 0x3630(%rsp)
movq %rdx, 0x3628(%rsp)
movl %ecx, 0x3624(%rsp)
movq %rax, 0x3618(%rsp)
movq 0x3648(%rsp), %rcx
movq %rcx, 0x698(%rsp)
movq 0x3630(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3628(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3624(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3618(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3644(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3640(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x363c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3bb0(%rsp)
movl $0x10, 0x3bac(%rsp)
movq 0x3bb0(%rsp), %rax
movslq 0x3bac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6a0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x16d8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x122f4c3
movq 0x6a0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x16f0(%rsp)
movb $0x1, 0x21bb(%rsp)
testb $0x1, 0x21bb(%rsp)
jne 0x122f5fe
leaq 0x16b0(%rsp), %rax
movq %rax, 0x24c0(%rsp)
movq 0x24c0(%rsp), %rax
movq %rax, 0x4470(%rsp)
movq 0x4470(%rsp), %rax
movq %rax, 0x690(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122f5a1
movq 0x690(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x446c(%rsp) # imm = 0xFFFFFFFF
movl 0x446c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4468(%rsp)
cmpl $0x1, 0x4468(%rsp)
jne 0x122f5a1
movq 0x690(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122f572
movq 0x690(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122f570
jmp 0x122f59f
movq 0x690(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45c8(%rsp)
cmpq $0x0, 0x45c8(%rsp)
je 0x122f59d
movq 0x45c8(%rsp), %rdi
callq 0x5f480
jmp 0x122f59f
jmp 0x122f5a1
movq 0x690(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122f5fc
movq %rax, %rdi
callq 0x678a0
jmp 0x122f5fe
leaq 0x16b0(%rsp), %rax
movq %rax, 0x23c8(%rsp)
movq 0x23c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x680(%rsp)
leaq 0x16b0(%rsp), %rax
movq %rax, 0x2618(%rsp)
movq 0x2618(%rsp), %rax
movq %rax, 0x41c0(%rsp)
movq 0x41c0(%rsp), %rax
movq %rax, 0x688(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122f6e9
movq 0x688(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41bc(%rsp) # imm = 0xFFFFFFFF
movl 0x41bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41b8(%rsp)
cmpl $0x1, 0x41b8(%rsp)
jne 0x122f6e9
movq 0x688(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122f6ba
movq 0x688(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122f6b8
jmp 0x122f6e7
movq 0x688(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4720(%rsp)
cmpq $0x0, 0x4720(%rsp)
je 0x122f6e5
movq 0x4720(%rsp), %rdi
callq 0x5f480
jmp 0x122f6e7
jmp 0x122f6e9
movq 0x688(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122f744
movq %rax, %rdi
callq 0x678a0
movq 0x680(%rsp), %rax
movq %rax, 0x16f8(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1708(%rsp), %eax
leaq 0x1660(%rsp), %rdx
movq %rdx, 0x2900(%rsp)
movq %rcx, 0x28f8(%rsp)
movl %eax, 0x28f4(%rsp)
movq 0x28f8(%rsp), %rax
movq %rax, 0x678(%rsp)
movb $0x0, 0x28f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x28f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1660(%rsp), %r10
movq %r10, 0x2ff0(%rsp)
movl %r9d, 0x2fec(%rsp)
movl %r8d, 0x2fe8(%rsp)
movl %edi, 0x2fe4(%rsp)
movq %rsi, 0x2fd8(%rsp)
movq %rdx, 0x2fd0(%rsp)
movl %ecx, 0x2fcc(%rsp)
movq %rax, 0x2fc0(%rsp)
movq 0x2ff0(%rsp), %rcx
movq %rcx, 0x670(%rsp)
movq 0x2fd8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2fd0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2fcc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2fc0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2fec(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2fe8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2fe4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d80(%rsp)
movl $0x10, 0x3d7c(%rsp)
movq 0x3d80(%rsp), %rax
movslq 0x3d7c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d7c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x678(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1688(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x122f910
movq 0x678(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x16a0(%rsp)
movb $0x1, 0x28f3(%rsp)
testb $0x1, 0x28f3(%rsp)
jne 0x122fa4b
leaq 0x1660(%rsp), %rax
movq %rax, 0x2908(%rsp)
movq 0x2908(%rsp), %rax
movq %rax, 0x3eb0(%rsp)
movq 0x3eb0(%rsp), %rax
movq %rax, 0x668(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122f9ee
movq 0x668(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3eac(%rsp) # imm = 0xFFFFFFFF
movl 0x3eac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ea8(%rsp)
cmpl $0x1, 0x3ea8(%rsp)
jne 0x122f9ee
movq 0x668(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122f9bf
movq 0x668(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122f9bd
jmp 0x122f9ec
movq 0x668(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48a8(%rsp)
cmpq $0x0, 0x48a8(%rsp)
je 0x122f9ea
movq 0x48a8(%rsp), %rdi
callq 0x5f480
jmp 0x122f9ec
jmp 0x122f9ee
movq 0x668(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122fa49
movq %rax, %rdi
callq 0x678a0
jmp 0x122fa4b
leaq 0x1660(%rsp), %rax
movq %rax, 0x2ab0(%rsp)
movq 0x2ab0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x658(%rsp)
leaq 0x1660(%rsp), %rax
movq %rax, 0x2620(%rsp)
movq 0x2620(%rsp), %rax
movq %rax, 0x41b0(%rsp)
movq 0x41b0(%rsp), %rax
movq %rax, 0x660(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122fb36
movq 0x660(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41ac(%rsp) # imm = 0xFFFFFFFF
movl 0x41ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41a8(%rsp)
cmpl $0x1, 0x41a8(%rsp)
jne 0x122fb36
movq 0x660(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122fb07
movq 0x660(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122fb05
jmp 0x122fb34
movq 0x660(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4728(%rsp)
cmpq $0x0, 0x4728(%rsp)
je 0x122fb32
movq 0x4728(%rsp), %rdi
callq 0x5f480
jmp 0x122fb34
jmp 0x122fb36
movq 0x660(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x122fb91
movq %rax, %rdi
callq 0x678a0
movq 0x658(%rsp), %rax
movq %rax, 0x16a8(%rsp)
movl $0x0, 0x165c(%rsp)
movl 0x165c(%rsp), %eax
cmpl 0x1ecc(%rsp), %eax
jge 0x122fc1f
movq 0x1700(%rsp), %rsi
movslq 0x165c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x16f8(%rsp), %rdx
movslq 0x165c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x1278090
movq 0x16a8(%rsp), %rax
movslq 0x165c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x165c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x165c(%rsp)
jmp 0x122fbac
jmp 0x122fc21
movl 0x1708(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1708(%rsp)
jmp 0x122f2d0
movl $0x0, 0x1f24(%rsp)
jmp 0x123b265
cmpl $0x1, 0x1ef8(%rsp)
je 0x1230b71
cmpl $0x1, 0x1edc(%rsp)
jne 0x1230b71
movl 0x1ed8(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jne 0x1230b71
movl 0x1ed0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jne 0x1230b71
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1eec(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fb0(%rsp)
movq 0x1fb0(%rsp), %rcx
movq %rcx, 0x648(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x657(%rsp)
je 0x122fd22
movq 0x648(%rsp), %rax
movq %rax, 0x2d38(%rsp)
movq 0x2d38(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x657(%rsp)
movb 0x657(%rsp), %al
testb $0x1, %al
jne 0x122fd2f
jmp 0x122fd3f
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x123b265
movl $0x0, 0x1658(%rsp)
movl 0x1658(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x1230b61
movq 0x1f18(%rsp), %rcx
movl 0x1658(%rsp), %eax
leaq 0x1608(%rsp), %rdx
movq %rdx, 0x21b0(%rsp)
movq %rcx, 0x21a8(%rsp)
movl %eax, 0x21a4(%rsp)
movq 0x21a8(%rsp), %rax
movq %rax, 0x640(%rsp)
movb $0x0, 0x21a3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x21a4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1608(%rsp), %r10
movq %r10, 0x3680(%rsp)
movl %r9d, 0x367c(%rsp)
movl %r8d, 0x3678(%rsp)
movl %edi, 0x3674(%rsp)
movq %rsi, 0x3668(%rsp)
movq %rdx, 0x3660(%rsp)
movl %ecx, 0x365c(%rsp)
movq %rax, 0x3650(%rsp)
movq 0x3680(%rsp), %rcx
movq %rcx, 0x638(%rsp)
movq 0x3668(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3660(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x365c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3650(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x367c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3678(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3674(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ba0(%rsp)
movl $0x10, 0x3b9c(%rsp)
movq 0x3ba0(%rsp), %rax
movslq 0x3b9c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b9c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x640(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1630(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x122ff1a
movq 0x640(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1648(%rsp)
movb $0x1, 0x21a3(%rsp)
testb $0x1, 0x21a3(%rsp)
jne 0x1230055
leaq 0x1608(%rsp), %rax
movq %rax, 0x24c8(%rsp)
movq 0x24c8(%rsp), %rax
movq %rax, 0x4460(%rsp)
movq 0x4460(%rsp), %rax
movq %rax, 0x630(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x122fff8
movq 0x630(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x445c(%rsp) # imm = 0xFFFFFFFF
movl 0x445c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4458(%rsp)
cmpl $0x1, 0x4458(%rsp)
jne 0x122fff8
movq 0x630(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x122ffc9
movq 0x630(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x122ffc7
jmp 0x122fff6
movq 0x630(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45d0(%rsp)
cmpq $0x0, 0x45d0(%rsp)
je 0x122fff4
movq 0x45d0(%rsp), %rdi
callq 0x5f480
jmp 0x122fff6
jmp 0x122fff8
movq 0x630(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1230053
movq %rax, %rdi
callq 0x678a0
jmp 0x1230055
leaq 0x1608(%rsp), %rax
movq %rax, 0x23c0(%rsp)
movq 0x23c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x620(%rsp)
leaq 0x1608(%rsp), %rax
movq %rax, 0x2628(%rsp)
movq 0x2628(%rsp), %rax
movq %rax, 0x41a0(%rsp)
movq 0x41a0(%rsp), %rax
movq %rax, 0x628(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1230140
movq 0x628(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x419c(%rsp) # imm = 0xFFFFFFFF
movl 0x419c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4198(%rsp)
cmpl $0x1, 0x4198(%rsp)
jne 0x1230140
movq 0x628(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1230111
movq 0x628(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123010f
jmp 0x123013e
movq 0x628(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4730(%rsp)
cmpq $0x0, 0x4730(%rsp)
je 0x123013c
movq 0x4730(%rsp), %rdi
callq 0x5f480
jmp 0x123013e
jmp 0x1230140
movq 0x628(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123019b
movq %rax, %rdi
callq 0x678a0
movq 0x620(%rsp), %rax
movq %rax, 0x1650(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1658(%rsp), %eax
leaq 0x15b8(%rsp), %rdx
movq %rdx, 0x2198(%rsp)
movq %rcx, 0x2190(%rsp)
movl %eax, 0x218c(%rsp)
movq 0x2190(%rsp), %rax
movq %rax, 0x618(%rsp)
movb $0x0, 0x218b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x218c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x15b8(%rsp), %r10
movq %r10, 0x36b8(%rsp)
movl %r9d, 0x36b4(%rsp)
movl %r8d, 0x36b0(%rsp)
movl %edi, 0x36ac(%rsp)
movq %rsi, 0x36a0(%rsp)
movq %rdx, 0x3698(%rsp)
movl %ecx, 0x3694(%rsp)
movq %rax, 0x3688(%rsp)
movq 0x36b8(%rsp), %rcx
movq %rcx, 0x610(%rsp)
movq 0x36a0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3698(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3694(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3688(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x36b4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x36b0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x36ac(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b90(%rsp)
movl $0x10, 0x3b8c(%rsp)
movq 0x3b90(%rsp), %rax
movslq 0x3b8c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b8c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x618(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x15e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1230367
movq 0x618(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x15f8(%rsp)
movb $0x1, 0x218b(%rsp)
testb $0x1, 0x218b(%rsp)
jne 0x12304a2
leaq 0x15b8(%rsp), %rax
movq %rax, 0x24d0(%rsp)
movq 0x24d0(%rsp), %rax
movq %rax, 0x4450(%rsp)
movq 0x4450(%rsp), %rax
movq %rax, 0x608(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1230445
movq 0x608(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x444c(%rsp) # imm = 0xFFFFFFFF
movl 0x444c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4448(%rsp)
cmpl $0x1, 0x4448(%rsp)
jne 0x1230445
movq 0x608(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1230416
movq 0x608(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1230414
jmp 0x1230443
movq 0x608(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45d8(%rsp)
cmpq $0x0, 0x45d8(%rsp)
je 0x1230441
movq 0x45d8(%rsp), %rdi
callq 0x5f480
jmp 0x1230443
jmp 0x1230445
movq 0x608(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12304a0
movq %rax, %rdi
callq 0x678a0
jmp 0x12304a2
leaq 0x15b8(%rsp), %rax
movq %rax, 0x23b8(%rsp)
movq 0x23b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5f8(%rsp)
leaq 0x15b8(%rsp), %rax
movq %rax, 0x2630(%rsp)
movq 0x2630(%rsp), %rax
movq %rax, 0x4190(%rsp)
movq 0x4190(%rsp), %rax
movq %rax, 0x600(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123058d
movq 0x600(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x418c(%rsp) # imm = 0xFFFFFFFF
movl 0x418c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4188(%rsp)
cmpl $0x1, 0x4188(%rsp)
jne 0x123058d
movq 0x600(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123055e
movq 0x600(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123055c
jmp 0x123058b
movq 0x600(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4738(%rsp)
cmpq $0x0, 0x4738(%rsp)
je 0x1230589
movq 0x4738(%rsp), %rdi
callq 0x5f480
jmp 0x123058b
jmp 0x123058d
movq 0x600(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12305e8
movq %rax, %rdi
callq 0x678a0
movq 0x5f8(%rsp), %rax
movq %rax, 0x1600(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1658(%rsp), %eax
leaq 0x1568(%rsp), %rdx
movq %rdx, 0x28e0(%rsp)
movq %rcx, 0x28d8(%rsp)
movl %eax, 0x28d4(%rsp)
movq 0x28d8(%rsp), %rax
movq %rax, 0x5f0(%rsp)
movb $0x0, 0x28d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x28d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1568(%rsp), %r10
movq %r10, 0x3028(%rsp)
movl %r9d, 0x3024(%rsp)
movl %r8d, 0x3020(%rsp)
movl %edi, 0x301c(%rsp)
movq %rsi, 0x3010(%rsp)
movq %rdx, 0x3008(%rsp)
movl %ecx, 0x3004(%rsp)
movq %rax, 0x2ff8(%rsp)
movq 0x3028(%rsp), %rcx
movq %rcx, 0x5e8(%rsp)
movq 0x3010(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3008(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3004(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ff8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3024(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3020(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x301c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d70(%rsp)
movl $0x10, 0x3d6c(%rsp)
movq 0x3d70(%rsp), %rax
movslq 0x3d6c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d6c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5f0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1590(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12307b4
movq 0x5f0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x15a8(%rsp)
movb $0x1, 0x28d3(%rsp)
testb $0x1, 0x28d3(%rsp)
jne 0x12308ef
leaq 0x1568(%rsp), %rax
movq %rax, 0x28e8(%rsp)
movq 0x28e8(%rsp), %rax
movq %rax, 0x3ec0(%rsp)
movq 0x3ec0(%rsp), %rax
movq %rax, 0x5e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1230892
movq 0x5e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ebc(%rsp) # imm = 0xFFFFFFFF
movl 0x3ebc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3eb8(%rsp)
cmpl $0x1, 0x3eb8(%rsp)
jne 0x1230892
movq 0x5e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1230863
movq 0x5e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1230861
jmp 0x1230890
movq 0x5e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48a0(%rsp)
cmpq $0x0, 0x48a0(%rsp)
je 0x123088e
movq 0x48a0(%rsp), %rdi
callq 0x5f480
jmp 0x1230890
jmp 0x1230892
movq 0x5e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12308ed
movq %rax, %rdi
callq 0x678a0
jmp 0x12308ef
leaq 0x1568(%rsp), %rax
movq %rax, 0x2aa8(%rsp)
movq 0x2aa8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5d0(%rsp)
leaq 0x1568(%rsp), %rax
movq %rax, 0x2638(%rsp)
movq 0x2638(%rsp), %rax
movq %rax, 0x4180(%rsp)
movq 0x4180(%rsp), %rax
movq %rax, 0x5d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12309da
movq 0x5d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x417c(%rsp) # imm = 0xFFFFFFFF
movl 0x417c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4178(%rsp)
cmpl $0x1, 0x4178(%rsp)
jne 0x12309da
movq 0x5d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12309ab
movq 0x5d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12309a9
jmp 0x12309d8
movq 0x5d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4740(%rsp)
cmpq $0x0, 0x4740(%rsp)
je 0x12309d6
movq 0x4740(%rsp), %rdi
callq 0x5f480
jmp 0x12309d8
jmp 0x12309da
movq 0x5d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1230a35
movq %rax, %rdi
callq 0x678a0
movq 0x5d0(%rsp), %rax
movq %rax, 0x15b0(%rsp)
movl $0x0, 0x1564(%rsp)
movl 0x1564(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jge 0x1230b49
movq 0x1600(%rsp), %rax
movslq 0x1564(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x1560(%rsp)
movl $0x0, 0x155c(%rsp)
movl 0x155c(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x1230af1
movq 0x1650(%rsp), %rsi
movslq 0x155c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0x1560(%rsp), %rdx
callq 0x1278090
movq 0x15b0(%rsp), %rax
movslq 0x155c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x155c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x155c(%rsp)
jmp 0x1230a8d
movl 0x1ef8(%rsp), %ecx
movq 0x1650(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1650(%rsp)
movl 0x1ef8(%rsp), %ecx
movq 0x15b0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x15b0(%rsp)
movl 0x1564(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1564(%rsp)
jmp 0x1230a50
jmp 0x1230b4b
movl 0x1658(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1658(%rsp)
jmp 0x122fd4a
movl $0x0, 0x1f24(%rsp)
jmp 0x123b265
movl 0x1edc(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jne 0x1231a8c
cmpl $0x1, 0x1ef4(%rsp)
je 0x1231a8c
cmpl $0x1, 0x1ed8(%rsp)
jne 0x1231a8c
movl 0x1ed0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jne 0x1231a8c
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1eec(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fa8(%rsp)
movq 0x1fa8(%rsp), %rcx
movq %rcx, 0x5c0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x5cf(%rsp)
je 0x1230c4c
movq 0x5c0(%rsp), %rax
movq %rax, 0x2d40(%rsp)
movq 0x2d40(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x5cf(%rsp)
movb 0x5cf(%rsp), %al
testb $0x1, %al
jne 0x1230c59
jmp 0x1230c69
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x123b265
movl $0x0, 0x1558(%rsp)
movl 0x1558(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x1231a7c
movq 0x1f18(%rsp), %rcx
movl 0x1558(%rsp), %eax
leaq 0x1508(%rsp), %rdx
movq %rdx, 0x2180(%rsp)
movq %rcx, 0x2178(%rsp)
movl %eax, 0x2174(%rsp)
movq 0x2178(%rsp), %rax
movq %rax, 0x5b8(%rsp)
movb $0x0, 0x2173(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2174(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1508(%rsp), %r10
movq %r10, 0x36f0(%rsp)
movl %r9d, 0x36ec(%rsp)
movl %r8d, 0x36e8(%rsp)
movl %edi, 0x36e4(%rsp)
movq %rsi, 0x36d8(%rsp)
movq %rdx, 0x36d0(%rsp)
movl %ecx, 0x36cc(%rsp)
movq %rax, 0x36c0(%rsp)
movq 0x36f0(%rsp), %rcx
movq %rcx, 0x5b0(%rsp)
movq 0x36d8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x36d0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x36cc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x36c0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x36ec(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x36e8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x36e4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b80(%rsp)
movl $0x10, 0x3b7c(%rsp)
movq 0x3b80(%rsp), %rax
movslq 0x3b7c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b7c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5b8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1530(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1230e44
movq 0x5b8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1548(%rsp)
movb $0x1, 0x2173(%rsp)
testb $0x1, 0x2173(%rsp)
jne 0x1230f7f
leaq 0x1508(%rsp), %rax
movq %rax, 0x24d8(%rsp)
movq 0x24d8(%rsp), %rax
movq %rax, 0x4440(%rsp)
movq 0x4440(%rsp), %rax
movq %rax, 0x5a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1230f22
movq 0x5a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x443c(%rsp) # imm = 0xFFFFFFFF
movl 0x443c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4438(%rsp)
cmpl $0x1, 0x4438(%rsp)
jne 0x1230f22
movq 0x5a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1230ef3
movq 0x5a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1230ef1
jmp 0x1230f20
movq 0x5a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45e0(%rsp)
cmpq $0x0, 0x45e0(%rsp)
je 0x1230f1e
movq 0x45e0(%rsp), %rdi
callq 0x5f480
jmp 0x1230f20
jmp 0x1230f22
movq 0x5a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1230f7d
movq %rax, %rdi
callq 0x678a0
jmp 0x1230f7f
leaq 0x1508(%rsp), %rax
movq %rax, 0x23b0(%rsp)
movq 0x23b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x598(%rsp)
leaq 0x1508(%rsp), %rax
movq %rax, 0x2640(%rsp)
movq 0x2640(%rsp), %rax
movq %rax, 0x4170(%rsp)
movq 0x4170(%rsp), %rax
movq %rax, 0x5a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123106a
movq 0x5a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x416c(%rsp) # imm = 0xFFFFFFFF
movl 0x416c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4168(%rsp)
cmpl $0x1, 0x4168(%rsp)
jne 0x123106a
movq 0x5a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123103b
movq 0x5a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1231039
jmp 0x1231068
movq 0x5a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4748(%rsp)
cmpq $0x0, 0x4748(%rsp)
je 0x1231066
movq 0x4748(%rsp), %rdi
callq 0x5f480
jmp 0x1231068
jmp 0x123106a
movq 0x5a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12310c5
movq %rax, %rdi
callq 0x678a0
movq 0x598(%rsp), %rax
movq %rax, 0x1550(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1558(%rsp), %eax
leaq 0x14b8(%rsp), %rdx
movq %rdx, 0x2168(%rsp)
movq %rcx, 0x2160(%rsp)
movl %eax, 0x215c(%rsp)
movq 0x2160(%rsp), %rax
movq %rax, 0x590(%rsp)
movb $0x0, 0x215b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x215c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x14b8(%rsp), %r10
movq %r10, 0x3728(%rsp)
movl %r9d, 0x3724(%rsp)
movl %r8d, 0x3720(%rsp)
movl %edi, 0x371c(%rsp)
movq %rsi, 0x3710(%rsp)
movq %rdx, 0x3708(%rsp)
movl %ecx, 0x3704(%rsp)
movq %rax, 0x36f8(%rsp)
movq 0x3728(%rsp), %rcx
movq %rcx, 0x588(%rsp)
movq 0x3710(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3708(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3704(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x36f8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3724(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3720(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x371c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b70(%rsp)
movl $0x10, 0x3b6c(%rsp)
movq 0x3b70(%rsp), %rax
movslq 0x3b6c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b6c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x590(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x14e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1231291
movq 0x590(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x14f8(%rsp)
movb $0x1, 0x215b(%rsp)
testb $0x1, 0x215b(%rsp)
jne 0x12313cc
leaq 0x14b8(%rsp), %rax
movq %rax, 0x24e0(%rsp)
movq 0x24e0(%rsp), %rax
movq %rax, 0x4430(%rsp)
movq 0x4430(%rsp), %rax
movq %rax, 0x580(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123136f
movq 0x580(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x442c(%rsp) # imm = 0xFFFFFFFF
movl 0x442c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4428(%rsp)
cmpl $0x1, 0x4428(%rsp)
jne 0x123136f
movq 0x580(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1231340
movq 0x580(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123133e
jmp 0x123136d
movq 0x580(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45e8(%rsp)
cmpq $0x0, 0x45e8(%rsp)
je 0x123136b
movq 0x45e8(%rsp), %rdi
callq 0x5f480
jmp 0x123136d
jmp 0x123136f
movq 0x580(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12313ca
movq %rax, %rdi
callq 0x678a0
jmp 0x12313cc
leaq 0x14b8(%rsp), %rax
movq %rax, 0x23a8(%rsp)
movq 0x23a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x570(%rsp)
leaq 0x14b8(%rsp), %rax
movq %rax, 0x2648(%rsp)
movq 0x2648(%rsp), %rax
movq %rax, 0x4160(%rsp)
movq 0x4160(%rsp), %rax
movq %rax, 0x578(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12314b7
movq 0x578(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x415c(%rsp) # imm = 0xFFFFFFFF
movl 0x415c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4158(%rsp)
cmpl $0x1, 0x4158(%rsp)
jne 0x12314b7
movq 0x578(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1231488
movq 0x578(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1231486
jmp 0x12314b5
movq 0x578(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4750(%rsp)
cmpq $0x0, 0x4750(%rsp)
je 0x12314b3
movq 0x4750(%rsp), %rdi
callq 0x5f480
jmp 0x12314b5
jmp 0x12314b7
movq 0x578(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1231512
movq %rax, %rdi
callq 0x678a0
movq 0x570(%rsp), %rax
movq %rax, 0x1500(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1558(%rsp), %eax
leaq 0x1468(%rsp), %rdx
movq %rdx, 0x28c0(%rsp)
movq %rcx, 0x28b8(%rsp)
movl %eax, 0x28b4(%rsp)
movq 0x28b8(%rsp), %rax
movq %rax, 0x568(%rsp)
movb $0x0, 0x28b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x28b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1468(%rsp), %r10
movq %r10, 0x3060(%rsp)
movl %r9d, 0x305c(%rsp)
movl %r8d, 0x3058(%rsp)
movl %edi, 0x3054(%rsp)
movq %rsi, 0x3048(%rsp)
movq %rdx, 0x3040(%rsp)
movl %ecx, 0x303c(%rsp)
movq %rax, 0x3030(%rsp)
movq 0x3060(%rsp), %rcx
movq %rcx, 0x560(%rsp)
movq 0x3048(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3040(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x303c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3030(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x305c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3058(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3054(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d60(%rsp)
movl $0x10, 0x3d5c(%rsp)
movq 0x3d60(%rsp), %rax
movslq 0x3d5c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d5c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x568(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1490(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12316de
movq 0x568(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x14a8(%rsp)
movb $0x1, 0x28b3(%rsp)
testb $0x1, 0x28b3(%rsp)
jne 0x1231819
leaq 0x1468(%rsp), %rax
movq %rax, 0x28c8(%rsp)
movq 0x28c8(%rsp), %rax
movq %rax, 0x3ed0(%rsp)
movq 0x3ed0(%rsp), %rax
movq %rax, 0x558(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12317bc
movq 0x558(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ecc(%rsp) # imm = 0xFFFFFFFF
movl 0x3ecc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ec8(%rsp)
cmpl $0x1, 0x3ec8(%rsp)
jne 0x12317bc
movq 0x558(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123178d
movq 0x558(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123178b
jmp 0x12317ba
movq 0x558(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4898(%rsp)
cmpq $0x0, 0x4898(%rsp)
je 0x12317b8
movq 0x4898(%rsp), %rdi
callq 0x5f480
jmp 0x12317ba
jmp 0x12317bc
movq 0x558(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1231817
movq %rax, %rdi
callq 0x678a0
jmp 0x1231819
leaq 0x1468(%rsp), %rax
movq %rax, 0x2aa0(%rsp)
movq 0x2aa0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x548(%rsp)
leaq 0x1468(%rsp), %rax
movq %rax, 0x2650(%rsp)
movq 0x2650(%rsp), %rax
movq %rax, 0x4150(%rsp)
movq 0x4150(%rsp), %rax
movq %rax, 0x550(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1231904
movq 0x550(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x414c(%rsp) # imm = 0xFFFFFFFF
movl 0x414c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4148(%rsp)
cmpl $0x1, 0x4148(%rsp)
jne 0x1231904
movq 0x550(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12318d5
movq 0x550(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12318d3
jmp 0x1231902
movq 0x550(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4758(%rsp)
cmpq $0x0, 0x4758(%rsp)
je 0x1231900
movq 0x4758(%rsp), %rdi
callq 0x5f480
jmp 0x1231902
jmp 0x1231904
movq 0x550(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123195f
movq %rax, %rdi
callq 0x678a0
movq 0x548(%rsp), %rax
movq %rax, 0x14b0(%rsp)
movl $0x0, 0x1464(%rsp)
movl 0x1464(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jge 0x1231a64
movl $0x0, 0x1460(%rsp)
movl 0x1460(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x1231a0c
movq 0x1550(%rsp), %rsi
movslq 0x1460(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1500(%rsp), %rdx
movslq 0x1460(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x1278090
movq 0x14b0(%rsp), %rax
movslq 0x1460(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1460(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1460(%rsp)
jmp 0x1231999
movl 0x1ef8(%rsp), %ecx
movq 0x1550(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1550(%rsp)
movl 0x1ef8(%rsp), %ecx
movq 0x14b0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x14b0(%rsp)
movl 0x1464(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1464(%rsp)
jmp 0x123197a
jmp 0x1231a66
movl 0x1558(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1558(%rsp)
jmp 0x1230c74
movl $0x0, 0x1f24(%rsp)
jmp 0x123b265
cmpl $0x1, 0x1edc(%rsp)
je 0x12329b6
cmpl $0x1, 0x1ef8(%rsp)
jne 0x12329b6
movl 0x1ed8(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jne 0x12329b6
movl 0x1ed0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jne 0x12329b6
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed0(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fa0(%rsp)
movq 0x1fa0(%rsp), %rcx
movq %rcx, 0x538(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x547(%rsp)
je 0x1231b67
movq 0x538(%rsp), %rax
movq %rax, 0x2d48(%rsp)
movq 0x2d48(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x547(%rsp)
movb 0x547(%rsp), %al
testb $0x1, %al
jne 0x1231b74
jmp 0x1231b84
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x123b265
movl $0x0, 0x145c(%rsp)
movl 0x145c(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x12329a6
movq 0x1f18(%rsp), %rcx
movl 0x145c(%rsp), %eax
leaq 0x1408(%rsp), %rdx
movq %rdx, 0x2150(%rsp)
movq %rcx, 0x2148(%rsp)
movl %eax, 0x2144(%rsp)
movq 0x2148(%rsp), %rax
movq %rax, 0x530(%rsp)
movb $0x0, 0x2143(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2144(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1408(%rsp), %r10
movq %r10, 0x3760(%rsp)
movl %r9d, 0x375c(%rsp)
movl %r8d, 0x3758(%rsp)
movl %edi, 0x3754(%rsp)
movq %rsi, 0x3748(%rsp)
movq %rdx, 0x3740(%rsp)
movl %ecx, 0x373c(%rsp)
movq %rax, 0x3730(%rsp)
movq 0x3760(%rsp), %rcx
movq %rcx, 0x528(%rsp)
movq 0x3748(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3740(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x373c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3730(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x375c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3758(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3754(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b60(%rsp)
movl $0x10, 0x3b5c(%rsp)
movq 0x3b60(%rsp), %rax
movslq 0x3b5c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b5c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x530(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1430(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1231d5f
movq 0x530(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1448(%rsp)
movb $0x1, 0x2143(%rsp)
testb $0x1, 0x2143(%rsp)
jne 0x1231e9a
leaq 0x1408(%rsp), %rax
movq %rax, 0x24e8(%rsp)
movq 0x24e8(%rsp), %rax
movq %rax, 0x4420(%rsp)
movq 0x4420(%rsp), %rax
movq %rax, 0x520(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1231e3d
movq 0x520(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x441c(%rsp) # imm = 0xFFFFFFFF
movl 0x441c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4418(%rsp)
cmpl $0x1, 0x4418(%rsp)
jne 0x1231e3d
movq 0x520(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1231e0e
movq 0x520(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1231e0c
jmp 0x1231e3b
movq 0x520(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45f0(%rsp)
cmpq $0x0, 0x45f0(%rsp)
je 0x1231e39
movq 0x45f0(%rsp), %rdi
callq 0x5f480
jmp 0x1231e3b
jmp 0x1231e3d
movq 0x520(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1231e98
movq %rax, %rdi
callq 0x678a0
jmp 0x1231e9a
leaq 0x1408(%rsp), %rax
movq %rax, 0x23a0(%rsp)
movq 0x23a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x510(%rsp)
leaq 0x1408(%rsp), %rax
movq %rax, 0x2658(%rsp)
movq 0x2658(%rsp), %rax
movq %rax, 0x4140(%rsp)
movq 0x4140(%rsp), %rax
movq %rax, 0x518(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1231f85
movq 0x518(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x413c(%rsp) # imm = 0xFFFFFFFF
movl 0x413c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4138(%rsp)
cmpl $0x1, 0x4138(%rsp)
jne 0x1231f85
movq 0x518(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1231f56
movq 0x518(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1231f54
jmp 0x1231f83
movq 0x518(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4760(%rsp)
cmpq $0x0, 0x4760(%rsp)
je 0x1231f81
movq 0x4760(%rsp), %rdi
callq 0x5f480
jmp 0x1231f83
jmp 0x1231f85
movq 0x518(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1231fe0
movq %rax, %rdi
callq 0x678a0
movq 0x510(%rsp), %rax
movq %rax, 0x1450(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x145c(%rsp), %eax
leaq 0x13b8(%rsp), %rdx
movq %rdx, 0x2138(%rsp)
movq %rcx, 0x2130(%rsp)
movl %eax, 0x212c(%rsp)
movq 0x2130(%rsp), %rax
movq %rax, 0x508(%rsp)
movb $0x0, 0x212b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x212c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x13b8(%rsp), %r10
movq %r10, 0x3798(%rsp)
movl %r9d, 0x3794(%rsp)
movl %r8d, 0x3790(%rsp)
movl %edi, 0x378c(%rsp)
movq %rsi, 0x3780(%rsp)
movq %rdx, 0x3778(%rsp)
movl %ecx, 0x3774(%rsp)
movq %rax, 0x3768(%rsp)
movq 0x3798(%rsp), %rcx
movq %rcx, 0x500(%rsp)
movq 0x3780(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3778(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3774(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3768(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3794(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3790(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x378c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b50(%rsp)
movl $0x10, 0x3b4c(%rsp)
movq 0x3b50(%rsp), %rax
movslq 0x3b4c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b4c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x508(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x13e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12321ac
movq 0x508(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x13f8(%rsp)
movb $0x1, 0x212b(%rsp)
testb $0x1, 0x212b(%rsp)
jne 0x12322e7
leaq 0x13b8(%rsp), %rax
movq %rax, 0x24f0(%rsp)
movq 0x24f0(%rsp), %rax
movq %rax, 0x4410(%rsp)
movq 0x4410(%rsp), %rax
movq %rax, 0x4f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123228a
movq 0x4f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x440c(%rsp) # imm = 0xFFFFFFFF
movl 0x440c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4408(%rsp)
cmpl $0x1, 0x4408(%rsp)
jne 0x123228a
movq 0x4f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123225b
movq 0x4f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1232259
jmp 0x1232288
movq 0x4f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45f8(%rsp)
cmpq $0x0, 0x45f8(%rsp)
je 0x1232286
movq 0x45f8(%rsp), %rdi
callq 0x5f480
jmp 0x1232288
jmp 0x123228a
movq 0x4f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12322e5
movq %rax, %rdi
callq 0x678a0
jmp 0x12322e7
leaq 0x13b8(%rsp), %rax
movq %rax, 0x2398(%rsp)
movq 0x2398(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4e8(%rsp)
leaq 0x13b8(%rsp), %rax
movq %rax, 0x2660(%rsp)
movq 0x2660(%rsp), %rax
movq %rax, 0x4130(%rsp)
movq 0x4130(%rsp), %rax
movq %rax, 0x4f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12323d2
movq 0x4f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x412c(%rsp) # imm = 0xFFFFFFFF
movl 0x412c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4128(%rsp)
cmpl $0x1, 0x4128(%rsp)
jne 0x12323d2
movq 0x4f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12323a3
movq 0x4f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12323a1
jmp 0x12323d0
movq 0x4f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4768(%rsp)
cmpq $0x0, 0x4768(%rsp)
je 0x12323ce
movq 0x4768(%rsp), %rdi
callq 0x5f480
jmp 0x12323d0
jmp 0x12323d2
movq 0x4f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123242d
movq %rax, %rdi
callq 0x678a0
movq 0x4e8(%rsp), %rax
movq %rax, 0x1400(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x145c(%rsp), %eax
leaq 0x1368(%rsp), %rdx
movq %rdx, 0x28a0(%rsp)
movq %rcx, 0x2898(%rsp)
movl %eax, 0x2894(%rsp)
movq 0x2898(%rsp), %rax
movq %rax, 0x4e0(%rsp)
movb $0x0, 0x2893(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2894(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1368(%rsp), %r10
movq %r10, 0x3098(%rsp)
movl %r9d, 0x3094(%rsp)
movl %r8d, 0x3090(%rsp)
movl %edi, 0x308c(%rsp)
movq %rsi, 0x3080(%rsp)
movq %rdx, 0x3078(%rsp)
movl %ecx, 0x3074(%rsp)
movq %rax, 0x3068(%rsp)
movq 0x3098(%rsp), %rcx
movq %rcx, 0x4d8(%rsp)
movq 0x3080(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3078(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3074(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3068(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3094(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3090(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x308c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d50(%rsp)
movl $0x10, 0x3d4c(%rsp)
movq 0x3d50(%rsp), %rax
movslq 0x3d4c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d4c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4e0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1390(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12325f9
movq 0x4e0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x13a8(%rsp)
movb $0x1, 0x2893(%rsp)
testb $0x1, 0x2893(%rsp)
jne 0x1232734
leaq 0x1368(%rsp), %rax
movq %rax, 0x28a8(%rsp)
movq 0x28a8(%rsp), %rax
movq %rax, 0x3ee0(%rsp)
movq 0x3ee0(%rsp), %rax
movq %rax, 0x4d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12326d7
movq 0x4d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3edc(%rsp) # imm = 0xFFFFFFFF
movl 0x3edc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ed8(%rsp)
cmpl $0x1, 0x3ed8(%rsp)
jne 0x12326d7
movq 0x4d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12326a8
movq 0x4d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12326a6
jmp 0x12326d5
movq 0x4d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4890(%rsp)
cmpq $0x0, 0x4890(%rsp)
je 0x12326d3
movq 0x4890(%rsp), %rdi
callq 0x5f480
jmp 0x12326d5
jmp 0x12326d7
movq 0x4d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1232732
movq %rax, %rdi
callq 0x678a0
jmp 0x1232734
leaq 0x1368(%rsp), %rax
movq %rax, 0x2a98(%rsp)
movq 0x2a98(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4c0(%rsp)
leaq 0x1368(%rsp), %rax
movq %rax, 0x2668(%rsp)
movq 0x2668(%rsp), %rax
movq %rax, 0x4120(%rsp)
movq 0x4120(%rsp), %rax
movq %rax, 0x4c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123281f
movq 0x4c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x411c(%rsp) # imm = 0xFFFFFFFF
movl 0x411c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4118(%rsp)
cmpl $0x1, 0x4118(%rsp)
jne 0x123281f
movq 0x4c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12327f0
movq 0x4c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12327ee
jmp 0x123281d
movq 0x4c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4770(%rsp)
cmpq $0x0, 0x4770(%rsp)
je 0x123281b
movq 0x4770(%rsp), %rdi
callq 0x5f480
jmp 0x123281d
jmp 0x123281f
movq 0x4c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123287a
movq %rax, %rdi
callq 0x678a0
movq 0x4c0(%rsp), %rax
movq %rax, 0x13b0(%rsp)
movl $0x0, 0x1364(%rsp)
movl 0x1364(%rsp), %eax
cmpl 0x1ed8(%rsp), %eax
jge 0x123298e
movq 0x1450(%rsp), %rax
movslq 0x1364(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x1360(%rsp)
movl $0x0, 0x135c(%rsp)
movl 0x135c(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x1232936
movq 0x1400(%rsp), %rdx
movslq 0x135c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0x1360(%rsp), %rsi
callq 0x1278090
movq 0x13b0(%rsp), %rax
movslq 0x135c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x135c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x135c(%rsp)
jmp 0x12328d2
movl 0x1edc(%rsp), %ecx
movq 0x1400(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1400(%rsp)
movl 0x1edc(%rsp), %ecx
movq 0x13b0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x13b0(%rsp)
movl 0x1364(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1364(%rsp)
jmp 0x1232895
jmp 0x1232990
movl 0x145c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x145c(%rsp)
jmp 0x1231b8f
movl $0x0, 0x1f24(%rsp)
jmp 0x123b265
movl 0x1edc(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jne 0x12338d1
cmpl $0x1, 0x1ed8(%rsp)
je 0x12338d1
cmpl $0x1, 0x1ef4(%rsp)
jne 0x12338d1
movl 0x1ed0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jne 0x12338d1
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed0(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f98(%rsp)
movq 0x1f98(%rsp), %rcx
movq %rcx, 0x4b0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x4bf(%rsp)
je 0x1232a91
movq 0x4b0(%rsp), %rax
movq %rax, 0x2d50(%rsp)
movq 0x2d50(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x4bf(%rsp)
movb 0x4bf(%rsp), %al
testb $0x1, %al
jne 0x1232a9e
jmp 0x1232aae
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x123b265
movl $0x0, 0x1358(%rsp)
movl 0x1358(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x12338c1
movq 0x1f18(%rsp), %rcx
movl 0x1358(%rsp), %eax
leaq 0x1308(%rsp), %rdx
movq %rdx, 0x2120(%rsp)
movq %rcx, 0x2118(%rsp)
movl %eax, 0x2114(%rsp)
movq 0x2118(%rsp), %rax
movq %rax, 0x4a8(%rsp)
movb $0x0, 0x2113(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2114(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1308(%rsp), %r10
movq %r10, 0x37d0(%rsp)
movl %r9d, 0x37cc(%rsp)
movl %r8d, 0x37c8(%rsp)
movl %edi, 0x37c4(%rsp)
movq %rsi, 0x37b8(%rsp)
movq %rdx, 0x37b0(%rsp)
movl %ecx, 0x37ac(%rsp)
movq %rax, 0x37a0(%rsp)
movq 0x37d0(%rsp), %rcx
movq %rcx, 0x4a0(%rsp)
movq 0x37b8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x37b0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x37ac(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x37a0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x37cc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x37c8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x37c4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b40(%rsp)
movl $0x10, 0x3b3c(%rsp)
movq 0x3b40(%rsp), %rax
movslq 0x3b3c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b3c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4a8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1330(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1232c89
movq 0x4a8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1348(%rsp)
movb $0x1, 0x2113(%rsp)
testb $0x1, 0x2113(%rsp)
jne 0x1232dc4
leaq 0x1308(%rsp), %rax
movq %rax, 0x24f8(%rsp)
movq 0x24f8(%rsp), %rax
movq %rax, 0x4400(%rsp)
movq 0x4400(%rsp), %rax
movq %rax, 0x498(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1232d67
movq 0x498(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x43fc(%rsp) # imm = 0xFFFFFFFF
movl 0x43fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x43f8(%rsp)
cmpl $0x1, 0x43f8(%rsp)
jne 0x1232d67
movq 0x498(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1232d38
movq 0x498(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1232d36
jmp 0x1232d65
movq 0x498(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4600(%rsp)
cmpq $0x0, 0x4600(%rsp)
je 0x1232d63
movq 0x4600(%rsp), %rdi
callq 0x5f480
jmp 0x1232d65
jmp 0x1232d67
movq 0x498(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1232dc2
movq %rax, %rdi
callq 0x678a0
jmp 0x1232dc4
leaq 0x1308(%rsp), %rax
movq %rax, 0x2390(%rsp)
movq 0x2390(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x488(%rsp)
leaq 0x1308(%rsp), %rax
movq %rax, 0x2670(%rsp)
movq 0x2670(%rsp), %rax
movq %rax, 0x4110(%rsp)
movq 0x4110(%rsp), %rax
movq %rax, 0x490(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1232eaf
movq 0x490(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x410c(%rsp) # imm = 0xFFFFFFFF
movl 0x410c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4108(%rsp)
cmpl $0x1, 0x4108(%rsp)
jne 0x1232eaf
movq 0x490(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1232e80
movq 0x490(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1232e7e
jmp 0x1232ead
movq 0x490(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4778(%rsp)
cmpq $0x0, 0x4778(%rsp)
je 0x1232eab
movq 0x4778(%rsp), %rdi
callq 0x5f480
jmp 0x1232ead
jmp 0x1232eaf
movq 0x490(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1232f0a
movq %rax, %rdi
callq 0x678a0
movq 0x488(%rsp), %rax
movq %rax, 0x1350(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1358(%rsp), %eax
leaq 0x12b8(%rsp), %rdx
movq %rdx, 0x2108(%rsp)
movq %rcx, 0x2100(%rsp)
movl %eax, 0x20fc(%rsp)
movq 0x2100(%rsp), %rax
movq %rax, 0x480(%rsp)
movb $0x0, 0x20fb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x20fc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x12b8(%rsp), %r10
movq %r10, 0x3808(%rsp)
movl %r9d, 0x3804(%rsp)
movl %r8d, 0x3800(%rsp)
movl %edi, 0x37fc(%rsp)
movq %rsi, 0x37f0(%rsp)
movq %rdx, 0x37e8(%rsp)
movl %ecx, 0x37e4(%rsp)
movq %rax, 0x37d8(%rsp)
movq 0x3808(%rsp), %rcx
movq %rcx, 0x478(%rsp)
movq 0x37f0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x37e8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x37e4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x37d8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3804(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3800(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x37fc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b30(%rsp)
movl $0x10, 0x3b2c(%rsp)
movq 0x3b30(%rsp), %rax
movslq 0x3b2c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b2c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x480(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x12e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12330d6
movq 0x480(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x12f8(%rsp)
movb $0x1, 0x20fb(%rsp)
testb $0x1, 0x20fb(%rsp)
jne 0x1233211
leaq 0x12b8(%rsp), %rax
movq %rax, 0x2500(%rsp)
movq 0x2500(%rsp), %rax
movq %rax, 0x43f0(%rsp)
movq 0x43f0(%rsp), %rax
movq %rax, 0x470(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12331b4
movq 0x470(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x43ec(%rsp) # imm = 0xFFFFFFFF
movl 0x43ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x43e8(%rsp)
cmpl $0x1, 0x43e8(%rsp)
jne 0x12331b4
movq 0x470(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1233185
movq 0x470(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1233183
jmp 0x12331b2
movq 0x470(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4608(%rsp)
cmpq $0x0, 0x4608(%rsp)
je 0x12331b0
movq 0x4608(%rsp), %rdi
callq 0x5f480
jmp 0x12331b2
jmp 0x12331b4
movq 0x470(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123320f
movq %rax, %rdi
callq 0x678a0
jmp 0x1233211
leaq 0x12b8(%rsp), %rax
movq %rax, 0x2388(%rsp)
movq 0x2388(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x460(%rsp)
leaq 0x12b8(%rsp), %rax
movq %rax, 0x2678(%rsp)
movq 0x2678(%rsp), %rax
movq %rax, 0x4100(%rsp)
movq 0x4100(%rsp), %rax
movq %rax, 0x468(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12332fc
movq 0x468(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40fc(%rsp) # imm = 0xFFFFFFFF
movl 0x40fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40f8(%rsp)
cmpl $0x1, 0x40f8(%rsp)
jne 0x12332fc
movq 0x468(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12332cd
movq 0x468(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12332cb
jmp 0x12332fa
movq 0x468(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4780(%rsp)
cmpq $0x0, 0x4780(%rsp)
je 0x12332f8
movq 0x4780(%rsp), %rdi
callq 0x5f480
jmp 0x12332fa
jmp 0x12332fc
movq 0x468(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1233357
movq %rax, %rdi
callq 0x678a0
movq 0x460(%rsp), %rax
movq %rax, 0x1300(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1358(%rsp), %eax
leaq 0x1268(%rsp), %rdx
movq %rdx, 0x2880(%rsp)
movq %rcx, 0x2878(%rsp)
movl %eax, 0x2874(%rsp)
movq 0x2878(%rsp), %rax
movq %rax, 0x458(%rsp)
movb $0x0, 0x2873(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2874(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1268(%rsp), %r10
movq %r10, 0x30d0(%rsp)
movl %r9d, 0x30cc(%rsp)
movl %r8d, 0x30c8(%rsp)
movl %edi, 0x30c4(%rsp)
movq %rsi, 0x30b8(%rsp)
movq %rdx, 0x30b0(%rsp)
movl %ecx, 0x30ac(%rsp)
movq %rax, 0x30a0(%rsp)
movq 0x30d0(%rsp), %rcx
movq %rcx, 0x450(%rsp)
movq 0x30b8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x30b0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x30ac(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x30a0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x30cc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x30c8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x30c4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d40(%rsp)
movl $0x10, 0x3d3c(%rsp)
movq 0x3d40(%rsp), %rax
movslq 0x3d3c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d3c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x458(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1290(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1233523
movq 0x458(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x12a8(%rsp)
movb $0x1, 0x2873(%rsp)
testb $0x1, 0x2873(%rsp)
jne 0x123365e
leaq 0x1268(%rsp), %rax
movq %rax, 0x2888(%rsp)
movq 0x2888(%rsp), %rax
movq %rax, 0x3ef0(%rsp)
movq 0x3ef0(%rsp), %rax
movq %rax, 0x448(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1233601
movq 0x448(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3eec(%rsp) # imm = 0xFFFFFFFF
movl 0x3eec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ee8(%rsp)
cmpl $0x1, 0x3ee8(%rsp)
jne 0x1233601
movq 0x448(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12335d2
movq 0x448(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12335d0
jmp 0x12335ff
movq 0x448(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4888(%rsp)
cmpq $0x0, 0x4888(%rsp)
je 0x12335fd
movq 0x4888(%rsp), %rdi
callq 0x5f480
jmp 0x12335ff
jmp 0x1233601
movq 0x448(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123365c
movq %rax, %rdi
callq 0x678a0
jmp 0x123365e
leaq 0x1268(%rsp), %rax
movq %rax, 0x2a90(%rsp)
movq 0x2a90(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x438(%rsp)
leaq 0x1268(%rsp), %rax
movq %rax, 0x2680(%rsp)
movq 0x2680(%rsp), %rax
movq %rax, 0x40f0(%rsp)
movq 0x40f0(%rsp), %rax
movq %rax, 0x440(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1233749
movq 0x440(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40ec(%rsp) # imm = 0xFFFFFFFF
movl 0x40ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40e8(%rsp)
cmpl $0x1, 0x40e8(%rsp)
jne 0x1233749
movq 0x440(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123371a
movq 0x440(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1233718
jmp 0x1233747
movq 0x440(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4788(%rsp)
cmpq $0x0, 0x4788(%rsp)
je 0x1233745
movq 0x4788(%rsp), %rdi
callq 0x5f480
jmp 0x1233747
jmp 0x1233749
movq 0x440(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12337a4
movq %rax, %rdi
callq 0x678a0
movq 0x438(%rsp), %rax
movq %rax, 0x12b0(%rsp)
movl $0x0, 0x1264(%rsp)
movl 0x1264(%rsp), %eax
cmpl 0x1ed8(%rsp), %eax
jge 0x12338a9
movl $0x0, 0x1260(%rsp)
movl 0x1260(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x1233851
movq 0x1350(%rsp), %rsi
movslq 0x1260(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1300(%rsp), %rdx
movslq 0x1260(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x1278090
movq 0x12b0(%rsp), %rax
movslq 0x1260(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1260(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1260(%rsp)
jmp 0x12337de
movl 0x1edc(%rsp), %ecx
movq 0x1300(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1300(%rsp)
movl 0x1edc(%rsp), %ecx
movq 0x12b0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x12b0(%rsp)
movl 0x1264(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1264(%rsp)
jmp 0x12337bf
jmp 0x12338ab
movl 0x1358(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1358(%rsp)
jmp 0x1232ab9
movl $0x0, 0x1f24(%rsp)
jmp 0x123b265
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1eec(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f90(%rsp)
movq 0x1f90(%rsp), %rcx
movq %rcx, 0x428(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x437(%rsp)
je 0x1233968
movq 0x428(%rsp), %rax
movq %rax, 0x2d58(%rsp)
movq 0x2d58(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x437(%rsp)
movb 0x437(%rsp), %al
testb $0x1, %al
jne 0x1233975
jmp 0x1233985
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x123b265
movl $0x0, 0x125c(%rsp)
movl 0x125c(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x1234721
movq 0x1f18(%rsp), %rcx
movl 0x125c(%rsp), %eax
leaq 0x1208(%rsp), %rdx
movq %rdx, 0x20f0(%rsp)
movq %rcx, 0x20e8(%rsp)
movl %eax, 0x20e4(%rsp)
movq 0x20e8(%rsp), %rax
movq %rax, 0x420(%rsp)
movb $0x0, 0x20e3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x20e4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1208(%rsp), %r10
movq %r10, 0x3840(%rsp)
movl %r9d, 0x383c(%rsp)
movl %r8d, 0x3838(%rsp)
movl %edi, 0x3834(%rsp)
movq %rsi, 0x3828(%rsp)
movq %rdx, 0x3820(%rsp)
movl %ecx, 0x381c(%rsp)
movq %rax, 0x3810(%rsp)
movq 0x3840(%rsp), %rcx
movq %rcx, 0x418(%rsp)
movq 0x3828(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3820(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x381c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3810(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x383c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3838(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3834(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b20(%rsp)
movl $0x10, 0x3b1c(%rsp)
movq 0x3b20(%rsp), %rax
movslq 0x3b1c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b1c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x420(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1230(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1233b60
movq 0x420(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1248(%rsp)
movb $0x1, 0x20e3(%rsp)
testb $0x1, 0x20e3(%rsp)
jne 0x1233c9b
leaq 0x1208(%rsp), %rax
movq %rax, 0x2508(%rsp)
movq 0x2508(%rsp), %rax
movq %rax, 0x43e0(%rsp)
movq 0x43e0(%rsp), %rax
movq %rax, 0x410(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1233c3e
movq 0x410(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x43dc(%rsp) # imm = 0xFFFFFFFF
movl 0x43dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x43d8(%rsp)
cmpl $0x1, 0x43d8(%rsp)
jne 0x1233c3e
movq 0x410(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1233c0f
movq 0x410(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1233c0d
jmp 0x1233c3c
movq 0x410(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4610(%rsp)
cmpq $0x0, 0x4610(%rsp)
je 0x1233c3a
movq 0x4610(%rsp), %rdi
callq 0x5f480
jmp 0x1233c3c
jmp 0x1233c3e
movq 0x410(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1233c99
movq %rax, %rdi
callq 0x678a0
jmp 0x1233c9b
leaq 0x1208(%rsp), %rax
movq %rax, 0x2380(%rsp)
movq 0x2380(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x400(%rsp)
leaq 0x1208(%rsp), %rax
movq %rax, 0x2688(%rsp)
movq 0x2688(%rsp), %rax
movq %rax, 0x40e0(%rsp)
movq 0x40e0(%rsp), %rax
movq %rax, 0x408(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1233d86
movq 0x408(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40dc(%rsp) # imm = 0xFFFFFFFF
movl 0x40dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40d8(%rsp)
cmpl $0x1, 0x40d8(%rsp)
jne 0x1233d86
movq 0x408(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1233d57
movq 0x408(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1233d55
jmp 0x1233d84
movq 0x408(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4790(%rsp)
cmpq $0x0, 0x4790(%rsp)
je 0x1233d82
movq 0x4790(%rsp), %rdi
callq 0x5f480
jmp 0x1233d84
jmp 0x1233d86
movq 0x408(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1233de1
movq %rax, %rdi
callq 0x678a0
movq 0x400(%rsp), %rax
movq %rax, 0x1250(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x125c(%rsp), %eax
leaq 0x11b8(%rsp), %rdx
movq %rdx, 0x20d8(%rsp)
movq %rcx, 0x20d0(%rsp)
movl %eax, 0x20cc(%rsp)
movq 0x20d0(%rsp), %rax
movq %rax, 0x3f8(%rsp)
movb $0x0, 0x20cb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x20cc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x11b8(%rsp), %r10
movq %r10, 0x3878(%rsp)
movl %r9d, 0x3874(%rsp)
movl %r8d, 0x3870(%rsp)
movl %edi, 0x386c(%rsp)
movq %rsi, 0x3860(%rsp)
movq %rdx, 0x3858(%rsp)
movl %ecx, 0x3854(%rsp)
movq %rax, 0x3848(%rsp)
movq 0x3878(%rsp), %rcx
movq %rcx, 0x3f0(%rsp)
movq 0x3860(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3858(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3854(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3848(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3874(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3870(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x386c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b10(%rsp)
movl $0x10, 0x3b0c(%rsp)
movq 0x3b10(%rsp), %rax
movslq 0x3b0c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b0c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3f8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x11e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1233fad
movq 0x3f8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x11f8(%rsp)
movb $0x1, 0x20cb(%rsp)
testb $0x1, 0x20cb(%rsp)
jne 0x12340e8
leaq 0x11b8(%rsp), %rax
movq %rax, 0x2510(%rsp)
movq 0x2510(%rsp), %rax
movq %rax, 0x43d0(%rsp)
movq 0x43d0(%rsp), %rax
movq %rax, 0x3e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123408b
movq 0x3e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x43cc(%rsp) # imm = 0xFFFFFFFF
movl 0x43cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x43c8(%rsp)
cmpl $0x1, 0x43c8(%rsp)
jne 0x123408b
movq 0x3e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123405c
movq 0x3e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123405a
jmp 0x1234089
movq 0x3e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4618(%rsp)
cmpq $0x0, 0x4618(%rsp)
je 0x1234087
movq 0x4618(%rsp), %rdi
callq 0x5f480
jmp 0x1234089
jmp 0x123408b
movq 0x3e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12340e6
movq %rax, %rdi
callq 0x678a0
jmp 0x12340e8
leaq 0x11b8(%rsp), %rax
movq %rax, 0x2378(%rsp)
movq 0x2378(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d8(%rsp)
leaq 0x11b8(%rsp), %rax
movq %rax, 0x2690(%rsp)
movq 0x2690(%rsp), %rax
movq %rax, 0x40d0(%rsp)
movq 0x40d0(%rsp), %rax
movq %rax, 0x3e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12341d3
movq 0x3e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40cc(%rsp) # imm = 0xFFFFFFFF
movl 0x40cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40c8(%rsp)
cmpl $0x1, 0x40c8(%rsp)
jne 0x12341d3
movq 0x3e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12341a4
movq 0x3e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12341a2
jmp 0x12341d1
movq 0x3e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4798(%rsp)
cmpq $0x0, 0x4798(%rsp)
je 0x12341cf
movq 0x4798(%rsp), %rdi
callq 0x5f480
jmp 0x12341d1
jmp 0x12341d3
movq 0x3e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123422e
movq %rax, %rdi
callq 0x678a0
movq 0x3d8(%rsp), %rax
movq %rax, 0x1200(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x125c(%rsp), %eax
leaq 0x1168(%rsp), %rdx
movq %rdx, 0x2860(%rsp)
movq %rcx, 0x2858(%rsp)
movl %eax, 0x2854(%rsp)
movq 0x2858(%rsp), %rax
movq %rax, 0x3d0(%rsp)
movb $0x0, 0x2853(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2854(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1168(%rsp), %r10
movq %r10, 0x3108(%rsp)
movl %r9d, 0x3104(%rsp)
movl %r8d, 0x3100(%rsp)
movl %edi, 0x30fc(%rsp)
movq %rsi, 0x30f0(%rsp)
movq %rdx, 0x30e8(%rsp)
movl %ecx, 0x30e4(%rsp)
movq %rax, 0x30d8(%rsp)
movq 0x3108(%rsp), %rcx
movq %rcx, 0x3c8(%rsp)
movq 0x30f0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x30e8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x30e4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x30d8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3104(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3100(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x30fc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d30(%rsp)
movl $0x10, 0x3d2c(%rsp)
movq 0x3d30(%rsp), %rax
movslq 0x3d2c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d2c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3d0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1190(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12343fa
movq 0x3d0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x11a8(%rsp)
movb $0x1, 0x2853(%rsp)
testb $0x1, 0x2853(%rsp)
jne 0x1234535
leaq 0x1168(%rsp), %rax
movq %rax, 0x2868(%rsp)
movq 0x2868(%rsp), %rax
movq %rax, 0x3f00(%rsp)
movq 0x3f00(%rsp), %rax
movq %rax, 0x3c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12344d8
movq 0x3c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3efc(%rsp) # imm = 0xFFFFFFFF
movl 0x3efc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ef8(%rsp)
cmpl $0x1, 0x3ef8(%rsp)
jne 0x12344d8
movq 0x3c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12344a9
movq 0x3c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12344a7
jmp 0x12344d6
movq 0x3c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4880(%rsp)
cmpq $0x0, 0x4880(%rsp)
je 0x12344d4
movq 0x4880(%rsp), %rdi
callq 0x5f480
jmp 0x12344d6
jmp 0x12344d8
movq 0x3c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1234533
movq %rax, %rdi
callq 0x678a0
jmp 0x1234535
leaq 0x1168(%rsp), %rax
movq %rax, 0x2a88(%rsp)
movq 0x2a88(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3b0(%rsp)
leaq 0x1168(%rsp), %rax
movq %rax, 0x2698(%rsp)
movq 0x2698(%rsp), %rax
movq %rax, 0x40c0(%rsp)
movq 0x40c0(%rsp), %rax
movq %rax, 0x3b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1234620
movq 0x3b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40bc(%rsp) # imm = 0xFFFFFFFF
movl 0x40bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40b8(%rsp)
cmpl $0x1, 0x40b8(%rsp)
jne 0x1234620
movq 0x3b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12345f1
movq 0x3b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12345ef
jmp 0x123461e
movq 0x3b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47a0(%rsp)
cmpq $0x0, 0x47a0(%rsp)
je 0x123461c
movq 0x47a0(%rsp), %rdi
callq 0x5f480
jmp 0x123461e
jmp 0x1234620
movq 0x3b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123467b
movq %rax, %rdi
callq 0x678a0
movq 0x3b0(%rsp), %rax
movq %rax, 0x11b0(%rsp)
movl $0x0, 0x1164(%rsp)
movl 0x1164(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x1234709
movq 0x1250(%rsp), %rsi
movslq 0x1164(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1200(%rsp), %rdx
movslq 0x1164(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x1278090
movq 0x11b0(%rsp), %rax
movslq 0x1164(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1164(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1164(%rsp)
jmp 0x1234696
jmp 0x123470b
movl 0x125c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x125c(%rsp)
jmp 0x1233990
movl $0x0, 0x1f24(%rsp)
jmp 0x123b265
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1eec(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f88(%rsp)
movq 0x1f88(%rsp), %rcx
movq %rcx, 0x3a0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x3af(%rsp)
je 0x12347c8
movq 0x3a0(%rsp), %rax
movq %rax, 0x2d60(%rsp)
movq 0x2d60(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x3af(%rsp)
movb 0x3af(%rsp), %al
testb $0x1, %al
jne 0x12347d5
jmp 0x12347e5
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x123b265
movq 0x1f10(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1235225
movl $0x0, 0x1160(%rsp)
movl 0x1160(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x1235215
movq 0x1f18(%rsp), %rcx
movl 0x1160(%rsp), %eax
leaq 0x1110(%rsp), %rdx
movq %rdx, 0x20c0(%rsp)
movq %rcx, 0x20b8(%rsp)
movl %eax, 0x20b4(%rsp)
movq 0x20b8(%rsp), %rax
movq %rax, 0x398(%rsp)
movb $0x0, 0x20b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x20b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1110(%rsp), %r10
movq %r10, 0x38b0(%rsp)
movl %r9d, 0x38ac(%rsp)
movl %r8d, 0x38a8(%rsp)
movl %edi, 0x38a4(%rsp)
movq %rsi, 0x3898(%rsp)
movq %rdx, 0x3890(%rsp)
movl %ecx, 0x388c(%rsp)
movq %rax, 0x3880(%rsp)
movq 0x38b0(%rsp), %rcx
movq %rcx, 0x390(%rsp)
movq 0x3898(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3890(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x388c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3880(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x38ac(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x38a8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x38a4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b00(%rsp)
movl $0x10, 0x3afc(%rsp)
movq 0x3b00(%rsp), %rax
movslq 0x3afc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3afc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x398(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1138(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12349d2
movq 0x398(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1150(%rsp)
movb $0x1, 0x20b3(%rsp)
testb $0x1, 0x20b3(%rsp)
jne 0x1234b0d
leaq 0x1110(%rsp), %rax
movq %rax, 0x2518(%rsp)
movq 0x2518(%rsp), %rax
movq %rax, 0x43c0(%rsp)
movq 0x43c0(%rsp), %rax
movq %rax, 0x388(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1234ab0
movq 0x388(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x43bc(%rsp) # imm = 0xFFFFFFFF
movl 0x43bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x43b8(%rsp)
cmpl $0x1, 0x43b8(%rsp)
jne 0x1234ab0
movq 0x388(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1234a81
movq 0x388(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1234a7f
jmp 0x1234aae
movq 0x388(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4620(%rsp)
cmpq $0x0, 0x4620(%rsp)
je 0x1234aac
movq 0x4620(%rsp), %rdi
callq 0x5f480
jmp 0x1234aae
jmp 0x1234ab0
movq 0x388(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1234b0b
movq %rax, %rdi
callq 0x678a0
jmp 0x1234b0d
leaq 0x1110(%rsp), %rax
movq %rax, 0x2370(%rsp)
movq 0x2370(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x378(%rsp)
leaq 0x1110(%rsp), %rax
movq %rax, 0x26a0(%rsp)
movq 0x26a0(%rsp), %rax
movq %rax, 0x40b0(%rsp)
movq 0x40b0(%rsp), %rax
movq %rax, 0x380(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1234bf8
movq 0x380(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40ac(%rsp) # imm = 0xFFFFFFFF
movl 0x40ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40a8(%rsp)
cmpl $0x1, 0x40a8(%rsp)
jne 0x1234bf8
movq 0x380(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1234bc9
movq 0x380(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1234bc7
jmp 0x1234bf6
movq 0x380(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47a8(%rsp)
cmpq $0x0, 0x47a8(%rsp)
je 0x1234bf4
movq 0x47a8(%rsp), %rdi
callq 0x5f480
jmp 0x1234bf6
jmp 0x1234bf8
movq 0x380(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1234c53
movq %rax, %rdi
callq 0x678a0
movq 0x378(%rsp), %rax
movq %rax, 0x1158(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1160(%rsp), %eax
movq %rcx, 0x2b28(%rsp)
movl %eax, 0x2b24(%rsp)
movq 0x2b28(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2b24(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x1108(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1160(%rsp), %eax
leaq 0x10b8(%rsp), %rdx
movq %rdx, 0x2840(%rsp)
movq %rcx, 0x2838(%rsp)
movl %eax, 0x2834(%rsp)
movq 0x2838(%rsp), %rax
movq %rax, 0x370(%rsp)
movb $0x0, 0x2833(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2834(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x10b8(%rsp), %r10
movq %r10, 0x3140(%rsp)
movl %r9d, 0x313c(%rsp)
movl %r8d, 0x3138(%rsp)
movl %edi, 0x3134(%rsp)
movq %rsi, 0x3128(%rsp)
movq %rdx, 0x3120(%rsp)
movl %ecx, 0x311c(%rsp)
movq %rax, 0x3110(%rsp)
movq 0x3140(%rsp), %rcx
movq %rcx, 0x368(%rsp)
movq 0x3128(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3120(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x311c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3110(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x313c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3138(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3134(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d20(%rsp)
movl $0x10, 0x3d1c(%rsp)
movq 0x3d20(%rsp), %rax
movslq 0x3d1c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d1c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x370(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x10e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1234e68
movq 0x370(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x10f8(%rsp)
movb $0x1, 0x2833(%rsp)
testb $0x1, 0x2833(%rsp)
jne 0x1234fa3
leaq 0x10b8(%rsp), %rax
movq %rax, 0x2848(%rsp)
movq 0x2848(%rsp), %rax
movq %rax, 0x3f10(%rsp)
movq 0x3f10(%rsp), %rax
movq %rax, 0x360(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1234f46
movq 0x360(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f0c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f0c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f08(%rsp)
cmpl $0x1, 0x3f08(%rsp)
jne 0x1234f46
movq 0x360(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1234f17
movq 0x360(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1234f15
jmp 0x1234f44
movq 0x360(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4878(%rsp)
cmpq $0x0, 0x4878(%rsp)
je 0x1234f42
movq 0x4878(%rsp), %rdi
callq 0x5f480
jmp 0x1234f44
jmp 0x1234f46
movq 0x360(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1234fa1
movq %rax, %rdi
callq 0x678a0
jmp 0x1234fa3
leaq 0x10b8(%rsp), %rax
movq %rax, 0x2a80(%rsp)
movq 0x2a80(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x350(%rsp)
leaq 0x10b8(%rsp), %rax
movq %rax, 0x26a8(%rsp)
movq 0x26a8(%rsp), %rax
movq %rax, 0x40a0(%rsp)
movq 0x40a0(%rsp), %rax
movq %rax, 0x358(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123508e
movq 0x358(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x409c(%rsp) # imm = 0xFFFFFFFF
movl 0x409c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4098(%rsp)
cmpl $0x1, 0x4098(%rsp)
jne 0x123508e
movq 0x358(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123505f
movq 0x358(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123505d
jmp 0x123508c
movq 0x358(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47b0(%rsp)
cmpq $0x0, 0x47b0(%rsp)
je 0x123508a
movq 0x47b0(%rsp), %rdi
callq 0x5f480
jmp 0x123508c
jmp 0x123508e
movq 0x358(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12350e9
movq %rax, %rdi
callq 0x678a0
movq 0x350(%rsp), %rax
movq %rax, 0x1100(%rsp)
movl $0x0, 0x10b4(%rsp)
movl 0x10b4(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jge 0x12351fd
movq 0x1108(%rsp), %rax
movslq 0x10b4(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x10b0(%rsp)
movl $0x0, 0x10ac(%rsp)
movl 0x10ac(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x12351a5
movq 0x1158(%rsp), %rsi
movslq 0x10ac(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0x10b0(%rsp), %rdx
callq 0x1278090
movq 0x1100(%rsp), %rax
movslq 0x10ac(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x10ac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x10ac(%rsp)
jmp 0x1235141
movl 0x1ef8(%rsp), %ecx
movq 0x1158(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1158(%rsp)
movl 0x1ef8(%rsp), %ecx
movq 0x1100(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1100(%rsp)
movl 0x10b4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x10b4(%rsp)
jmp 0x1235104
jmp 0x12351ff
movl 0x1160(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1160(%rsp)
jmp 0x1234802
movl $0x0, 0x1f24(%rsp)
jmp 0x123b265
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1236567
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1235bd6
movq 0x1f10(%rsp), %rax
movq %rax, 0x2c78(%rsp)
movq $0x0, 0x2c70(%rsp)
movq 0x2c78(%rsp), %rax
movq (%rax), %rax
movq 0x2c70(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x10a8(%rsp)
movl $0x0, 0x10a4(%rsp)
movl 0x10a4(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x1235bc6
movq 0x1f18(%rsp), %rcx
movl 0x10a4(%rsp), %eax
leaq 0x1050(%rsp), %rdx
movq %rdx, 0x20a8(%rsp)
movq %rcx, 0x20a0(%rsp)
movl %eax, 0x209c(%rsp)
movq 0x20a0(%rsp), %rax
movq %rax, 0x348(%rsp)
movb $0x0, 0x209b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x209c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1050(%rsp), %r10
movq %r10, 0x38e8(%rsp)
movl %r9d, 0x38e4(%rsp)
movl %r8d, 0x38e0(%rsp)
movl %edi, 0x38dc(%rsp)
movq %rsi, 0x38d0(%rsp)
movq %rdx, 0x38c8(%rsp)
movl %ecx, 0x38c4(%rsp)
movq %rax, 0x38b8(%rsp)
movq 0x38e8(%rsp), %rcx
movq %rcx, 0x340(%rsp)
movq 0x38d0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x38c8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x38c4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x38b8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x38e4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x38e0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x38dc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3af0(%rsp)
movl $0x10, 0x3aec(%rsp)
movq 0x3af0(%rsp), %rax
movslq 0x3aec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3aec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x348(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1078(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1235461
movq 0x348(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1090(%rsp)
movb $0x1, 0x209b(%rsp)
testb $0x1, 0x209b(%rsp)
jne 0x123559c
leaq 0x1050(%rsp), %rax
movq %rax, 0x2520(%rsp)
movq 0x2520(%rsp), %rax
movq %rax, 0x43b0(%rsp)
movq 0x43b0(%rsp), %rax
movq %rax, 0x338(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123553f
movq 0x338(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x43ac(%rsp) # imm = 0xFFFFFFFF
movl 0x43ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x43a8(%rsp)
cmpl $0x1, 0x43a8(%rsp)
jne 0x123553f
movq 0x338(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1235510
movq 0x338(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123550e
jmp 0x123553d
movq 0x338(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4628(%rsp)
cmpq $0x0, 0x4628(%rsp)
je 0x123553b
movq 0x4628(%rsp), %rdi
callq 0x5f480
jmp 0x123553d
jmp 0x123553f
movq 0x338(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123559a
movq %rax, %rdi
callq 0x678a0
jmp 0x123559c
leaq 0x1050(%rsp), %rax
movq %rax, 0x2368(%rsp)
movq 0x2368(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x328(%rsp)
leaq 0x1050(%rsp), %rax
movq %rax, 0x26b0(%rsp)
movq 0x26b0(%rsp), %rax
movq %rax, 0x4090(%rsp)
movq 0x4090(%rsp), %rax
movq %rax, 0x330(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1235687
movq 0x330(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x408c(%rsp) # imm = 0xFFFFFFFF
movl 0x408c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4088(%rsp)
cmpl $0x1, 0x4088(%rsp)
jne 0x1235687
movq 0x330(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1235658
movq 0x330(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1235656
jmp 0x1235685
movq 0x330(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47b8(%rsp)
cmpq $0x0, 0x47b8(%rsp)
je 0x1235683
movq 0x47b8(%rsp), %rdi
callq 0x5f480
jmp 0x1235685
jmp 0x1235687
movq 0x330(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12356e2
movq %rax, %rdi
callq 0x678a0
movq 0x328(%rsp), %rax
movq %rax, 0x1098(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x10a4(%rsp), %eax
leaq 0x1000(%rsp), %rdx
movq %rdx, 0x2820(%rsp)
movq %rcx, 0x2818(%rsp)
movl %eax, 0x2814(%rsp)
movq 0x2818(%rsp), %rax
movq %rax, 0x320(%rsp)
movb $0x0, 0x2813(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2814(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1000(%rsp), %r10
movq %r10, 0x3178(%rsp)
movl %r9d, 0x3174(%rsp)
movl %r8d, 0x3170(%rsp)
movl %edi, 0x316c(%rsp)
movq %rsi, 0x3160(%rsp)
movq %rdx, 0x3158(%rsp)
movl %ecx, 0x3154(%rsp)
movq %rax, 0x3148(%rsp)
movq 0x3178(%rsp), %rcx
movq %rcx, 0x318(%rsp)
movq 0x3160(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3158(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3154(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3148(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3174(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3170(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x316c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d10(%rsp)
movl $0x10, 0x3d0c(%rsp)
movq 0x3d10(%rsp), %rax
movslq 0x3d0c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d0c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x320(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1028(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12358ae
movq 0x320(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1040(%rsp)
movb $0x1, 0x2813(%rsp)
testb $0x1, 0x2813(%rsp)
jne 0x12359e9
leaq 0x1000(%rsp), %rax
movq %rax, 0x2828(%rsp)
movq 0x2828(%rsp), %rax
movq %rax, 0x3f20(%rsp)
movq 0x3f20(%rsp), %rax
movq %rax, 0x310(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123598c
movq 0x310(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f1c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f1c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f18(%rsp)
cmpl $0x1, 0x3f18(%rsp)
jne 0x123598c
movq 0x310(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123595d
movq 0x310(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123595b
jmp 0x123598a
movq 0x310(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4870(%rsp)
cmpq $0x0, 0x4870(%rsp)
je 0x1235988
movq 0x4870(%rsp), %rdi
callq 0x5f480
jmp 0x123598a
jmp 0x123598c
movq 0x310(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12359e7
movq %rax, %rdi
callq 0x678a0
jmp 0x12359e9
leaq 0x1000(%rsp), %rax
movq %rax, 0x2a78(%rsp)
movq 0x2a78(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x300(%rsp)
leaq 0x1000(%rsp), %rax
movq %rax, 0x26b8(%rsp)
movq 0x26b8(%rsp), %rax
movq %rax, 0x4080(%rsp)
movq 0x4080(%rsp), %rax
movq %rax, 0x308(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1235ad4
movq 0x308(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x407c(%rsp) # imm = 0xFFFFFFFF
movl 0x407c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4078(%rsp)
cmpl $0x1, 0x4078(%rsp)
jne 0x1235ad4
movq 0x308(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1235aa5
movq 0x308(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1235aa3
jmp 0x1235ad2
movq 0x308(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47c0(%rsp)
cmpq $0x0, 0x47c0(%rsp)
je 0x1235ad0
movq 0x47c0(%rsp), %rdi
callq 0x5f480
jmp 0x1235ad2
jmp 0x1235ad4
movq 0x308(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1235b2f
movq %rax, %rdi
callq 0x678a0
movq 0x300(%rsp), %rax
movq %rax, 0x1048(%rsp)
movl $0x0, 0xffc(%rsp)
movl 0xffc(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x1235bae
movq 0x1098(%rsp), %rsi
movslq 0xffc(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0x10a8(%rsp), %rdx
callq 0x1278090
movq 0x1048(%rsp), %rax
movslq 0xffc(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xffc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xffc(%rsp)
jmp 0x1235b4a
jmp 0x1235bb0
movl 0x10a4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x10a4(%rsp)
jmp 0x1235291
movl $0x0, 0x1f24(%rsp)
jmp 0x123b265
movl $0x0, 0xff8(%rsp)
movl 0xff8(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x1236557
movq 0x1f18(%rsp), %rcx
movl 0xff8(%rsp), %eax
leaq 0xfa8(%rsp), %rdx
movq %rdx, 0x2090(%rsp)
movq %rcx, 0x2088(%rsp)
movl %eax, 0x2084(%rsp)
movq 0x2088(%rsp), %rax
movq %rax, 0x2f8(%rsp)
movb $0x0, 0x2083(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2084(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xfa8(%rsp), %r10
movq %r10, 0x3920(%rsp)
movl %r9d, 0x391c(%rsp)
movl %r8d, 0x3918(%rsp)
movl %edi, 0x3914(%rsp)
movq %rsi, 0x3908(%rsp)
movq %rdx, 0x3900(%rsp)
movl %ecx, 0x38fc(%rsp)
movq %rax, 0x38f0(%rsp)
movq 0x3920(%rsp), %rcx
movq %rcx, 0x2f0(%rsp)
movq 0x3908(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3900(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x38fc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x38f0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x391c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3918(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3914(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ae0(%rsp)
movl $0x10, 0x3adc(%rsp)
movq 0x3ae0(%rsp), %rax
movslq 0x3adc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3adc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2f8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xfd0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1235db1
movq 0x2f8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xfe8(%rsp)
movb $0x1, 0x2083(%rsp)
testb $0x1, 0x2083(%rsp)
jne 0x1235eec
leaq 0xfa8(%rsp), %rax
movq %rax, 0x2528(%rsp)
movq 0x2528(%rsp), %rax
movq %rax, 0x43a0(%rsp)
movq 0x43a0(%rsp), %rax
movq %rax, 0x2e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1235e8f
movq 0x2e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x439c(%rsp) # imm = 0xFFFFFFFF
movl 0x439c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4398(%rsp)
cmpl $0x1, 0x4398(%rsp)
jne 0x1235e8f
movq 0x2e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1235e60
movq 0x2e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1235e5e
jmp 0x1235e8d
movq 0x2e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4630(%rsp)
cmpq $0x0, 0x4630(%rsp)
je 0x1235e8b
movq 0x4630(%rsp), %rdi
callq 0x5f480
jmp 0x1235e8d
jmp 0x1235e8f
movq 0x2e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1235eea
movq %rax, %rdi
callq 0x678a0
jmp 0x1235eec
leaq 0xfa8(%rsp), %rax
movq %rax, 0x2360(%rsp)
movq 0x2360(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2d8(%rsp)
leaq 0xfa8(%rsp), %rax
movq %rax, 0x26c0(%rsp)
movq 0x26c0(%rsp), %rax
movq %rax, 0x4070(%rsp)
movq 0x4070(%rsp), %rax
movq %rax, 0x2e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1235fd7
movq 0x2e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x406c(%rsp) # imm = 0xFFFFFFFF
movl 0x406c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4068(%rsp)
cmpl $0x1, 0x4068(%rsp)
jne 0x1235fd7
movq 0x2e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1235fa8
movq 0x2e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1235fa6
jmp 0x1235fd5
movq 0x2e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47c8(%rsp)
cmpq $0x0, 0x47c8(%rsp)
je 0x1235fd3
movq 0x47c8(%rsp), %rdi
callq 0x5f480
jmp 0x1235fd5
jmp 0x1235fd7
movq 0x2e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1236032
movq %rax, %rdi
callq 0x678a0
movq 0x2d8(%rsp), %rax
movq %rax, 0xff0(%rsp)
movq 0x1f10(%rsp), %rcx
movslq 0xff8(%rsp), %rax
movq %rcx, 0x2c68(%rsp)
movq %rax, 0x2c60(%rsp)
movq 0x2c68(%rsp), %rax
movq (%rax), %rax
movq 0x2c60(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xfa4(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0xff8(%rsp), %eax
leaq 0xf50(%rsp), %rdx
movq %rdx, 0x2800(%rsp)
movq %rcx, 0x27f8(%rsp)
movl %eax, 0x27f4(%rsp)
movq 0x27f8(%rsp), %rax
movq %rax, 0x2d0(%rsp)
movb $0x0, 0x27f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x27f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xf50(%rsp), %r10
movq %r10, 0x31b0(%rsp)
movl %r9d, 0x31ac(%rsp)
movl %r8d, 0x31a8(%rsp)
movl %edi, 0x31a4(%rsp)
movq %rsi, 0x3198(%rsp)
movq %rdx, 0x3190(%rsp)
movl %ecx, 0x318c(%rsp)
movq %rax, 0x3180(%rsp)
movq 0x31b0(%rsp), %rcx
movq %rcx, 0x2c8(%rsp)
movq 0x3198(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3190(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x318c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3180(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x31ac(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x31a8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x31a4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d00(%rsp)
movl $0x10, 0x3cfc(%rsp)
movq 0x3d00(%rsp), %rax
movslq 0x3cfc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cfc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2d0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf78(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x123623f
movq 0x2d0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xf90(%rsp)
movb $0x1, 0x27f3(%rsp)
testb $0x1, 0x27f3(%rsp)
jne 0x123637a
leaq 0xf50(%rsp), %rax
movq %rax, 0x2808(%rsp)
movq 0x2808(%rsp), %rax
movq %rax, 0x3f30(%rsp)
movq 0x3f30(%rsp), %rax
movq %rax, 0x2c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123631d
movq 0x2c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f2c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f2c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f28(%rsp)
cmpl $0x1, 0x3f28(%rsp)
jne 0x123631d
movq 0x2c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12362ee
movq 0x2c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12362ec
jmp 0x123631b
movq 0x2c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4868(%rsp)
cmpq $0x0, 0x4868(%rsp)
je 0x1236319
movq 0x4868(%rsp), %rdi
callq 0x5f480
jmp 0x123631b
jmp 0x123631d
movq 0x2c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1236378
movq %rax, %rdi
callq 0x678a0
jmp 0x123637a
leaq 0xf50(%rsp), %rax
movq %rax, 0x2a70(%rsp)
movq 0x2a70(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2b0(%rsp)
leaq 0xf50(%rsp), %rax
movq %rax, 0x26c8(%rsp)
movq 0x26c8(%rsp), %rax
movq %rax, 0x4060(%rsp)
movq 0x4060(%rsp), %rax
movq %rax, 0x2b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1236465
movq 0x2b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x405c(%rsp) # imm = 0xFFFFFFFF
movl 0x405c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4058(%rsp)
cmpl $0x1, 0x4058(%rsp)
jne 0x1236465
movq 0x2b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1236436
movq 0x2b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1236434
jmp 0x1236463
movq 0x2b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47d0(%rsp)
cmpq $0x0, 0x47d0(%rsp)
je 0x1236461
movq 0x47d0(%rsp), %rdi
callq 0x5f480
jmp 0x1236463
jmp 0x1236465
movq 0x2b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12364c0
movq %rax, %rdi
callq 0x678a0
movq 0x2b0(%rsp), %rax
movq %rax, 0xf98(%rsp)
movl $0x0, 0xf4c(%rsp)
movl 0xf4c(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x123653f
movq 0xff0(%rsp), %rsi
movslq 0xf4c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0xfa4(%rsp), %rdx
callq 0x1278090
movq 0xf98(%rsp), %rax
movslq 0xf4c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xf4c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xf4c(%rsp)
jmp 0x12364db
jmp 0x1236541
movl 0xff8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xff8(%rsp)
jmp 0x1235be1
movl $0x0, 0x1f24(%rsp)
jmp 0x123b265
jmp 0x123b258
movq 0x1f18(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x12380c2
movq 0x1f10(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x12370b5
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed4(%rsp), %ecx
movl 0x1ed0(%rsp), %r8d
movq 0x1ee0(%rsp), %r9
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6fb30
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f80(%rsp)
movq 0x1f80(%rsp), %rcx
movq %rcx, 0x2a0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x2af(%rsp)
je 0x1236633
movq 0x2a0(%rsp), %rax
movq %rax, 0x2d68(%rsp)
movq 0x2d68(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x2af(%rsp)
movb 0x2af(%rsp), %al
testb $0x1, %al
jne 0x1236640
jmp 0x1236650
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x123b265
movl $0x0, 0xf48(%rsp)
movl 0xf48(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x12370a5
movq 0x1f18(%rsp), %rcx
movl 0xf48(%rsp), %eax
movq %rcx, 0x2b18(%rsp)
movl %eax, 0x2b14(%rsp)
movq 0x2b18(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2b14(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xf40(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0xf48(%rsp), %eax
leaq 0xef0(%rsp), %rdx
movq %rdx, 0x2078(%rsp)
movq %rcx, 0x2070(%rsp)
movl %eax, 0x206c(%rsp)
movq 0x2070(%rsp), %rax
movq %rax, 0x298(%rsp)
movb $0x0, 0x206b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x206c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xef0(%rsp), %r10
movq %r10, 0x3958(%rsp)
movl %r9d, 0x3954(%rsp)
movl %r8d, 0x3950(%rsp)
movl %edi, 0x394c(%rsp)
movq %rsi, 0x3940(%rsp)
movq %rdx, 0x3938(%rsp)
movl %ecx, 0x3934(%rsp)
movq %rax, 0x3928(%rsp)
movq 0x3958(%rsp), %rcx
movq %rcx, 0x290(%rsp)
movq 0x3940(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3938(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3934(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3928(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3954(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3950(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x394c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ad0(%rsp)
movl $0x10, 0x3acc(%rsp)
movq 0x3ad0(%rsp), %rax
movslq 0x3acc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3acc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x298(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf18(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1236874
movq 0x298(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xf30(%rsp)
movb $0x1, 0x206b(%rsp)
testb $0x1, 0x206b(%rsp)
jne 0x12369af
leaq 0xef0(%rsp), %rax
movq %rax, 0x2530(%rsp)
movq 0x2530(%rsp), %rax
movq %rax, 0x4390(%rsp)
movq 0x4390(%rsp), %rax
movq %rax, 0x288(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1236952
movq 0x288(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x438c(%rsp) # imm = 0xFFFFFFFF
movl 0x438c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4388(%rsp)
cmpl $0x1, 0x4388(%rsp)
jne 0x1236952
movq 0x288(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1236923
movq 0x288(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1236921
jmp 0x1236950
movq 0x288(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4638(%rsp)
cmpq $0x0, 0x4638(%rsp)
je 0x123694e
movq 0x4638(%rsp), %rdi
callq 0x5f480
jmp 0x1236950
jmp 0x1236952
movq 0x288(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12369ad
movq %rax, %rdi
callq 0x678a0
jmp 0x12369af
leaq 0xef0(%rsp), %rax
movq %rax, 0x2358(%rsp)
movq 0x2358(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x278(%rsp)
leaq 0xef0(%rsp), %rax
movq %rax, 0x26d0(%rsp)
movq 0x26d0(%rsp), %rax
movq %rax, 0x4050(%rsp)
movq 0x4050(%rsp), %rax
movq %rax, 0x280(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1236a9a
movq 0x280(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x404c(%rsp) # imm = 0xFFFFFFFF
movl 0x404c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4048(%rsp)
cmpl $0x1, 0x4048(%rsp)
jne 0x1236a9a
movq 0x280(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1236a6b
movq 0x280(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1236a69
jmp 0x1236a98
movq 0x280(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47d8(%rsp)
cmpq $0x0, 0x47d8(%rsp)
je 0x1236a96
movq 0x47d8(%rsp), %rdi
callq 0x5f480
jmp 0x1236a98
jmp 0x1236a9a
movq 0x280(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1236af5
movq %rax, %rdi
callq 0x678a0
movq 0x278(%rsp), %rax
movq %rax, 0xf38(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0xf48(%rsp), %eax
leaq 0xea0(%rsp), %rdx
movq %rdx, 0x27e0(%rsp)
movq %rcx, 0x27d8(%rsp)
movl %eax, 0x27d4(%rsp)
movq 0x27d8(%rsp), %rax
movq %rax, 0x270(%rsp)
movb $0x0, 0x27d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x27d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xea0(%rsp), %r10
movq %r10, 0x31e8(%rsp)
movl %r9d, 0x31e4(%rsp)
movl %r8d, 0x31e0(%rsp)
movl %edi, 0x31dc(%rsp)
movq %rsi, 0x31d0(%rsp)
movq %rdx, 0x31c8(%rsp)
movl %ecx, 0x31c4(%rsp)
movq %rax, 0x31b8(%rsp)
movq 0x31e8(%rsp), %rcx
movq %rcx, 0x268(%rsp)
movq 0x31d0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x31c8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x31c4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x31b8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x31e4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x31e0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x31dc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3cf0(%rsp)
movl $0x10, 0x3cec(%rsp)
movq 0x3cf0(%rsp), %rax
movslq 0x3cec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x270(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xec8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1236cc1
movq 0x270(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xee0(%rsp)
movb $0x1, 0x27d3(%rsp)
testb $0x1, 0x27d3(%rsp)
jne 0x1236dfc
leaq 0xea0(%rsp), %rax
movq %rax, 0x27e8(%rsp)
movq 0x27e8(%rsp), %rax
movq %rax, 0x3f40(%rsp)
movq 0x3f40(%rsp), %rax
movq %rax, 0x260(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1236d9f
movq 0x260(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f3c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f3c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f38(%rsp)
cmpl $0x1, 0x3f38(%rsp)
jne 0x1236d9f
movq 0x260(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1236d70
movq 0x260(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1236d6e
jmp 0x1236d9d
movq 0x260(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4860(%rsp)
cmpq $0x0, 0x4860(%rsp)
je 0x1236d9b
movq 0x4860(%rsp), %rdi
callq 0x5f480
jmp 0x1236d9d
jmp 0x1236d9f
movq 0x260(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1236dfa
movq %rax, %rdi
callq 0x678a0
jmp 0x1236dfc
leaq 0xea0(%rsp), %rax
movq %rax, 0x2a68(%rsp)
movq 0x2a68(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x250(%rsp)
leaq 0xea0(%rsp), %rax
movq %rax, 0x26d8(%rsp)
movq 0x26d8(%rsp), %rax
movq %rax, 0x4040(%rsp)
movq 0x4040(%rsp), %rax
movq %rax, 0x258(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1236ee7
movq 0x258(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x403c(%rsp) # imm = 0xFFFFFFFF
movl 0x403c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4038(%rsp)
cmpl $0x1, 0x4038(%rsp)
jne 0x1236ee7
movq 0x258(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1236eb8
movq 0x258(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1236eb6
jmp 0x1236ee5
movq 0x258(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47e0(%rsp)
cmpq $0x0, 0x47e0(%rsp)
je 0x1236ee3
movq 0x47e0(%rsp), %rdi
callq 0x5f480
jmp 0x1236ee5
jmp 0x1236ee7
movq 0x258(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1236f42
movq %rax, %rdi
callq 0x678a0
movq 0x250(%rsp), %rax
movq %rax, 0xee8(%rsp)
movl $0x0, 0xe9c(%rsp)
movl 0xe9c(%rsp), %eax
cmpl 0x1ed4(%rsp), %eax
jge 0x123708d
movq 0xf40(%rsp), %rax
movslq 0xe9c(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xe98(%rsp)
movl $0x0, 0xe94(%rsp)
movl 0xe94(%rsp), %eax
cmpl 0x1ed8(%rsp), %eax
jge 0x1237075
movl $0x0, 0xe90(%rsp)
movl 0xe90(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x123701d
movq 0xf38(%rsp), %rdx
movslq 0xe90(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xe98(%rsp), %rsi
callq 0x1278090
movq 0xee8(%rsp), %rax
movslq 0xe90(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xe90(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xe90(%rsp)
jmp 0x1236fb9
movl 0x1edc(%rsp), %ecx
movq 0xf38(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xf38(%rsp)
movl 0x1edc(%rsp), %ecx
movq 0xee8(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xee8(%rsp)
movl 0xe94(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xe94(%rsp)
jmp 0x1236f9a
jmp 0x1237077
movl 0xe9c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xe9c(%rsp)
jmp 0x1236f5d
jmp 0x123708f
movl 0xf48(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xf48(%rsp)
jmp 0x123665b
movl $0x0, 0x1f24(%rsp)
jmp 0x123b265
movq 0x1f10(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1237ba9
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed0(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f78(%rsp)
movq 0x1f78(%rsp), %rcx
movq %rcx, 0x240(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x24f(%rsp)
je 0x123715e
movq 0x240(%rsp), %rax
movq %rax, 0x2d70(%rsp)
movq 0x2d70(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x24f(%rsp)
movb 0x24f(%rsp), %al
testb $0x1, %al
jne 0x123716b
jmp 0x123717b
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x123b265
movl $0x0, 0xe8c(%rsp)
movl 0xe8c(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x1237b99
movq 0x1f18(%rsp), %rcx
movl 0xe8c(%rsp), %eax
movq %rcx, 0x2b08(%rsp)
movl %eax, 0x2b04(%rsp)
movq 0x2b08(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2b04(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xe80(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0xe8c(%rsp), %eax
leaq 0xe30(%rsp), %rdx
movq %rdx, 0x2060(%rsp)
movq %rcx, 0x2058(%rsp)
movl %eax, 0x2054(%rsp)
movq 0x2058(%rsp), %rax
movq %rax, 0x238(%rsp)
movb $0x0, 0x2053(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2054(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xe30(%rsp), %r10
movq %r10, 0x3990(%rsp)
movl %r9d, 0x398c(%rsp)
movl %r8d, 0x3988(%rsp)
movl %edi, 0x3984(%rsp)
movq %rsi, 0x3978(%rsp)
movq %rdx, 0x3970(%rsp)
movl %ecx, 0x396c(%rsp)
movq %rax, 0x3960(%rsp)
movq 0x3990(%rsp), %rcx
movq %rcx, 0x230(%rsp)
movq 0x3978(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3970(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x396c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3960(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x398c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3988(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3984(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ac0(%rsp)
movl $0x10, 0x3abc(%rsp)
movq 0x3ac0(%rsp), %rax
movslq 0x3abc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3abc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x238(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xe58(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x123739f
movq 0x238(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xe70(%rsp)
movb $0x1, 0x2053(%rsp)
testb $0x1, 0x2053(%rsp)
jne 0x12374da
leaq 0xe30(%rsp), %rax
movq %rax, 0x2538(%rsp)
movq 0x2538(%rsp), %rax
movq %rax, 0x4380(%rsp)
movq 0x4380(%rsp), %rax
movq %rax, 0x228(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123747d
movq 0x228(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x437c(%rsp) # imm = 0xFFFFFFFF
movl 0x437c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4378(%rsp)
cmpl $0x1, 0x4378(%rsp)
jne 0x123747d
movq 0x228(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123744e
movq 0x228(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123744c
jmp 0x123747b
movq 0x228(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4640(%rsp)
cmpq $0x0, 0x4640(%rsp)
je 0x1237479
movq 0x4640(%rsp), %rdi
callq 0x5f480
jmp 0x123747b
jmp 0x123747d
movq 0x228(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12374d8
movq %rax, %rdi
callq 0x678a0
jmp 0x12374da
leaq 0xe30(%rsp), %rax
movq %rax, 0x2350(%rsp)
movq 0x2350(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x218(%rsp)
leaq 0xe30(%rsp), %rax
movq %rax, 0x26e0(%rsp)
movq 0x26e0(%rsp), %rax
movq %rax, 0x4030(%rsp)
movq 0x4030(%rsp), %rax
movq %rax, 0x220(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12375c5
movq 0x220(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x402c(%rsp) # imm = 0xFFFFFFFF
movl 0x402c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4028(%rsp)
cmpl $0x1, 0x4028(%rsp)
jne 0x12375c5
movq 0x220(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1237596
movq 0x220(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1237594
jmp 0x12375c3
movq 0x220(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47e8(%rsp)
cmpq $0x0, 0x47e8(%rsp)
je 0x12375c1
movq 0x47e8(%rsp), %rdi
callq 0x5f480
jmp 0x12375c3
jmp 0x12375c5
movq 0x220(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1237620
movq %rax, %rdi
callq 0x678a0
movq 0x218(%rsp), %rax
movq %rax, 0xe78(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0xe8c(%rsp), %eax
leaq 0xde0(%rsp), %rdx
movq %rdx, 0x27c0(%rsp)
movq %rcx, 0x27b8(%rsp)
movl %eax, 0x27b4(%rsp)
movq 0x27b8(%rsp), %rax
movq %rax, 0x210(%rsp)
movb $0x0, 0x27b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x27b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xde0(%rsp), %r10
movq %r10, 0x3220(%rsp)
movl %r9d, 0x321c(%rsp)
movl %r8d, 0x3218(%rsp)
movl %edi, 0x3214(%rsp)
movq %rsi, 0x3208(%rsp)
movq %rdx, 0x3200(%rsp)
movl %ecx, 0x31fc(%rsp)
movq %rax, 0x31f0(%rsp)
movq 0x3220(%rsp), %rcx
movq %rcx, 0x208(%rsp)
movq 0x3208(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3200(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x31fc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x31f0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x321c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3218(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3214(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ce0(%rsp)
movl $0x10, 0x3cdc(%rsp)
movq 0x3ce0(%rsp), %rax
movslq 0x3cdc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cdc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x210(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xe08(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12377ec
movq 0x210(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xe20(%rsp)
movb $0x1, 0x27b3(%rsp)
testb $0x1, 0x27b3(%rsp)
jne 0x1237927
leaq 0xde0(%rsp), %rax
movq %rax, 0x27c8(%rsp)
movq 0x27c8(%rsp), %rax
movq %rax, 0x3f50(%rsp)
movq 0x3f50(%rsp), %rax
movq %rax, 0x200(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12378ca
movq 0x200(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f4c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f4c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f48(%rsp)
cmpl $0x1, 0x3f48(%rsp)
jne 0x12378ca
movq 0x200(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123789b
movq 0x200(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1237899
jmp 0x12378c8
movq 0x200(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4858(%rsp)
cmpq $0x0, 0x4858(%rsp)
je 0x12378c6
movq 0x4858(%rsp), %rdi
callq 0x5f480
jmp 0x12378c8
jmp 0x12378ca
movq 0x200(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1237925
movq %rax, %rdi
callq 0x678a0
jmp 0x1237927
leaq 0xde0(%rsp), %rax
movq %rax, 0x2a60(%rsp)
movq 0x2a60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1f0(%rsp)
leaq 0xde0(%rsp), %rax
movq %rax, 0x26e8(%rsp)
movq 0x26e8(%rsp), %rax
movq %rax, 0x4020(%rsp)
movq 0x4020(%rsp), %rax
movq %rax, 0x1f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1237a12
movq 0x1f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x401c(%rsp) # imm = 0xFFFFFFFF
movl 0x401c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4018(%rsp)
cmpl $0x1, 0x4018(%rsp)
jne 0x1237a12
movq 0x1f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12379e3
movq 0x1f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12379e1
jmp 0x1237a10
movq 0x1f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47f0(%rsp)
cmpq $0x0, 0x47f0(%rsp)
je 0x1237a0e
movq 0x47f0(%rsp), %rdi
callq 0x5f480
jmp 0x1237a10
jmp 0x1237a12
movq 0x1f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1237a6d
movq %rax, %rdi
callq 0x678a0
movq 0x1f0(%rsp), %rax
movq %rax, 0xe28(%rsp)
movl $0x0, 0xddc(%rsp)
movl 0xddc(%rsp), %eax
cmpl 0x1ed8(%rsp), %eax
jge 0x1237b81
movq 0xe80(%rsp), %rax
movslq 0xddc(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xdd8(%rsp)
movl $0x0, 0xdd4(%rsp)
movl 0xdd4(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x1237b29
movq 0xe78(%rsp), %rdx
movslq 0xdd4(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xdd8(%rsp), %rsi
callq 0x1278090
movq 0xe28(%rsp), %rax
movslq 0xdd4(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xdd4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdd4(%rsp)
jmp 0x1237ac5
movl 0x1edc(%rsp), %ecx
movq 0xe78(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xe78(%rsp)
movl 0x1edc(%rsp), %ecx
movq 0xe28(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xe28(%rsp)
movl 0xddc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xddc(%rsp)
jmp 0x1237a88
jmp 0x1237b83
movl 0xe8c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xe8c(%rsp)
jmp 0x1237186
movl $0x0, 0x1f24(%rsp)
jmp 0x123b265
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movq 0x1ee0(%rsp), %rcx
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6f5a0
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f70(%rsp)
movq 0x1f70(%rsp), %rcx
movq %rcx, 0x1e0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1ef(%rsp)
je 0x1237c39
movq 0x1e0(%rsp), %rax
movq %rax, 0x2d78(%rsp)
movq 0x2d78(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1ef(%rsp)
movb 0x1ef(%rsp), %al
testb $0x1, %al
jne 0x1237c46
jmp 0x1237c56
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x123b265
movq 0x1f10(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1237d66
movl $0x0, 0xdd0(%rsp)
movl 0xdd0(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x1237d56
movq 0x1f18(%rsp), %rcx
movslq 0xdd0(%rsp), %rax
movq %rcx, 0x2c58(%rsp)
movq %rax, 0x2c50(%rsp)
movq 0x2c58(%rsp), %rax
movq (%rax), %rsi
movq 0x2c50(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1f10(%rsp), %rcx
movslq 0xdd0(%rsp), %rax
movq %rcx, 0x2c48(%rsp)
movq %rax, 0x2c40(%rsp)
movq 0x2c48(%rsp), %rax
movq (%rax), %rdx
movq 0x2c40(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x1278090
movq 0x1f08(%rsp), %rcx
movslq 0xdd0(%rsp), %rax
movq %rcx, 0x2cf8(%rsp)
movq %rax, 0x2cf0(%rsp)
movq 0x2cf8(%rsp), %rax
movq (%rax), %rax
movq 0x2cf0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xdd0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdd0(%rsp)
jmp 0x1237c73
movl $0x0, 0x1f24(%rsp)
jmp 0x123b265
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x12380bd
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movq 0x1ee0(%rsp), %rcx
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6f5a0
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f68(%rsp)
movq 0x1f68(%rsp), %rcx
movq %rcx, 0x1d0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1df(%rsp)
je 0x1237e08
movq 0x1d0(%rsp), %rax
movq %rax, 0x2d80(%rsp)
movq 0x2d80(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1df(%rsp)
movb 0x1df(%rsp), %al
testb $0x1, %al
jne 0x1237e15
jmp 0x1237e25
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x123b265
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1237f40
movq 0x1f10(%rsp), %rax
movq %rax, 0x2c38(%rsp)
movq $0x0, 0x2c30(%rsp)
movq 0x2c38(%rsp), %rax
movq (%rax), %rax
movq 0x2c30(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xdcc(%rsp)
movl $0x0, 0xdc8(%rsp)
movl 0xdc8(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x1237f30
movq 0x1f18(%rsp), %rcx
movslq 0xdc8(%rsp), %rax
movq %rcx, 0x2c28(%rsp)
movq %rax, 0x2c20(%rsp)
movq 0x2c28(%rsp), %rax
movq (%rax), %rsi
movq 0x2c20(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0xdcc(%rsp), %rdx
callq 0x1278090
movq 0x1f08(%rsp), %rcx
movslq 0xdc8(%rsp), %rax
movq %rcx, 0x2ce8(%rsp)
movq %rax, 0x2ce0(%rsp)
movq 0x2ce8(%rsp), %rax
movq (%rax), %rax
movq 0x2ce0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xdc8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdc8(%rsp)
jmp 0x1237e7f
movl $0x0, 0x1f24(%rsp)
jmp 0x123b265
movq 0x1f18(%rsp), %rax
movq %rax, 0x2348(%rsp)
movq 0x2348(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xdc0(%rsp)
movq 0x1f08(%rsp), %rax
movq %rax, 0x2a58(%rsp)
movq 0x2a58(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xdb8(%rsp)
movl $0x0, 0xdb4(%rsp)
movl 0xdb4(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jge 0x12380ad
movq 0x1f10(%rsp), %rcx
movslq 0xdb4(%rsp), %rax
movq %rcx, 0x2c18(%rsp)
movq %rax, 0x2c10(%rsp)
movq 0x2c18(%rsp), %rax
movq (%rax), %rax
movq 0x2c10(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xdb0(%rsp)
movl $0x0, 0xdac(%rsp)
movl 0xdac(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x1238055
movq 0xdc0(%rsp), %rsi
movslq 0xdac(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0xdb0(%rsp), %rdx
callq 0x1278090
movq 0xdb8(%rsp), %rax
movslq 0xdac(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xdac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdac(%rsp)
jmp 0x1237ff1
movl 0x1ef8(%rsp), %ecx
movq 0xdc0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xdc0(%rsp)
movl 0x1ef8(%rsp), %ecx
movq 0xdb8(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xdb8(%rsp)
movl 0xdb4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdb4(%rsp)
jmp 0x1237f91
movl $0x0, 0x1f24(%rsp)
jmp 0x123b265
jmp 0x123b256
movq 0x1f18(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x123b254
movq 0x1f18(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1239923
movq 0x1f10(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1238b45
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed4(%rsp), %ecx
movl 0x1ed0(%rsp), %r8d
movq 0x1ee0(%rsp), %r9
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6fb30
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f60(%rsp)
movq 0x1f60(%rsp), %rcx
movq %rcx, 0x1c0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1cf(%rsp)
je 0x123819b
movq 0x1c0(%rsp), %rax
movq %rax, 0x2d88(%rsp)
movq 0x2d88(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1cf(%rsp)
movb 0x1cf(%rsp), %al
testb $0x1, %al
jne 0x12381a8
jmp 0x12381b8
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x123b265
movq 0x1f18(%rsp), %rax
movq %rax, 0x2c08(%rsp)
movq $0x0, 0x2c00(%rsp)
movq 0x2c08(%rsp), %rax
movq (%rax), %rax
movq 0x2c00(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xda8(%rsp)
movl $0x0, 0xda4(%rsp)
movl 0xda4(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x1238b35
movq 0x1f10(%rsp), %rcx
movl 0xda4(%rsp), %eax
leaq 0xd50(%rsp), %rdx
movq %rdx, 0x2048(%rsp)
movq %rcx, 0x2040(%rsp)
movl %eax, 0x203c(%rsp)
movq 0x2040(%rsp), %rax
movq %rax, 0x1b8(%rsp)
movb $0x0, 0x203b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x203c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xd50(%rsp), %r10
movq %r10, 0x39c8(%rsp)
movl %r9d, 0x39c4(%rsp)
movl %r8d, 0x39c0(%rsp)
movl %edi, 0x39bc(%rsp)
movq %rsi, 0x39b0(%rsp)
movq %rdx, 0x39a8(%rsp)
movl %ecx, 0x39a4(%rsp)
movq %rax, 0x3998(%rsp)
movq 0x39c8(%rsp), %rcx
movq %rcx, 0x1b0(%rsp)
movq 0x39b0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x39a8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x39a4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3998(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x39c4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x39c0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x39bc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ab0(%rsp)
movl $0x10, 0x3aac(%rsp)
movq 0x3ab0(%rsp), %rax
movslq 0x3aac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3aac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x1b8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xd78(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12383d0
movq 0x1b8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd90(%rsp)
movb $0x1, 0x203b(%rsp)
testb $0x1, 0x203b(%rsp)
jne 0x123850b
leaq 0xd50(%rsp), %rax
movq %rax, 0x2540(%rsp)
movq 0x2540(%rsp), %rax
movq %rax, 0x4370(%rsp)
movq 0x4370(%rsp), %rax
movq %rax, 0x1a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12384ae
movq 0x1a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x436c(%rsp) # imm = 0xFFFFFFFF
movl 0x436c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4368(%rsp)
cmpl $0x1, 0x4368(%rsp)
jne 0x12384ae
movq 0x1a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123847f
movq 0x1a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123847d
jmp 0x12384ac
movq 0x1a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4648(%rsp)
cmpq $0x0, 0x4648(%rsp)
je 0x12384aa
movq 0x4648(%rsp), %rdi
callq 0x5f480
jmp 0x12384ac
jmp 0x12384ae
movq 0x1a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1238509
movq %rax, %rdi
callq 0x678a0
jmp 0x123850b
leaq 0xd50(%rsp), %rax
movq %rax, 0x2340(%rsp)
movq 0x2340(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x198(%rsp)
leaq 0xd50(%rsp), %rax
movq %rax, 0x26f0(%rsp)
movq 0x26f0(%rsp), %rax
movq %rax, 0x4010(%rsp)
movq 0x4010(%rsp), %rax
movq %rax, 0x1a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12385f6
movq 0x1a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x400c(%rsp) # imm = 0xFFFFFFFF
movl 0x400c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4008(%rsp)
cmpl $0x1, 0x4008(%rsp)
jne 0x12385f6
movq 0x1a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12385c7
movq 0x1a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12385c5
jmp 0x12385f4
movq 0x1a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47f8(%rsp)
cmpq $0x0, 0x47f8(%rsp)
je 0x12385f2
movq 0x47f8(%rsp), %rdi
callq 0x5f480
jmp 0x12385f4
jmp 0x12385f6
movq 0x1a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1238651
movq %rax, %rdi
callq 0x678a0
movq 0x198(%rsp), %rax
movq %rax, 0xd98(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0xda4(%rsp), %eax
leaq 0xd00(%rsp), %rdx
movq %rdx, 0x27a0(%rsp)
movq %rcx, 0x2798(%rsp)
movl %eax, 0x2794(%rsp)
movq 0x2798(%rsp), %rax
movq %rax, 0x190(%rsp)
movb $0x0, 0x2793(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2794(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xd00(%rsp), %r10
movq %r10, 0x3258(%rsp)
movl %r9d, 0x3254(%rsp)
movl %r8d, 0x3250(%rsp)
movl %edi, 0x324c(%rsp)
movq %rsi, 0x3240(%rsp)
movq %rdx, 0x3238(%rsp)
movl %ecx, 0x3234(%rsp)
movq %rax, 0x3228(%rsp)
movq 0x3258(%rsp), %rcx
movq %rcx, 0x188(%rsp)
movq 0x3240(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3238(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3234(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3228(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3254(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3250(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x324c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3cd0(%rsp)
movl $0x10, 0x3ccc(%rsp)
movq 0x3cd0(%rsp), %rax
movslq 0x3ccc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3ccc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x190(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xd28(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x123881d
movq 0x190(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd40(%rsp)
movb $0x1, 0x2793(%rsp)
testb $0x1, 0x2793(%rsp)
jne 0x1238958
leaq 0xd00(%rsp), %rax
movq %rax, 0x27a8(%rsp)
movq 0x27a8(%rsp), %rax
movq %rax, 0x3f60(%rsp)
movq 0x3f60(%rsp), %rax
movq %rax, 0x180(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12388fb
movq 0x180(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f5c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f5c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f58(%rsp)
cmpl $0x1, 0x3f58(%rsp)
jne 0x12388fb
movq 0x180(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12388cc
movq 0x180(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12388ca
jmp 0x12388f9
movq 0x180(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4850(%rsp)
cmpq $0x0, 0x4850(%rsp)
je 0x12388f7
movq 0x4850(%rsp), %rdi
callq 0x5f480
jmp 0x12388f9
jmp 0x12388fb
movq 0x180(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1238956
movq %rax, %rdi
callq 0x678a0
jmp 0x1238958
leaq 0xd00(%rsp), %rax
movq %rax, 0x2a50(%rsp)
movq 0x2a50(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x170(%rsp)
leaq 0xd00(%rsp), %rax
movq %rax, 0x26f8(%rsp)
movq 0x26f8(%rsp), %rax
movq %rax, 0x4000(%rsp)
movq 0x4000(%rsp), %rax
movq %rax, 0x178(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1238a43
movq 0x178(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ffc(%rsp) # imm = 0xFFFFFFFF
movl 0x3ffc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ff8(%rsp)
cmpl $0x1, 0x3ff8(%rsp)
jne 0x1238a43
movq 0x178(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1238a14
movq 0x178(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1238a12
jmp 0x1238a41
movq 0x178(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4800(%rsp)
cmpq $0x0, 0x4800(%rsp)
je 0x1238a3f
movq 0x4800(%rsp), %rdi
callq 0x5f480
jmp 0x1238a41
jmp 0x1238a43
movq 0x178(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1238a9e
movq %rax, %rdi
callq 0x678a0
movq 0x170(%rsp), %rax
movq %rax, 0xd48(%rsp)
movl $0x0, 0xcfc(%rsp)
movl 0xcfc(%rsp), %eax
cmpl 0x1ecc(%rsp), %eax
jge 0x1238b1d
movq 0xd98(%rsp), %rdx
movslq 0xcfc(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xda8(%rsp), %rsi
callq 0x1278090
movq 0xd48(%rsp), %rax
movslq 0xcfc(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xcfc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xcfc(%rsp)
jmp 0x1238ab9
jmp 0x1238b1f
movl 0xda4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xda4(%rsp)
jmp 0x1238200
movl $0x0, 0x1f24(%rsp)
jmp 0x123b265
movq 0x1f10(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1239598
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed0(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f58(%rsp)
movq 0x1f58(%rsp), %rcx
movq %rcx, 0x160(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x16f(%rsp)
je 0x1238bee
movq 0x160(%rsp), %rax
movq %rax, 0x2d90(%rsp)
movq 0x2d90(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x16f(%rsp)
movb 0x16f(%rsp), %al
testb $0x1, %al
jne 0x1238bfb
jmp 0x1238c0b
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x123b265
movq 0x1f18(%rsp), %rax
movq %rax, 0x2bf8(%rsp)
movq $0x0, 0x2bf0(%rsp)
movq 0x2bf8(%rsp), %rax
movq (%rax), %rax
movq 0x2bf0(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xcf8(%rsp)
movl $0x0, 0xcf4(%rsp)
movl 0xcf4(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x1239588
movq 0x1f10(%rsp), %rcx
movl 0xcf4(%rsp), %eax
leaq 0xca0(%rsp), %rdx
movq %rdx, 0x2030(%rsp)
movq %rcx, 0x2028(%rsp)
movl %eax, 0x2024(%rsp)
movq 0x2028(%rsp), %rax
movq %rax, 0x158(%rsp)
movb $0x0, 0x2023(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2024(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xca0(%rsp), %r10
movq %r10, 0x3a00(%rsp)
movl %r9d, 0x39fc(%rsp)
movl %r8d, 0x39f8(%rsp)
movl %edi, 0x39f4(%rsp)
movq %rsi, 0x39e8(%rsp)
movq %rdx, 0x39e0(%rsp)
movl %ecx, 0x39dc(%rsp)
movq %rax, 0x39d0(%rsp)
movq 0x3a00(%rsp), %rcx
movq %rcx, 0x150(%rsp)
movq 0x39e8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x39e0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x39dc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x39d0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x39fc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x39f8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x39f4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3aa0(%rsp)
movl $0x10, 0x3a9c(%rsp)
movq 0x3aa0(%rsp), %rax
movslq 0x3a9c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3a9c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x158(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xcc8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1238e23
movq 0x158(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xce0(%rsp)
movb $0x1, 0x2023(%rsp)
testb $0x1, 0x2023(%rsp)
jne 0x1238f5e
leaq 0xca0(%rsp), %rax
movq %rax, 0x2548(%rsp)
movq 0x2548(%rsp), %rax
movq %rax, 0x4360(%rsp)
movq 0x4360(%rsp), %rax
movq %rax, 0x148(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1238f01
movq 0x148(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x435c(%rsp) # imm = 0xFFFFFFFF
movl 0x435c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4358(%rsp)
cmpl $0x1, 0x4358(%rsp)
jne 0x1238f01
movq 0x148(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1238ed2
movq 0x148(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1238ed0
jmp 0x1238eff
movq 0x148(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4650(%rsp)
cmpq $0x0, 0x4650(%rsp)
je 0x1238efd
movq 0x4650(%rsp), %rdi
callq 0x5f480
jmp 0x1238eff
jmp 0x1238f01
movq 0x148(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1238f5c
movq %rax, %rdi
callq 0x678a0
jmp 0x1238f5e
leaq 0xca0(%rsp), %rax
movq %rax, 0x2338(%rsp)
movq 0x2338(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x138(%rsp)
leaq 0xca0(%rsp), %rax
movq %rax, 0x2700(%rsp)
movq 0x2700(%rsp), %rax
movq %rax, 0x3ff0(%rsp)
movq 0x3ff0(%rsp), %rax
movq %rax, 0x140(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1239049
movq 0x140(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fec(%rsp) # imm = 0xFFFFFFFF
movl 0x3fec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fe8(%rsp)
cmpl $0x1, 0x3fe8(%rsp)
jne 0x1239049
movq 0x140(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123901a
movq 0x140(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1239018
jmp 0x1239047
movq 0x140(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4808(%rsp)
cmpq $0x0, 0x4808(%rsp)
je 0x1239045
movq 0x4808(%rsp), %rdi
callq 0x5f480
jmp 0x1239047
jmp 0x1239049
movq 0x140(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12390a4
movq %rax, %rdi
callq 0x678a0
movq 0x138(%rsp), %rax
movq %rax, 0xce8(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0xcf4(%rsp), %eax
leaq 0xc50(%rsp), %rdx
movq %rdx, 0x2780(%rsp)
movq %rcx, 0x2778(%rsp)
movl %eax, 0x2774(%rsp)
movq 0x2778(%rsp), %rax
movq %rax, 0x130(%rsp)
movb $0x0, 0x2773(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2774(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xc50(%rsp), %r10
movq %r10, 0x3290(%rsp)
movl %r9d, 0x328c(%rsp)
movl %r8d, 0x3288(%rsp)
movl %edi, 0x3284(%rsp)
movq %rsi, 0x3278(%rsp)
movq %rdx, 0x3270(%rsp)
movl %ecx, 0x326c(%rsp)
movq %rax, 0x3260(%rsp)
movq 0x3290(%rsp), %rcx
movq %rcx, 0x128(%rsp)
movq 0x3278(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3270(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x326c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3260(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x328c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3288(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3284(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3cc0(%rsp)
movl $0x10, 0x3cbc(%rsp)
movq 0x3cc0(%rsp), %rax
movslq 0x3cbc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cbc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x130(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc78(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1239270
movq 0x130(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xc90(%rsp)
movb $0x1, 0x2773(%rsp)
testb $0x1, 0x2773(%rsp)
jne 0x12393ab
leaq 0xc50(%rsp), %rax
movq %rax, 0x2788(%rsp)
movq 0x2788(%rsp), %rax
movq %rax, 0x3f70(%rsp)
movq 0x3f70(%rsp), %rax
movq %rax, 0x120(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123934e
movq 0x120(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f6c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f6c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f68(%rsp)
cmpl $0x1, 0x3f68(%rsp)
jne 0x123934e
movq 0x120(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123931f
movq 0x120(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123931d
jmp 0x123934c
movq 0x120(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4848(%rsp)
cmpq $0x0, 0x4848(%rsp)
je 0x123934a
movq 0x4848(%rsp), %rdi
callq 0x5f480
jmp 0x123934c
jmp 0x123934e
movq 0x120(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12393a9
movq %rax, %rdi
callq 0x678a0
jmp 0x12393ab
leaq 0xc50(%rsp), %rax
movq %rax, 0x2a48(%rsp)
movq 0x2a48(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x110(%rsp)
leaq 0xc50(%rsp), %rax
movq %rax, 0x2708(%rsp)
movq 0x2708(%rsp), %rax
movq %rax, 0x3fe0(%rsp)
movq 0x3fe0(%rsp), %rax
movq %rax, 0x118(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1239496
movq 0x118(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fdc(%rsp) # imm = 0xFFFFFFFF
movl 0x3fdc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fd8(%rsp)
cmpl $0x1, 0x3fd8(%rsp)
jne 0x1239496
movq 0x118(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1239467
movq 0x118(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1239465
jmp 0x1239494
movq 0x118(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4810(%rsp)
cmpq $0x0, 0x4810(%rsp)
je 0x1239492
movq 0x4810(%rsp), %rdi
callq 0x5f480
jmp 0x1239494
jmp 0x1239496
movq 0x118(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12394f1
movq %rax, %rdi
callq 0x678a0
movq 0x110(%rsp), %rax
movq %rax, 0xc98(%rsp)
movl $0x0, 0xc4c(%rsp)
movl 0xc4c(%rsp), %eax
cmpl 0x1ecc(%rsp), %eax
jge 0x1239570
movq 0xce8(%rsp), %rdx
movslq 0xc4c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xcf8(%rsp), %rsi
callq 0x1278090
movq 0xc98(%rsp), %rax
movslq 0xc4c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xc4c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xc4c(%rsp)
jmp 0x123950c
jmp 0x1239572
movl 0xcf4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xcf4(%rsp)
jmp 0x1238c53
movl $0x0, 0x1f24(%rsp)
jmp 0x123b265
movq 0x1f10(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1239760
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movq 0x1ee0(%rsp), %rcx
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6f5a0
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f50(%rsp)
movq 0x1f50(%rsp), %rcx
movq %rcx, 0x100(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x10f(%rsp)
je 0x123963a
movq 0x100(%rsp), %rax
movq %rax, 0x2d98(%rsp)
movq 0x2d98(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x10f(%rsp)
movb 0x10f(%rsp), %al
testb $0x1, %al
jne 0x1239647
jmp 0x1239657
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x123b265
movq 0x1f18(%rsp), %rax
movq %rax, 0x2be8(%rsp)
movq $0x0, 0x2be0(%rsp)
movq 0x2be8(%rsp), %rax
movq (%rax), %rax
movq 0x2be0(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xc48(%rsp)
movl $0x0, 0xc44(%rsp)
movl 0xc44(%rsp), %eax
cmpl 0x1ecc(%rsp), %eax
jge 0x1239750
movq 0x1f10(%rsp), %rcx
movslq 0xc44(%rsp), %rax
movq %rcx, 0x2bd8(%rsp)
movq %rax, 0x2bd0(%rsp)
movq 0x2bd8(%rsp), %rax
movq (%rax), %rdx
movq 0x2bd0(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xc48(%rsp), %rsi
callq 0x1278090
movq 0x1f08(%rsp), %rcx
movslq 0xc44(%rsp), %rax
movq %rcx, 0x2cd8(%rsp)
movq %rax, 0x2cd0(%rsp)
movq 0x2cd8(%rsp), %rax
movq (%rax), %rax
movq 0x2cd0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xc44(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xc44(%rsp)
jmp 0x123969f
movl $0x0, 0x1f24(%rsp)
jmp 0x123b265
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1239921
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movq 0x1ee0(%rsp), %rdx
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rcx
callq 0x6f320
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f48(%rsp)
movq 0x1f48(%rsp), %rcx
movq %rcx, 0xf0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xff(%rsp)
je 0x12397fb
movq 0xf0(%rsp), %rax
movq %rax, 0x2da0(%rsp)
movq 0x2da0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xff(%rsp)
movb 0xff(%rsp), %al
testb $0x1, %al
jne 0x1239808
jmp 0x1239818
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x123b265
movq 0x1f18(%rsp), %rax
movq %rax, 0x2bc8(%rsp)
movq $0x0, 0x2bc0(%rsp)
movq 0x2bc8(%rsp), %rax
movq (%rax), %rax
movq 0x2bc0(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xc40(%rsp)
movl $0x0, 0xc3c(%rsp)
movl 0xc3c(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x1239911
movq 0x1f10(%rsp), %rcx
movslq 0xc3c(%rsp), %rax
movq %rcx, 0x2bb8(%rsp)
movq %rax, 0x2bb0(%rsp)
movq 0x2bb8(%rsp), %rax
movq (%rax), %rdx
movq 0x2bb0(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xc40(%rsp), %rsi
callq 0x1278090
movq 0x1f08(%rsp), %rcx
movslq 0xc3c(%rsp), %rax
movq %rcx, 0x2cc8(%rsp)
movq %rax, 0x2cc0(%rsp)
movq 0x2cc8(%rsp), %rax
movq (%rax), %rax
movq 0x2cc0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xc3c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xc3c(%rsp)
jmp 0x1239860
movl $0x0, 0x1f24(%rsp)
jmp 0x123b265
jmp 0x1239923
movq 0x1f10(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x123a386
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed4(%rsp), %ecx
movl 0x1ed0(%rsp), %r8d
movq 0x1ee0(%rsp), %r9
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6fb30
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f40(%rsp)
movq 0x1f40(%rsp), %rcx
movq %rcx, 0xe0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xef(%rsp)
je 0x12399d8
movq 0xe0(%rsp), %rax
movq %rax, 0x2da8(%rsp)
movq 0x2da8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xef(%rsp)
movb 0xef(%rsp), %al
testb $0x1, %al
jne 0x12399e5
jmp 0x12399f5
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x123b265
movl $0x0, 0xc38(%rsp)
movl 0xc38(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x123a376
movq 0x1f18(%rsp), %rcx
movslq 0xc38(%rsp), %rax
movq %rcx, 0x2ba8(%rsp)
movq %rax, 0x2ba0(%rsp)
movq 0x2ba8(%rsp), %rax
movq (%rax), %rax
movq 0x2ba0(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xc34(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0xc38(%rsp), %eax
leaq 0xbe0(%rsp), %rdx
movq %rdx, 0x2018(%rsp)
movq %rcx, 0x2010(%rsp)
movl %eax, 0x200c(%rsp)
movq 0x2010(%rsp), %rax
movq %rax, 0xd8(%rsp)
movb $0x0, 0x200b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x200c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xbe0(%rsp), %r10
movq %r10, 0x3a38(%rsp)
movl %r9d, 0x3a34(%rsp)
movl %r8d, 0x3a30(%rsp)
movl %edi, 0x3a2c(%rsp)
movq %rsi, 0x3a20(%rsp)
movq %rdx, 0x3a18(%rsp)
movl %ecx, 0x3a14(%rsp)
movq %rax, 0x3a08(%rsp)
movq 0x3a38(%rsp), %rcx
movq %rcx, 0xd0(%rsp)
movq 0x3a20(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3a18(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3a14(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3a08(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3a34(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3a30(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3a2c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3a90(%rsp)
movl $0x10, 0x3a8c(%rsp)
movq 0x3a90(%rsp), %rax
movslq 0x3a8c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3a8c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xd8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc08(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1239c11
movq 0xd8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xc20(%rsp)
movb $0x1, 0x200b(%rsp)
testb $0x1, 0x200b(%rsp)
jne 0x1239d4c
leaq 0xbe0(%rsp), %rax
movq %rax, 0x2550(%rsp)
movq 0x2550(%rsp), %rax
movq %rax, 0x4350(%rsp)
movq 0x4350(%rsp), %rax
movq %rax, 0xc8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1239cef
movq 0xc8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x434c(%rsp) # imm = 0xFFFFFFFF
movl 0x434c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4348(%rsp)
cmpl $0x1, 0x4348(%rsp)
jne 0x1239cef
movq 0xc8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1239cc0
movq 0xc8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1239cbe
jmp 0x1239ced
movq 0xc8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4658(%rsp)
cmpq $0x0, 0x4658(%rsp)
je 0x1239ceb
movq 0x4658(%rsp), %rdi
callq 0x5f480
jmp 0x1239ced
jmp 0x1239cef
movq 0xc8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1239d4a
movq %rax, %rdi
callq 0x678a0
jmp 0x1239d4c
leaq 0xbe0(%rsp), %rax
movq %rax, 0x2330(%rsp)
movq 0x2330(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xb8(%rsp)
leaq 0xbe0(%rsp), %rax
movq %rax, 0x2710(%rsp)
movq 0x2710(%rsp), %rax
movq %rax, 0x3fd0(%rsp)
movq 0x3fd0(%rsp), %rax
movq %rax, 0xc0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1239e37
movq 0xc0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fcc(%rsp) # imm = 0xFFFFFFFF
movl 0x3fcc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fc8(%rsp)
cmpl $0x1, 0x3fc8(%rsp)
jne 0x1239e37
movq 0xc0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1239e08
movq 0xc0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1239e06
jmp 0x1239e35
movq 0xc0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4818(%rsp)
cmpq $0x0, 0x4818(%rsp)
je 0x1239e33
movq 0x4818(%rsp), %rdi
callq 0x5f480
jmp 0x1239e35
jmp 0x1239e37
movq 0xc0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1239e92
movq %rax, %rdi
callq 0x678a0
movq 0xb8(%rsp), %rax
movq %rax, 0xc28(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0xc38(%rsp), %eax
leaq 0xb90(%rsp), %rdx
movq %rdx, 0x2760(%rsp)
movq %rcx, 0x2758(%rsp)
movl %eax, 0x2754(%rsp)
movq 0x2758(%rsp), %rax
movq %rax, 0xb0(%rsp)
movb $0x0, 0x2753(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2754(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xb90(%rsp), %r10
movq %r10, 0x32c8(%rsp)
movl %r9d, 0x32c4(%rsp)
movl %r8d, 0x32c0(%rsp)
movl %edi, 0x32bc(%rsp)
movq %rsi, 0x32b0(%rsp)
movq %rdx, 0x32a8(%rsp)
movl %ecx, 0x32a4(%rsp)
movq %rax, 0x3298(%rsp)
movq 0x32c8(%rsp), %rcx
movq %rcx, 0xa8(%rsp)
movq 0x32b0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x32a8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x32a4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3298(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x32c4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x32c0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x32bc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3cb0(%rsp)
movl $0x10, 0x3cac(%rsp)
movq 0x3cb0(%rsp), %rax
movslq 0x3cac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xb0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xbb8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x123a05e
movq 0xb0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xbd0(%rsp)
movb $0x1, 0x2753(%rsp)
testb $0x1, 0x2753(%rsp)
jne 0x123a199
leaq 0xb90(%rsp), %rax
movq %rax, 0x2768(%rsp)
movq 0x2768(%rsp), %rax
movq %rax, 0x3f80(%rsp)
movq 0x3f80(%rsp), %rax
movq %rax, 0xa0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123a13c
movq 0xa0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f7c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f7c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f78(%rsp)
cmpl $0x1, 0x3f78(%rsp)
jne 0x123a13c
movq 0xa0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123a10d
movq 0xa0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123a10b
jmp 0x123a13a
movq 0xa0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4840(%rsp)
cmpq $0x0, 0x4840(%rsp)
je 0x123a138
movq 0x4840(%rsp), %rdi
callq 0x5f480
jmp 0x123a13a
jmp 0x123a13c
movq 0xa0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123a197
movq %rax, %rdi
callq 0x678a0
jmp 0x123a199
leaq 0xb90(%rsp), %rax
movq %rax, 0x2a40(%rsp)
movq 0x2a40(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x90(%rsp)
leaq 0xb90(%rsp), %rax
movq %rax, 0x2718(%rsp)
movq 0x2718(%rsp), %rax
movq %rax, 0x3fc0(%rsp)
movq 0x3fc0(%rsp), %rax
movq %rax, 0x98(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123a284
movq 0x98(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fbc(%rsp) # imm = 0xFFFFFFFF
movl 0x3fbc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fb8(%rsp)
cmpl $0x1, 0x3fb8(%rsp)
jne 0x123a284
movq 0x98(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123a255
movq 0x98(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123a253
jmp 0x123a282
movq 0x98(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4820(%rsp)
cmpq $0x0, 0x4820(%rsp)
je 0x123a280
movq 0x4820(%rsp), %rdi
callq 0x5f480
jmp 0x123a282
jmp 0x123a284
movq 0x98(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123a2df
movq %rax, %rdi
callq 0x678a0
movq 0x90(%rsp), %rax
movq %rax, 0xbd8(%rsp)
movl $0x0, 0xb8c(%rsp)
movl 0xb8c(%rsp), %eax
cmpl 0x1ecc(%rsp), %eax
jge 0x123a35e
movq 0xc28(%rsp), %rdx
movslq 0xb8c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xc34(%rsp), %rsi
callq 0x1278090
movq 0xbd8(%rsp), %rax
movslq 0xb8c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xb8c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xb8c(%rsp)
jmp 0x123a2fa
jmp 0x123a360
movl 0xc38(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xc38(%rsp)
jmp 0x1239a00
movl $0x0, 0x1f24(%rsp)
jmp 0x123b265
movq 0x1f10(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x123ad71
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed0(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f38(%rsp)
movq 0x1f38(%rsp), %rcx
movq %rcx, 0x80(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x8f(%rsp)
je 0x123a42f
movq 0x80(%rsp), %rax
movq %rax, 0x2db0(%rsp)
movq 0x2db0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x8f(%rsp)
movb 0x8f(%rsp), %al
testb $0x1, %al
jne 0x123a43c
jmp 0x123a44c
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x123b265
movl $0x0, 0xb88(%rsp)
movl 0xb88(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x123ad61
movq 0x1f18(%rsp), %rcx
movslq 0xb88(%rsp), %rax
movq %rcx, 0x2b98(%rsp)
movq %rax, 0x2b90(%rsp)
movq 0x2b98(%rsp), %rax
movq (%rax), %rax
movq 0x2b90(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xb84(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0xb88(%rsp), %eax
leaq 0xb30(%rsp), %rdx
movq %rdx, 0x2000(%rsp)
movq %rcx, 0x1ff8(%rsp)
movl %eax, 0x1ff4(%rsp)
movq 0x1ff8(%rsp), %rax
movq %rax, 0x78(%rsp)
movb $0x0, 0x1ff3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1ff4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xb30(%rsp), %r10
movq %r10, 0x3a70(%rsp)
movl %r9d, 0x3a6c(%rsp)
movl %r8d, 0x3a68(%rsp)
movl %edi, 0x3a64(%rsp)
movq %rsi, 0x3a58(%rsp)
movq %rdx, 0x3a50(%rsp)
movl %ecx, 0x3a4c(%rsp)
movq %rax, 0x3a40(%rsp)
movq 0x3a70(%rsp), %rcx
movq %rcx, 0x70(%rsp)
movq 0x3a58(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3a50(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3a4c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3a40(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3a6c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3a68(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3a64(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3a80(%rsp)
movl $0x10, 0x3a7c(%rsp)
movq 0x3a80(%rsp), %rax
movslq 0x3a7c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3a7c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x78(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xb58(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x123a65c
movq 0x78(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xb70(%rsp)
movb $0x1, 0x1ff3(%rsp)
testb $0x1, 0x1ff3(%rsp)
jne 0x123a785
leaq 0xb30(%rsp), %rax
movq %rax, 0x2558(%rsp)
movq 0x2558(%rsp), %rax
movq %rax, 0x4340(%rsp)
movq 0x4340(%rsp), %rax
movq %rax, 0x68(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123a72b
movq 0x68(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x433c(%rsp) # imm = 0xFFFFFFFF
movl 0x433c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4338(%rsp)
cmpl $0x1, 0x4338(%rsp)
jne 0x123a72b
movq 0x68(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123a6ff
movq 0x68(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123a6fd
jmp 0x123a729
movq 0x68(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4660(%rsp)
cmpq $0x0, 0x4660(%rsp)
je 0x123a727
movq 0x4660(%rsp), %rdi
callq 0x5f480
jmp 0x123a729
jmp 0x123a72b
movq 0x68(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123a783
movq %rax, %rdi
callq 0x678a0
jmp 0x123a785
leaq 0xb30(%rsp), %rax
movq %rax, 0x2328(%rsp)
movq 0x2328(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x58(%rsp)
leaq 0xb30(%rsp), %rax
movq %rax, 0x2720(%rsp)
movq 0x2720(%rsp), %rax
movq %rax, 0x3fb0(%rsp)
movq 0x3fb0(%rsp), %rax
movq %rax, 0x60(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123a85e
movq 0x60(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fac(%rsp) # imm = 0xFFFFFFFF
movl 0x3fac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fa8(%rsp)
cmpl $0x1, 0x3fa8(%rsp)
jne 0x123a85e
movq 0x60(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123a832
movq 0x60(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123a830
jmp 0x123a85c
movq 0x60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4828(%rsp)
cmpq $0x0, 0x4828(%rsp)
je 0x123a85a
movq 0x4828(%rsp), %rdi
callq 0x5f480
jmp 0x123a85c
jmp 0x123a85e
movq 0x60(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123a8b6
movq %rax, %rdi
callq 0x678a0
movq 0x58(%rsp), %rax
movq %rax, 0xb78(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0xb88(%rsp), %eax
leaq 0xae0(%rsp), %rdx
movq %rdx, 0x2740(%rsp)
movq %rcx, 0x2738(%rsp)
movl %eax, 0x2734(%rsp)
movq 0x2738(%rsp), %rax
movq %rax, 0x50(%rsp)
movb $0x0, 0x2733(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2734(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xae0(%rsp), %r10
movq %r10, 0x3300(%rsp)
movl %r9d, 0x32fc(%rsp)
movl %r8d, 0x32f8(%rsp)
movl %edi, 0x32f4(%rsp)
movq %rsi, 0x32e8(%rsp)
movq %rdx, 0x32e0(%rsp)
movl %ecx, 0x32dc(%rsp)
movq %rax, 0x32d0(%rsp)
movq 0x3300(%rsp), %rcx
movq %rcx, 0x48(%rsp)
movq 0x32e8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x32e0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x32dc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x32d0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x32fc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x32f8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x32f4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ca0(%rsp)
movl $0x10, 0x3c9c(%rsp)
movq 0x3ca0(%rsp), %rax
movslq 0x3c9c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c9c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x50(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xb08(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x123aa73
movq 0x50(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xb20(%rsp)
movb $0x1, 0x2733(%rsp)
testb $0x1, 0x2733(%rsp)
jne 0x123ab9c
leaq 0xae0(%rsp), %rax
movq %rax, 0x2748(%rsp)
movq 0x2748(%rsp), %rax
movq %rax, 0x3f90(%rsp)
movq 0x3f90(%rsp), %rax
movq %rax, 0x40(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123ab42
movq 0x40(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f8c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f8c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f88(%rsp)
cmpl $0x1, 0x3f88(%rsp)
jne 0x123ab42
movq 0x40(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123ab16
movq 0x40(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123ab14
jmp 0x123ab40
movq 0x40(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4838(%rsp)
cmpq $0x0, 0x4838(%rsp)
je 0x123ab3e
movq 0x4838(%rsp), %rdi
callq 0x5f480
jmp 0x123ab40
jmp 0x123ab42
movq 0x40(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123ab9a
movq %rax, %rdi
callq 0x678a0
jmp 0x123ab9c
leaq 0xae0(%rsp), %rax
movq %rax, 0x2a38(%rsp)
movq 0x2a38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x30(%rsp)
leaq 0xae0(%rsp), %rax
movq %rax, 0x2728(%rsp)
movq 0x2728(%rsp), %rax
movq %rax, 0x3fa0(%rsp)
movq 0x3fa0(%rsp), %rax
movq %rax, 0x38(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123ac75
movq 0x38(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f9c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f9c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f98(%rsp)
cmpl $0x1, 0x3f98(%rsp)
jne 0x123ac75
movq 0x38(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123ac49
movq 0x38(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123ac47
jmp 0x123ac73
movq 0x38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4830(%rsp)
cmpq $0x0, 0x4830(%rsp)
je 0x123ac71
movq 0x4830(%rsp), %rdi
callq 0x5f480
jmp 0x123ac73
jmp 0x123ac75
movq 0x38(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123accd
movq %rax, %rdi
callq 0x678a0
movq 0x30(%rsp), %rax
movq %rax, 0xb28(%rsp)
movl $0x0, 0xadc(%rsp)
movl 0xadc(%rsp), %eax
cmpl 0x1ecc(%rsp), %eax
jge 0x123ad49
movq 0xb78(%rsp), %rdx
movslq 0xadc(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xb84(%rsp), %rsi
callq 0x1278090
movq 0xb28(%rsp), %rax
movslq 0xadc(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xadc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xadc(%rsp)
jmp 0x123ace5
jmp 0x123ad4b
movl 0xb88(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xb88(%rsp)
jmp 0x123a457
movl $0x0, 0x1f24(%rsp)
jmp 0x123b265
movq 0x1f10(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x123af9e
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movq 0x1ee0(%rsp), %rcx
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6f5a0
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f30(%rsp)
movq 0x1f30(%rsp), %rcx
movq %rcx, 0x20(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x2f(%rsp)
je 0x123ae07
movq 0x20(%rsp), %rax
movq %rax, 0x2db8(%rsp)
movq 0x2db8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x2f(%rsp)
movb 0x2f(%rsp), %al
testb $0x1, %al
jne 0x123ae11
jmp 0x123ae21
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x123b265
movq 0x1f10(%rsp), %rax
movq %rax, 0x2320(%rsp)
movq 0x2320(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xad0(%rsp)
movq 0x1f08(%rsp), %rax
movq %rax, 0x2a30(%rsp)
movq 0x2a30(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xac8(%rsp)
movl $0x0, 0xac4(%rsp)
movl 0xac4(%rsp), %eax
cmpl 0x1ed8(%rsp), %eax
jge 0x123af8e
movq 0x1f18(%rsp), %rcx
movslq 0xac4(%rsp), %rax
movq %rcx, 0x2b88(%rsp)
movq %rax, 0x2b80(%rsp)
movq 0x2b88(%rsp), %rax
movq (%rax), %rax
movq 0x2b80(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xac0(%rsp)
movl $0x0, 0xabc(%rsp)
movl 0xabc(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x123af36
movq 0xad0(%rsp), %rdx
movslq 0xabc(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xac0(%rsp), %rsi
callq 0x1278090
movq 0xac8(%rsp), %rax
movslq 0xabc(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xabc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xabc(%rsp)
jmp 0x123aed2
movl 0x1edc(%rsp), %ecx
movq 0xad0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xad0(%rsp)
movl 0x1edc(%rsp), %ecx
movq 0xac8(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xac8(%rsp)
movl 0xac4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xac4(%rsp)
jmp 0x123ae72
movl $0x0, 0x1f24(%rsp)
jmp 0x123b265
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x123b252
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movq 0x1ee0(%rsp), %rdx
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rcx
callq 0x6f320
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f28(%rsp)
movq 0x1f28(%rsp), %rcx
movq %rcx, 0x10(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1f(%rsp)
je 0x123b02d
movq 0x10(%rsp), %rax
movq %rax, 0x2dc0(%rsp)
movq 0x2dc0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1f(%rsp)
movb 0x1f(%rsp), %al
testb $0x1, %al
jne 0x123b037
jmp 0x123b047
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x123b265
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x123b162
movq 0x1f10(%rsp), %rax
movq %rax, 0x2b78(%rsp)
movq $0x0, 0x2b70(%rsp)
movq 0x2b78(%rsp), %rax
movq (%rax), %rax
movq 0x2b70(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xab8(%rsp)
movl $0x0, 0xab4(%rsp)
movl 0xab4(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x123b152
movq 0x1f18(%rsp), %rcx
movslq 0xab4(%rsp), %rax
movq %rcx, 0x2b68(%rsp)
movq %rax, 0x2b60(%rsp)
movq 0x2b68(%rsp), %rax
movq (%rax), %rsi
movq 0x2b60(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0xab8(%rsp), %rdx
callq 0x1278090
movq 0x1f08(%rsp), %rcx
movslq 0xab4(%rsp), %rax
movq %rcx, 0x2cb8(%rsp)
movq %rax, 0x2cb0(%rsp)
movq 0x2cb8(%rsp), %rax
movq (%rax), %rax
movq 0x2cb0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xab4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xab4(%rsp)
jmp 0x123b0a1
movl $0x0, 0x1f24(%rsp)
jmp 0x123b265
movl $0x0, 0xab0(%rsp)
movl 0xab0(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x123b250
movq 0x1f18(%rsp), %rcx
movslq 0xab0(%rsp), %rax
movq %rcx, 0x2b58(%rsp)
movq %rax, 0x2b50(%rsp)
movq 0x2b58(%rsp), %rax
movq (%rax), %rsi
movq 0x2b50(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1f10(%rsp), %rcx
movslq 0xab0(%rsp), %rax
movq %rcx, 0x2b48(%rsp)
movq %rax, 0x2b40(%rsp)
movq 0x2b48(%rsp), %rax
movq (%rax), %rdx
movq 0x2b40(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x1278090
movq 0x1f08(%rsp), %rcx
movslq 0xab0(%rsp), %rax
movq %rcx, 0x2ca8(%rsp)
movq %rax, 0x2ca0(%rsp)
movq 0x2ca8(%rsp), %rax
movq (%rax), %rax
movq 0x2ca0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xab0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xab0(%rsp)
jmp 0x123b16d
jmp 0x123b252
jmp 0x123b254
jmp 0x123b256
jmp 0x123b258
jmp 0x123b25a
movl $0x0, 0x1f24(%rsp)
movl 0x1f24(%rsp), %eax
addq $0x48f8, %rsp # imm = 0x48F8
retq
nopw %cs:(%rax,%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/binaryop.cpp
|
2,112,804
|
int ncnn::binary_op<ncnn::binary_op_max>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int size = w * h * d;
size_t elemsize = a.elemsize;
int w1 = b.w;
int h1 = b.h;
int d1 = b.d;
int channels1 = b.c;
int size1 = w1 * h1 * d1;
if (a.dims == 4)
{
if (b.dims == 4)
{
// type 29
c.create(w, h, d, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], ptr1[i]);
}
}
return 0;
}
c.create(w, h, d, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 3)
{
// type 28
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
for (int y = 0; y < h; y++)
{
const float b0 = ptr1[y];
for (int x = 0; x < w; x++)
{
outptr[x] = op(ptr[x], b0);
}
ptr += w;
outptr += w;
}
ptr1 += h;
}
}
return 0;
}
if (b.dims == 2)
{
// type 27
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
const float b0 = ptr1[z];
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
outptr[x] = op(ptr[x], b0);
}
ptr += w;
outptr += w;
}
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1)
{
// type 25
const float b0 = b[0];
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], b0);
}
}
return 0;
}
// type 26
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float b0 = b[q];
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], b0);
}
}
return 0;
}
}
else if (a.dims == 3)
{
if (b.dims == 4)
{
// type 23
c.create(w1, h1, d1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
for (int y = 0; y < h1; y++)
{
const float a0 = ptr[y];
for (int x = 0; x < w1; x++)
{
outptr[x] = op(a0, ptr1[x]);
}
ptr1 += w1;
outptr += w1;
}
ptr += h1;
}
}
return 0;
}
if (b.dims == 3)
{
if (w1 == 1 && h1 == 1 && channels1 == channels)
{
// special type 1
c.create(w, h, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* b0 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], b0[0]);
}
}
return 0;
}
if (w1 == w && h1 == h && channels1 == 1)
{
// special type 2
c.create(w, h, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b;
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], ptr1[i]);
}
}
return 0;
}
if (w == 1 && h == 1 && channels1 == channels)
{
// special type 3
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* a0 = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
outptr[i] = op(a0[0], ptr1[i]);
}
}
return 0;
}
if (w1 == w && h1 == h && channels == 1)
{
// special type 4
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a;
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
outptr[i] = op(ptr[i], ptr1[i]);
}
}
return 0;
}
if (w != 1 && w1 == 1 && h1 == h && channels1 == channels)
{
// special type 5
c.create(w, h, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
const float b0 = ptr1[y];
for (int x = 0; x < w; x++)
{
outptr[x] = op(ptr[x], b0);
}
ptr += w;
outptr += w;
}
}
return 0;
}
if (w1 == w && h != 1 && h1 == 1 && channels1 == channels)
{
// special type 6
c.create(w, h, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
outptr[x] = op(ptr[x], ptr1[x]);
}
ptr += w;
outptr += w;
}
}
return 0;
}
if (w1 != 1 && w == 1 && h1 == h && channels1 == channels)
{
// special type 7
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
const float a0 = ptr[y];
for (int x = 0; x < w1; x++)
{
outptr[x] = op(a0, ptr1[x]);
}
ptr1 += w1;
outptr += w1;
}
}
return 0;
}
if (w1 == w && h1 != 1 && h == 1 && channels1 == channels)
{
// special type 8
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
outptr[x] = op(ptr[x], ptr1[x]);
}
ptr1 += w1;
outptr += w1;
}
}
return 0;
}
// type 19
c.create(w, h, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], ptr1[i]);
}
}
return 0;
}
c.create(w, h, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 18
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
const float b0 = ptr1[y];
for (int x = 0; x < w; x++)
{
outptr[x] = op(ptr[x], b0);
}
ptr += w;
outptr += w;
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1)
{
// type 16
const float b0 = b[0];
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], b0);
}
}
return 0;
}
// type 17
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float b0 = b[q];
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], b0);
}
}
return 0;
}
}
else if (a.dims == 2)
{
if (b.dims == 4)
{
// type 22
c.create(w1, h1, d1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
const float a0 = ptr[z];
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
outptr[x] = op(a0, ptr1[x]);
}
ptr1 += w1;
outptr += w1;
}
}
}
return 0;
}
if (b.dims == 3)
{
// type 14
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
const float a0 = ptr[y];
for (int x = 0; x < w1; x++)
{
outptr[x] = op(a0, ptr1[x]);
}
ptr1 += w1;
outptr += w1;
}
}
return 0;
}
c.create(w, h, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 13
for (int i = 0; i < size; i++)
{
c[i] = op(a[i], b[i]);
}
return 0;
}
if (b.dims == 1)
{
c.create(w, h, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1)
{
// type 11
const float b0 = b[0];
for (int i = 0; i < size; i++)
{
c[i] = op(a[i], b0);
}
return 0;
}
// type 12
const float* ptr = a;
float* outptr = c;
for (int y = 0; y < h; y++)
{
const float b0 = b[y];
for (int x = 0; x < w; x++)
{
outptr[x] = op(ptr[x], b0);
}
ptr += w;
outptr += w;
}
return 0;
}
}
else if (a.dims == 1)
{
if (a.w == 1)
{
if (b.dims == 4)
{
// type 20
c.create(w1, h1, d1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
const float a0 = a[0];
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
outptr[i] = op(a0, ptr1[i]);
}
}
return 0;
}
if (b.dims == 3)
{
// type 4
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
const float a0 = a[0];
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
outptr[i] = op(a0, ptr1[i]);
}
}
return 0;
}
if (b.dims == 2)
{
// type 3
c.create(w1, h1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
const float a0 = a[0];
for (int i = 0; i < size1; i++)
{
c[i] = op(a0, b[i]);
}
return 0;
}
if (b.dims == 1)
{
// type 2
c.create(w1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
const float a0 = a[0];
for (int i = 0; i < w1; i++)
{
c[i] = op(a0, b[i]);
}
return 0;
}
}
if (b.dims == 4)
{
// type 21
c.create(w1, h1, d1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float a0 = a[q];
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
outptr[i] = op(a0, ptr1[i]);
}
}
return 0;
}
if (b.dims == 3)
{
// type 9
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float a0 = a[q];
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
outptr[i] = op(a0, ptr1[i]);
}
}
return 0;
}
if (b.dims == 2)
{
// type 8
c.create(w1, h1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
const float* ptr1 = b;
float* outptr = c;
for (int y = 0; y < h1; y++)
{
const float a0 = a[y];
for (int x = 0; x < w1; x++)
{
outptr[x] = op(a0, ptr1[x]);
}
ptr1 += w1;
outptr += w1;
}
return 0;
}
if (b.dims == 1)
{
c.create(w, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1)
{
// type 6
const float b0 = b[0];
for (int i = 0; i < w; i++)
{
c[i] = op(a[i], b0);
}
return 0;
}
// type 7
for (int i = 0; i < w; i++)
{
c[i] = op(a[i], b[i]);
}
}
}
return 0;
}
|
subq $0x48f8, %rsp # imm = 0x48F8
movq %rdi, 0x1f18(%rsp)
movq %rsi, 0x1f10(%rsp)
movq %rdx, 0x1f08(%rsp)
movq %rcx, 0x1f00(%rsp)
movq 0x1f18(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x1ef8(%rsp)
movq 0x1f18(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x1ef4(%rsp)
movq 0x1f18(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x1ef0(%rsp)
movq 0x1f18(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x1eec(%rsp)
movl 0x1ef8(%rsp), %eax
imull 0x1ef4(%rsp), %eax
imull 0x1ef0(%rsp), %eax
movl %eax, 0x1ee8(%rsp)
movq 0x1f18(%rsp), %rax
movq 0x10(%rax), %rax
movq %rax, 0x1ee0(%rsp)
movq 0x1f10(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x1edc(%rsp)
movq 0x1f10(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x1ed8(%rsp)
movq 0x1f10(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x1ed4(%rsp)
movq 0x1f10(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x1ed0(%rsp)
movl 0x1edc(%rsp), %eax
imull 0x1ed8(%rsp), %eax
imull 0x1ed4(%rsp), %eax
movl %eax, 0x1ecc(%rsp)
movq 0x1f18(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x123ef2f
movq 0x1f10(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x123c217
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1ef0(%rsp), %ecx
movl 0x1eec(%rsp), %r8d
movq 0x1ee0(%rsp), %r9
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6fb30
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fe8(%rsp)
movq 0x1fe8(%rsp), %rcx
movq %rcx, 0xaa0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xaaf(%rsp)
je 0x123b44e
movq 0xaa0(%rsp), %rax
movq %rax, 0x2d00(%rsp)
movq 0x2d00(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xaaf(%rsp)
movb 0xaaf(%rsp), %al
testb $0x1, %al
jne 0x123b45b
jmp 0x123b46b
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x124e6a5
movl $0x0, 0x1ec8(%rsp)
movl 0x1ec8(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x123c207
movq 0x1f18(%rsp), %rcx
movl 0x1ec8(%rsp), %eax
leaq 0x1e78(%rsp), %rdx
movq %rdx, 0x2318(%rsp)
movq %rcx, 0x2310(%rsp)
movl %eax, 0x230c(%rsp)
movq 0x2310(%rsp), %rax
movq %rax, 0xa98(%rsp)
movb $0x0, 0x230b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x230c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1e78(%rsp), %r10
movq %r10, 0x3338(%rsp)
movl %r9d, 0x3334(%rsp)
movl %r8d, 0x3330(%rsp)
movl %edi, 0x332c(%rsp)
movq %rsi, 0x3320(%rsp)
movq %rdx, 0x3318(%rsp)
movl %ecx, 0x3314(%rsp)
movq %rax, 0x3308(%rsp)
movq 0x3338(%rsp), %rcx
movq %rcx, 0xa90(%rsp)
movq 0x3320(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3318(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3314(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3308(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3334(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3330(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x332c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c90(%rsp)
movl $0x10, 0x3c8c(%rsp)
movq 0x3c90(%rsp), %rax
movslq 0x3c8c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c8c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xa98(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1ea0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x123b646
movq 0xa98(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1eb8(%rsp)
movb $0x1, 0x230b(%rsp)
testb $0x1, 0x230b(%rsp)
jne 0x123b781
leaq 0x1e78(%rsp), %rax
movq %rax, 0x2450(%rsp)
movq 0x2450(%rsp), %rax
movq %rax, 0x4550(%rsp)
movq 0x4550(%rsp), %rax
movq %rax, 0xa88(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123b724
movq 0xa88(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x454c(%rsp) # imm = 0xFFFFFFFF
movl 0x454c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4548(%rsp)
cmpl $0x1, 0x4548(%rsp)
jne 0x123b724
movq 0xa88(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123b6f5
movq 0xa88(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123b6f3
jmp 0x123b722
movq 0xa88(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4558(%rsp)
cmpq $0x0, 0x4558(%rsp)
je 0x123b720
movq 0x4558(%rsp), %rdi
callq 0x5f480
jmp 0x123b722
jmp 0x123b724
movq 0xa88(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123b77f
movq %rax, %rdi
callq 0x678a0
jmp 0x123b781
leaq 0x1e78(%rsp), %rax
movq %rax, 0x2448(%rsp)
movq 0x2448(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xa78(%rsp)
leaq 0x1e78(%rsp), %rax
movq %rax, 0x2560(%rsp)
movq 0x2560(%rsp), %rax
movq %rax, 0x4330(%rsp)
movq 0x4330(%rsp), %rax
movq %rax, 0xa80(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123b86c
movq 0xa80(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x432c(%rsp) # imm = 0xFFFFFFFF
movl 0x432c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4328(%rsp)
cmpl $0x1, 0x4328(%rsp)
jne 0x123b86c
movq 0xa80(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123b83d
movq 0xa80(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123b83b
jmp 0x123b86a
movq 0xa80(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4668(%rsp)
cmpq $0x0, 0x4668(%rsp)
je 0x123b868
movq 0x4668(%rsp), %rdi
callq 0x5f480
jmp 0x123b86a
jmp 0x123b86c
movq 0xa80(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123b8c7
movq %rax, %rdi
callq 0x678a0
movq 0xa78(%rsp), %rax
movq %rax, 0x1ec0(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1ec8(%rsp), %eax
leaq 0x1e28(%rsp), %rdx
movq %rdx, 0x2300(%rsp)
movq %rcx, 0x22f8(%rsp)
movl %eax, 0x22f4(%rsp)
movq 0x22f8(%rsp), %rax
movq %rax, 0xa70(%rsp)
movb $0x0, 0x22f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1e28(%rsp), %r10
movq %r10, 0x3370(%rsp)
movl %r9d, 0x336c(%rsp)
movl %r8d, 0x3368(%rsp)
movl %edi, 0x3364(%rsp)
movq %rsi, 0x3358(%rsp)
movq %rdx, 0x3350(%rsp)
movl %ecx, 0x334c(%rsp)
movq %rax, 0x3340(%rsp)
movq 0x3370(%rsp), %rcx
movq %rcx, 0xa68(%rsp)
movq 0x3358(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3350(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x334c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3340(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x336c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3368(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3364(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c80(%rsp)
movl $0x10, 0x3c7c(%rsp)
movq 0x3c80(%rsp), %rax
movslq 0x3c7c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c7c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xa70(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1e50(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x123ba93
movq 0xa70(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1e68(%rsp)
movb $0x1, 0x22f3(%rsp)
testb $0x1, 0x22f3(%rsp)
jne 0x123bbce
leaq 0x1e28(%rsp), %rax
movq %rax, 0x2458(%rsp)
movq 0x2458(%rsp), %rax
movq %rax, 0x4540(%rsp)
movq 0x4540(%rsp), %rax
movq %rax, 0xa60(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123bb71
movq 0xa60(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x453c(%rsp) # imm = 0xFFFFFFFF
movl 0x453c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4538(%rsp)
cmpl $0x1, 0x4538(%rsp)
jne 0x123bb71
movq 0xa60(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123bb42
movq 0xa60(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123bb40
jmp 0x123bb6f
movq 0xa60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4560(%rsp)
cmpq $0x0, 0x4560(%rsp)
je 0x123bb6d
movq 0x4560(%rsp), %rdi
callq 0x5f480
jmp 0x123bb6f
jmp 0x123bb71
movq 0xa60(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123bbcc
movq %rax, %rdi
callq 0x678a0
jmp 0x123bbce
leaq 0x1e28(%rsp), %rax
movq %rax, 0x2440(%rsp)
movq 0x2440(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xa50(%rsp)
leaq 0x1e28(%rsp), %rax
movq %rax, 0x2568(%rsp)
movq 0x2568(%rsp), %rax
movq %rax, 0x4320(%rsp)
movq 0x4320(%rsp), %rax
movq %rax, 0xa58(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123bcb9
movq 0xa58(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x431c(%rsp) # imm = 0xFFFFFFFF
movl 0x431c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4318(%rsp)
cmpl $0x1, 0x4318(%rsp)
jne 0x123bcb9
movq 0xa58(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123bc8a
movq 0xa58(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123bc88
jmp 0x123bcb7
movq 0xa58(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4670(%rsp)
cmpq $0x0, 0x4670(%rsp)
je 0x123bcb5
movq 0x4670(%rsp), %rdi
callq 0x5f480
jmp 0x123bcb7
jmp 0x123bcb9
movq 0xa58(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123bd14
movq %rax, %rdi
callq 0x678a0
movq 0xa50(%rsp), %rax
movq %rax, 0x1e70(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1ec8(%rsp), %eax
leaq 0x1dd8(%rsp), %rdx
movq %rdx, 0x2a20(%rsp)
movq %rcx, 0x2a18(%rsp)
movl %eax, 0x2a14(%rsp)
movq 0x2a18(%rsp), %rax
movq %rax, 0xa48(%rsp)
movb $0x0, 0x2a13(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2a14(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1dd8(%rsp), %r10
movq %r10, 0x2df8(%rsp)
movl %r9d, 0x2df4(%rsp)
movl %r8d, 0x2df0(%rsp)
movl %edi, 0x2dec(%rsp)
movq %rsi, 0x2de0(%rsp)
movq %rdx, 0x2dd8(%rsp)
movl %ecx, 0x2dd4(%rsp)
movq %rax, 0x2dc8(%rsp)
movq 0x2df8(%rsp), %rcx
movq %rcx, 0xa40(%rsp)
movq 0x2de0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2dd8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2dd4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2dc8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2df4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2df0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2dec(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3e10(%rsp)
movl $0x10, 0x3e0c(%rsp)
movq 0x3e10(%rsp), %rax
movslq 0x3e0c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3e0c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xa48(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1e00(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x123bee0
movq 0xa48(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1e18(%rsp)
movb $0x1, 0x2a13(%rsp)
testb $0x1, 0x2a13(%rsp)
jne 0x123c01b
leaq 0x1dd8(%rsp), %rax
movq %rax, 0x2a28(%rsp)
movq 0x2a28(%rsp), %rax
movq %rax, 0x3e20(%rsp)
movq 0x3e20(%rsp), %rax
movq %rax, 0xa38(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123bfbe
movq 0xa38(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e1c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e1c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e18(%rsp)
cmpl $0x1, 0x3e18(%rsp)
jne 0x123bfbe
movq 0xa38(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123bf8f
movq 0xa38(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123bf8d
jmp 0x123bfbc
movq 0xa38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48f0(%rsp)
cmpq $0x0, 0x48f0(%rsp)
je 0x123bfba
movq 0x48f0(%rsp), %rdi
callq 0x5f480
jmp 0x123bfbc
jmp 0x123bfbe
movq 0xa38(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123c019
movq %rax, %rdi
callq 0x678a0
jmp 0x123c01b
leaq 0x1dd8(%rsp), %rax
movq %rax, 0x2af8(%rsp)
movq 0x2af8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xa28(%rsp)
leaq 0x1dd8(%rsp), %rax
movq %rax, 0x2570(%rsp)
movq 0x2570(%rsp), %rax
movq %rax, 0x4310(%rsp)
movq 0x4310(%rsp), %rax
movq %rax, 0xa30(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123c106
movq 0xa30(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x430c(%rsp) # imm = 0xFFFFFFFF
movl 0x430c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4308(%rsp)
cmpl $0x1, 0x4308(%rsp)
jne 0x123c106
movq 0xa30(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123c0d7
movq 0xa30(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123c0d5
jmp 0x123c104
movq 0xa30(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4678(%rsp)
cmpq $0x0, 0x4678(%rsp)
je 0x123c102
movq 0x4678(%rsp), %rdi
callq 0x5f480
jmp 0x123c104
jmp 0x123c106
movq 0xa30(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123c161
movq %rax, %rdi
callq 0x678a0
movq 0xa28(%rsp), %rax
movq %rax, 0x1e20(%rsp)
movl $0x0, 0x1dd4(%rsp)
movl 0x1dd4(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x123c1ef
movq 0x1ec0(%rsp), %rsi
movslq 0x1dd4(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1e70(%rsp), %rdx
movslq 0x1dd4(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x12780c0
movq 0x1e20(%rsp), %rax
movslq 0x1dd4(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1dd4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1dd4(%rsp)
jmp 0x123c17c
jmp 0x123c1f1
movl 0x1ec8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1ec8(%rsp)
jmp 0x123b476
movl $0x0, 0x1f24(%rsp)
jmp 0x124e6a5
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1ef0(%rsp), %ecx
movl 0x1eec(%rsp), %r8d
movq 0x1ee0(%rsp), %r9
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6fb30
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fe0(%rsp)
movq 0x1fe0(%rsp), %rcx
movq %rcx, 0xa18(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xa27(%rsp)
je 0x123c2ba
movq 0xa18(%rsp), %rax
movq %rax, 0x2d08(%rsp)
movq 0x2d08(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xa27(%rsp)
movb 0xa27(%rsp), %al
testb $0x1, %al
jne 0x123c2c7
jmp 0x123c2d7
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x124e6a5
movq 0x1f10(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x123d171
movl $0x0, 0x1dd0(%rsp)
movl 0x1dd0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x123d161
movq 0x1f18(%rsp), %rcx
movl 0x1dd0(%rsp), %eax
leaq 0x1d80(%rsp), %rdx
movq %rdx, 0x22e8(%rsp)
movq %rcx, 0x22e0(%rsp)
movl %eax, 0x22dc(%rsp)
movq 0x22e0(%rsp), %rax
movq %rax, 0xa10(%rsp)
movb $0x0, 0x22db(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22dc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1d80(%rsp), %r10
movq %r10, 0x33a8(%rsp)
movl %r9d, 0x33a4(%rsp)
movl %r8d, 0x33a0(%rsp)
movl %edi, 0x339c(%rsp)
movq %rsi, 0x3390(%rsp)
movq %rdx, 0x3388(%rsp)
movl %ecx, 0x3384(%rsp)
movq %rax, 0x3378(%rsp)
movq 0x33a8(%rsp), %rcx
movq %rcx, 0xa08(%rsp)
movq 0x3390(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3388(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3384(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3378(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x33a4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x33a0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x339c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c70(%rsp)
movl $0x10, 0x3c6c(%rsp)
movq 0x3c70(%rsp), %rax
movslq 0x3c6c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c6c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xa10(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1da8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x123c4c4
movq 0xa10(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1dc0(%rsp)
movb $0x1, 0x22db(%rsp)
testb $0x1, 0x22db(%rsp)
jne 0x123c5ff
leaq 0x1d80(%rsp), %rax
movq %rax, 0x2460(%rsp)
movq 0x2460(%rsp), %rax
movq %rax, 0x4530(%rsp)
movq 0x4530(%rsp), %rax
movq %rax, 0xa00(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123c5a2
movq 0xa00(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x452c(%rsp) # imm = 0xFFFFFFFF
movl 0x452c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4528(%rsp)
cmpl $0x1, 0x4528(%rsp)
jne 0x123c5a2
movq 0xa00(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123c573
movq 0xa00(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123c571
jmp 0x123c5a0
movq 0xa00(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4568(%rsp)
cmpq $0x0, 0x4568(%rsp)
je 0x123c59e
movq 0x4568(%rsp), %rdi
callq 0x5f480
jmp 0x123c5a0
jmp 0x123c5a2
movq 0xa00(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123c5fd
movq %rax, %rdi
callq 0x678a0
jmp 0x123c5ff
leaq 0x1d80(%rsp), %rax
movq %rax, 0x2438(%rsp)
movq 0x2438(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x9f0(%rsp)
leaq 0x1d80(%rsp), %rax
movq %rax, 0x2578(%rsp)
movq 0x2578(%rsp), %rax
movq %rax, 0x4300(%rsp)
movq 0x4300(%rsp), %rax
movq %rax, 0x9f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123c6ea
movq 0x9f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42fc(%rsp) # imm = 0xFFFFFFFF
movl 0x42fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42f8(%rsp)
cmpl $0x1, 0x42f8(%rsp)
jne 0x123c6ea
movq 0x9f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123c6bb
movq 0x9f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123c6b9
jmp 0x123c6e8
movq 0x9f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4680(%rsp)
cmpq $0x0, 0x4680(%rsp)
je 0x123c6e6
movq 0x4680(%rsp), %rdi
callq 0x5f480
jmp 0x123c6e8
jmp 0x123c6ea
movq 0x9f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123c745
movq %rax, %rdi
callq 0x678a0
movq 0x9f0(%rsp), %rax
movq %rax, 0x1dc8(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1dd0(%rsp), %eax
leaq 0x1d30(%rsp), %rdx
movq %rdx, 0x22d0(%rsp)
movq %rcx, 0x22c8(%rsp)
movl %eax, 0x22c4(%rsp)
movq 0x22c8(%rsp), %rax
movq %rax, 0x9e8(%rsp)
movb $0x0, 0x22c3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22c4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1d30(%rsp), %r10
movq %r10, 0x33e0(%rsp)
movl %r9d, 0x33dc(%rsp)
movl %r8d, 0x33d8(%rsp)
movl %edi, 0x33d4(%rsp)
movq %rsi, 0x33c8(%rsp)
movq %rdx, 0x33c0(%rsp)
movl %ecx, 0x33bc(%rsp)
movq %rax, 0x33b0(%rsp)
movq 0x33e0(%rsp), %rcx
movq %rcx, 0x9e0(%rsp)
movq 0x33c8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x33c0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x33bc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x33b0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x33dc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x33d8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x33d4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c60(%rsp)
movl $0x10, 0x3c5c(%rsp)
movq 0x3c60(%rsp), %rax
movslq 0x3c5c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c5c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x9e8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1d58(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x123c911
movq 0x9e8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1d70(%rsp)
movb $0x1, 0x22c3(%rsp)
testb $0x1, 0x22c3(%rsp)
jne 0x123ca4c
leaq 0x1d30(%rsp), %rax
movq %rax, 0x2468(%rsp)
movq 0x2468(%rsp), %rax
movq %rax, 0x4520(%rsp)
movq 0x4520(%rsp), %rax
movq %rax, 0x9d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123c9ef
movq 0x9d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x451c(%rsp) # imm = 0xFFFFFFFF
movl 0x451c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4518(%rsp)
cmpl $0x1, 0x4518(%rsp)
jne 0x123c9ef
movq 0x9d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123c9c0
movq 0x9d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123c9be
jmp 0x123c9ed
movq 0x9d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4570(%rsp)
cmpq $0x0, 0x4570(%rsp)
je 0x123c9eb
movq 0x4570(%rsp), %rdi
callq 0x5f480
jmp 0x123c9ed
jmp 0x123c9ef
movq 0x9d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123ca4a
movq %rax, %rdi
callq 0x678a0
jmp 0x123ca4c
leaq 0x1d30(%rsp), %rax
movq %rax, 0x2430(%rsp)
movq 0x2430(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x9c8(%rsp)
leaq 0x1d30(%rsp), %rax
movq %rax, 0x2580(%rsp)
movq 0x2580(%rsp), %rax
movq %rax, 0x42f0(%rsp)
movq 0x42f0(%rsp), %rax
movq %rax, 0x9d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123cb37
movq 0x9d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42ec(%rsp) # imm = 0xFFFFFFFF
movl 0x42ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42e8(%rsp)
cmpl $0x1, 0x42e8(%rsp)
jne 0x123cb37
movq 0x9d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123cb08
movq 0x9d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123cb06
jmp 0x123cb35
movq 0x9d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4688(%rsp)
cmpq $0x0, 0x4688(%rsp)
je 0x123cb33
movq 0x4688(%rsp), %rdi
callq 0x5f480
jmp 0x123cb35
jmp 0x123cb37
movq 0x9d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123cb92
movq %rax, %rdi
callq 0x678a0
movq 0x9c8(%rsp), %rax
movq %rax, 0x1d78(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1dd0(%rsp), %eax
leaq 0x1ce0(%rsp), %rdx
movq %rdx, 0x2a00(%rsp)
movq %rcx, 0x29f8(%rsp)
movl %eax, 0x29f4(%rsp)
movq 0x29f8(%rsp), %rax
movq %rax, 0x9c0(%rsp)
movb $0x0, 0x29f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x29f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1ce0(%rsp), %r10
movq %r10, 0x2e30(%rsp)
movl %r9d, 0x2e2c(%rsp)
movl %r8d, 0x2e28(%rsp)
movl %edi, 0x2e24(%rsp)
movq %rsi, 0x2e18(%rsp)
movq %rdx, 0x2e10(%rsp)
movl %ecx, 0x2e0c(%rsp)
movq %rax, 0x2e00(%rsp)
movq 0x2e30(%rsp), %rcx
movq %rcx, 0x9b8(%rsp)
movq 0x2e18(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2e10(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2e0c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2e00(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2e2c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2e28(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2e24(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3e00(%rsp)
movl $0x10, 0x3dfc(%rsp)
movq 0x3e00(%rsp), %rax
movslq 0x3dfc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3dfc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x9c0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1d08(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x123cd5e
movq 0x9c0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1d20(%rsp)
movb $0x1, 0x29f3(%rsp)
testb $0x1, 0x29f3(%rsp)
jne 0x123ce99
leaq 0x1ce0(%rsp), %rax
movq %rax, 0x2a08(%rsp)
movq 0x2a08(%rsp), %rax
movq %rax, 0x3e30(%rsp)
movq 0x3e30(%rsp), %rax
movq %rax, 0x9b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123ce3c
movq 0x9b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e2c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e2c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e28(%rsp)
cmpl $0x1, 0x3e28(%rsp)
jne 0x123ce3c
movq 0x9b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123ce0d
movq 0x9b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123ce0b
jmp 0x123ce3a
movq 0x9b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48e8(%rsp)
cmpq $0x0, 0x48e8(%rsp)
je 0x123ce38
movq 0x48e8(%rsp), %rdi
callq 0x5f480
jmp 0x123ce3a
jmp 0x123ce3c
movq 0x9b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123ce97
movq %rax, %rdi
callq 0x678a0
jmp 0x123ce99
leaq 0x1ce0(%rsp), %rax
movq %rax, 0x2af0(%rsp)
movq 0x2af0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x9a0(%rsp)
leaq 0x1ce0(%rsp), %rax
movq %rax, 0x2588(%rsp)
movq 0x2588(%rsp), %rax
movq %rax, 0x42e0(%rsp)
movq 0x42e0(%rsp), %rax
movq %rax, 0x9a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123cf84
movq 0x9a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42dc(%rsp) # imm = 0xFFFFFFFF
movl 0x42dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42d8(%rsp)
cmpl $0x1, 0x42d8(%rsp)
jne 0x123cf84
movq 0x9a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123cf55
movq 0x9a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123cf53
jmp 0x123cf82
movq 0x9a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4690(%rsp)
cmpq $0x0, 0x4690(%rsp)
je 0x123cf80
movq 0x4690(%rsp), %rdi
callq 0x5f480
jmp 0x123cf82
jmp 0x123cf84
movq 0x9a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123cfdf
movq %rax, %rdi
callq 0x678a0
movq 0x9a0(%rsp), %rax
movq %rax, 0x1d28(%rsp)
movl $0x0, 0x1cdc(%rsp)
movl 0x1cdc(%rsp), %eax
cmpl 0x1ef0(%rsp), %eax
jge 0x123d149
movl $0x0, 0x1cd8(%rsp)
movl 0x1cd8(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jge 0x123d112
movq 0x1d78(%rsp), %rax
movslq 0x1cd8(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x1cd4(%rsp)
movl $0x0, 0x1cd0(%rsp)
movl 0x1cd0(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x123d0ba
movq 0x1dc8(%rsp), %rsi
movslq 0x1cd0(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0x1cd4(%rsp), %rdx
callq 0x12780c0
movq 0x1d28(%rsp), %rax
movslq 0x1cd0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1cd0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1cd0(%rsp)
jmp 0x123d056
movl 0x1ef8(%rsp), %ecx
movq 0x1dc8(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1dc8(%rsp)
movl 0x1ef8(%rsp), %ecx
movq 0x1d28(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1d28(%rsp)
movl 0x1cd8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1cd8(%rsp)
jmp 0x123d019
movl 0x1ef4(%rsp), %ecx
movq 0x1d78(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1d78(%rsp)
movl 0x1cdc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1cdc(%rsp)
jmp 0x123cffa
jmp 0x123d14b
movl 0x1dd0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1dd0(%rsp)
jmp 0x123c2f4
movl $0x0, 0x1f24(%rsp)
jmp 0x124e6a5
movq 0x1f10(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x123dbe8
movl $0x0, 0x1ccc(%rsp)
movl 0x1ccc(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x123dbd8
movq 0x1f18(%rsp), %rcx
movl 0x1ccc(%rsp), %eax
leaq 0x1c78(%rsp), %rdx
movq %rdx, 0x22b8(%rsp)
movq %rcx, 0x22b0(%rsp)
movl %eax, 0x22ac(%rsp)
movq 0x22b0(%rsp), %rax
movq %rax, 0x998(%rsp)
movb $0x0, 0x22ab(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22ac(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1c78(%rsp), %r10
movq %r10, 0x3418(%rsp)
movl %r9d, 0x3414(%rsp)
movl %r8d, 0x3410(%rsp)
movl %edi, 0x340c(%rsp)
movq %rsi, 0x3400(%rsp)
movq %rdx, 0x33f8(%rsp)
movl %ecx, 0x33f4(%rsp)
movq %rax, 0x33e8(%rsp)
movq 0x3418(%rsp), %rcx
movq %rcx, 0x990(%rsp)
movq 0x3400(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x33f8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x33f4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x33e8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3414(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3410(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x340c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c50(%rsp)
movl $0x10, 0x3c4c(%rsp)
movq 0x3c50(%rsp), %rax
movslq 0x3c4c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c4c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x998(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1ca0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x123d35e
movq 0x998(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1cb8(%rsp)
movb $0x1, 0x22ab(%rsp)
testb $0x1, 0x22ab(%rsp)
jne 0x123d499
leaq 0x1c78(%rsp), %rax
movq %rax, 0x2470(%rsp)
movq 0x2470(%rsp), %rax
movq %rax, 0x4510(%rsp)
movq 0x4510(%rsp), %rax
movq %rax, 0x988(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123d43c
movq 0x988(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x450c(%rsp) # imm = 0xFFFFFFFF
movl 0x450c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4508(%rsp)
cmpl $0x1, 0x4508(%rsp)
jne 0x123d43c
movq 0x988(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123d40d
movq 0x988(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123d40b
jmp 0x123d43a
movq 0x988(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4578(%rsp)
cmpq $0x0, 0x4578(%rsp)
je 0x123d438
movq 0x4578(%rsp), %rdi
callq 0x5f480
jmp 0x123d43a
jmp 0x123d43c
movq 0x988(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123d497
movq %rax, %rdi
callq 0x678a0
jmp 0x123d499
leaq 0x1c78(%rsp), %rax
movq %rax, 0x2428(%rsp)
movq 0x2428(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x978(%rsp)
leaq 0x1c78(%rsp), %rax
movq %rax, 0x2590(%rsp)
movq 0x2590(%rsp), %rax
movq %rax, 0x42d0(%rsp)
movq 0x42d0(%rsp), %rax
movq %rax, 0x980(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123d584
movq 0x980(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42cc(%rsp) # imm = 0xFFFFFFFF
movl 0x42cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42c8(%rsp)
cmpl $0x1, 0x42c8(%rsp)
jne 0x123d584
movq 0x980(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123d555
movq 0x980(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123d553
jmp 0x123d582
movq 0x980(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4698(%rsp)
cmpq $0x0, 0x4698(%rsp)
je 0x123d580
movq 0x4698(%rsp), %rdi
callq 0x5f480
jmp 0x123d582
jmp 0x123d584
movq 0x980(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123d5df
movq %rax, %rdi
callq 0x678a0
movq 0x978(%rsp), %rax
movq %rax, 0x1cc0(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1ccc(%rsp), %eax
movq %rcx, 0x2b38(%rsp)
movl %eax, 0x2b34(%rsp)
movq 0x2b38(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2b34(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x1c70(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1ccc(%rsp), %eax
leaq 0x1c20(%rsp), %rdx
movq %rdx, 0x29e0(%rsp)
movq %rcx, 0x29d8(%rsp)
movl %eax, 0x29d4(%rsp)
movq 0x29d8(%rsp), %rax
movq %rax, 0x970(%rsp)
movb $0x0, 0x29d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x29d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1c20(%rsp), %r10
movq %r10, 0x2e68(%rsp)
movl %r9d, 0x2e64(%rsp)
movl %r8d, 0x2e60(%rsp)
movl %edi, 0x2e5c(%rsp)
movq %rsi, 0x2e50(%rsp)
movq %rdx, 0x2e48(%rsp)
movl %ecx, 0x2e44(%rsp)
movq %rax, 0x2e38(%rsp)
movq 0x2e68(%rsp), %rcx
movq %rcx, 0x968(%rsp)
movq 0x2e50(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2e48(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2e44(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2e38(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2e64(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2e60(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2e5c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3df0(%rsp)
movl $0x10, 0x3dec(%rsp)
movq 0x3df0(%rsp), %rax
movslq 0x3dec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3dec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x970(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1c48(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x123d7f4
movq 0x970(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1c60(%rsp)
movb $0x1, 0x29d3(%rsp)
testb $0x1, 0x29d3(%rsp)
jne 0x123d92f
leaq 0x1c20(%rsp), %rax
movq %rax, 0x29e8(%rsp)
movq 0x29e8(%rsp), %rax
movq %rax, 0x3e40(%rsp)
movq 0x3e40(%rsp), %rax
movq %rax, 0x960(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123d8d2
movq 0x960(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e3c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e3c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e38(%rsp)
cmpl $0x1, 0x3e38(%rsp)
jne 0x123d8d2
movq 0x960(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123d8a3
movq 0x960(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123d8a1
jmp 0x123d8d0
movq 0x960(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48e0(%rsp)
cmpq $0x0, 0x48e0(%rsp)
je 0x123d8ce
movq 0x48e0(%rsp), %rdi
callq 0x5f480
jmp 0x123d8d0
jmp 0x123d8d2
movq 0x960(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123d92d
movq %rax, %rdi
callq 0x678a0
jmp 0x123d92f
leaq 0x1c20(%rsp), %rax
movq %rax, 0x2ae8(%rsp)
movq 0x2ae8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x950(%rsp)
leaq 0x1c20(%rsp), %rax
movq %rax, 0x2598(%rsp)
movq 0x2598(%rsp), %rax
movq %rax, 0x42c0(%rsp)
movq 0x42c0(%rsp), %rax
movq %rax, 0x958(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123da1a
movq 0x958(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42bc(%rsp) # imm = 0xFFFFFFFF
movl 0x42bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42b8(%rsp)
cmpl $0x1, 0x42b8(%rsp)
jne 0x123da1a
movq 0x958(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123d9eb
movq 0x958(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123d9e9
jmp 0x123da18
movq 0x958(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46a0(%rsp)
cmpq $0x0, 0x46a0(%rsp)
je 0x123da16
movq 0x46a0(%rsp), %rdi
callq 0x5f480
jmp 0x123da18
jmp 0x123da1a
movq 0x958(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123da75
movq %rax, %rdi
callq 0x678a0
movq 0x950(%rsp), %rax
movq %rax, 0x1c68(%rsp)
movl $0x0, 0x1c1c(%rsp)
movl 0x1c1c(%rsp), %eax
cmpl 0x1ef0(%rsp), %eax
jge 0x123dbc0
movq 0x1c70(%rsp), %rax
movslq 0x1c1c(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x1c18(%rsp)
movl $0x0, 0x1c14(%rsp)
movl 0x1c14(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jge 0x123dba8
movl $0x0, 0x1c10(%rsp)
movl 0x1c10(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x123db50
movq 0x1cc0(%rsp), %rsi
movslq 0x1c10(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0x1c18(%rsp), %rdx
callq 0x12780c0
movq 0x1c68(%rsp), %rax
movslq 0x1c10(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1c10(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c10(%rsp)
jmp 0x123daec
movl 0x1ef8(%rsp), %ecx
movq 0x1cc0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1cc0(%rsp)
movl 0x1ef8(%rsp), %ecx
movq 0x1c68(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1c68(%rsp)
movl 0x1c14(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c14(%rsp)
jmp 0x123dacd
jmp 0x123dbaa
movl 0x1c1c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c1c(%rsp)
jmp 0x123da90
jmp 0x123dbc2
movl 0x1ccc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1ccc(%rsp)
jmp 0x123d18e
movl $0x0, 0x1f24(%rsp)
jmp 0x124e6a5
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x123ef2a
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x123e599
movq 0x1f10(%rsp), %rax
movq %rax, 0x2c98(%rsp)
movq $0x0, 0x2c90(%rsp)
movq 0x2c98(%rsp), %rax
movq (%rax), %rax
movq 0x2c90(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x1c0c(%rsp)
movl $0x0, 0x1c08(%rsp)
movl 0x1c08(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x123e589
movq 0x1f18(%rsp), %rcx
movl 0x1c08(%rsp), %eax
leaq 0x1bb8(%rsp), %rdx
movq %rdx, 0x22a0(%rsp)
movq %rcx, 0x2298(%rsp)
movl %eax, 0x2294(%rsp)
movq 0x2298(%rsp), %rax
movq %rax, 0x948(%rsp)
movb $0x0, 0x2293(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2294(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1bb8(%rsp), %r10
movq %r10, 0x3450(%rsp)
movl %r9d, 0x344c(%rsp)
movl %r8d, 0x3448(%rsp)
movl %edi, 0x3444(%rsp)
movq %rsi, 0x3438(%rsp)
movq %rdx, 0x3430(%rsp)
movl %ecx, 0x342c(%rsp)
movq %rax, 0x3420(%rsp)
movq 0x3450(%rsp), %rcx
movq %rcx, 0x940(%rsp)
movq 0x3438(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3430(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x342c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3420(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x344c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3448(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3444(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c40(%rsp)
movl $0x10, 0x3c3c(%rsp)
movq 0x3c40(%rsp), %rax
movslq 0x3c3c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c3c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x948(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1be0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x123de24
movq 0x948(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1bf8(%rsp)
movb $0x1, 0x2293(%rsp)
testb $0x1, 0x2293(%rsp)
jne 0x123df5f
leaq 0x1bb8(%rsp), %rax
movq %rax, 0x2478(%rsp)
movq 0x2478(%rsp), %rax
movq %rax, 0x4500(%rsp)
movq 0x4500(%rsp), %rax
movq %rax, 0x938(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123df02
movq 0x938(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x44fc(%rsp) # imm = 0xFFFFFFFF
movl 0x44fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x44f8(%rsp)
cmpl $0x1, 0x44f8(%rsp)
jne 0x123df02
movq 0x938(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123ded3
movq 0x938(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123ded1
jmp 0x123df00
movq 0x938(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4580(%rsp)
cmpq $0x0, 0x4580(%rsp)
je 0x123defe
movq 0x4580(%rsp), %rdi
callq 0x5f480
jmp 0x123df00
jmp 0x123df02
movq 0x938(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123df5d
movq %rax, %rdi
callq 0x678a0
jmp 0x123df5f
leaq 0x1bb8(%rsp), %rax
movq %rax, 0x2420(%rsp)
movq 0x2420(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x928(%rsp)
leaq 0x1bb8(%rsp), %rax
movq %rax, 0x25a0(%rsp)
movq 0x25a0(%rsp), %rax
movq %rax, 0x42b0(%rsp)
movq 0x42b0(%rsp), %rax
movq %rax, 0x930(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123e04a
movq 0x930(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42ac(%rsp) # imm = 0xFFFFFFFF
movl 0x42ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42a8(%rsp)
cmpl $0x1, 0x42a8(%rsp)
jne 0x123e04a
movq 0x930(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123e01b
movq 0x930(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123e019
jmp 0x123e048
movq 0x930(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46a8(%rsp)
cmpq $0x0, 0x46a8(%rsp)
je 0x123e046
movq 0x46a8(%rsp), %rdi
callq 0x5f480
jmp 0x123e048
jmp 0x123e04a
movq 0x930(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123e0a5
movq %rax, %rdi
callq 0x678a0
movq 0x928(%rsp), %rax
movq %rax, 0x1c00(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1c08(%rsp), %eax
leaq 0x1b68(%rsp), %rdx
movq %rdx, 0x29c0(%rsp)
movq %rcx, 0x29b8(%rsp)
movl %eax, 0x29b4(%rsp)
movq 0x29b8(%rsp), %rax
movq %rax, 0x920(%rsp)
movb $0x0, 0x29b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x29b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1b68(%rsp), %r10
movq %r10, 0x2ea0(%rsp)
movl %r9d, 0x2e9c(%rsp)
movl %r8d, 0x2e98(%rsp)
movl %edi, 0x2e94(%rsp)
movq %rsi, 0x2e88(%rsp)
movq %rdx, 0x2e80(%rsp)
movl %ecx, 0x2e7c(%rsp)
movq %rax, 0x2e70(%rsp)
movq 0x2ea0(%rsp), %rcx
movq %rcx, 0x918(%rsp)
movq 0x2e88(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2e80(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2e7c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2e70(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2e9c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2e98(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2e94(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3de0(%rsp)
movl $0x10, 0x3ddc(%rsp)
movq 0x3de0(%rsp), %rax
movslq 0x3ddc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3ddc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x920(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1b90(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x123e271
movq 0x920(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1ba8(%rsp)
movb $0x1, 0x29b3(%rsp)
testb $0x1, 0x29b3(%rsp)
jne 0x123e3ac
leaq 0x1b68(%rsp), %rax
movq %rax, 0x29c8(%rsp)
movq 0x29c8(%rsp), %rax
movq %rax, 0x3e50(%rsp)
movq 0x3e50(%rsp), %rax
movq %rax, 0x910(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123e34f
movq 0x910(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e4c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e4c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e48(%rsp)
cmpl $0x1, 0x3e48(%rsp)
jne 0x123e34f
movq 0x910(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123e320
movq 0x910(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123e31e
jmp 0x123e34d
movq 0x910(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48d8(%rsp)
cmpq $0x0, 0x48d8(%rsp)
je 0x123e34b
movq 0x48d8(%rsp), %rdi
callq 0x5f480
jmp 0x123e34d
jmp 0x123e34f
movq 0x910(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123e3aa
movq %rax, %rdi
callq 0x678a0
jmp 0x123e3ac
leaq 0x1b68(%rsp), %rax
movq %rax, 0x2ae0(%rsp)
movq 0x2ae0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x900(%rsp)
leaq 0x1b68(%rsp), %rax
movq %rax, 0x25a8(%rsp)
movq 0x25a8(%rsp), %rax
movq %rax, 0x42a0(%rsp)
movq 0x42a0(%rsp), %rax
movq %rax, 0x908(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123e497
movq 0x908(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x429c(%rsp) # imm = 0xFFFFFFFF
movl 0x429c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4298(%rsp)
cmpl $0x1, 0x4298(%rsp)
jne 0x123e497
movq 0x908(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123e468
movq 0x908(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123e466
jmp 0x123e495
movq 0x908(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46b0(%rsp)
cmpq $0x0, 0x46b0(%rsp)
je 0x123e493
movq 0x46b0(%rsp), %rdi
callq 0x5f480
jmp 0x123e495
jmp 0x123e497
movq 0x908(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123e4f2
movq %rax, %rdi
callq 0x678a0
movq 0x900(%rsp), %rax
movq %rax, 0x1bb0(%rsp)
movl $0x0, 0x1b64(%rsp)
movl 0x1b64(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x123e571
movq 0x1c00(%rsp), %rsi
movslq 0x1b64(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0x1c0c(%rsp), %rdx
callq 0x12780c0
movq 0x1bb0(%rsp), %rax
movslq 0x1b64(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1b64(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b64(%rsp)
jmp 0x123e50d
jmp 0x123e573
movl 0x1c08(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c08(%rsp)
jmp 0x123dc54
movl $0x0, 0x1f24(%rsp)
jmp 0x124e6a5
movl $0x0, 0x1b60(%rsp)
movl 0x1b60(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x123ef1a
movq 0x1f18(%rsp), %rcx
movl 0x1b60(%rsp), %eax
leaq 0x1b10(%rsp), %rdx
movq %rdx, 0x2288(%rsp)
movq %rcx, 0x2280(%rsp)
movl %eax, 0x227c(%rsp)
movq 0x2280(%rsp), %rax
movq %rax, 0x8f8(%rsp)
movb $0x0, 0x227b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x227c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1b10(%rsp), %r10
movq %r10, 0x3488(%rsp)
movl %r9d, 0x3484(%rsp)
movl %r8d, 0x3480(%rsp)
movl %edi, 0x347c(%rsp)
movq %rsi, 0x3470(%rsp)
movq %rdx, 0x3468(%rsp)
movl %ecx, 0x3464(%rsp)
movq %rax, 0x3458(%rsp)
movq 0x3488(%rsp), %rcx
movq %rcx, 0x8f0(%rsp)
movq 0x3470(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3468(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3464(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3458(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3484(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3480(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x347c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c30(%rsp)
movl $0x10, 0x3c2c(%rsp)
movq 0x3c30(%rsp), %rax
movslq 0x3c2c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c2c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x8f8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1b38(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x123e774
movq 0x8f8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1b50(%rsp)
movb $0x1, 0x227b(%rsp)
testb $0x1, 0x227b(%rsp)
jne 0x123e8af
leaq 0x1b10(%rsp), %rax
movq %rax, 0x2480(%rsp)
movq 0x2480(%rsp), %rax
movq %rax, 0x44f0(%rsp)
movq 0x44f0(%rsp), %rax
movq %rax, 0x8e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123e852
movq 0x8e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x44ec(%rsp) # imm = 0xFFFFFFFF
movl 0x44ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x44e8(%rsp)
cmpl $0x1, 0x44e8(%rsp)
jne 0x123e852
movq 0x8e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123e823
movq 0x8e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123e821
jmp 0x123e850
movq 0x8e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4588(%rsp)
cmpq $0x0, 0x4588(%rsp)
je 0x123e84e
movq 0x4588(%rsp), %rdi
callq 0x5f480
jmp 0x123e850
jmp 0x123e852
movq 0x8e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123e8ad
movq %rax, %rdi
callq 0x678a0
jmp 0x123e8af
leaq 0x1b10(%rsp), %rax
movq %rax, 0x2418(%rsp)
movq 0x2418(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8d8(%rsp)
leaq 0x1b10(%rsp), %rax
movq %rax, 0x25b0(%rsp)
movq 0x25b0(%rsp), %rax
movq %rax, 0x4290(%rsp)
movq 0x4290(%rsp), %rax
movq %rax, 0x8e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123e99a
movq 0x8e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x428c(%rsp) # imm = 0xFFFFFFFF
movl 0x428c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4288(%rsp)
cmpl $0x1, 0x4288(%rsp)
jne 0x123e99a
movq 0x8e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123e96b
movq 0x8e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123e969
jmp 0x123e998
movq 0x8e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46b8(%rsp)
cmpq $0x0, 0x46b8(%rsp)
je 0x123e996
movq 0x46b8(%rsp), %rdi
callq 0x5f480
jmp 0x123e998
jmp 0x123e99a
movq 0x8e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123e9f5
movq %rax, %rdi
callq 0x678a0
movq 0x8d8(%rsp), %rax
movq %rax, 0x1b58(%rsp)
movq 0x1f10(%rsp), %rcx
movslq 0x1b60(%rsp), %rax
movq %rcx, 0x2c88(%rsp)
movq %rax, 0x2c80(%rsp)
movq 0x2c88(%rsp), %rax
movq (%rax), %rax
movq 0x2c80(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x1b0c(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1b60(%rsp), %eax
leaq 0x1ab8(%rsp), %rdx
movq %rdx, 0x29a0(%rsp)
movq %rcx, 0x2998(%rsp)
movl %eax, 0x2994(%rsp)
movq 0x2998(%rsp), %rax
movq %rax, 0x8d0(%rsp)
movb $0x0, 0x2993(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2994(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1ab8(%rsp), %r10
movq %r10, 0x2ed8(%rsp)
movl %r9d, 0x2ed4(%rsp)
movl %r8d, 0x2ed0(%rsp)
movl %edi, 0x2ecc(%rsp)
movq %rsi, 0x2ec0(%rsp)
movq %rdx, 0x2eb8(%rsp)
movl %ecx, 0x2eb4(%rsp)
movq %rax, 0x2ea8(%rsp)
movq 0x2ed8(%rsp), %rcx
movq %rcx, 0x8c8(%rsp)
movq 0x2ec0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2eb8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2eb4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ea8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2ed4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2ed0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2ecc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3dd0(%rsp)
movl $0x10, 0x3dcc(%rsp)
movq 0x3dd0(%rsp), %rax
movslq 0x3dcc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3dcc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x8d0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1ae0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x123ec02
movq 0x8d0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1af8(%rsp)
movb $0x1, 0x2993(%rsp)
testb $0x1, 0x2993(%rsp)
jne 0x123ed3d
leaq 0x1ab8(%rsp), %rax
movq %rax, 0x29a8(%rsp)
movq 0x29a8(%rsp), %rax
movq %rax, 0x3e60(%rsp)
movq 0x3e60(%rsp), %rax
movq %rax, 0x8c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123ece0
movq 0x8c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e5c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e5c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e58(%rsp)
cmpl $0x1, 0x3e58(%rsp)
jne 0x123ece0
movq 0x8c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123ecb1
movq 0x8c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123ecaf
jmp 0x123ecde
movq 0x8c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48d0(%rsp)
cmpq $0x0, 0x48d0(%rsp)
je 0x123ecdc
movq 0x48d0(%rsp), %rdi
callq 0x5f480
jmp 0x123ecde
jmp 0x123ece0
movq 0x8c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123ed3b
movq %rax, %rdi
callq 0x678a0
jmp 0x123ed3d
leaq 0x1ab8(%rsp), %rax
movq %rax, 0x2ad8(%rsp)
movq 0x2ad8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8b0(%rsp)
leaq 0x1ab8(%rsp), %rax
movq %rax, 0x25b8(%rsp)
movq 0x25b8(%rsp), %rax
movq %rax, 0x4280(%rsp)
movq 0x4280(%rsp), %rax
movq %rax, 0x8b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123ee28
movq 0x8b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x427c(%rsp) # imm = 0xFFFFFFFF
movl 0x427c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4278(%rsp)
cmpl $0x1, 0x4278(%rsp)
jne 0x123ee28
movq 0x8b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123edf9
movq 0x8b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123edf7
jmp 0x123ee26
movq 0x8b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46c0(%rsp)
cmpq $0x0, 0x46c0(%rsp)
je 0x123ee24
movq 0x46c0(%rsp), %rdi
callq 0x5f480
jmp 0x123ee26
jmp 0x123ee28
movq 0x8b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123ee83
movq %rax, %rdi
callq 0x678a0
movq 0x8b0(%rsp), %rax
movq %rax, 0x1b00(%rsp)
movl $0x0, 0x1ab4(%rsp)
movl 0x1ab4(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x123ef02
movq 0x1b58(%rsp), %rsi
movslq 0x1ab4(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0x1b0c(%rsp), %rdx
callq 0x12780c0
movq 0x1b00(%rsp), %rax
movslq 0x1ab4(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1ab4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1ab4(%rsp)
jmp 0x123ee9e
jmp 0x123ef04
movl 0x1b60(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b60(%rsp)
jmp 0x123e5a4
movl $0x0, 0x1f24(%rsp)
jmp 0x124e6a5
jmp 0x124e69a
movq 0x1f18(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x12499ac
movq 0x1f10(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x123fe9b
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed4(%rsp), %ecx
movl 0x1ed0(%rsp), %r8d
movq 0x1ee0(%rsp), %r9
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6fb30
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fd8(%rsp)
movq 0x1fd8(%rsp), %rcx
movq %rcx, 0x8a0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x8af(%rsp)
je 0x123eff6
movq 0x8a0(%rsp), %rax
movq %rax, 0x2d10(%rsp)
movq 0x2d10(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x8af(%rsp)
movb 0x8af(%rsp), %al
testb $0x1, %al
jne 0x123f003
jmp 0x123f013
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x124e6a5
movl $0x0, 0x1ab0(%rsp)
movl 0x1ab0(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x123fe8b
movq 0x1f18(%rsp), %rcx
movl 0x1ab0(%rsp), %eax
leaq 0x1a60(%rsp), %rdx
movq %rdx, 0x2270(%rsp)
movq %rcx, 0x2268(%rsp)
movl %eax, 0x2264(%rsp)
movq 0x2268(%rsp), %rax
movq %rax, 0x898(%rsp)
movb $0x0, 0x2263(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2264(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1a60(%rsp), %r10
movq %r10, 0x34c0(%rsp)
movl %r9d, 0x34bc(%rsp)
movl %r8d, 0x34b8(%rsp)
movl %edi, 0x34b4(%rsp)
movq %rsi, 0x34a8(%rsp)
movq %rdx, 0x34a0(%rsp)
movl %ecx, 0x349c(%rsp)
movq %rax, 0x3490(%rsp)
movq 0x34c0(%rsp), %rcx
movq %rcx, 0x890(%rsp)
movq 0x34a8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x34a0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x349c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3490(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x34bc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x34b8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x34b4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c20(%rsp)
movl $0x10, 0x3c1c(%rsp)
movq 0x3c20(%rsp), %rax
movslq 0x3c1c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c1c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x898(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1a88(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x123f1ee
movq 0x898(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1aa0(%rsp)
movb $0x1, 0x2263(%rsp)
testb $0x1, 0x2263(%rsp)
jne 0x123f329
leaq 0x1a60(%rsp), %rax
movq %rax, 0x2488(%rsp)
movq 0x2488(%rsp), %rax
movq %rax, 0x44e0(%rsp)
movq 0x44e0(%rsp), %rax
movq %rax, 0x888(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123f2cc
movq 0x888(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x44dc(%rsp) # imm = 0xFFFFFFFF
movl 0x44dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x44d8(%rsp)
cmpl $0x1, 0x44d8(%rsp)
jne 0x123f2cc
movq 0x888(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123f29d
movq 0x888(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123f29b
jmp 0x123f2ca
movq 0x888(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4590(%rsp)
cmpq $0x0, 0x4590(%rsp)
je 0x123f2c8
movq 0x4590(%rsp), %rdi
callq 0x5f480
jmp 0x123f2ca
jmp 0x123f2cc
movq 0x888(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123f327
movq %rax, %rdi
callq 0x678a0
jmp 0x123f329
leaq 0x1a60(%rsp), %rax
movq %rax, 0x2410(%rsp)
movq 0x2410(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x878(%rsp)
leaq 0x1a60(%rsp), %rax
movq %rax, 0x25c0(%rsp)
movq 0x25c0(%rsp), %rax
movq %rax, 0x4270(%rsp)
movq 0x4270(%rsp), %rax
movq %rax, 0x880(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123f414
movq 0x880(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x426c(%rsp) # imm = 0xFFFFFFFF
movl 0x426c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4268(%rsp)
cmpl $0x1, 0x4268(%rsp)
jne 0x123f414
movq 0x880(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123f3e5
movq 0x880(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123f3e3
jmp 0x123f412
movq 0x880(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46c8(%rsp)
cmpq $0x0, 0x46c8(%rsp)
je 0x123f410
movq 0x46c8(%rsp), %rdi
callq 0x5f480
jmp 0x123f412
jmp 0x123f414
movq 0x880(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123f46f
movq %rax, %rdi
callq 0x678a0
movq 0x878(%rsp), %rax
movq %rax, 0x1aa8(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1ab0(%rsp), %eax
leaq 0x1a10(%rsp), %rdx
movq %rdx, 0x2258(%rsp)
movq %rcx, 0x2250(%rsp)
movl %eax, 0x224c(%rsp)
movq 0x2250(%rsp), %rax
movq %rax, 0x870(%rsp)
movb $0x0, 0x224b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x224c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1a10(%rsp), %r10
movq %r10, 0x34f8(%rsp)
movl %r9d, 0x34f4(%rsp)
movl %r8d, 0x34f0(%rsp)
movl %edi, 0x34ec(%rsp)
movq %rsi, 0x34e0(%rsp)
movq %rdx, 0x34d8(%rsp)
movl %ecx, 0x34d4(%rsp)
movq %rax, 0x34c8(%rsp)
movq 0x34f8(%rsp), %rcx
movq %rcx, 0x868(%rsp)
movq 0x34e0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x34d8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x34d4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x34c8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x34f4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x34f0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x34ec(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c10(%rsp)
movl $0x10, 0x3c0c(%rsp)
movq 0x3c10(%rsp), %rax
movslq 0x3c0c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c0c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x870(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1a38(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x123f63b
movq 0x870(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1a50(%rsp)
movb $0x1, 0x224b(%rsp)
testb $0x1, 0x224b(%rsp)
jne 0x123f776
leaq 0x1a10(%rsp), %rax
movq %rax, 0x2490(%rsp)
movq 0x2490(%rsp), %rax
movq %rax, 0x44d0(%rsp)
movq 0x44d0(%rsp), %rax
movq %rax, 0x860(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123f719
movq 0x860(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x44cc(%rsp) # imm = 0xFFFFFFFF
movl 0x44cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x44c8(%rsp)
cmpl $0x1, 0x44c8(%rsp)
jne 0x123f719
movq 0x860(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123f6ea
movq 0x860(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123f6e8
jmp 0x123f717
movq 0x860(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4598(%rsp)
cmpq $0x0, 0x4598(%rsp)
je 0x123f715
movq 0x4598(%rsp), %rdi
callq 0x5f480
jmp 0x123f717
jmp 0x123f719
movq 0x860(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123f774
movq %rax, %rdi
callq 0x678a0
jmp 0x123f776
leaq 0x1a10(%rsp), %rax
movq %rax, 0x2408(%rsp)
movq 0x2408(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x850(%rsp)
leaq 0x1a10(%rsp), %rax
movq %rax, 0x25c8(%rsp)
movq 0x25c8(%rsp), %rax
movq %rax, 0x4260(%rsp)
movq 0x4260(%rsp), %rax
movq %rax, 0x858(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123f861
movq 0x858(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x425c(%rsp) # imm = 0xFFFFFFFF
movl 0x425c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4258(%rsp)
cmpl $0x1, 0x4258(%rsp)
jne 0x123f861
movq 0x858(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123f832
movq 0x858(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123f830
jmp 0x123f85f
movq 0x858(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46d0(%rsp)
cmpq $0x0, 0x46d0(%rsp)
je 0x123f85d
movq 0x46d0(%rsp), %rdi
callq 0x5f480
jmp 0x123f85f
jmp 0x123f861
movq 0x858(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123f8bc
movq %rax, %rdi
callq 0x678a0
movq 0x850(%rsp), %rax
movq %rax, 0x1a58(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1ab0(%rsp), %eax
leaq 0x19c0(%rsp), %rdx
movq %rdx, 0x2980(%rsp)
movq %rcx, 0x2978(%rsp)
movl %eax, 0x2974(%rsp)
movq 0x2978(%rsp), %rax
movq %rax, 0x848(%rsp)
movb $0x0, 0x2973(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2974(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x19c0(%rsp), %r10
movq %r10, 0x2f10(%rsp)
movl %r9d, 0x2f0c(%rsp)
movl %r8d, 0x2f08(%rsp)
movl %edi, 0x2f04(%rsp)
movq %rsi, 0x2ef8(%rsp)
movq %rdx, 0x2ef0(%rsp)
movl %ecx, 0x2eec(%rsp)
movq %rax, 0x2ee0(%rsp)
movq 0x2f10(%rsp), %rcx
movq %rcx, 0x840(%rsp)
movq 0x2ef8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2ef0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2eec(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ee0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2f0c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f08(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f04(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3dc0(%rsp)
movl $0x10, 0x3dbc(%rsp)
movq 0x3dc0(%rsp), %rax
movslq 0x3dbc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3dbc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x848(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x19e8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x123fa88
movq 0x848(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1a00(%rsp)
movb $0x1, 0x2973(%rsp)
testb $0x1, 0x2973(%rsp)
jne 0x123fbc3
leaq 0x19c0(%rsp), %rax
movq %rax, 0x2988(%rsp)
movq 0x2988(%rsp), %rax
movq %rax, 0x3e70(%rsp)
movq 0x3e70(%rsp), %rax
movq %rax, 0x838(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123fb66
movq 0x838(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e6c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e6c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e68(%rsp)
cmpl $0x1, 0x3e68(%rsp)
jne 0x123fb66
movq 0x838(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123fb37
movq 0x838(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123fb35
jmp 0x123fb64
movq 0x838(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48c8(%rsp)
cmpq $0x0, 0x48c8(%rsp)
je 0x123fb62
movq 0x48c8(%rsp), %rdi
callq 0x5f480
jmp 0x123fb64
jmp 0x123fb66
movq 0x838(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123fbc1
movq %rax, %rdi
callq 0x678a0
jmp 0x123fbc3
leaq 0x19c0(%rsp), %rax
movq %rax, 0x2ad0(%rsp)
movq 0x2ad0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x828(%rsp)
leaq 0x19c0(%rsp), %rax
movq %rax, 0x25d0(%rsp)
movq 0x25d0(%rsp), %rax
movq %rax, 0x4250(%rsp)
movq 0x4250(%rsp), %rax
movq %rax, 0x830(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x123fcae
movq 0x830(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x424c(%rsp) # imm = 0xFFFFFFFF
movl 0x424c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4248(%rsp)
cmpl $0x1, 0x4248(%rsp)
jne 0x123fcae
movq 0x830(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x123fc7f
movq 0x830(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x123fc7d
jmp 0x123fcac
movq 0x830(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46d8(%rsp)
cmpq $0x0, 0x46d8(%rsp)
je 0x123fcaa
movq 0x46d8(%rsp), %rdi
callq 0x5f480
jmp 0x123fcac
jmp 0x123fcae
movq 0x830(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x123fd09
movq %rax, %rdi
callq 0x678a0
movq 0x828(%rsp), %rax
movq %rax, 0x1a08(%rsp)
movl $0x0, 0x19bc(%rsp)
movl 0x19bc(%rsp), %eax
cmpl 0x1ed4(%rsp), %eax
jge 0x123fe73
movl $0x0, 0x19b8(%rsp)
movl 0x19b8(%rsp), %eax
cmpl 0x1ed8(%rsp), %eax
jge 0x123fe3c
movq 0x1aa8(%rsp), %rax
movslq 0x19b8(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x19b4(%rsp)
movl $0x0, 0x19b0(%rsp)
movl 0x19b0(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x123fde4
movq 0x1a58(%rsp), %rdx
movslq 0x19b0(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0x19b4(%rsp), %rsi
callq 0x12780c0
movq 0x1a08(%rsp), %rax
movslq 0x19b0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x19b0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x19b0(%rsp)
jmp 0x123fd80
movl 0x1edc(%rsp), %ecx
movq 0x1a58(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1a58(%rsp)
movl 0x1edc(%rsp), %ecx
movq 0x1a08(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1a08(%rsp)
movl 0x19b8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x19b8(%rsp)
jmp 0x123fd43
movl 0x1ed8(%rsp), %ecx
movq 0x1aa8(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1aa8(%rsp)
movl 0x19bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x19bc(%rsp)
jmp 0x123fd24
jmp 0x123fe75
movl 0x1ab0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1ab0(%rsp)
jmp 0x123f01e
movl $0x0, 0x1f24(%rsp)
jmp 0x124e6a5
movq 0x1f10(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1247b71
cmpl $0x1, 0x1edc(%rsp)
jne 0x1240d2e
cmpl $0x1, 0x1ed8(%rsp)
jne 0x1240d2e
movl 0x1ed0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jne 0x1240d2e
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1eec(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fd0(%rsp)
movq 0x1fd0(%rsp), %rcx
movq %rcx, 0x818(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x827(%rsp)
je 0x123ff74
movq 0x818(%rsp), %rax
movq %rax, 0x2d18(%rsp)
movq 0x2d18(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x827(%rsp)
movb 0x827(%rsp), %al
testb $0x1, %al
jne 0x123ff81
jmp 0x123ff91
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x124e6a5
movl $0x0, 0x19ac(%rsp)
movl 0x19ac(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x1240d1e
movq 0x1f18(%rsp), %rcx
movl 0x19ac(%rsp), %eax
leaq 0x1958(%rsp), %rdx
movq %rdx, 0x2240(%rsp)
movq %rcx, 0x2238(%rsp)
movl %eax, 0x2234(%rsp)
movq 0x2238(%rsp), %rax
movq %rax, 0x810(%rsp)
movb $0x0, 0x2233(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2234(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1958(%rsp), %r10
movq %r10, 0x3530(%rsp)
movl %r9d, 0x352c(%rsp)
movl %r8d, 0x3528(%rsp)
movl %edi, 0x3524(%rsp)
movq %rsi, 0x3518(%rsp)
movq %rdx, 0x3510(%rsp)
movl %ecx, 0x350c(%rsp)
movq %rax, 0x3500(%rsp)
movq 0x3530(%rsp), %rcx
movq %rcx, 0x808(%rsp)
movq 0x3518(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3510(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x350c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3500(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x352c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3528(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3524(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c00(%rsp)
movl $0x10, 0x3bfc(%rsp)
movq 0x3c00(%rsp), %rax
movslq 0x3bfc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bfc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x810(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1980(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x124016c
movq 0x810(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1998(%rsp)
movb $0x1, 0x2233(%rsp)
testb $0x1, 0x2233(%rsp)
jne 0x12402a7
leaq 0x1958(%rsp), %rax
movq %rax, 0x2498(%rsp)
movq 0x2498(%rsp), %rax
movq %rax, 0x44c0(%rsp)
movq 0x44c0(%rsp), %rax
movq %rax, 0x800(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x124024a
movq 0x800(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x44bc(%rsp) # imm = 0xFFFFFFFF
movl 0x44bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x44b8(%rsp)
cmpl $0x1, 0x44b8(%rsp)
jne 0x124024a
movq 0x800(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x124021b
movq 0x800(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1240219
jmp 0x1240248
movq 0x800(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45a0(%rsp)
cmpq $0x0, 0x45a0(%rsp)
je 0x1240246
movq 0x45a0(%rsp), %rdi
callq 0x5f480
jmp 0x1240248
jmp 0x124024a
movq 0x800(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12402a5
movq %rax, %rdi
callq 0x678a0
jmp 0x12402a7
leaq 0x1958(%rsp), %rax
movq %rax, 0x2400(%rsp)
movq 0x2400(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7f0(%rsp)
leaq 0x1958(%rsp), %rax
movq %rax, 0x25d8(%rsp)
movq 0x25d8(%rsp), %rax
movq %rax, 0x4240(%rsp)
movq 0x4240(%rsp), %rax
movq %rax, 0x7f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1240392
movq 0x7f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x423c(%rsp) # imm = 0xFFFFFFFF
movl 0x423c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4238(%rsp)
cmpl $0x1, 0x4238(%rsp)
jne 0x1240392
movq 0x7f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1240363
movq 0x7f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1240361
jmp 0x1240390
movq 0x7f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46e0(%rsp)
cmpq $0x0, 0x46e0(%rsp)
je 0x124038e
movq 0x46e0(%rsp), %rdi
callq 0x5f480
jmp 0x1240390
jmp 0x1240392
movq 0x7f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12403ed
movq %rax, %rdi
callq 0x678a0
movq 0x7f0(%rsp), %rax
movq %rax, 0x19a0(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x19ac(%rsp), %eax
leaq 0x1908(%rsp), %rdx
movq %rdx, 0x2228(%rsp)
movq %rcx, 0x2220(%rsp)
movl %eax, 0x221c(%rsp)
movq 0x2220(%rsp), %rax
movq %rax, 0x7e8(%rsp)
movb $0x0, 0x221b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x221c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1908(%rsp), %r10
movq %r10, 0x3568(%rsp)
movl %r9d, 0x3564(%rsp)
movl %r8d, 0x3560(%rsp)
movl %edi, 0x355c(%rsp)
movq %rsi, 0x3550(%rsp)
movq %rdx, 0x3548(%rsp)
movl %ecx, 0x3544(%rsp)
movq %rax, 0x3538(%rsp)
movq 0x3568(%rsp), %rcx
movq %rcx, 0x7e0(%rsp)
movq 0x3550(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3548(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3544(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3538(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3564(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3560(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x355c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3bf0(%rsp)
movl $0x10, 0x3bec(%rsp)
movq 0x3bf0(%rsp), %rax
movslq 0x3bec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7e8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1930(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12405b9
movq 0x7e8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1948(%rsp)
movb $0x1, 0x221b(%rsp)
testb $0x1, 0x221b(%rsp)
jne 0x12406f4
leaq 0x1908(%rsp), %rax
movq %rax, 0x24a0(%rsp)
movq 0x24a0(%rsp), %rax
movq %rax, 0x44b0(%rsp)
movq 0x44b0(%rsp), %rax
movq %rax, 0x7d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1240697
movq 0x7d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x44ac(%rsp) # imm = 0xFFFFFFFF
movl 0x44ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x44a8(%rsp)
cmpl $0x1, 0x44a8(%rsp)
jne 0x1240697
movq 0x7d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1240668
movq 0x7d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1240666
jmp 0x1240695
movq 0x7d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45a8(%rsp)
cmpq $0x0, 0x45a8(%rsp)
je 0x1240693
movq 0x45a8(%rsp), %rdi
callq 0x5f480
jmp 0x1240695
jmp 0x1240697
movq 0x7d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12406f2
movq %rax, %rdi
callq 0x678a0
jmp 0x12406f4
leaq 0x1908(%rsp), %rax
movq %rax, 0x23f8(%rsp)
movq 0x23f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7c8(%rsp)
leaq 0x1908(%rsp), %rax
movq %rax, 0x25e0(%rsp)
movq 0x25e0(%rsp), %rax
movq %rax, 0x4230(%rsp)
movq 0x4230(%rsp), %rax
movq %rax, 0x7d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12407df
movq 0x7d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x422c(%rsp) # imm = 0xFFFFFFFF
movl 0x422c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4228(%rsp)
cmpl $0x1, 0x4228(%rsp)
jne 0x12407df
movq 0x7d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12407b0
movq 0x7d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12407ae
jmp 0x12407dd
movq 0x7d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46e8(%rsp)
cmpq $0x0, 0x46e8(%rsp)
je 0x12407db
movq 0x46e8(%rsp), %rdi
callq 0x5f480
jmp 0x12407dd
jmp 0x12407df
movq 0x7d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x124083a
movq %rax, %rdi
callq 0x678a0
movq 0x7c8(%rsp), %rax
movq %rax, 0x1950(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x19ac(%rsp), %eax
leaq 0x18b8(%rsp), %rdx
movq %rdx, 0x2960(%rsp)
movq %rcx, 0x2958(%rsp)
movl %eax, 0x2954(%rsp)
movq 0x2958(%rsp), %rax
movq %rax, 0x7c0(%rsp)
movb $0x0, 0x2953(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2954(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x18b8(%rsp), %r10
movq %r10, 0x2f48(%rsp)
movl %r9d, 0x2f44(%rsp)
movl %r8d, 0x2f40(%rsp)
movl %edi, 0x2f3c(%rsp)
movq %rsi, 0x2f30(%rsp)
movq %rdx, 0x2f28(%rsp)
movl %ecx, 0x2f24(%rsp)
movq %rax, 0x2f18(%rsp)
movq 0x2f48(%rsp), %rcx
movq %rcx, 0x7b8(%rsp)
movq 0x2f30(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2f28(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2f24(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2f18(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2f44(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f40(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f3c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3db0(%rsp)
movl $0x10, 0x3dac(%rsp)
movq 0x3db0(%rsp), %rax
movslq 0x3dac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3dac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7c0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x18e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1240a06
movq 0x7c0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x18f8(%rsp)
movb $0x1, 0x2953(%rsp)
testb $0x1, 0x2953(%rsp)
jne 0x1240b41
leaq 0x18b8(%rsp), %rax
movq %rax, 0x2968(%rsp)
movq 0x2968(%rsp), %rax
movq %rax, 0x3e80(%rsp)
movq 0x3e80(%rsp), %rax
movq %rax, 0x7b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1240ae4
movq 0x7b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e7c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e7c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e78(%rsp)
cmpl $0x1, 0x3e78(%rsp)
jne 0x1240ae4
movq 0x7b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1240ab5
movq 0x7b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1240ab3
jmp 0x1240ae2
movq 0x7b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48c0(%rsp)
cmpq $0x0, 0x48c0(%rsp)
je 0x1240ae0
movq 0x48c0(%rsp), %rdi
callq 0x5f480
jmp 0x1240ae2
jmp 0x1240ae4
movq 0x7b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1240b3f
movq %rax, %rdi
callq 0x678a0
jmp 0x1240b41
leaq 0x18b8(%rsp), %rax
movq %rax, 0x2ac8(%rsp)
movq 0x2ac8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7a0(%rsp)
leaq 0x18b8(%rsp), %rax
movq %rax, 0x25e8(%rsp)
movq 0x25e8(%rsp), %rax
movq %rax, 0x4220(%rsp)
movq 0x4220(%rsp), %rax
movq %rax, 0x7a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1240c2c
movq 0x7a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x421c(%rsp) # imm = 0xFFFFFFFF
movl 0x421c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4218(%rsp)
cmpl $0x1, 0x4218(%rsp)
jne 0x1240c2c
movq 0x7a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1240bfd
movq 0x7a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1240bfb
jmp 0x1240c2a
movq 0x7a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46f0(%rsp)
cmpq $0x0, 0x46f0(%rsp)
je 0x1240c28
movq 0x46f0(%rsp), %rdi
callq 0x5f480
jmp 0x1240c2a
jmp 0x1240c2c
movq 0x7a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1240c87
movq %rax, %rdi
callq 0x678a0
movq 0x7a0(%rsp), %rax
movq %rax, 0x1900(%rsp)
movl $0x0, 0x18b4(%rsp)
movl 0x18b4(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x1240d06
movq 0x19a0(%rsp), %rsi
movslq 0x18b4(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1950(%rsp), %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x12780c0
movq 0x1900(%rsp), %rax
movslq 0x18b4(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x18b4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x18b4(%rsp)
jmp 0x1240ca2
jmp 0x1240d08
movl 0x19ac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x19ac(%rsp)
jmp 0x123ff9c
movl $0x0, 0x1f24(%rsp)
jmp 0x124e6a5
movl 0x1edc(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jne 0x124179a
movl 0x1ed8(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jne 0x124179a
cmpl $0x1, 0x1ed0(%rsp)
jne 0x124179a
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1eec(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fc8(%rsp)
movq 0x1fc8(%rsp), %rcx
movq %rcx, 0x790(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x79f(%rsp)
je 0x1240dfb
movq 0x790(%rsp), %rax
movq %rax, 0x2d20(%rsp)
movq 0x2d20(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x79f(%rsp)
movb 0x79f(%rsp), %al
testb $0x1, %al
jne 0x1240e08
jmp 0x1240e18
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x124e6a5
movl $0x0, 0x18b0(%rsp)
movl 0x18b0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x124178a
movq 0x1f18(%rsp), %rcx
movl 0x18b0(%rsp), %eax
leaq 0x1860(%rsp), %rdx
movq %rdx, 0x2210(%rsp)
movq %rcx, 0x2208(%rsp)
movl %eax, 0x2204(%rsp)
movq 0x2208(%rsp), %rax
movq %rax, 0x788(%rsp)
movb $0x0, 0x2203(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2204(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1860(%rsp), %r10
movq %r10, 0x35a0(%rsp)
movl %r9d, 0x359c(%rsp)
movl %r8d, 0x3598(%rsp)
movl %edi, 0x3594(%rsp)
movq %rsi, 0x3588(%rsp)
movq %rdx, 0x3580(%rsp)
movl %ecx, 0x357c(%rsp)
movq %rax, 0x3570(%rsp)
movq 0x35a0(%rsp), %rcx
movq %rcx, 0x780(%rsp)
movq 0x3588(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3580(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x357c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3570(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x359c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3598(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3594(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3be0(%rsp)
movl $0x10, 0x3bdc(%rsp)
movq 0x3be0(%rsp), %rax
movslq 0x3bdc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bdc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x788(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1888(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1240ff3
movq 0x788(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x18a0(%rsp)
movb $0x1, 0x2203(%rsp)
testb $0x1, 0x2203(%rsp)
jne 0x124112e
leaq 0x1860(%rsp), %rax
movq %rax, 0x24a8(%rsp)
movq 0x24a8(%rsp), %rax
movq %rax, 0x44a0(%rsp)
movq 0x44a0(%rsp), %rax
movq %rax, 0x778(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12410d1
movq 0x778(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x449c(%rsp) # imm = 0xFFFFFFFF
movl 0x449c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4498(%rsp)
cmpl $0x1, 0x4498(%rsp)
jne 0x12410d1
movq 0x778(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12410a2
movq 0x778(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12410a0
jmp 0x12410cf
movq 0x778(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45b0(%rsp)
cmpq $0x0, 0x45b0(%rsp)
je 0x12410cd
movq 0x45b0(%rsp), %rdi
callq 0x5f480
jmp 0x12410cf
jmp 0x12410d1
movq 0x778(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x124112c
movq %rax, %rdi
callq 0x678a0
jmp 0x124112e
leaq 0x1860(%rsp), %rax
movq %rax, 0x23f0(%rsp)
movq 0x23f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x768(%rsp)
leaq 0x1860(%rsp), %rax
movq %rax, 0x25f0(%rsp)
movq 0x25f0(%rsp), %rax
movq %rax, 0x4210(%rsp)
movq 0x4210(%rsp), %rax
movq %rax, 0x770(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1241219
movq 0x770(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x420c(%rsp) # imm = 0xFFFFFFFF
movl 0x420c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4208(%rsp)
cmpl $0x1, 0x4208(%rsp)
jne 0x1241219
movq 0x770(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12411ea
movq 0x770(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12411e8
jmp 0x1241217
movq 0x770(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46f8(%rsp)
cmpq $0x0, 0x46f8(%rsp)
je 0x1241215
movq 0x46f8(%rsp), %rdi
callq 0x5f480
jmp 0x1241217
jmp 0x1241219
movq 0x770(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1241274
movq %rax, %rdi
callq 0x678a0
movq 0x768(%rsp), %rax
movq %rax, 0x18a8(%rsp)
movq 0x1f10(%rsp), %rax
movq %rax, 0x23e8(%rsp)
movq 0x23e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1858(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x18b0(%rsp), %eax
leaq 0x1808(%rsp), %rdx
movq %rdx, 0x2940(%rsp)
movq %rcx, 0x2938(%rsp)
movl %eax, 0x2934(%rsp)
movq 0x2938(%rsp), %rax
movq %rax, 0x760(%rsp)
movb $0x0, 0x2933(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2934(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1808(%rsp), %r10
movq %r10, 0x2f80(%rsp)
movl %r9d, 0x2f7c(%rsp)
movl %r8d, 0x2f78(%rsp)
movl %edi, 0x2f74(%rsp)
movq %rsi, 0x2f68(%rsp)
movq %rdx, 0x2f60(%rsp)
movl %ecx, 0x2f5c(%rsp)
movq %rax, 0x2f50(%rsp)
movq 0x2f80(%rsp), %rcx
movq %rcx, 0x758(%rsp)
movq 0x2f68(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2f60(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2f5c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2f50(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2f7c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f78(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f74(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3da0(%rsp)
movl $0x10, 0x3d9c(%rsp)
movq 0x3da0(%rsp), %rax
movslq 0x3d9c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d9c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x760(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1830(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1241463
movq 0x760(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1848(%rsp)
movb $0x1, 0x2933(%rsp)
testb $0x1, 0x2933(%rsp)
jne 0x124159e
leaq 0x1808(%rsp), %rax
movq %rax, 0x2948(%rsp)
movq 0x2948(%rsp), %rax
movq %rax, 0x3e90(%rsp)
movq 0x3e90(%rsp), %rax
movq %rax, 0x750(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1241541
movq 0x750(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e8c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e8c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e88(%rsp)
cmpl $0x1, 0x3e88(%rsp)
jne 0x1241541
movq 0x750(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1241512
movq 0x750(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1241510
jmp 0x124153f
movq 0x750(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48b8(%rsp)
cmpq $0x0, 0x48b8(%rsp)
je 0x124153d
movq 0x48b8(%rsp), %rdi
callq 0x5f480
jmp 0x124153f
jmp 0x1241541
movq 0x750(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x124159c
movq %rax, %rdi
callq 0x678a0
jmp 0x124159e
leaq 0x1808(%rsp), %rax
movq %rax, 0x2ac0(%rsp)
movq 0x2ac0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x740(%rsp)
leaq 0x1808(%rsp), %rax
movq %rax, 0x25f8(%rsp)
movq 0x25f8(%rsp), %rax
movq %rax, 0x4200(%rsp)
movq 0x4200(%rsp), %rax
movq %rax, 0x748(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1241689
movq 0x748(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41fc(%rsp) # imm = 0xFFFFFFFF
movl 0x41fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41f8(%rsp)
cmpl $0x1, 0x41f8(%rsp)
jne 0x1241689
movq 0x748(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x124165a
movq 0x748(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1241658
jmp 0x1241687
movq 0x748(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4700(%rsp)
cmpq $0x0, 0x4700(%rsp)
je 0x1241685
movq 0x4700(%rsp), %rdi
callq 0x5f480
jmp 0x1241687
jmp 0x1241689
movq 0x748(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12416e4
movq %rax, %rdi
callq 0x678a0
movq 0x740(%rsp), %rax
movq %rax, 0x1850(%rsp)
movl $0x0, 0x1804(%rsp)
movl 0x1804(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x1241772
movq 0x18a8(%rsp), %rsi
movslq 0x1804(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1858(%rsp), %rdx
movslq 0x1804(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x12780c0
movq 0x1850(%rsp), %rax
movslq 0x1804(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1804(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1804(%rsp)
jmp 0x12416ff
jmp 0x1241774
movl 0x18b0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x18b0(%rsp)
jmp 0x1240e23
movl $0x0, 0x1f24(%rsp)
jmp 0x124e6a5
cmpl $0x1, 0x1ef8(%rsp)
jne 0x124261b
cmpl $0x1, 0x1ef4(%rsp)
jne 0x124261b
movl 0x1ed0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jne 0x124261b
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed0(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fc0(%rsp)
movq 0x1fc0(%rsp), %rcx
movq %rcx, 0x730(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x73f(%rsp)
je 0x1241861
movq 0x730(%rsp), %rax
movq %rax, 0x2d28(%rsp)
movq 0x2d28(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x73f(%rsp)
movb 0x73f(%rsp), %al
testb $0x1, %al
jne 0x124186e
jmp 0x124187e
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x124e6a5
movl $0x0, 0x1800(%rsp)
movl 0x1800(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x124260b
movq 0x1f18(%rsp), %rcx
movl 0x1800(%rsp), %eax
leaq 0x17b0(%rsp), %rdx
movq %rdx, 0x21f8(%rsp)
movq %rcx, 0x21f0(%rsp)
movl %eax, 0x21ec(%rsp)
movq 0x21f0(%rsp), %rax
movq %rax, 0x728(%rsp)
movb $0x0, 0x21eb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x21ec(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x17b0(%rsp), %r10
movq %r10, 0x35d8(%rsp)
movl %r9d, 0x35d4(%rsp)
movl %r8d, 0x35d0(%rsp)
movl %edi, 0x35cc(%rsp)
movq %rsi, 0x35c0(%rsp)
movq %rdx, 0x35b8(%rsp)
movl %ecx, 0x35b4(%rsp)
movq %rax, 0x35a8(%rsp)
movq 0x35d8(%rsp), %rcx
movq %rcx, 0x720(%rsp)
movq 0x35c0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x35b8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x35b4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x35a8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x35d4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x35d0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x35cc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3bd0(%rsp)
movl $0x10, 0x3bcc(%rsp)
movq 0x3bd0(%rsp), %rax
movslq 0x3bcc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bcc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x728(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x17d8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1241a59
movq 0x728(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x17f0(%rsp)
movb $0x1, 0x21eb(%rsp)
testb $0x1, 0x21eb(%rsp)
jne 0x1241b94
leaq 0x17b0(%rsp), %rax
movq %rax, 0x24b0(%rsp)
movq 0x24b0(%rsp), %rax
movq %rax, 0x4490(%rsp)
movq 0x4490(%rsp), %rax
movq %rax, 0x718(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1241b37
movq 0x718(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x448c(%rsp) # imm = 0xFFFFFFFF
movl 0x448c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4488(%rsp)
cmpl $0x1, 0x4488(%rsp)
jne 0x1241b37
movq 0x718(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1241b08
movq 0x718(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1241b06
jmp 0x1241b35
movq 0x718(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45b8(%rsp)
cmpq $0x0, 0x45b8(%rsp)
je 0x1241b33
movq 0x45b8(%rsp), %rdi
callq 0x5f480
jmp 0x1241b35
jmp 0x1241b37
movq 0x718(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1241b92
movq %rax, %rdi
callq 0x678a0
jmp 0x1241b94
leaq 0x17b0(%rsp), %rax
movq %rax, 0x23e0(%rsp)
movq 0x23e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x708(%rsp)
leaq 0x17b0(%rsp), %rax
movq %rax, 0x2600(%rsp)
movq 0x2600(%rsp), %rax
movq %rax, 0x41f0(%rsp)
movq 0x41f0(%rsp), %rax
movq %rax, 0x710(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1241c7f
movq 0x710(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41ec(%rsp) # imm = 0xFFFFFFFF
movl 0x41ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41e8(%rsp)
cmpl $0x1, 0x41e8(%rsp)
jne 0x1241c7f
movq 0x710(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1241c50
movq 0x710(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1241c4e
jmp 0x1241c7d
movq 0x710(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4708(%rsp)
cmpq $0x0, 0x4708(%rsp)
je 0x1241c7b
movq 0x4708(%rsp), %rdi
callq 0x5f480
jmp 0x1241c7d
jmp 0x1241c7f
movq 0x710(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1241cda
movq %rax, %rdi
callq 0x678a0
movq 0x708(%rsp), %rax
movq %rax, 0x17f8(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1800(%rsp), %eax
leaq 0x1760(%rsp), %rdx
movq %rdx, 0x21e0(%rsp)
movq %rcx, 0x21d8(%rsp)
movl %eax, 0x21d4(%rsp)
movq 0x21d8(%rsp), %rax
movq %rax, 0x700(%rsp)
movb $0x0, 0x21d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x21d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1760(%rsp), %r10
movq %r10, 0x3610(%rsp)
movl %r9d, 0x360c(%rsp)
movl %r8d, 0x3608(%rsp)
movl %edi, 0x3604(%rsp)
movq %rsi, 0x35f8(%rsp)
movq %rdx, 0x35f0(%rsp)
movl %ecx, 0x35ec(%rsp)
movq %rax, 0x35e0(%rsp)
movq 0x3610(%rsp), %rcx
movq %rcx, 0x6f8(%rsp)
movq 0x35f8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x35f0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x35ec(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x35e0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x360c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3608(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3604(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3bc0(%rsp)
movl $0x10, 0x3bbc(%rsp)
movq 0x3bc0(%rsp), %rax
movslq 0x3bbc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bbc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x700(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1788(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1241ea6
movq 0x700(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x17a0(%rsp)
movb $0x1, 0x21d3(%rsp)
testb $0x1, 0x21d3(%rsp)
jne 0x1241fe1
leaq 0x1760(%rsp), %rax
movq %rax, 0x24b8(%rsp)
movq 0x24b8(%rsp), %rax
movq %rax, 0x4480(%rsp)
movq 0x4480(%rsp), %rax
movq %rax, 0x6f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1241f84
movq 0x6f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x447c(%rsp) # imm = 0xFFFFFFFF
movl 0x447c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4478(%rsp)
cmpl $0x1, 0x4478(%rsp)
jne 0x1241f84
movq 0x6f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1241f55
movq 0x6f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1241f53
jmp 0x1241f82
movq 0x6f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45c0(%rsp)
cmpq $0x0, 0x45c0(%rsp)
je 0x1241f80
movq 0x45c0(%rsp), %rdi
callq 0x5f480
jmp 0x1241f82
jmp 0x1241f84
movq 0x6f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1241fdf
movq %rax, %rdi
callq 0x678a0
jmp 0x1241fe1
leaq 0x1760(%rsp), %rax
movq %rax, 0x23d8(%rsp)
movq 0x23d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6e0(%rsp)
leaq 0x1760(%rsp), %rax
movq %rax, 0x2608(%rsp)
movq 0x2608(%rsp), %rax
movq %rax, 0x41e0(%rsp)
movq 0x41e0(%rsp), %rax
movq %rax, 0x6e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12420cc
movq 0x6e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41dc(%rsp) # imm = 0xFFFFFFFF
movl 0x41dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41d8(%rsp)
cmpl $0x1, 0x41d8(%rsp)
jne 0x12420cc
movq 0x6e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x124209d
movq 0x6e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x124209b
jmp 0x12420ca
movq 0x6e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4710(%rsp)
cmpq $0x0, 0x4710(%rsp)
je 0x12420c8
movq 0x4710(%rsp), %rdi
callq 0x5f480
jmp 0x12420ca
jmp 0x12420cc
movq 0x6e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1242127
movq %rax, %rdi
callq 0x678a0
movq 0x6e0(%rsp), %rax
movq %rax, 0x17a8(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1800(%rsp), %eax
leaq 0x1710(%rsp), %rdx
movq %rdx, 0x2920(%rsp)
movq %rcx, 0x2918(%rsp)
movl %eax, 0x2914(%rsp)
movq 0x2918(%rsp), %rax
movq %rax, 0x6d8(%rsp)
movb $0x0, 0x2913(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2914(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1710(%rsp), %r10
movq %r10, 0x2fb8(%rsp)
movl %r9d, 0x2fb4(%rsp)
movl %r8d, 0x2fb0(%rsp)
movl %edi, 0x2fac(%rsp)
movq %rsi, 0x2fa0(%rsp)
movq %rdx, 0x2f98(%rsp)
movl %ecx, 0x2f94(%rsp)
movq %rax, 0x2f88(%rsp)
movq 0x2fb8(%rsp), %rcx
movq %rcx, 0x6d0(%rsp)
movq 0x2fa0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2f98(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2f94(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2f88(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2fb4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2fb0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2fac(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d90(%rsp)
movl $0x10, 0x3d8c(%rsp)
movq 0x3d90(%rsp), %rax
movslq 0x3d8c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d8c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6d8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1738(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12422f3
movq 0x6d8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1750(%rsp)
movb $0x1, 0x2913(%rsp)
testb $0x1, 0x2913(%rsp)
jne 0x124242e
leaq 0x1710(%rsp), %rax
movq %rax, 0x2928(%rsp)
movq 0x2928(%rsp), %rax
movq %rax, 0x3ea0(%rsp)
movq 0x3ea0(%rsp), %rax
movq %rax, 0x6c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12423d1
movq 0x6c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e9c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e9c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e98(%rsp)
cmpl $0x1, 0x3e98(%rsp)
jne 0x12423d1
movq 0x6c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12423a2
movq 0x6c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12423a0
jmp 0x12423cf
movq 0x6c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48b0(%rsp)
cmpq $0x0, 0x48b0(%rsp)
je 0x12423cd
movq 0x48b0(%rsp), %rdi
callq 0x5f480
jmp 0x12423cf
jmp 0x12423d1
movq 0x6c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x124242c
movq %rax, %rdi
callq 0x678a0
jmp 0x124242e
leaq 0x1710(%rsp), %rax
movq %rax, 0x2ab8(%rsp)
movq 0x2ab8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6b8(%rsp)
leaq 0x1710(%rsp), %rax
movq %rax, 0x2610(%rsp)
movq 0x2610(%rsp), %rax
movq %rax, 0x41d0(%rsp)
movq 0x41d0(%rsp), %rax
movq %rax, 0x6c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1242519
movq 0x6c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41cc(%rsp) # imm = 0xFFFFFFFF
movl 0x41cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41c8(%rsp)
cmpl $0x1, 0x41c8(%rsp)
jne 0x1242519
movq 0x6c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12424ea
movq 0x6c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12424e8
jmp 0x1242517
movq 0x6c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4718(%rsp)
cmpq $0x0, 0x4718(%rsp)
je 0x1242515
movq 0x4718(%rsp), %rdi
callq 0x5f480
jmp 0x1242517
jmp 0x1242519
movq 0x6c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1242574
movq %rax, %rdi
callq 0x678a0
movq 0x6b8(%rsp), %rax
movq %rax, 0x1758(%rsp)
movl $0x0, 0x170c(%rsp)
movl 0x170c(%rsp), %eax
cmpl 0x1ecc(%rsp), %eax
jge 0x12425f3
movq 0x17f8(%rsp), %rsi
movq 0x17a8(%rsp), %rdx
movslq 0x170c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x12780c0
movq 0x1758(%rsp), %rax
movslq 0x170c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x170c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x170c(%rsp)
jmp 0x124258f
jmp 0x12425f5
movl 0x1800(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1800(%rsp)
jmp 0x1241889
movl $0x0, 0x1f24(%rsp)
jmp 0x124e6a5
movl 0x1edc(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jne 0x1243087
movl 0x1ed8(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jne 0x1243087
cmpl $0x1, 0x1eec(%rsp)
jne 0x1243087
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed0(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fb8(%rsp)
movq 0x1fb8(%rsp), %rcx
movq %rcx, 0x6a8(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x6b7(%rsp)
je 0x12426e8
movq 0x6a8(%rsp), %rax
movq %rax, 0x2d30(%rsp)
movq 0x2d30(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x6b7(%rsp)
movb 0x6b7(%rsp), %al
testb $0x1, %al
jne 0x12426f5
jmp 0x1242705
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x124e6a5
movl $0x0, 0x1708(%rsp)
movl 0x1708(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x1243077
movq 0x1f18(%rsp), %rax
movq %rax, 0x23d0(%rsp)
movq 0x23d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1700(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1708(%rsp), %eax
leaq 0x16b0(%rsp), %rdx
movq %rdx, 0x21c8(%rsp)
movq %rcx, 0x21c0(%rsp)
movl %eax, 0x21bc(%rsp)
movq 0x21c0(%rsp), %rax
movq %rax, 0x6a0(%rsp)
movb $0x0, 0x21bb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x21bc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x16b0(%rsp), %r10
movq %r10, 0x3648(%rsp)
movl %r9d, 0x3644(%rsp)
movl %r8d, 0x3640(%rsp)
movl %edi, 0x363c(%rsp)
movq %rsi, 0x3630(%rsp)
movq %rdx, 0x3628(%rsp)
movl %ecx, 0x3624(%rsp)
movq %rax, 0x3618(%rsp)
movq 0x3648(%rsp), %rcx
movq %rcx, 0x698(%rsp)
movq 0x3630(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3628(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3624(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3618(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3644(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3640(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x363c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3bb0(%rsp)
movl $0x10, 0x3bac(%rsp)
movq 0x3bb0(%rsp), %rax
movslq 0x3bac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6a0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x16d8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1242903
movq 0x6a0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x16f0(%rsp)
movb $0x1, 0x21bb(%rsp)
testb $0x1, 0x21bb(%rsp)
jne 0x1242a3e
leaq 0x16b0(%rsp), %rax
movq %rax, 0x24c0(%rsp)
movq 0x24c0(%rsp), %rax
movq %rax, 0x4470(%rsp)
movq 0x4470(%rsp), %rax
movq %rax, 0x690(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12429e1
movq 0x690(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x446c(%rsp) # imm = 0xFFFFFFFF
movl 0x446c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4468(%rsp)
cmpl $0x1, 0x4468(%rsp)
jne 0x12429e1
movq 0x690(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12429b2
movq 0x690(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12429b0
jmp 0x12429df
movq 0x690(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45c8(%rsp)
cmpq $0x0, 0x45c8(%rsp)
je 0x12429dd
movq 0x45c8(%rsp), %rdi
callq 0x5f480
jmp 0x12429df
jmp 0x12429e1
movq 0x690(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1242a3c
movq %rax, %rdi
callq 0x678a0
jmp 0x1242a3e
leaq 0x16b0(%rsp), %rax
movq %rax, 0x23c8(%rsp)
movq 0x23c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x680(%rsp)
leaq 0x16b0(%rsp), %rax
movq %rax, 0x2618(%rsp)
movq 0x2618(%rsp), %rax
movq %rax, 0x41c0(%rsp)
movq 0x41c0(%rsp), %rax
movq %rax, 0x688(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1242b29
movq 0x688(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41bc(%rsp) # imm = 0xFFFFFFFF
movl 0x41bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41b8(%rsp)
cmpl $0x1, 0x41b8(%rsp)
jne 0x1242b29
movq 0x688(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1242afa
movq 0x688(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1242af8
jmp 0x1242b27
movq 0x688(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4720(%rsp)
cmpq $0x0, 0x4720(%rsp)
je 0x1242b25
movq 0x4720(%rsp), %rdi
callq 0x5f480
jmp 0x1242b27
jmp 0x1242b29
movq 0x688(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1242b84
movq %rax, %rdi
callq 0x678a0
movq 0x680(%rsp), %rax
movq %rax, 0x16f8(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1708(%rsp), %eax
leaq 0x1660(%rsp), %rdx
movq %rdx, 0x2900(%rsp)
movq %rcx, 0x28f8(%rsp)
movl %eax, 0x28f4(%rsp)
movq 0x28f8(%rsp), %rax
movq %rax, 0x678(%rsp)
movb $0x0, 0x28f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x28f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1660(%rsp), %r10
movq %r10, 0x2ff0(%rsp)
movl %r9d, 0x2fec(%rsp)
movl %r8d, 0x2fe8(%rsp)
movl %edi, 0x2fe4(%rsp)
movq %rsi, 0x2fd8(%rsp)
movq %rdx, 0x2fd0(%rsp)
movl %ecx, 0x2fcc(%rsp)
movq %rax, 0x2fc0(%rsp)
movq 0x2ff0(%rsp), %rcx
movq %rcx, 0x670(%rsp)
movq 0x2fd8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2fd0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2fcc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2fc0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2fec(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2fe8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2fe4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d80(%rsp)
movl $0x10, 0x3d7c(%rsp)
movq 0x3d80(%rsp), %rax
movslq 0x3d7c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d7c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x678(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1688(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1242d50
movq 0x678(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x16a0(%rsp)
movb $0x1, 0x28f3(%rsp)
testb $0x1, 0x28f3(%rsp)
jne 0x1242e8b
leaq 0x1660(%rsp), %rax
movq %rax, 0x2908(%rsp)
movq 0x2908(%rsp), %rax
movq %rax, 0x3eb0(%rsp)
movq 0x3eb0(%rsp), %rax
movq %rax, 0x668(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1242e2e
movq 0x668(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3eac(%rsp) # imm = 0xFFFFFFFF
movl 0x3eac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ea8(%rsp)
cmpl $0x1, 0x3ea8(%rsp)
jne 0x1242e2e
movq 0x668(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1242dff
movq 0x668(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1242dfd
jmp 0x1242e2c
movq 0x668(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48a8(%rsp)
cmpq $0x0, 0x48a8(%rsp)
je 0x1242e2a
movq 0x48a8(%rsp), %rdi
callq 0x5f480
jmp 0x1242e2c
jmp 0x1242e2e
movq 0x668(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1242e89
movq %rax, %rdi
callq 0x678a0
jmp 0x1242e8b
leaq 0x1660(%rsp), %rax
movq %rax, 0x2ab0(%rsp)
movq 0x2ab0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x658(%rsp)
leaq 0x1660(%rsp), %rax
movq %rax, 0x2620(%rsp)
movq 0x2620(%rsp), %rax
movq %rax, 0x41b0(%rsp)
movq 0x41b0(%rsp), %rax
movq %rax, 0x660(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1242f76
movq 0x660(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41ac(%rsp) # imm = 0xFFFFFFFF
movl 0x41ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41a8(%rsp)
cmpl $0x1, 0x41a8(%rsp)
jne 0x1242f76
movq 0x660(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1242f47
movq 0x660(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1242f45
jmp 0x1242f74
movq 0x660(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4728(%rsp)
cmpq $0x0, 0x4728(%rsp)
je 0x1242f72
movq 0x4728(%rsp), %rdi
callq 0x5f480
jmp 0x1242f74
jmp 0x1242f76
movq 0x660(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1242fd1
movq %rax, %rdi
callq 0x678a0
movq 0x658(%rsp), %rax
movq %rax, 0x16a8(%rsp)
movl $0x0, 0x165c(%rsp)
movl 0x165c(%rsp), %eax
cmpl 0x1ecc(%rsp), %eax
jge 0x124305f
movq 0x1700(%rsp), %rsi
movslq 0x165c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x16f8(%rsp), %rdx
movslq 0x165c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x12780c0
movq 0x16a8(%rsp), %rax
movslq 0x165c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x165c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x165c(%rsp)
jmp 0x1242fec
jmp 0x1243061
movl 0x1708(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1708(%rsp)
jmp 0x1242710
movl $0x0, 0x1f24(%rsp)
jmp 0x124e6a5
cmpl $0x1, 0x1ef8(%rsp)
je 0x1243fb1
cmpl $0x1, 0x1edc(%rsp)
jne 0x1243fb1
movl 0x1ed8(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jne 0x1243fb1
movl 0x1ed0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jne 0x1243fb1
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1eec(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fb0(%rsp)
movq 0x1fb0(%rsp), %rcx
movq %rcx, 0x648(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x657(%rsp)
je 0x1243162
movq 0x648(%rsp), %rax
movq %rax, 0x2d38(%rsp)
movq 0x2d38(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x657(%rsp)
movb 0x657(%rsp), %al
testb $0x1, %al
jne 0x124316f
jmp 0x124317f
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x124e6a5
movl $0x0, 0x1658(%rsp)
movl 0x1658(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x1243fa1
movq 0x1f18(%rsp), %rcx
movl 0x1658(%rsp), %eax
leaq 0x1608(%rsp), %rdx
movq %rdx, 0x21b0(%rsp)
movq %rcx, 0x21a8(%rsp)
movl %eax, 0x21a4(%rsp)
movq 0x21a8(%rsp), %rax
movq %rax, 0x640(%rsp)
movb $0x0, 0x21a3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x21a4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1608(%rsp), %r10
movq %r10, 0x3680(%rsp)
movl %r9d, 0x367c(%rsp)
movl %r8d, 0x3678(%rsp)
movl %edi, 0x3674(%rsp)
movq %rsi, 0x3668(%rsp)
movq %rdx, 0x3660(%rsp)
movl %ecx, 0x365c(%rsp)
movq %rax, 0x3650(%rsp)
movq 0x3680(%rsp), %rcx
movq %rcx, 0x638(%rsp)
movq 0x3668(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3660(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x365c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3650(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x367c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3678(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3674(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ba0(%rsp)
movl $0x10, 0x3b9c(%rsp)
movq 0x3ba0(%rsp), %rax
movslq 0x3b9c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b9c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x640(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1630(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x124335a
movq 0x640(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1648(%rsp)
movb $0x1, 0x21a3(%rsp)
testb $0x1, 0x21a3(%rsp)
jne 0x1243495
leaq 0x1608(%rsp), %rax
movq %rax, 0x24c8(%rsp)
movq 0x24c8(%rsp), %rax
movq %rax, 0x4460(%rsp)
movq 0x4460(%rsp), %rax
movq %rax, 0x630(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1243438
movq 0x630(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x445c(%rsp) # imm = 0xFFFFFFFF
movl 0x445c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4458(%rsp)
cmpl $0x1, 0x4458(%rsp)
jne 0x1243438
movq 0x630(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1243409
movq 0x630(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1243407
jmp 0x1243436
movq 0x630(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45d0(%rsp)
cmpq $0x0, 0x45d0(%rsp)
je 0x1243434
movq 0x45d0(%rsp), %rdi
callq 0x5f480
jmp 0x1243436
jmp 0x1243438
movq 0x630(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1243493
movq %rax, %rdi
callq 0x678a0
jmp 0x1243495
leaq 0x1608(%rsp), %rax
movq %rax, 0x23c0(%rsp)
movq 0x23c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x620(%rsp)
leaq 0x1608(%rsp), %rax
movq %rax, 0x2628(%rsp)
movq 0x2628(%rsp), %rax
movq %rax, 0x41a0(%rsp)
movq 0x41a0(%rsp), %rax
movq %rax, 0x628(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1243580
movq 0x628(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x419c(%rsp) # imm = 0xFFFFFFFF
movl 0x419c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4198(%rsp)
cmpl $0x1, 0x4198(%rsp)
jne 0x1243580
movq 0x628(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1243551
movq 0x628(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x124354f
jmp 0x124357e
movq 0x628(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4730(%rsp)
cmpq $0x0, 0x4730(%rsp)
je 0x124357c
movq 0x4730(%rsp), %rdi
callq 0x5f480
jmp 0x124357e
jmp 0x1243580
movq 0x628(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12435db
movq %rax, %rdi
callq 0x678a0
movq 0x620(%rsp), %rax
movq %rax, 0x1650(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1658(%rsp), %eax
leaq 0x15b8(%rsp), %rdx
movq %rdx, 0x2198(%rsp)
movq %rcx, 0x2190(%rsp)
movl %eax, 0x218c(%rsp)
movq 0x2190(%rsp), %rax
movq %rax, 0x618(%rsp)
movb $0x0, 0x218b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x218c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x15b8(%rsp), %r10
movq %r10, 0x36b8(%rsp)
movl %r9d, 0x36b4(%rsp)
movl %r8d, 0x36b0(%rsp)
movl %edi, 0x36ac(%rsp)
movq %rsi, 0x36a0(%rsp)
movq %rdx, 0x3698(%rsp)
movl %ecx, 0x3694(%rsp)
movq %rax, 0x3688(%rsp)
movq 0x36b8(%rsp), %rcx
movq %rcx, 0x610(%rsp)
movq 0x36a0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3698(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3694(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3688(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x36b4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x36b0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x36ac(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b90(%rsp)
movl $0x10, 0x3b8c(%rsp)
movq 0x3b90(%rsp), %rax
movslq 0x3b8c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b8c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x618(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x15e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12437a7
movq 0x618(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x15f8(%rsp)
movb $0x1, 0x218b(%rsp)
testb $0x1, 0x218b(%rsp)
jne 0x12438e2
leaq 0x15b8(%rsp), %rax
movq %rax, 0x24d0(%rsp)
movq 0x24d0(%rsp), %rax
movq %rax, 0x4450(%rsp)
movq 0x4450(%rsp), %rax
movq %rax, 0x608(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1243885
movq 0x608(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x444c(%rsp) # imm = 0xFFFFFFFF
movl 0x444c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4448(%rsp)
cmpl $0x1, 0x4448(%rsp)
jne 0x1243885
movq 0x608(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1243856
movq 0x608(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1243854
jmp 0x1243883
movq 0x608(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45d8(%rsp)
cmpq $0x0, 0x45d8(%rsp)
je 0x1243881
movq 0x45d8(%rsp), %rdi
callq 0x5f480
jmp 0x1243883
jmp 0x1243885
movq 0x608(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12438e0
movq %rax, %rdi
callq 0x678a0
jmp 0x12438e2
leaq 0x15b8(%rsp), %rax
movq %rax, 0x23b8(%rsp)
movq 0x23b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5f8(%rsp)
leaq 0x15b8(%rsp), %rax
movq %rax, 0x2630(%rsp)
movq 0x2630(%rsp), %rax
movq %rax, 0x4190(%rsp)
movq 0x4190(%rsp), %rax
movq %rax, 0x600(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12439cd
movq 0x600(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x418c(%rsp) # imm = 0xFFFFFFFF
movl 0x418c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4188(%rsp)
cmpl $0x1, 0x4188(%rsp)
jne 0x12439cd
movq 0x600(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x124399e
movq 0x600(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x124399c
jmp 0x12439cb
movq 0x600(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4738(%rsp)
cmpq $0x0, 0x4738(%rsp)
je 0x12439c9
movq 0x4738(%rsp), %rdi
callq 0x5f480
jmp 0x12439cb
jmp 0x12439cd
movq 0x600(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1243a28
movq %rax, %rdi
callq 0x678a0
movq 0x5f8(%rsp), %rax
movq %rax, 0x1600(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1658(%rsp), %eax
leaq 0x1568(%rsp), %rdx
movq %rdx, 0x28e0(%rsp)
movq %rcx, 0x28d8(%rsp)
movl %eax, 0x28d4(%rsp)
movq 0x28d8(%rsp), %rax
movq %rax, 0x5f0(%rsp)
movb $0x0, 0x28d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x28d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1568(%rsp), %r10
movq %r10, 0x3028(%rsp)
movl %r9d, 0x3024(%rsp)
movl %r8d, 0x3020(%rsp)
movl %edi, 0x301c(%rsp)
movq %rsi, 0x3010(%rsp)
movq %rdx, 0x3008(%rsp)
movl %ecx, 0x3004(%rsp)
movq %rax, 0x2ff8(%rsp)
movq 0x3028(%rsp), %rcx
movq %rcx, 0x5e8(%rsp)
movq 0x3010(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3008(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3004(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ff8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3024(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3020(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x301c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d70(%rsp)
movl $0x10, 0x3d6c(%rsp)
movq 0x3d70(%rsp), %rax
movslq 0x3d6c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d6c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5f0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1590(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1243bf4
movq 0x5f0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x15a8(%rsp)
movb $0x1, 0x28d3(%rsp)
testb $0x1, 0x28d3(%rsp)
jne 0x1243d2f
leaq 0x1568(%rsp), %rax
movq %rax, 0x28e8(%rsp)
movq 0x28e8(%rsp), %rax
movq %rax, 0x3ec0(%rsp)
movq 0x3ec0(%rsp), %rax
movq %rax, 0x5e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1243cd2
movq 0x5e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ebc(%rsp) # imm = 0xFFFFFFFF
movl 0x3ebc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3eb8(%rsp)
cmpl $0x1, 0x3eb8(%rsp)
jne 0x1243cd2
movq 0x5e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1243ca3
movq 0x5e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1243ca1
jmp 0x1243cd0
movq 0x5e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48a0(%rsp)
cmpq $0x0, 0x48a0(%rsp)
je 0x1243cce
movq 0x48a0(%rsp), %rdi
callq 0x5f480
jmp 0x1243cd0
jmp 0x1243cd2
movq 0x5e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1243d2d
movq %rax, %rdi
callq 0x678a0
jmp 0x1243d2f
leaq 0x1568(%rsp), %rax
movq %rax, 0x2aa8(%rsp)
movq 0x2aa8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5d0(%rsp)
leaq 0x1568(%rsp), %rax
movq %rax, 0x2638(%rsp)
movq 0x2638(%rsp), %rax
movq %rax, 0x4180(%rsp)
movq 0x4180(%rsp), %rax
movq %rax, 0x5d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1243e1a
movq 0x5d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x417c(%rsp) # imm = 0xFFFFFFFF
movl 0x417c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4178(%rsp)
cmpl $0x1, 0x4178(%rsp)
jne 0x1243e1a
movq 0x5d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1243deb
movq 0x5d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1243de9
jmp 0x1243e18
movq 0x5d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4740(%rsp)
cmpq $0x0, 0x4740(%rsp)
je 0x1243e16
movq 0x4740(%rsp), %rdi
callq 0x5f480
jmp 0x1243e18
jmp 0x1243e1a
movq 0x5d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1243e75
movq %rax, %rdi
callq 0x678a0
movq 0x5d0(%rsp), %rax
movq %rax, 0x15b0(%rsp)
movl $0x0, 0x1564(%rsp)
movl 0x1564(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jge 0x1243f89
movq 0x1600(%rsp), %rax
movslq 0x1564(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x1560(%rsp)
movl $0x0, 0x155c(%rsp)
movl 0x155c(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x1243f31
movq 0x1650(%rsp), %rsi
movslq 0x155c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0x1560(%rsp), %rdx
callq 0x12780c0
movq 0x15b0(%rsp), %rax
movslq 0x155c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x155c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x155c(%rsp)
jmp 0x1243ecd
movl 0x1ef8(%rsp), %ecx
movq 0x1650(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1650(%rsp)
movl 0x1ef8(%rsp), %ecx
movq 0x15b0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x15b0(%rsp)
movl 0x1564(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1564(%rsp)
jmp 0x1243e90
jmp 0x1243f8b
movl 0x1658(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1658(%rsp)
jmp 0x124318a
movl $0x0, 0x1f24(%rsp)
jmp 0x124e6a5
movl 0x1edc(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jne 0x1244ecc
cmpl $0x1, 0x1ef4(%rsp)
je 0x1244ecc
cmpl $0x1, 0x1ed8(%rsp)
jne 0x1244ecc
movl 0x1ed0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jne 0x1244ecc
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1eec(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fa8(%rsp)
movq 0x1fa8(%rsp), %rcx
movq %rcx, 0x5c0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x5cf(%rsp)
je 0x124408c
movq 0x5c0(%rsp), %rax
movq %rax, 0x2d40(%rsp)
movq 0x2d40(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x5cf(%rsp)
movb 0x5cf(%rsp), %al
testb $0x1, %al
jne 0x1244099
jmp 0x12440a9
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x124e6a5
movl $0x0, 0x1558(%rsp)
movl 0x1558(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x1244ebc
movq 0x1f18(%rsp), %rcx
movl 0x1558(%rsp), %eax
leaq 0x1508(%rsp), %rdx
movq %rdx, 0x2180(%rsp)
movq %rcx, 0x2178(%rsp)
movl %eax, 0x2174(%rsp)
movq 0x2178(%rsp), %rax
movq %rax, 0x5b8(%rsp)
movb $0x0, 0x2173(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2174(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1508(%rsp), %r10
movq %r10, 0x36f0(%rsp)
movl %r9d, 0x36ec(%rsp)
movl %r8d, 0x36e8(%rsp)
movl %edi, 0x36e4(%rsp)
movq %rsi, 0x36d8(%rsp)
movq %rdx, 0x36d0(%rsp)
movl %ecx, 0x36cc(%rsp)
movq %rax, 0x36c0(%rsp)
movq 0x36f0(%rsp), %rcx
movq %rcx, 0x5b0(%rsp)
movq 0x36d8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x36d0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x36cc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x36c0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x36ec(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x36e8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x36e4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b80(%rsp)
movl $0x10, 0x3b7c(%rsp)
movq 0x3b80(%rsp), %rax
movslq 0x3b7c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b7c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5b8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1530(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1244284
movq 0x5b8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1548(%rsp)
movb $0x1, 0x2173(%rsp)
testb $0x1, 0x2173(%rsp)
jne 0x12443bf
leaq 0x1508(%rsp), %rax
movq %rax, 0x24d8(%rsp)
movq 0x24d8(%rsp), %rax
movq %rax, 0x4440(%rsp)
movq 0x4440(%rsp), %rax
movq %rax, 0x5a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1244362
movq 0x5a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x443c(%rsp) # imm = 0xFFFFFFFF
movl 0x443c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4438(%rsp)
cmpl $0x1, 0x4438(%rsp)
jne 0x1244362
movq 0x5a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1244333
movq 0x5a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1244331
jmp 0x1244360
movq 0x5a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45e0(%rsp)
cmpq $0x0, 0x45e0(%rsp)
je 0x124435e
movq 0x45e0(%rsp), %rdi
callq 0x5f480
jmp 0x1244360
jmp 0x1244362
movq 0x5a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12443bd
movq %rax, %rdi
callq 0x678a0
jmp 0x12443bf
leaq 0x1508(%rsp), %rax
movq %rax, 0x23b0(%rsp)
movq 0x23b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x598(%rsp)
leaq 0x1508(%rsp), %rax
movq %rax, 0x2640(%rsp)
movq 0x2640(%rsp), %rax
movq %rax, 0x4170(%rsp)
movq 0x4170(%rsp), %rax
movq %rax, 0x5a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12444aa
movq 0x5a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x416c(%rsp) # imm = 0xFFFFFFFF
movl 0x416c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4168(%rsp)
cmpl $0x1, 0x4168(%rsp)
jne 0x12444aa
movq 0x5a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x124447b
movq 0x5a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1244479
jmp 0x12444a8
movq 0x5a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4748(%rsp)
cmpq $0x0, 0x4748(%rsp)
je 0x12444a6
movq 0x4748(%rsp), %rdi
callq 0x5f480
jmp 0x12444a8
jmp 0x12444aa
movq 0x5a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1244505
movq %rax, %rdi
callq 0x678a0
movq 0x598(%rsp), %rax
movq %rax, 0x1550(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1558(%rsp), %eax
leaq 0x14b8(%rsp), %rdx
movq %rdx, 0x2168(%rsp)
movq %rcx, 0x2160(%rsp)
movl %eax, 0x215c(%rsp)
movq 0x2160(%rsp), %rax
movq %rax, 0x590(%rsp)
movb $0x0, 0x215b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x215c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x14b8(%rsp), %r10
movq %r10, 0x3728(%rsp)
movl %r9d, 0x3724(%rsp)
movl %r8d, 0x3720(%rsp)
movl %edi, 0x371c(%rsp)
movq %rsi, 0x3710(%rsp)
movq %rdx, 0x3708(%rsp)
movl %ecx, 0x3704(%rsp)
movq %rax, 0x36f8(%rsp)
movq 0x3728(%rsp), %rcx
movq %rcx, 0x588(%rsp)
movq 0x3710(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3708(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3704(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x36f8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3724(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3720(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x371c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b70(%rsp)
movl $0x10, 0x3b6c(%rsp)
movq 0x3b70(%rsp), %rax
movslq 0x3b6c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b6c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x590(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x14e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12446d1
movq 0x590(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x14f8(%rsp)
movb $0x1, 0x215b(%rsp)
testb $0x1, 0x215b(%rsp)
jne 0x124480c
leaq 0x14b8(%rsp), %rax
movq %rax, 0x24e0(%rsp)
movq 0x24e0(%rsp), %rax
movq %rax, 0x4430(%rsp)
movq 0x4430(%rsp), %rax
movq %rax, 0x580(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12447af
movq 0x580(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x442c(%rsp) # imm = 0xFFFFFFFF
movl 0x442c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4428(%rsp)
cmpl $0x1, 0x4428(%rsp)
jne 0x12447af
movq 0x580(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1244780
movq 0x580(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x124477e
jmp 0x12447ad
movq 0x580(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45e8(%rsp)
cmpq $0x0, 0x45e8(%rsp)
je 0x12447ab
movq 0x45e8(%rsp), %rdi
callq 0x5f480
jmp 0x12447ad
jmp 0x12447af
movq 0x580(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x124480a
movq %rax, %rdi
callq 0x678a0
jmp 0x124480c
leaq 0x14b8(%rsp), %rax
movq %rax, 0x23a8(%rsp)
movq 0x23a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x570(%rsp)
leaq 0x14b8(%rsp), %rax
movq %rax, 0x2648(%rsp)
movq 0x2648(%rsp), %rax
movq %rax, 0x4160(%rsp)
movq 0x4160(%rsp), %rax
movq %rax, 0x578(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12448f7
movq 0x578(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x415c(%rsp) # imm = 0xFFFFFFFF
movl 0x415c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4158(%rsp)
cmpl $0x1, 0x4158(%rsp)
jne 0x12448f7
movq 0x578(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12448c8
movq 0x578(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12448c6
jmp 0x12448f5
movq 0x578(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4750(%rsp)
cmpq $0x0, 0x4750(%rsp)
je 0x12448f3
movq 0x4750(%rsp), %rdi
callq 0x5f480
jmp 0x12448f5
jmp 0x12448f7
movq 0x578(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1244952
movq %rax, %rdi
callq 0x678a0
movq 0x570(%rsp), %rax
movq %rax, 0x1500(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1558(%rsp), %eax
leaq 0x1468(%rsp), %rdx
movq %rdx, 0x28c0(%rsp)
movq %rcx, 0x28b8(%rsp)
movl %eax, 0x28b4(%rsp)
movq 0x28b8(%rsp), %rax
movq %rax, 0x568(%rsp)
movb $0x0, 0x28b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x28b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1468(%rsp), %r10
movq %r10, 0x3060(%rsp)
movl %r9d, 0x305c(%rsp)
movl %r8d, 0x3058(%rsp)
movl %edi, 0x3054(%rsp)
movq %rsi, 0x3048(%rsp)
movq %rdx, 0x3040(%rsp)
movl %ecx, 0x303c(%rsp)
movq %rax, 0x3030(%rsp)
movq 0x3060(%rsp), %rcx
movq %rcx, 0x560(%rsp)
movq 0x3048(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3040(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x303c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3030(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x305c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3058(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3054(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d60(%rsp)
movl $0x10, 0x3d5c(%rsp)
movq 0x3d60(%rsp), %rax
movslq 0x3d5c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d5c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x568(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1490(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1244b1e
movq 0x568(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x14a8(%rsp)
movb $0x1, 0x28b3(%rsp)
testb $0x1, 0x28b3(%rsp)
jne 0x1244c59
leaq 0x1468(%rsp), %rax
movq %rax, 0x28c8(%rsp)
movq 0x28c8(%rsp), %rax
movq %rax, 0x3ed0(%rsp)
movq 0x3ed0(%rsp), %rax
movq %rax, 0x558(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1244bfc
movq 0x558(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ecc(%rsp) # imm = 0xFFFFFFFF
movl 0x3ecc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ec8(%rsp)
cmpl $0x1, 0x3ec8(%rsp)
jne 0x1244bfc
movq 0x558(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1244bcd
movq 0x558(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1244bcb
jmp 0x1244bfa
movq 0x558(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4898(%rsp)
cmpq $0x0, 0x4898(%rsp)
je 0x1244bf8
movq 0x4898(%rsp), %rdi
callq 0x5f480
jmp 0x1244bfa
jmp 0x1244bfc
movq 0x558(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1244c57
movq %rax, %rdi
callq 0x678a0
jmp 0x1244c59
leaq 0x1468(%rsp), %rax
movq %rax, 0x2aa0(%rsp)
movq 0x2aa0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x548(%rsp)
leaq 0x1468(%rsp), %rax
movq %rax, 0x2650(%rsp)
movq 0x2650(%rsp), %rax
movq %rax, 0x4150(%rsp)
movq 0x4150(%rsp), %rax
movq %rax, 0x550(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1244d44
movq 0x550(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x414c(%rsp) # imm = 0xFFFFFFFF
movl 0x414c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4148(%rsp)
cmpl $0x1, 0x4148(%rsp)
jne 0x1244d44
movq 0x550(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1244d15
movq 0x550(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1244d13
jmp 0x1244d42
movq 0x550(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4758(%rsp)
cmpq $0x0, 0x4758(%rsp)
je 0x1244d40
movq 0x4758(%rsp), %rdi
callq 0x5f480
jmp 0x1244d42
jmp 0x1244d44
movq 0x550(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1244d9f
movq %rax, %rdi
callq 0x678a0
movq 0x548(%rsp), %rax
movq %rax, 0x14b0(%rsp)
movl $0x0, 0x1464(%rsp)
movl 0x1464(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jge 0x1244ea4
movl $0x0, 0x1460(%rsp)
movl 0x1460(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x1244e4c
movq 0x1550(%rsp), %rsi
movslq 0x1460(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1500(%rsp), %rdx
movslq 0x1460(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x12780c0
movq 0x14b0(%rsp), %rax
movslq 0x1460(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1460(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1460(%rsp)
jmp 0x1244dd9
movl 0x1ef8(%rsp), %ecx
movq 0x1550(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1550(%rsp)
movl 0x1ef8(%rsp), %ecx
movq 0x14b0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x14b0(%rsp)
movl 0x1464(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1464(%rsp)
jmp 0x1244dba
jmp 0x1244ea6
movl 0x1558(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1558(%rsp)
jmp 0x12440b4
movl $0x0, 0x1f24(%rsp)
jmp 0x124e6a5
cmpl $0x1, 0x1edc(%rsp)
je 0x1245df6
cmpl $0x1, 0x1ef8(%rsp)
jne 0x1245df6
movl 0x1ed8(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jne 0x1245df6
movl 0x1ed0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jne 0x1245df6
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed0(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fa0(%rsp)
movq 0x1fa0(%rsp), %rcx
movq %rcx, 0x538(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x547(%rsp)
je 0x1244fa7
movq 0x538(%rsp), %rax
movq %rax, 0x2d48(%rsp)
movq 0x2d48(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x547(%rsp)
movb 0x547(%rsp), %al
testb $0x1, %al
jne 0x1244fb4
jmp 0x1244fc4
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x124e6a5
movl $0x0, 0x145c(%rsp)
movl 0x145c(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x1245de6
movq 0x1f18(%rsp), %rcx
movl 0x145c(%rsp), %eax
leaq 0x1408(%rsp), %rdx
movq %rdx, 0x2150(%rsp)
movq %rcx, 0x2148(%rsp)
movl %eax, 0x2144(%rsp)
movq 0x2148(%rsp), %rax
movq %rax, 0x530(%rsp)
movb $0x0, 0x2143(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2144(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1408(%rsp), %r10
movq %r10, 0x3760(%rsp)
movl %r9d, 0x375c(%rsp)
movl %r8d, 0x3758(%rsp)
movl %edi, 0x3754(%rsp)
movq %rsi, 0x3748(%rsp)
movq %rdx, 0x3740(%rsp)
movl %ecx, 0x373c(%rsp)
movq %rax, 0x3730(%rsp)
movq 0x3760(%rsp), %rcx
movq %rcx, 0x528(%rsp)
movq 0x3748(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3740(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x373c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3730(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x375c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3758(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3754(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b60(%rsp)
movl $0x10, 0x3b5c(%rsp)
movq 0x3b60(%rsp), %rax
movslq 0x3b5c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b5c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x530(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1430(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x124519f
movq 0x530(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1448(%rsp)
movb $0x1, 0x2143(%rsp)
testb $0x1, 0x2143(%rsp)
jne 0x12452da
leaq 0x1408(%rsp), %rax
movq %rax, 0x24e8(%rsp)
movq 0x24e8(%rsp), %rax
movq %rax, 0x4420(%rsp)
movq 0x4420(%rsp), %rax
movq %rax, 0x520(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x124527d
movq 0x520(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x441c(%rsp) # imm = 0xFFFFFFFF
movl 0x441c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4418(%rsp)
cmpl $0x1, 0x4418(%rsp)
jne 0x124527d
movq 0x520(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x124524e
movq 0x520(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x124524c
jmp 0x124527b
movq 0x520(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45f0(%rsp)
cmpq $0x0, 0x45f0(%rsp)
je 0x1245279
movq 0x45f0(%rsp), %rdi
callq 0x5f480
jmp 0x124527b
jmp 0x124527d
movq 0x520(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12452d8
movq %rax, %rdi
callq 0x678a0
jmp 0x12452da
leaq 0x1408(%rsp), %rax
movq %rax, 0x23a0(%rsp)
movq 0x23a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x510(%rsp)
leaq 0x1408(%rsp), %rax
movq %rax, 0x2658(%rsp)
movq 0x2658(%rsp), %rax
movq %rax, 0x4140(%rsp)
movq 0x4140(%rsp), %rax
movq %rax, 0x518(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12453c5
movq 0x518(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x413c(%rsp) # imm = 0xFFFFFFFF
movl 0x413c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4138(%rsp)
cmpl $0x1, 0x4138(%rsp)
jne 0x12453c5
movq 0x518(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1245396
movq 0x518(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1245394
jmp 0x12453c3
movq 0x518(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4760(%rsp)
cmpq $0x0, 0x4760(%rsp)
je 0x12453c1
movq 0x4760(%rsp), %rdi
callq 0x5f480
jmp 0x12453c3
jmp 0x12453c5
movq 0x518(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1245420
movq %rax, %rdi
callq 0x678a0
movq 0x510(%rsp), %rax
movq %rax, 0x1450(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x145c(%rsp), %eax
leaq 0x13b8(%rsp), %rdx
movq %rdx, 0x2138(%rsp)
movq %rcx, 0x2130(%rsp)
movl %eax, 0x212c(%rsp)
movq 0x2130(%rsp), %rax
movq %rax, 0x508(%rsp)
movb $0x0, 0x212b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x212c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x13b8(%rsp), %r10
movq %r10, 0x3798(%rsp)
movl %r9d, 0x3794(%rsp)
movl %r8d, 0x3790(%rsp)
movl %edi, 0x378c(%rsp)
movq %rsi, 0x3780(%rsp)
movq %rdx, 0x3778(%rsp)
movl %ecx, 0x3774(%rsp)
movq %rax, 0x3768(%rsp)
movq 0x3798(%rsp), %rcx
movq %rcx, 0x500(%rsp)
movq 0x3780(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3778(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3774(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3768(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3794(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3790(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x378c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b50(%rsp)
movl $0x10, 0x3b4c(%rsp)
movq 0x3b50(%rsp), %rax
movslq 0x3b4c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b4c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x508(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x13e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12455ec
movq 0x508(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x13f8(%rsp)
movb $0x1, 0x212b(%rsp)
testb $0x1, 0x212b(%rsp)
jne 0x1245727
leaq 0x13b8(%rsp), %rax
movq %rax, 0x24f0(%rsp)
movq 0x24f0(%rsp), %rax
movq %rax, 0x4410(%rsp)
movq 0x4410(%rsp), %rax
movq %rax, 0x4f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12456ca
movq 0x4f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x440c(%rsp) # imm = 0xFFFFFFFF
movl 0x440c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4408(%rsp)
cmpl $0x1, 0x4408(%rsp)
jne 0x12456ca
movq 0x4f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x124569b
movq 0x4f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1245699
jmp 0x12456c8
movq 0x4f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45f8(%rsp)
cmpq $0x0, 0x45f8(%rsp)
je 0x12456c6
movq 0x45f8(%rsp), %rdi
callq 0x5f480
jmp 0x12456c8
jmp 0x12456ca
movq 0x4f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1245725
movq %rax, %rdi
callq 0x678a0
jmp 0x1245727
leaq 0x13b8(%rsp), %rax
movq %rax, 0x2398(%rsp)
movq 0x2398(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4e8(%rsp)
leaq 0x13b8(%rsp), %rax
movq %rax, 0x2660(%rsp)
movq 0x2660(%rsp), %rax
movq %rax, 0x4130(%rsp)
movq 0x4130(%rsp), %rax
movq %rax, 0x4f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1245812
movq 0x4f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x412c(%rsp) # imm = 0xFFFFFFFF
movl 0x412c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4128(%rsp)
cmpl $0x1, 0x4128(%rsp)
jne 0x1245812
movq 0x4f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12457e3
movq 0x4f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12457e1
jmp 0x1245810
movq 0x4f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4768(%rsp)
cmpq $0x0, 0x4768(%rsp)
je 0x124580e
movq 0x4768(%rsp), %rdi
callq 0x5f480
jmp 0x1245810
jmp 0x1245812
movq 0x4f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x124586d
movq %rax, %rdi
callq 0x678a0
movq 0x4e8(%rsp), %rax
movq %rax, 0x1400(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x145c(%rsp), %eax
leaq 0x1368(%rsp), %rdx
movq %rdx, 0x28a0(%rsp)
movq %rcx, 0x2898(%rsp)
movl %eax, 0x2894(%rsp)
movq 0x2898(%rsp), %rax
movq %rax, 0x4e0(%rsp)
movb $0x0, 0x2893(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2894(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1368(%rsp), %r10
movq %r10, 0x3098(%rsp)
movl %r9d, 0x3094(%rsp)
movl %r8d, 0x3090(%rsp)
movl %edi, 0x308c(%rsp)
movq %rsi, 0x3080(%rsp)
movq %rdx, 0x3078(%rsp)
movl %ecx, 0x3074(%rsp)
movq %rax, 0x3068(%rsp)
movq 0x3098(%rsp), %rcx
movq %rcx, 0x4d8(%rsp)
movq 0x3080(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3078(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3074(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3068(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3094(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3090(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x308c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d50(%rsp)
movl $0x10, 0x3d4c(%rsp)
movq 0x3d50(%rsp), %rax
movslq 0x3d4c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d4c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4e0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1390(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1245a39
movq 0x4e0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x13a8(%rsp)
movb $0x1, 0x2893(%rsp)
testb $0x1, 0x2893(%rsp)
jne 0x1245b74
leaq 0x1368(%rsp), %rax
movq %rax, 0x28a8(%rsp)
movq 0x28a8(%rsp), %rax
movq %rax, 0x3ee0(%rsp)
movq 0x3ee0(%rsp), %rax
movq %rax, 0x4d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1245b17
movq 0x4d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3edc(%rsp) # imm = 0xFFFFFFFF
movl 0x3edc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ed8(%rsp)
cmpl $0x1, 0x3ed8(%rsp)
jne 0x1245b17
movq 0x4d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1245ae8
movq 0x4d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1245ae6
jmp 0x1245b15
movq 0x4d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4890(%rsp)
cmpq $0x0, 0x4890(%rsp)
je 0x1245b13
movq 0x4890(%rsp), %rdi
callq 0x5f480
jmp 0x1245b15
jmp 0x1245b17
movq 0x4d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1245b72
movq %rax, %rdi
callq 0x678a0
jmp 0x1245b74
leaq 0x1368(%rsp), %rax
movq %rax, 0x2a98(%rsp)
movq 0x2a98(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4c0(%rsp)
leaq 0x1368(%rsp), %rax
movq %rax, 0x2668(%rsp)
movq 0x2668(%rsp), %rax
movq %rax, 0x4120(%rsp)
movq 0x4120(%rsp), %rax
movq %rax, 0x4c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1245c5f
movq 0x4c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x411c(%rsp) # imm = 0xFFFFFFFF
movl 0x411c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4118(%rsp)
cmpl $0x1, 0x4118(%rsp)
jne 0x1245c5f
movq 0x4c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1245c30
movq 0x4c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1245c2e
jmp 0x1245c5d
movq 0x4c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4770(%rsp)
cmpq $0x0, 0x4770(%rsp)
je 0x1245c5b
movq 0x4770(%rsp), %rdi
callq 0x5f480
jmp 0x1245c5d
jmp 0x1245c5f
movq 0x4c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1245cba
movq %rax, %rdi
callq 0x678a0
movq 0x4c0(%rsp), %rax
movq %rax, 0x13b0(%rsp)
movl $0x0, 0x1364(%rsp)
movl 0x1364(%rsp), %eax
cmpl 0x1ed8(%rsp), %eax
jge 0x1245dce
movq 0x1450(%rsp), %rax
movslq 0x1364(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x1360(%rsp)
movl $0x0, 0x135c(%rsp)
movl 0x135c(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x1245d76
movq 0x1400(%rsp), %rdx
movslq 0x135c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0x1360(%rsp), %rsi
callq 0x12780c0
movq 0x13b0(%rsp), %rax
movslq 0x135c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x135c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x135c(%rsp)
jmp 0x1245d12
movl 0x1edc(%rsp), %ecx
movq 0x1400(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1400(%rsp)
movl 0x1edc(%rsp), %ecx
movq 0x13b0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x13b0(%rsp)
movl 0x1364(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1364(%rsp)
jmp 0x1245cd5
jmp 0x1245dd0
movl 0x145c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x145c(%rsp)
jmp 0x1244fcf
movl $0x0, 0x1f24(%rsp)
jmp 0x124e6a5
movl 0x1edc(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jne 0x1246d11
cmpl $0x1, 0x1ed8(%rsp)
je 0x1246d11
cmpl $0x1, 0x1ef4(%rsp)
jne 0x1246d11
movl 0x1ed0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jne 0x1246d11
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed0(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f98(%rsp)
movq 0x1f98(%rsp), %rcx
movq %rcx, 0x4b0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x4bf(%rsp)
je 0x1245ed1
movq 0x4b0(%rsp), %rax
movq %rax, 0x2d50(%rsp)
movq 0x2d50(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x4bf(%rsp)
movb 0x4bf(%rsp), %al
testb $0x1, %al
jne 0x1245ede
jmp 0x1245eee
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x124e6a5
movl $0x0, 0x1358(%rsp)
movl 0x1358(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x1246d01
movq 0x1f18(%rsp), %rcx
movl 0x1358(%rsp), %eax
leaq 0x1308(%rsp), %rdx
movq %rdx, 0x2120(%rsp)
movq %rcx, 0x2118(%rsp)
movl %eax, 0x2114(%rsp)
movq 0x2118(%rsp), %rax
movq %rax, 0x4a8(%rsp)
movb $0x0, 0x2113(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2114(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1308(%rsp), %r10
movq %r10, 0x37d0(%rsp)
movl %r9d, 0x37cc(%rsp)
movl %r8d, 0x37c8(%rsp)
movl %edi, 0x37c4(%rsp)
movq %rsi, 0x37b8(%rsp)
movq %rdx, 0x37b0(%rsp)
movl %ecx, 0x37ac(%rsp)
movq %rax, 0x37a0(%rsp)
movq 0x37d0(%rsp), %rcx
movq %rcx, 0x4a0(%rsp)
movq 0x37b8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x37b0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x37ac(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x37a0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x37cc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x37c8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x37c4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b40(%rsp)
movl $0x10, 0x3b3c(%rsp)
movq 0x3b40(%rsp), %rax
movslq 0x3b3c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b3c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4a8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1330(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12460c9
movq 0x4a8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1348(%rsp)
movb $0x1, 0x2113(%rsp)
testb $0x1, 0x2113(%rsp)
jne 0x1246204
leaq 0x1308(%rsp), %rax
movq %rax, 0x24f8(%rsp)
movq 0x24f8(%rsp), %rax
movq %rax, 0x4400(%rsp)
movq 0x4400(%rsp), %rax
movq %rax, 0x498(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12461a7
movq 0x498(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x43fc(%rsp) # imm = 0xFFFFFFFF
movl 0x43fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x43f8(%rsp)
cmpl $0x1, 0x43f8(%rsp)
jne 0x12461a7
movq 0x498(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1246178
movq 0x498(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1246176
jmp 0x12461a5
movq 0x498(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4600(%rsp)
cmpq $0x0, 0x4600(%rsp)
je 0x12461a3
movq 0x4600(%rsp), %rdi
callq 0x5f480
jmp 0x12461a5
jmp 0x12461a7
movq 0x498(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1246202
movq %rax, %rdi
callq 0x678a0
jmp 0x1246204
leaq 0x1308(%rsp), %rax
movq %rax, 0x2390(%rsp)
movq 0x2390(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x488(%rsp)
leaq 0x1308(%rsp), %rax
movq %rax, 0x2670(%rsp)
movq 0x2670(%rsp), %rax
movq %rax, 0x4110(%rsp)
movq 0x4110(%rsp), %rax
movq %rax, 0x490(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12462ef
movq 0x490(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x410c(%rsp) # imm = 0xFFFFFFFF
movl 0x410c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4108(%rsp)
cmpl $0x1, 0x4108(%rsp)
jne 0x12462ef
movq 0x490(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12462c0
movq 0x490(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12462be
jmp 0x12462ed
movq 0x490(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4778(%rsp)
cmpq $0x0, 0x4778(%rsp)
je 0x12462eb
movq 0x4778(%rsp), %rdi
callq 0x5f480
jmp 0x12462ed
jmp 0x12462ef
movq 0x490(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x124634a
movq %rax, %rdi
callq 0x678a0
movq 0x488(%rsp), %rax
movq %rax, 0x1350(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1358(%rsp), %eax
leaq 0x12b8(%rsp), %rdx
movq %rdx, 0x2108(%rsp)
movq %rcx, 0x2100(%rsp)
movl %eax, 0x20fc(%rsp)
movq 0x2100(%rsp), %rax
movq %rax, 0x480(%rsp)
movb $0x0, 0x20fb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x20fc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x12b8(%rsp), %r10
movq %r10, 0x3808(%rsp)
movl %r9d, 0x3804(%rsp)
movl %r8d, 0x3800(%rsp)
movl %edi, 0x37fc(%rsp)
movq %rsi, 0x37f0(%rsp)
movq %rdx, 0x37e8(%rsp)
movl %ecx, 0x37e4(%rsp)
movq %rax, 0x37d8(%rsp)
movq 0x3808(%rsp), %rcx
movq %rcx, 0x478(%rsp)
movq 0x37f0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x37e8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x37e4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x37d8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3804(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3800(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x37fc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b30(%rsp)
movl $0x10, 0x3b2c(%rsp)
movq 0x3b30(%rsp), %rax
movslq 0x3b2c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b2c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x480(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x12e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1246516
movq 0x480(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x12f8(%rsp)
movb $0x1, 0x20fb(%rsp)
testb $0x1, 0x20fb(%rsp)
jne 0x1246651
leaq 0x12b8(%rsp), %rax
movq %rax, 0x2500(%rsp)
movq 0x2500(%rsp), %rax
movq %rax, 0x43f0(%rsp)
movq 0x43f0(%rsp), %rax
movq %rax, 0x470(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12465f4
movq 0x470(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x43ec(%rsp) # imm = 0xFFFFFFFF
movl 0x43ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x43e8(%rsp)
cmpl $0x1, 0x43e8(%rsp)
jne 0x12465f4
movq 0x470(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12465c5
movq 0x470(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12465c3
jmp 0x12465f2
movq 0x470(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4608(%rsp)
cmpq $0x0, 0x4608(%rsp)
je 0x12465f0
movq 0x4608(%rsp), %rdi
callq 0x5f480
jmp 0x12465f2
jmp 0x12465f4
movq 0x470(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x124664f
movq %rax, %rdi
callq 0x678a0
jmp 0x1246651
leaq 0x12b8(%rsp), %rax
movq %rax, 0x2388(%rsp)
movq 0x2388(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x460(%rsp)
leaq 0x12b8(%rsp), %rax
movq %rax, 0x2678(%rsp)
movq 0x2678(%rsp), %rax
movq %rax, 0x4100(%rsp)
movq 0x4100(%rsp), %rax
movq %rax, 0x468(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x124673c
movq 0x468(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40fc(%rsp) # imm = 0xFFFFFFFF
movl 0x40fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40f8(%rsp)
cmpl $0x1, 0x40f8(%rsp)
jne 0x124673c
movq 0x468(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x124670d
movq 0x468(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x124670b
jmp 0x124673a
movq 0x468(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4780(%rsp)
cmpq $0x0, 0x4780(%rsp)
je 0x1246738
movq 0x4780(%rsp), %rdi
callq 0x5f480
jmp 0x124673a
jmp 0x124673c
movq 0x468(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1246797
movq %rax, %rdi
callq 0x678a0
movq 0x460(%rsp), %rax
movq %rax, 0x1300(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1358(%rsp), %eax
leaq 0x1268(%rsp), %rdx
movq %rdx, 0x2880(%rsp)
movq %rcx, 0x2878(%rsp)
movl %eax, 0x2874(%rsp)
movq 0x2878(%rsp), %rax
movq %rax, 0x458(%rsp)
movb $0x0, 0x2873(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2874(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1268(%rsp), %r10
movq %r10, 0x30d0(%rsp)
movl %r9d, 0x30cc(%rsp)
movl %r8d, 0x30c8(%rsp)
movl %edi, 0x30c4(%rsp)
movq %rsi, 0x30b8(%rsp)
movq %rdx, 0x30b0(%rsp)
movl %ecx, 0x30ac(%rsp)
movq %rax, 0x30a0(%rsp)
movq 0x30d0(%rsp), %rcx
movq %rcx, 0x450(%rsp)
movq 0x30b8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x30b0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x30ac(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x30a0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x30cc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x30c8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x30c4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d40(%rsp)
movl $0x10, 0x3d3c(%rsp)
movq 0x3d40(%rsp), %rax
movslq 0x3d3c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d3c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x458(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1290(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1246963
movq 0x458(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x12a8(%rsp)
movb $0x1, 0x2873(%rsp)
testb $0x1, 0x2873(%rsp)
jne 0x1246a9e
leaq 0x1268(%rsp), %rax
movq %rax, 0x2888(%rsp)
movq 0x2888(%rsp), %rax
movq %rax, 0x3ef0(%rsp)
movq 0x3ef0(%rsp), %rax
movq %rax, 0x448(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1246a41
movq 0x448(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3eec(%rsp) # imm = 0xFFFFFFFF
movl 0x3eec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ee8(%rsp)
cmpl $0x1, 0x3ee8(%rsp)
jne 0x1246a41
movq 0x448(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1246a12
movq 0x448(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1246a10
jmp 0x1246a3f
movq 0x448(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4888(%rsp)
cmpq $0x0, 0x4888(%rsp)
je 0x1246a3d
movq 0x4888(%rsp), %rdi
callq 0x5f480
jmp 0x1246a3f
jmp 0x1246a41
movq 0x448(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1246a9c
movq %rax, %rdi
callq 0x678a0
jmp 0x1246a9e
leaq 0x1268(%rsp), %rax
movq %rax, 0x2a90(%rsp)
movq 0x2a90(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x438(%rsp)
leaq 0x1268(%rsp), %rax
movq %rax, 0x2680(%rsp)
movq 0x2680(%rsp), %rax
movq %rax, 0x40f0(%rsp)
movq 0x40f0(%rsp), %rax
movq %rax, 0x440(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1246b89
movq 0x440(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40ec(%rsp) # imm = 0xFFFFFFFF
movl 0x40ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40e8(%rsp)
cmpl $0x1, 0x40e8(%rsp)
jne 0x1246b89
movq 0x440(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1246b5a
movq 0x440(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1246b58
jmp 0x1246b87
movq 0x440(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4788(%rsp)
cmpq $0x0, 0x4788(%rsp)
je 0x1246b85
movq 0x4788(%rsp), %rdi
callq 0x5f480
jmp 0x1246b87
jmp 0x1246b89
movq 0x440(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1246be4
movq %rax, %rdi
callq 0x678a0
movq 0x438(%rsp), %rax
movq %rax, 0x12b0(%rsp)
movl $0x0, 0x1264(%rsp)
movl 0x1264(%rsp), %eax
cmpl 0x1ed8(%rsp), %eax
jge 0x1246ce9
movl $0x0, 0x1260(%rsp)
movl 0x1260(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x1246c91
movq 0x1350(%rsp), %rsi
movslq 0x1260(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1300(%rsp), %rdx
movslq 0x1260(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x12780c0
movq 0x12b0(%rsp), %rax
movslq 0x1260(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1260(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1260(%rsp)
jmp 0x1246c1e
movl 0x1edc(%rsp), %ecx
movq 0x1300(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1300(%rsp)
movl 0x1edc(%rsp), %ecx
movq 0x12b0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x12b0(%rsp)
movl 0x1264(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1264(%rsp)
jmp 0x1246bff
jmp 0x1246ceb
movl 0x1358(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1358(%rsp)
jmp 0x1245ef9
movl $0x0, 0x1f24(%rsp)
jmp 0x124e6a5
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1eec(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f90(%rsp)
movq 0x1f90(%rsp), %rcx
movq %rcx, 0x428(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x437(%rsp)
je 0x1246da8
movq 0x428(%rsp), %rax
movq %rax, 0x2d58(%rsp)
movq 0x2d58(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x437(%rsp)
movb 0x437(%rsp), %al
testb $0x1, %al
jne 0x1246db5
jmp 0x1246dc5
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x124e6a5
movl $0x0, 0x125c(%rsp)
movl 0x125c(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x1247b61
movq 0x1f18(%rsp), %rcx
movl 0x125c(%rsp), %eax
leaq 0x1208(%rsp), %rdx
movq %rdx, 0x20f0(%rsp)
movq %rcx, 0x20e8(%rsp)
movl %eax, 0x20e4(%rsp)
movq 0x20e8(%rsp), %rax
movq %rax, 0x420(%rsp)
movb $0x0, 0x20e3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x20e4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1208(%rsp), %r10
movq %r10, 0x3840(%rsp)
movl %r9d, 0x383c(%rsp)
movl %r8d, 0x3838(%rsp)
movl %edi, 0x3834(%rsp)
movq %rsi, 0x3828(%rsp)
movq %rdx, 0x3820(%rsp)
movl %ecx, 0x381c(%rsp)
movq %rax, 0x3810(%rsp)
movq 0x3840(%rsp), %rcx
movq %rcx, 0x418(%rsp)
movq 0x3828(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3820(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x381c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3810(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x383c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3838(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3834(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b20(%rsp)
movl $0x10, 0x3b1c(%rsp)
movq 0x3b20(%rsp), %rax
movslq 0x3b1c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b1c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x420(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1230(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1246fa0
movq 0x420(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1248(%rsp)
movb $0x1, 0x20e3(%rsp)
testb $0x1, 0x20e3(%rsp)
jne 0x12470db
leaq 0x1208(%rsp), %rax
movq %rax, 0x2508(%rsp)
movq 0x2508(%rsp), %rax
movq %rax, 0x43e0(%rsp)
movq 0x43e0(%rsp), %rax
movq %rax, 0x410(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x124707e
movq 0x410(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x43dc(%rsp) # imm = 0xFFFFFFFF
movl 0x43dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x43d8(%rsp)
cmpl $0x1, 0x43d8(%rsp)
jne 0x124707e
movq 0x410(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x124704f
movq 0x410(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x124704d
jmp 0x124707c
movq 0x410(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4610(%rsp)
cmpq $0x0, 0x4610(%rsp)
je 0x124707a
movq 0x4610(%rsp), %rdi
callq 0x5f480
jmp 0x124707c
jmp 0x124707e
movq 0x410(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12470d9
movq %rax, %rdi
callq 0x678a0
jmp 0x12470db
leaq 0x1208(%rsp), %rax
movq %rax, 0x2380(%rsp)
movq 0x2380(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x400(%rsp)
leaq 0x1208(%rsp), %rax
movq %rax, 0x2688(%rsp)
movq 0x2688(%rsp), %rax
movq %rax, 0x40e0(%rsp)
movq 0x40e0(%rsp), %rax
movq %rax, 0x408(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12471c6
movq 0x408(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40dc(%rsp) # imm = 0xFFFFFFFF
movl 0x40dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40d8(%rsp)
cmpl $0x1, 0x40d8(%rsp)
jne 0x12471c6
movq 0x408(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1247197
movq 0x408(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1247195
jmp 0x12471c4
movq 0x408(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4790(%rsp)
cmpq $0x0, 0x4790(%rsp)
je 0x12471c2
movq 0x4790(%rsp), %rdi
callq 0x5f480
jmp 0x12471c4
jmp 0x12471c6
movq 0x408(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1247221
movq %rax, %rdi
callq 0x678a0
movq 0x400(%rsp), %rax
movq %rax, 0x1250(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x125c(%rsp), %eax
leaq 0x11b8(%rsp), %rdx
movq %rdx, 0x20d8(%rsp)
movq %rcx, 0x20d0(%rsp)
movl %eax, 0x20cc(%rsp)
movq 0x20d0(%rsp), %rax
movq %rax, 0x3f8(%rsp)
movb $0x0, 0x20cb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x20cc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x11b8(%rsp), %r10
movq %r10, 0x3878(%rsp)
movl %r9d, 0x3874(%rsp)
movl %r8d, 0x3870(%rsp)
movl %edi, 0x386c(%rsp)
movq %rsi, 0x3860(%rsp)
movq %rdx, 0x3858(%rsp)
movl %ecx, 0x3854(%rsp)
movq %rax, 0x3848(%rsp)
movq 0x3878(%rsp), %rcx
movq %rcx, 0x3f0(%rsp)
movq 0x3860(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3858(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3854(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3848(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3874(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3870(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x386c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b10(%rsp)
movl $0x10, 0x3b0c(%rsp)
movq 0x3b10(%rsp), %rax
movslq 0x3b0c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b0c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3f8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x11e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12473ed
movq 0x3f8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x11f8(%rsp)
movb $0x1, 0x20cb(%rsp)
testb $0x1, 0x20cb(%rsp)
jne 0x1247528
leaq 0x11b8(%rsp), %rax
movq %rax, 0x2510(%rsp)
movq 0x2510(%rsp), %rax
movq %rax, 0x43d0(%rsp)
movq 0x43d0(%rsp), %rax
movq %rax, 0x3e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12474cb
movq 0x3e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x43cc(%rsp) # imm = 0xFFFFFFFF
movl 0x43cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x43c8(%rsp)
cmpl $0x1, 0x43c8(%rsp)
jne 0x12474cb
movq 0x3e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x124749c
movq 0x3e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x124749a
jmp 0x12474c9
movq 0x3e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4618(%rsp)
cmpq $0x0, 0x4618(%rsp)
je 0x12474c7
movq 0x4618(%rsp), %rdi
callq 0x5f480
jmp 0x12474c9
jmp 0x12474cb
movq 0x3e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1247526
movq %rax, %rdi
callq 0x678a0
jmp 0x1247528
leaq 0x11b8(%rsp), %rax
movq %rax, 0x2378(%rsp)
movq 0x2378(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d8(%rsp)
leaq 0x11b8(%rsp), %rax
movq %rax, 0x2690(%rsp)
movq 0x2690(%rsp), %rax
movq %rax, 0x40d0(%rsp)
movq 0x40d0(%rsp), %rax
movq %rax, 0x3e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1247613
movq 0x3e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40cc(%rsp) # imm = 0xFFFFFFFF
movl 0x40cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40c8(%rsp)
cmpl $0x1, 0x40c8(%rsp)
jne 0x1247613
movq 0x3e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12475e4
movq 0x3e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12475e2
jmp 0x1247611
movq 0x3e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4798(%rsp)
cmpq $0x0, 0x4798(%rsp)
je 0x124760f
movq 0x4798(%rsp), %rdi
callq 0x5f480
jmp 0x1247611
jmp 0x1247613
movq 0x3e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x124766e
movq %rax, %rdi
callq 0x678a0
movq 0x3d8(%rsp), %rax
movq %rax, 0x1200(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x125c(%rsp), %eax
leaq 0x1168(%rsp), %rdx
movq %rdx, 0x2860(%rsp)
movq %rcx, 0x2858(%rsp)
movl %eax, 0x2854(%rsp)
movq 0x2858(%rsp), %rax
movq %rax, 0x3d0(%rsp)
movb $0x0, 0x2853(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2854(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1168(%rsp), %r10
movq %r10, 0x3108(%rsp)
movl %r9d, 0x3104(%rsp)
movl %r8d, 0x3100(%rsp)
movl %edi, 0x30fc(%rsp)
movq %rsi, 0x30f0(%rsp)
movq %rdx, 0x30e8(%rsp)
movl %ecx, 0x30e4(%rsp)
movq %rax, 0x30d8(%rsp)
movq 0x3108(%rsp), %rcx
movq %rcx, 0x3c8(%rsp)
movq 0x30f0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x30e8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x30e4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x30d8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3104(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3100(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x30fc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d30(%rsp)
movl $0x10, 0x3d2c(%rsp)
movq 0x3d30(%rsp), %rax
movslq 0x3d2c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d2c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3d0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1190(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x124783a
movq 0x3d0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x11a8(%rsp)
movb $0x1, 0x2853(%rsp)
testb $0x1, 0x2853(%rsp)
jne 0x1247975
leaq 0x1168(%rsp), %rax
movq %rax, 0x2868(%rsp)
movq 0x2868(%rsp), %rax
movq %rax, 0x3f00(%rsp)
movq 0x3f00(%rsp), %rax
movq %rax, 0x3c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1247918
movq 0x3c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3efc(%rsp) # imm = 0xFFFFFFFF
movl 0x3efc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ef8(%rsp)
cmpl $0x1, 0x3ef8(%rsp)
jne 0x1247918
movq 0x3c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12478e9
movq 0x3c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12478e7
jmp 0x1247916
movq 0x3c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4880(%rsp)
cmpq $0x0, 0x4880(%rsp)
je 0x1247914
movq 0x4880(%rsp), %rdi
callq 0x5f480
jmp 0x1247916
jmp 0x1247918
movq 0x3c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1247973
movq %rax, %rdi
callq 0x678a0
jmp 0x1247975
leaq 0x1168(%rsp), %rax
movq %rax, 0x2a88(%rsp)
movq 0x2a88(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3b0(%rsp)
leaq 0x1168(%rsp), %rax
movq %rax, 0x2698(%rsp)
movq 0x2698(%rsp), %rax
movq %rax, 0x40c0(%rsp)
movq 0x40c0(%rsp), %rax
movq %rax, 0x3b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1247a60
movq 0x3b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40bc(%rsp) # imm = 0xFFFFFFFF
movl 0x40bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40b8(%rsp)
cmpl $0x1, 0x40b8(%rsp)
jne 0x1247a60
movq 0x3b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1247a31
movq 0x3b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1247a2f
jmp 0x1247a5e
movq 0x3b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47a0(%rsp)
cmpq $0x0, 0x47a0(%rsp)
je 0x1247a5c
movq 0x47a0(%rsp), %rdi
callq 0x5f480
jmp 0x1247a5e
jmp 0x1247a60
movq 0x3b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1247abb
movq %rax, %rdi
callq 0x678a0
movq 0x3b0(%rsp), %rax
movq %rax, 0x11b0(%rsp)
movl $0x0, 0x1164(%rsp)
movl 0x1164(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x1247b49
movq 0x1250(%rsp), %rsi
movslq 0x1164(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1200(%rsp), %rdx
movslq 0x1164(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x12780c0
movq 0x11b0(%rsp), %rax
movslq 0x1164(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1164(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1164(%rsp)
jmp 0x1247ad6
jmp 0x1247b4b
movl 0x125c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x125c(%rsp)
jmp 0x1246dd0
movl $0x0, 0x1f24(%rsp)
jmp 0x124e6a5
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1eec(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f88(%rsp)
movq 0x1f88(%rsp), %rcx
movq %rcx, 0x3a0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x3af(%rsp)
je 0x1247c08
movq 0x3a0(%rsp), %rax
movq %rax, 0x2d60(%rsp)
movq 0x2d60(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x3af(%rsp)
movb 0x3af(%rsp), %al
testb $0x1, %al
jne 0x1247c15
jmp 0x1247c25
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x124e6a5
movq 0x1f10(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1248665
movl $0x0, 0x1160(%rsp)
movl 0x1160(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x1248655
movq 0x1f18(%rsp), %rcx
movl 0x1160(%rsp), %eax
leaq 0x1110(%rsp), %rdx
movq %rdx, 0x20c0(%rsp)
movq %rcx, 0x20b8(%rsp)
movl %eax, 0x20b4(%rsp)
movq 0x20b8(%rsp), %rax
movq %rax, 0x398(%rsp)
movb $0x0, 0x20b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x20b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1110(%rsp), %r10
movq %r10, 0x38b0(%rsp)
movl %r9d, 0x38ac(%rsp)
movl %r8d, 0x38a8(%rsp)
movl %edi, 0x38a4(%rsp)
movq %rsi, 0x3898(%rsp)
movq %rdx, 0x3890(%rsp)
movl %ecx, 0x388c(%rsp)
movq %rax, 0x3880(%rsp)
movq 0x38b0(%rsp), %rcx
movq %rcx, 0x390(%rsp)
movq 0x3898(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3890(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x388c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3880(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x38ac(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x38a8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x38a4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b00(%rsp)
movl $0x10, 0x3afc(%rsp)
movq 0x3b00(%rsp), %rax
movslq 0x3afc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3afc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x398(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1138(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1247e12
movq 0x398(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1150(%rsp)
movb $0x1, 0x20b3(%rsp)
testb $0x1, 0x20b3(%rsp)
jne 0x1247f4d
leaq 0x1110(%rsp), %rax
movq %rax, 0x2518(%rsp)
movq 0x2518(%rsp), %rax
movq %rax, 0x43c0(%rsp)
movq 0x43c0(%rsp), %rax
movq %rax, 0x388(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1247ef0
movq 0x388(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x43bc(%rsp) # imm = 0xFFFFFFFF
movl 0x43bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x43b8(%rsp)
cmpl $0x1, 0x43b8(%rsp)
jne 0x1247ef0
movq 0x388(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1247ec1
movq 0x388(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1247ebf
jmp 0x1247eee
movq 0x388(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4620(%rsp)
cmpq $0x0, 0x4620(%rsp)
je 0x1247eec
movq 0x4620(%rsp), %rdi
callq 0x5f480
jmp 0x1247eee
jmp 0x1247ef0
movq 0x388(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1247f4b
movq %rax, %rdi
callq 0x678a0
jmp 0x1247f4d
leaq 0x1110(%rsp), %rax
movq %rax, 0x2370(%rsp)
movq 0x2370(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x378(%rsp)
leaq 0x1110(%rsp), %rax
movq %rax, 0x26a0(%rsp)
movq 0x26a0(%rsp), %rax
movq %rax, 0x40b0(%rsp)
movq 0x40b0(%rsp), %rax
movq %rax, 0x380(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1248038
movq 0x380(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40ac(%rsp) # imm = 0xFFFFFFFF
movl 0x40ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40a8(%rsp)
cmpl $0x1, 0x40a8(%rsp)
jne 0x1248038
movq 0x380(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1248009
movq 0x380(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1248007
jmp 0x1248036
movq 0x380(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47a8(%rsp)
cmpq $0x0, 0x47a8(%rsp)
je 0x1248034
movq 0x47a8(%rsp), %rdi
callq 0x5f480
jmp 0x1248036
jmp 0x1248038
movq 0x380(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1248093
movq %rax, %rdi
callq 0x678a0
movq 0x378(%rsp), %rax
movq %rax, 0x1158(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1160(%rsp), %eax
movq %rcx, 0x2b28(%rsp)
movl %eax, 0x2b24(%rsp)
movq 0x2b28(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2b24(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x1108(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1160(%rsp), %eax
leaq 0x10b8(%rsp), %rdx
movq %rdx, 0x2840(%rsp)
movq %rcx, 0x2838(%rsp)
movl %eax, 0x2834(%rsp)
movq 0x2838(%rsp), %rax
movq %rax, 0x370(%rsp)
movb $0x0, 0x2833(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2834(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x10b8(%rsp), %r10
movq %r10, 0x3140(%rsp)
movl %r9d, 0x313c(%rsp)
movl %r8d, 0x3138(%rsp)
movl %edi, 0x3134(%rsp)
movq %rsi, 0x3128(%rsp)
movq %rdx, 0x3120(%rsp)
movl %ecx, 0x311c(%rsp)
movq %rax, 0x3110(%rsp)
movq 0x3140(%rsp), %rcx
movq %rcx, 0x368(%rsp)
movq 0x3128(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3120(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x311c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3110(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x313c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3138(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3134(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d20(%rsp)
movl $0x10, 0x3d1c(%rsp)
movq 0x3d20(%rsp), %rax
movslq 0x3d1c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d1c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x370(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x10e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12482a8
movq 0x370(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x10f8(%rsp)
movb $0x1, 0x2833(%rsp)
testb $0x1, 0x2833(%rsp)
jne 0x12483e3
leaq 0x10b8(%rsp), %rax
movq %rax, 0x2848(%rsp)
movq 0x2848(%rsp), %rax
movq %rax, 0x3f10(%rsp)
movq 0x3f10(%rsp), %rax
movq %rax, 0x360(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1248386
movq 0x360(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f0c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f0c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f08(%rsp)
cmpl $0x1, 0x3f08(%rsp)
jne 0x1248386
movq 0x360(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1248357
movq 0x360(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1248355
jmp 0x1248384
movq 0x360(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4878(%rsp)
cmpq $0x0, 0x4878(%rsp)
je 0x1248382
movq 0x4878(%rsp), %rdi
callq 0x5f480
jmp 0x1248384
jmp 0x1248386
movq 0x360(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12483e1
movq %rax, %rdi
callq 0x678a0
jmp 0x12483e3
leaq 0x10b8(%rsp), %rax
movq %rax, 0x2a80(%rsp)
movq 0x2a80(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x350(%rsp)
leaq 0x10b8(%rsp), %rax
movq %rax, 0x26a8(%rsp)
movq 0x26a8(%rsp), %rax
movq %rax, 0x40a0(%rsp)
movq 0x40a0(%rsp), %rax
movq %rax, 0x358(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12484ce
movq 0x358(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x409c(%rsp) # imm = 0xFFFFFFFF
movl 0x409c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4098(%rsp)
cmpl $0x1, 0x4098(%rsp)
jne 0x12484ce
movq 0x358(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x124849f
movq 0x358(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x124849d
jmp 0x12484cc
movq 0x358(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47b0(%rsp)
cmpq $0x0, 0x47b0(%rsp)
je 0x12484ca
movq 0x47b0(%rsp), %rdi
callq 0x5f480
jmp 0x12484cc
jmp 0x12484ce
movq 0x358(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1248529
movq %rax, %rdi
callq 0x678a0
movq 0x350(%rsp), %rax
movq %rax, 0x1100(%rsp)
movl $0x0, 0x10b4(%rsp)
movl 0x10b4(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jge 0x124863d
movq 0x1108(%rsp), %rax
movslq 0x10b4(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x10b0(%rsp)
movl $0x0, 0x10ac(%rsp)
movl 0x10ac(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x12485e5
movq 0x1158(%rsp), %rsi
movslq 0x10ac(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0x10b0(%rsp), %rdx
callq 0x12780c0
movq 0x1100(%rsp), %rax
movslq 0x10ac(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x10ac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x10ac(%rsp)
jmp 0x1248581
movl 0x1ef8(%rsp), %ecx
movq 0x1158(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1158(%rsp)
movl 0x1ef8(%rsp), %ecx
movq 0x1100(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1100(%rsp)
movl 0x10b4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x10b4(%rsp)
jmp 0x1248544
jmp 0x124863f
movl 0x1160(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1160(%rsp)
jmp 0x1247c42
movl $0x0, 0x1f24(%rsp)
jmp 0x124e6a5
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x12499a7
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1249016
movq 0x1f10(%rsp), %rax
movq %rax, 0x2c78(%rsp)
movq $0x0, 0x2c70(%rsp)
movq 0x2c78(%rsp), %rax
movq (%rax), %rax
movq 0x2c70(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x10a8(%rsp)
movl $0x0, 0x10a4(%rsp)
movl 0x10a4(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x1249006
movq 0x1f18(%rsp), %rcx
movl 0x10a4(%rsp), %eax
leaq 0x1050(%rsp), %rdx
movq %rdx, 0x20a8(%rsp)
movq %rcx, 0x20a0(%rsp)
movl %eax, 0x209c(%rsp)
movq 0x20a0(%rsp), %rax
movq %rax, 0x348(%rsp)
movb $0x0, 0x209b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x209c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1050(%rsp), %r10
movq %r10, 0x38e8(%rsp)
movl %r9d, 0x38e4(%rsp)
movl %r8d, 0x38e0(%rsp)
movl %edi, 0x38dc(%rsp)
movq %rsi, 0x38d0(%rsp)
movq %rdx, 0x38c8(%rsp)
movl %ecx, 0x38c4(%rsp)
movq %rax, 0x38b8(%rsp)
movq 0x38e8(%rsp), %rcx
movq %rcx, 0x340(%rsp)
movq 0x38d0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x38c8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x38c4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x38b8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x38e4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x38e0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x38dc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3af0(%rsp)
movl $0x10, 0x3aec(%rsp)
movq 0x3af0(%rsp), %rax
movslq 0x3aec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3aec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x348(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1078(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12488a1
movq 0x348(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1090(%rsp)
movb $0x1, 0x209b(%rsp)
testb $0x1, 0x209b(%rsp)
jne 0x12489dc
leaq 0x1050(%rsp), %rax
movq %rax, 0x2520(%rsp)
movq 0x2520(%rsp), %rax
movq %rax, 0x43b0(%rsp)
movq 0x43b0(%rsp), %rax
movq %rax, 0x338(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x124897f
movq 0x338(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x43ac(%rsp) # imm = 0xFFFFFFFF
movl 0x43ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x43a8(%rsp)
cmpl $0x1, 0x43a8(%rsp)
jne 0x124897f
movq 0x338(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1248950
movq 0x338(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x124894e
jmp 0x124897d
movq 0x338(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4628(%rsp)
cmpq $0x0, 0x4628(%rsp)
je 0x124897b
movq 0x4628(%rsp), %rdi
callq 0x5f480
jmp 0x124897d
jmp 0x124897f
movq 0x338(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12489da
movq %rax, %rdi
callq 0x678a0
jmp 0x12489dc
leaq 0x1050(%rsp), %rax
movq %rax, 0x2368(%rsp)
movq 0x2368(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x328(%rsp)
leaq 0x1050(%rsp), %rax
movq %rax, 0x26b0(%rsp)
movq 0x26b0(%rsp), %rax
movq %rax, 0x4090(%rsp)
movq 0x4090(%rsp), %rax
movq %rax, 0x330(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1248ac7
movq 0x330(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x408c(%rsp) # imm = 0xFFFFFFFF
movl 0x408c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4088(%rsp)
cmpl $0x1, 0x4088(%rsp)
jne 0x1248ac7
movq 0x330(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1248a98
movq 0x330(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1248a96
jmp 0x1248ac5
movq 0x330(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47b8(%rsp)
cmpq $0x0, 0x47b8(%rsp)
je 0x1248ac3
movq 0x47b8(%rsp), %rdi
callq 0x5f480
jmp 0x1248ac5
jmp 0x1248ac7
movq 0x330(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1248b22
movq %rax, %rdi
callq 0x678a0
movq 0x328(%rsp), %rax
movq %rax, 0x1098(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x10a4(%rsp), %eax
leaq 0x1000(%rsp), %rdx
movq %rdx, 0x2820(%rsp)
movq %rcx, 0x2818(%rsp)
movl %eax, 0x2814(%rsp)
movq 0x2818(%rsp), %rax
movq %rax, 0x320(%rsp)
movb $0x0, 0x2813(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2814(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1000(%rsp), %r10
movq %r10, 0x3178(%rsp)
movl %r9d, 0x3174(%rsp)
movl %r8d, 0x3170(%rsp)
movl %edi, 0x316c(%rsp)
movq %rsi, 0x3160(%rsp)
movq %rdx, 0x3158(%rsp)
movl %ecx, 0x3154(%rsp)
movq %rax, 0x3148(%rsp)
movq 0x3178(%rsp), %rcx
movq %rcx, 0x318(%rsp)
movq 0x3160(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3158(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3154(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3148(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3174(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3170(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x316c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d10(%rsp)
movl $0x10, 0x3d0c(%rsp)
movq 0x3d10(%rsp), %rax
movslq 0x3d0c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d0c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x320(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1028(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1248cee
movq 0x320(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1040(%rsp)
movb $0x1, 0x2813(%rsp)
testb $0x1, 0x2813(%rsp)
jne 0x1248e29
leaq 0x1000(%rsp), %rax
movq %rax, 0x2828(%rsp)
movq 0x2828(%rsp), %rax
movq %rax, 0x3f20(%rsp)
movq 0x3f20(%rsp), %rax
movq %rax, 0x310(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1248dcc
movq 0x310(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f1c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f1c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f18(%rsp)
cmpl $0x1, 0x3f18(%rsp)
jne 0x1248dcc
movq 0x310(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1248d9d
movq 0x310(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1248d9b
jmp 0x1248dca
movq 0x310(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4870(%rsp)
cmpq $0x0, 0x4870(%rsp)
je 0x1248dc8
movq 0x4870(%rsp), %rdi
callq 0x5f480
jmp 0x1248dca
jmp 0x1248dcc
movq 0x310(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1248e27
movq %rax, %rdi
callq 0x678a0
jmp 0x1248e29
leaq 0x1000(%rsp), %rax
movq %rax, 0x2a78(%rsp)
movq 0x2a78(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x300(%rsp)
leaq 0x1000(%rsp), %rax
movq %rax, 0x26b8(%rsp)
movq 0x26b8(%rsp), %rax
movq %rax, 0x4080(%rsp)
movq 0x4080(%rsp), %rax
movq %rax, 0x308(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1248f14
movq 0x308(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x407c(%rsp) # imm = 0xFFFFFFFF
movl 0x407c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4078(%rsp)
cmpl $0x1, 0x4078(%rsp)
jne 0x1248f14
movq 0x308(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1248ee5
movq 0x308(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1248ee3
jmp 0x1248f12
movq 0x308(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47c0(%rsp)
cmpq $0x0, 0x47c0(%rsp)
je 0x1248f10
movq 0x47c0(%rsp), %rdi
callq 0x5f480
jmp 0x1248f12
jmp 0x1248f14
movq 0x308(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1248f6f
movq %rax, %rdi
callq 0x678a0
movq 0x300(%rsp), %rax
movq %rax, 0x1048(%rsp)
movl $0x0, 0xffc(%rsp)
movl 0xffc(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x1248fee
movq 0x1098(%rsp), %rsi
movslq 0xffc(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0x10a8(%rsp), %rdx
callq 0x12780c0
movq 0x1048(%rsp), %rax
movslq 0xffc(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xffc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xffc(%rsp)
jmp 0x1248f8a
jmp 0x1248ff0
movl 0x10a4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x10a4(%rsp)
jmp 0x12486d1
movl $0x0, 0x1f24(%rsp)
jmp 0x124e6a5
movl $0x0, 0xff8(%rsp)
movl 0xff8(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x1249997
movq 0x1f18(%rsp), %rcx
movl 0xff8(%rsp), %eax
leaq 0xfa8(%rsp), %rdx
movq %rdx, 0x2090(%rsp)
movq %rcx, 0x2088(%rsp)
movl %eax, 0x2084(%rsp)
movq 0x2088(%rsp), %rax
movq %rax, 0x2f8(%rsp)
movb $0x0, 0x2083(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2084(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xfa8(%rsp), %r10
movq %r10, 0x3920(%rsp)
movl %r9d, 0x391c(%rsp)
movl %r8d, 0x3918(%rsp)
movl %edi, 0x3914(%rsp)
movq %rsi, 0x3908(%rsp)
movq %rdx, 0x3900(%rsp)
movl %ecx, 0x38fc(%rsp)
movq %rax, 0x38f0(%rsp)
movq 0x3920(%rsp), %rcx
movq %rcx, 0x2f0(%rsp)
movq 0x3908(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3900(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x38fc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x38f0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x391c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3918(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3914(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ae0(%rsp)
movl $0x10, 0x3adc(%rsp)
movq 0x3ae0(%rsp), %rax
movslq 0x3adc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3adc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2f8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xfd0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12491f1
movq 0x2f8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xfe8(%rsp)
movb $0x1, 0x2083(%rsp)
testb $0x1, 0x2083(%rsp)
jne 0x124932c
leaq 0xfa8(%rsp), %rax
movq %rax, 0x2528(%rsp)
movq 0x2528(%rsp), %rax
movq %rax, 0x43a0(%rsp)
movq 0x43a0(%rsp), %rax
movq %rax, 0x2e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12492cf
movq 0x2e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x439c(%rsp) # imm = 0xFFFFFFFF
movl 0x439c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4398(%rsp)
cmpl $0x1, 0x4398(%rsp)
jne 0x12492cf
movq 0x2e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12492a0
movq 0x2e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x124929e
jmp 0x12492cd
movq 0x2e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4630(%rsp)
cmpq $0x0, 0x4630(%rsp)
je 0x12492cb
movq 0x4630(%rsp), %rdi
callq 0x5f480
jmp 0x12492cd
jmp 0x12492cf
movq 0x2e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x124932a
movq %rax, %rdi
callq 0x678a0
jmp 0x124932c
leaq 0xfa8(%rsp), %rax
movq %rax, 0x2360(%rsp)
movq 0x2360(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2d8(%rsp)
leaq 0xfa8(%rsp), %rax
movq %rax, 0x26c0(%rsp)
movq 0x26c0(%rsp), %rax
movq %rax, 0x4070(%rsp)
movq 0x4070(%rsp), %rax
movq %rax, 0x2e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1249417
movq 0x2e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x406c(%rsp) # imm = 0xFFFFFFFF
movl 0x406c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4068(%rsp)
cmpl $0x1, 0x4068(%rsp)
jne 0x1249417
movq 0x2e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12493e8
movq 0x2e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12493e6
jmp 0x1249415
movq 0x2e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47c8(%rsp)
cmpq $0x0, 0x47c8(%rsp)
je 0x1249413
movq 0x47c8(%rsp), %rdi
callq 0x5f480
jmp 0x1249415
jmp 0x1249417
movq 0x2e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1249472
movq %rax, %rdi
callq 0x678a0
movq 0x2d8(%rsp), %rax
movq %rax, 0xff0(%rsp)
movq 0x1f10(%rsp), %rcx
movslq 0xff8(%rsp), %rax
movq %rcx, 0x2c68(%rsp)
movq %rax, 0x2c60(%rsp)
movq 0x2c68(%rsp), %rax
movq (%rax), %rax
movq 0x2c60(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xfa4(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0xff8(%rsp), %eax
leaq 0xf50(%rsp), %rdx
movq %rdx, 0x2800(%rsp)
movq %rcx, 0x27f8(%rsp)
movl %eax, 0x27f4(%rsp)
movq 0x27f8(%rsp), %rax
movq %rax, 0x2d0(%rsp)
movb $0x0, 0x27f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x27f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xf50(%rsp), %r10
movq %r10, 0x31b0(%rsp)
movl %r9d, 0x31ac(%rsp)
movl %r8d, 0x31a8(%rsp)
movl %edi, 0x31a4(%rsp)
movq %rsi, 0x3198(%rsp)
movq %rdx, 0x3190(%rsp)
movl %ecx, 0x318c(%rsp)
movq %rax, 0x3180(%rsp)
movq 0x31b0(%rsp), %rcx
movq %rcx, 0x2c8(%rsp)
movq 0x3198(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3190(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x318c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3180(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x31ac(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x31a8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x31a4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d00(%rsp)
movl $0x10, 0x3cfc(%rsp)
movq 0x3d00(%rsp), %rax
movslq 0x3cfc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cfc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2d0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf78(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x124967f
movq 0x2d0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xf90(%rsp)
movb $0x1, 0x27f3(%rsp)
testb $0x1, 0x27f3(%rsp)
jne 0x12497ba
leaq 0xf50(%rsp), %rax
movq %rax, 0x2808(%rsp)
movq 0x2808(%rsp), %rax
movq %rax, 0x3f30(%rsp)
movq 0x3f30(%rsp), %rax
movq %rax, 0x2c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x124975d
movq 0x2c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f2c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f2c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f28(%rsp)
cmpl $0x1, 0x3f28(%rsp)
jne 0x124975d
movq 0x2c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x124972e
movq 0x2c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x124972c
jmp 0x124975b
movq 0x2c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4868(%rsp)
cmpq $0x0, 0x4868(%rsp)
je 0x1249759
movq 0x4868(%rsp), %rdi
callq 0x5f480
jmp 0x124975b
jmp 0x124975d
movq 0x2c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12497b8
movq %rax, %rdi
callq 0x678a0
jmp 0x12497ba
leaq 0xf50(%rsp), %rax
movq %rax, 0x2a70(%rsp)
movq 0x2a70(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2b0(%rsp)
leaq 0xf50(%rsp), %rax
movq %rax, 0x26c8(%rsp)
movq 0x26c8(%rsp), %rax
movq %rax, 0x4060(%rsp)
movq 0x4060(%rsp), %rax
movq %rax, 0x2b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12498a5
movq 0x2b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x405c(%rsp) # imm = 0xFFFFFFFF
movl 0x405c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4058(%rsp)
cmpl $0x1, 0x4058(%rsp)
jne 0x12498a5
movq 0x2b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1249876
movq 0x2b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1249874
jmp 0x12498a3
movq 0x2b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47d0(%rsp)
cmpq $0x0, 0x47d0(%rsp)
je 0x12498a1
movq 0x47d0(%rsp), %rdi
callq 0x5f480
jmp 0x12498a3
jmp 0x12498a5
movq 0x2b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1249900
movq %rax, %rdi
callq 0x678a0
movq 0x2b0(%rsp), %rax
movq %rax, 0xf98(%rsp)
movl $0x0, 0xf4c(%rsp)
movl 0xf4c(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x124997f
movq 0xff0(%rsp), %rsi
movslq 0xf4c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0xfa4(%rsp), %rdx
callq 0x12780c0
movq 0xf98(%rsp), %rax
movslq 0xf4c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xf4c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xf4c(%rsp)
jmp 0x124991b
jmp 0x1249981
movl 0xff8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xff8(%rsp)
jmp 0x1249021
movl $0x0, 0x1f24(%rsp)
jmp 0x124e6a5
jmp 0x124e698
movq 0x1f18(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x124b502
movq 0x1f10(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x124a4f5
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed4(%rsp), %ecx
movl 0x1ed0(%rsp), %r8d
movq 0x1ee0(%rsp), %r9
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6fb30
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f80(%rsp)
movq 0x1f80(%rsp), %rcx
movq %rcx, 0x2a0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x2af(%rsp)
je 0x1249a73
movq 0x2a0(%rsp), %rax
movq %rax, 0x2d68(%rsp)
movq 0x2d68(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x2af(%rsp)
movb 0x2af(%rsp), %al
testb $0x1, %al
jne 0x1249a80
jmp 0x1249a90
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x124e6a5
movl $0x0, 0xf48(%rsp)
movl 0xf48(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x124a4e5
movq 0x1f18(%rsp), %rcx
movl 0xf48(%rsp), %eax
movq %rcx, 0x2b18(%rsp)
movl %eax, 0x2b14(%rsp)
movq 0x2b18(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2b14(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xf40(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0xf48(%rsp), %eax
leaq 0xef0(%rsp), %rdx
movq %rdx, 0x2078(%rsp)
movq %rcx, 0x2070(%rsp)
movl %eax, 0x206c(%rsp)
movq 0x2070(%rsp), %rax
movq %rax, 0x298(%rsp)
movb $0x0, 0x206b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x206c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xef0(%rsp), %r10
movq %r10, 0x3958(%rsp)
movl %r9d, 0x3954(%rsp)
movl %r8d, 0x3950(%rsp)
movl %edi, 0x394c(%rsp)
movq %rsi, 0x3940(%rsp)
movq %rdx, 0x3938(%rsp)
movl %ecx, 0x3934(%rsp)
movq %rax, 0x3928(%rsp)
movq 0x3958(%rsp), %rcx
movq %rcx, 0x290(%rsp)
movq 0x3940(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3938(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3934(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3928(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3954(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3950(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x394c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ad0(%rsp)
movl $0x10, 0x3acc(%rsp)
movq 0x3ad0(%rsp), %rax
movslq 0x3acc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3acc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x298(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf18(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1249cb4
movq 0x298(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xf30(%rsp)
movb $0x1, 0x206b(%rsp)
testb $0x1, 0x206b(%rsp)
jne 0x1249def
leaq 0xef0(%rsp), %rax
movq %rax, 0x2530(%rsp)
movq 0x2530(%rsp), %rax
movq %rax, 0x4390(%rsp)
movq 0x4390(%rsp), %rax
movq %rax, 0x288(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1249d92
movq 0x288(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x438c(%rsp) # imm = 0xFFFFFFFF
movl 0x438c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4388(%rsp)
cmpl $0x1, 0x4388(%rsp)
jne 0x1249d92
movq 0x288(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1249d63
movq 0x288(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1249d61
jmp 0x1249d90
movq 0x288(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4638(%rsp)
cmpq $0x0, 0x4638(%rsp)
je 0x1249d8e
movq 0x4638(%rsp), %rdi
callq 0x5f480
jmp 0x1249d90
jmp 0x1249d92
movq 0x288(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1249ded
movq %rax, %rdi
callq 0x678a0
jmp 0x1249def
leaq 0xef0(%rsp), %rax
movq %rax, 0x2358(%rsp)
movq 0x2358(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x278(%rsp)
leaq 0xef0(%rsp), %rax
movq %rax, 0x26d0(%rsp)
movq 0x26d0(%rsp), %rax
movq %rax, 0x4050(%rsp)
movq 0x4050(%rsp), %rax
movq %rax, 0x280(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1249eda
movq 0x280(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x404c(%rsp) # imm = 0xFFFFFFFF
movl 0x404c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4048(%rsp)
cmpl $0x1, 0x4048(%rsp)
jne 0x1249eda
movq 0x280(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1249eab
movq 0x280(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1249ea9
jmp 0x1249ed8
movq 0x280(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47d8(%rsp)
cmpq $0x0, 0x47d8(%rsp)
je 0x1249ed6
movq 0x47d8(%rsp), %rdi
callq 0x5f480
jmp 0x1249ed8
jmp 0x1249eda
movq 0x280(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1249f35
movq %rax, %rdi
callq 0x678a0
movq 0x278(%rsp), %rax
movq %rax, 0xf38(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0xf48(%rsp), %eax
leaq 0xea0(%rsp), %rdx
movq %rdx, 0x27e0(%rsp)
movq %rcx, 0x27d8(%rsp)
movl %eax, 0x27d4(%rsp)
movq 0x27d8(%rsp), %rax
movq %rax, 0x270(%rsp)
movb $0x0, 0x27d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x27d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xea0(%rsp), %r10
movq %r10, 0x31e8(%rsp)
movl %r9d, 0x31e4(%rsp)
movl %r8d, 0x31e0(%rsp)
movl %edi, 0x31dc(%rsp)
movq %rsi, 0x31d0(%rsp)
movq %rdx, 0x31c8(%rsp)
movl %ecx, 0x31c4(%rsp)
movq %rax, 0x31b8(%rsp)
movq 0x31e8(%rsp), %rcx
movq %rcx, 0x268(%rsp)
movq 0x31d0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x31c8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x31c4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x31b8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x31e4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x31e0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x31dc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3cf0(%rsp)
movl $0x10, 0x3cec(%rsp)
movq 0x3cf0(%rsp), %rax
movslq 0x3cec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x270(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xec8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x124a101
movq 0x270(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xee0(%rsp)
movb $0x1, 0x27d3(%rsp)
testb $0x1, 0x27d3(%rsp)
jne 0x124a23c
leaq 0xea0(%rsp), %rax
movq %rax, 0x27e8(%rsp)
movq 0x27e8(%rsp), %rax
movq %rax, 0x3f40(%rsp)
movq 0x3f40(%rsp), %rax
movq %rax, 0x260(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x124a1df
movq 0x260(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f3c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f3c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f38(%rsp)
cmpl $0x1, 0x3f38(%rsp)
jne 0x124a1df
movq 0x260(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x124a1b0
movq 0x260(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x124a1ae
jmp 0x124a1dd
movq 0x260(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4860(%rsp)
cmpq $0x0, 0x4860(%rsp)
je 0x124a1db
movq 0x4860(%rsp), %rdi
callq 0x5f480
jmp 0x124a1dd
jmp 0x124a1df
movq 0x260(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x124a23a
movq %rax, %rdi
callq 0x678a0
jmp 0x124a23c
leaq 0xea0(%rsp), %rax
movq %rax, 0x2a68(%rsp)
movq 0x2a68(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x250(%rsp)
leaq 0xea0(%rsp), %rax
movq %rax, 0x26d8(%rsp)
movq 0x26d8(%rsp), %rax
movq %rax, 0x4040(%rsp)
movq 0x4040(%rsp), %rax
movq %rax, 0x258(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x124a327
movq 0x258(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x403c(%rsp) # imm = 0xFFFFFFFF
movl 0x403c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4038(%rsp)
cmpl $0x1, 0x4038(%rsp)
jne 0x124a327
movq 0x258(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x124a2f8
movq 0x258(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x124a2f6
jmp 0x124a325
movq 0x258(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47e0(%rsp)
cmpq $0x0, 0x47e0(%rsp)
je 0x124a323
movq 0x47e0(%rsp), %rdi
callq 0x5f480
jmp 0x124a325
jmp 0x124a327
movq 0x258(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x124a382
movq %rax, %rdi
callq 0x678a0
movq 0x250(%rsp), %rax
movq %rax, 0xee8(%rsp)
movl $0x0, 0xe9c(%rsp)
movl 0xe9c(%rsp), %eax
cmpl 0x1ed4(%rsp), %eax
jge 0x124a4cd
movq 0xf40(%rsp), %rax
movslq 0xe9c(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xe98(%rsp)
movl $0x0, 0xe94(%rsp)
movl 0xe94(%rsp), %eax
cmpl 0x1ed8(%rsp), %eax
jge 0x124a4b5
movl $0x0, 0xe90(%rsp)
movl 0xe90(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x124a45d
movq 0xf38(%rsp), %rdx
movslq 0xe90(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xe98(%rsp), %rsi
callq 0x12780c0
movq 0xee8(%rsp), %rax
movslq 0xe90(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xe90(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xe90(%rsp)
jmp 0x124a3f9
movl 0x1edc(%rsp), %ecx
movq 0xf38(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xf38(%rsp)
movl 0x1edc(%rsp), %ecx
movq 0xee8(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xee8(%rsp)
movl 0xe94(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xe94(%rsp)
jmp 0x124a3da
jmp 0x124a4b7
movl 0xe9c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xe9c(%rsp)
jmp 0x124a39d
jmp 0x124a4cf
movl 0xf48(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xf48(%rsp)
jmp 0x1249a9b
movl $0x0, 0x1f24(%rsp)
jmp 0x124e6a5
movq 0x1f10(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x124afe9
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed0(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f78(%rsp)
movq 0x1f78(%rsp), %rcx
movq %rcx, 0x240(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x24f(%rsp)
je 0x124a59e
movq 0x240(%rsp), %rax
movq %rax, 0x2d70(%rsp)
movq 0x2d70(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x24f(%rsp)
movb 0x24f(%rsp), %al
testb $0x1, %al
jne 0x124a5ab
jmp 0x124a5bb
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x124e6a5
movl $0x0, 0xe8c(%rsp)
movl 0xe8c(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x124afd9
movq 0x1f18(%rsp), %rcx
movl 0xe8c(%rsp), %eax
movq %rcx, 0x2b08(%rsp)
movl %eax, 0x2b04(%rsp)
movq 0x2b08(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2b04(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xe80(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0xe8c(%rsp), %eax
leaq 0xe30(%rsp), %rdx
movq %rdx, 0x2060(%rsp)
movq %rcx, 0x2058(%rsp)
movl %eax, 0x2054(%rsp)
movq 0x2058(%rsp), %rax
movq %rax, 0x238(%rsp)
movb $0x0, 0x2053(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2054(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xe30(%rsp), %r10
movq %r10, 0x3990(%rsp)
movl %r9d, 0x398c(%rsp)
movl %r8d, 0x3988(%rsp)
movl %edi, 0x3984(%rsp)
movq %rsi, 0x3978(%rsp)
movq %rdx, 0x3970(%rsp)
movl %ecx, 0x396c(%rsp)
movq %rax, 0x3960(%rsp)
movq 0x3990(%rsp), %rcx
movq %rcx, 0x230(%rsp)
movq 0x3978(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3970(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x396c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3960(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x398c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3988(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3984(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ac0(%rsp)
movl $0x10, 0x3abc(%rsp)
movq 0x3ac0(%rsp), %rax
movslq 0x3abc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3abc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x238(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xe58(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x124a7df
movq 0x238(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xe70(%rsp)
movb $0x1, 0x2053(%rsp)
testb $0x1, 0x2053(%rsp)
jne 0x124a91a
leaq 0xe30(%rsp), %rax
movq %rax, 0x2538(%rsp)
movq 0x2538(%rsp), %rax
movq %rax, 0x4380(%rsp)
movq 0x4380(%rsp), %rax
movq %rax, 0x228(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x124a8bd
movq 0x228(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x437c(%rsp) # imm = 0xFFFFFFFF
movl 0x437c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4378(%rsp)
cmpl $0x1, 0x4378(%rsp)
jne 0x124a8bd
movq 0x228(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x124a88e
movq 0x228(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x124a88c
jmp 0x124a8bb
movq 0x228(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4640(%rsp)
cmpq $0x0, 0x4640(%rsp)
je 0x124a8b9
movq 0x4640(%rsp), %rdi
callq 0x5f480
jmp 0x124a8bb
jmp 0x124a8bd
movq 0x228(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x124a918
movq %rax, %rdi
callq 0x678a0
jmp 0x124a91a
leaq 0xe30(%rsp), %rax
movq %rax, 0x2350(%rsp)
movq 0x2350(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x218(%rsp)
leaq 0xe30(%rsp), %rax
movq %rax, 0x26e0(%rsp)
movq 0x26e0(%rsp), %rax
movq %rax, 0x4030(%rsp)
movq 0x4030(%rsp), %rax
movq %rax, 0x220(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x124aa05
movq 0x220(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x402c(%rsp) # imm = 0xFFFFFFFF
movl 0x402c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4028(%rsp)
cmpl $0x1, 0x4028(%rsp)
jne 0x124aa05
movq 0x220(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x124a9d6
movq 0x220(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x124a9d4
jmp 0x124aa03
movq 0x220(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47e8(%rsp)
cmpq $0x0, 0x47e8(%rsp)
je 0x124aa01
movq 0x47e8(%rsp), %rdi
callq 0x5f480
jmp 0x124aa03
jmp 0x124aa05
movq 0x220(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x124aa60
movq %rax, %rdi
callq 0x678a0
movq 0x218(%rsp), %rax
movq %rax, 0xe78(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0xe8c(%rsp), %eax
leaq 0xde0(%rsp), %rdx
movq %rdx, 0x27c0(%rsp)
movq %rcx, 0x27b8(%rsp)
movl %eax, 0x27b4(%rsp)
movq 0x27b8(%rsp), %rax
movq %rax, 0x210(%rsp)
movb $0x0, 0x27b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x27b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xde0(%rsp), %r10
movq %r10, 0x3220(%rsp)
movl %r9d, 0x321c(%rsp)
movl %r8d, 0x3218(%rsp)
movl %edi, 0x3214(%rsp)
movq %rsi, 0x3208(%rsp)
movq %rdx, 0x3200(%rsp)
movl %ecx, 0x31fc(%rsp)
movq %rax, 0x31f0(%rsp)
movq 0x3220(%rsp), %rcx
movq %rcx, 0x208(%rsp)
movq 0x3208(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3200(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x31fc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x31f0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x321c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3218(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3214(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ce0(%rsp)
movl $0x10, 0x3cdc(%rsp)
movq 0x3ce0(%rsp), %rax
movslq 0x3cdc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cdc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x210(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xe08(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x124ac2c
movq 0x210(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xe20(%rsp)
movb $0x1, 0x27b3(%rsp)
testb $0x1, 0x27b3(%rsp)
jne 0x124ad67
leaq 0xde0(%rsp), %rax
movq %rax, 0x27c8(%rsp)
movq 0x27c8(%rsp), %rax
movq %rax, 0x3f50(%rsp)
movq 0x3f50(%rsp), %rax
movq %rax, 0x200(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x124ad0a
movq 0x200(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f4c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f4c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f48(%rsp)
cmpl $0x1, 0x3f48(%rsp)
jne 0x124ad0a
movq 0x200(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x124acdb
movq 0x200(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x124acd9
jmp 0x124ad08
movq 0x200(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4858(%rsp)
cmpq $0x0, 0x4858(%rsp)
je 0x124ad06
movq 0x4858(%rsp), %rdi
callq 0x5f480
jmp 0x124ad08
jmp 0x124ad0a
movq 0x200(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x124ad65
movq %rax, %rdi
callq 0x678a0
jmp 0x124ad67
leaq 0xde0(%rsp), %rax
movq %rax, 0x2a60(%rsp)
movq 0x2a60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1f0(%rsp)
leaq 0xde0(%rsp), %rax
movq %rax, 0x26e8(%rsp)
movq 0x26e8(%rsp), %rax
movq %rax, 0x4020(%rsp)
movq 0x4020(%rsp), %rax
movq %rax, 0x1f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x124ae52
movq 0x1f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x401c(%rsp) # imm = 0xFFFFFFFF
movl 0x401c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4018(%rsp)
cmpl $0x1, 0x4018(%rsp)
jne 0x124ae52
movq 0x1f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x124ae23
movq 0x1f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x124ae21
jmp 0x124ae50
movq 0x1f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47f0(%rsp)
cmpq $0x0, 0x47f0(%rsp)
je 0x124ae4e
movq 0x47f0(%rsp), %rdi
callq 0x5f480
jmp 0x124ae50
jmp 0x124ae52
movq 0x1f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x124aead
movq %rax, %rdi
callq 0x678a0
movq 0x1f0(%rsp), %rax
movq %rax, 0xe28(%rsp)
movl $0x0, 0xddc(%rsp)
movl 0xddc(%rsp), %eax
cmpl 0x1ed8(%rsp), %eax
jge 0x124afc1
movq 0xe80(%rsp), %rax
movslq 0xddc(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xdd8(%rsp)
movl $0x0, 0xdd4(%rsp)
movl 0xdd4(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x124af69
movq 0xe78(%rsp), %rdx
movslq 0xdd4(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xdd8(%rsp), %rsi
callq 0x12780c0
movq 0xe28(%rsp), %rax
movslq 0xdd4(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xdd4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdd4(%rsp)
jmp 0x124af05
movl 0x1edc(%rsp), %ecx
movq 0xe78(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xe78(%rsp)
movl 0x1edc(%rsp), %ecx
movq 0xe28(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xe28(%rsp)
movl 0xddc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xddc(%rsp)
jmp 0x124aec8
jmp 0x124afc3
movl 0xe8c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xe8c(%rsp)
jmp 0x124a5c6
movl $0x0, 0x1f24(%rsp)
jmp 0x124e6a5
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movq 0x1ee0(%rsp), %rcx
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6f5a0
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f70(%rsp)
movq 0x1f70(%rsp), %rcx
movq %rcx, 0x1e0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1ef(%rsp)
je 0x124b079
movq 0x1e0(%rsp), %rax
movq %rax, 0x2d78(%rsp)
movq 0x2d78(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1ef(%rsp)
movb 0x1ef(%rsp), %al
testb $0x1, %al
jne 0x124b086
jmp 0x124b096
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x124e6a5
movq 0x1f10(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x124b1a6
movl $0x0, 0xdd0(%rsp)
movl 0xdd0(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x124b196
movq 0x1f18(%rsp), %rcx
movslq 0xdd0(%rsp), %rax
movq %rcx, 0x2c58(%rsp)
movq %rax, 0x2c50(%rsp)
movq 0x2c58(%rsp), %rax
movq (%rax), %rsi
movq 0x2c50(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1f10(%rsp), %rcx
movslq 0xdd0(%rsp), %rax
movq %rcx, 0x2c48(%rsp)
movq %rax, 0x2c40(%rsp)
movq 0x2c48(%rsp), %rax
movq (%rax), %rdx
movq 0x2c40(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x12780c0
movq 0x1f08(%rsp), %rcx
movslq 0xdd0(%rsp), %rax
movq %rcx, 0x2cf8(%rsp)
movq %rax, 0x2cf0(%rsp)
movq 0x2cf8(%rsp), %rax
movq (%rax), %rax
movq 0x2cf0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xdd0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdd0(%rsp)
jmp 0x124b0b3
movl $0x0, 0x1f24(%rsp)
jmp 0x124e6a5
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x124b4fd
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movq 0x1ee0(%rsp), %rcx
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6f5a0
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f68(%rsp)
movq 0x1f68(%rsp), %rcx
movq %rcx, 0x1d0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1df(%rsp)
je 0x124b248
movq 0x1d0(%rsp), %rax
movq %rax, 0x2d80(%rsp)
movq 0x2d80(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1df(%rsp)
movb 0x1df(%rsp), %al
testb $0x1, %al
jne 0x124b255
jmp 0x124b265
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x124e6a5
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x124b380
movq 0x1f10(%rsp), %rax
movq %rax, 0x2c38(%rsp)
movq $0x0, 0x2c30(%rsp)
movq 0x2c38(%rsp), %rax
movq (%rax), %rax
movq 0x2c30(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xdcc(%rsp)
movl $0x0, 0xdc8(%rsp)
movl 0xdc8(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x124b370
movq 0x1f18(%rsp), %rcx
movslq 0xdc8(%rsp), %rax
movq %rcx, 0x2c28(%rsp)
movq %rax, 0x2c20(%rsp)
movq 0x2c28(%rsp), %rax
movq (%rax), %rsi
movq 0x2c20(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0xdcc(%rsp), %rdx
callq 0x12780c0
movq 0x1f08(%rsp), %rcx
movslq 0xdc8(%rsp), %rax
movq %rcx, 0x2ce8(%rsp)
movq %rax, 0x2ce0(%rsp)
movq 0x2ce8(%rsp), %rax
movq (%rax), %rax
movq 0x2ce0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xdc8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdc8(%rsp)
jmp 0x124b2bf
movl $0x0, 0x1f24(%rsp)
jmp 0x124e6a5
movq 0x1f18(%rsp), %rax
movq %rax, 0x2348(%rsp)
movq 0x2348(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xdc0(%rsp)
movq 0x1f08(%rsp), %rax
movq %rax, 0x2a58(%rsp)
movq 0x2a58(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xdb8(%rsp)
movl $0x0, 0xdb4(%rsp)
movl 0xdb4(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jge 0x124b4ed
movq 0x1f10(%rsp), %rcx
movslq 0xdb4(%rsp), %rax
movq %rcx, 0x2c18(%rsp)
movq %rax, 0x2c10(%rsp)
movq 0x2c18(%rsp), %rax
movq (%rax), %rax
movq 0x2c10(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xdb0(%rsp)
movl $0x0, 0xdac(%rsp)
movl 0xdac(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x124b495
movq 0xdc0(%rsp), %rsi
movslq 0xdac(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0xdb0(%rsp), %rdx
callq 0x12780c0
movq 0xdb8(%rsp), %rax
movslq 0xdac(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xdac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdac(%rsp)
jmp 0x124b431
movl 0x1ef8(%rsp), %ecx
movq 0xdc0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xdc0(%rsp)
movl 0x1ef8(%rsp), %ecx
movq 0xdb8(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xdb8(%rsp)
movl 0xdb4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdb4(%rsp)
jmp 0x124b3d1
movl $0x0, 0x1f24(%rsp)
jmp 0x124e6a5
jmp 0x124e696
movq 0x1f18(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x124e694
movq 0x1f18(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x124cd63
movq 0x1f10(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x124bf85
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed4(%rsp), %ecx
movl 0x1ed0(%rsp), %r8d
movq 0x1ee0(%rsp), %r9
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6fb30
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f60(%rsp)
movq 0x1f60(%rsp), %rcx
movq %rcx, 0x1c0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1cf(%rsp)
je 0x124b5db
movq 0x1c0(%rsp), %rax
movq %rax, 0x2d88(%rsp)
movq 0x2d88(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1cf(%rsp)
movb 0x1cf(%rsp), %al
testb $0x1, %al
jne 0x124b5e8
jmp 0x124b5f8
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x124e6a5
movq 0x1f18(%rsp), %rax
movq %rax, 0x2c08(%rsp)
movq $0x0, 0x2c00(%rsp)
movq 0x2c08(%rsp), %rax
movq (%rax), %rax
movq 0x2c00(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xda8(%rsp)
movl $0x0, 0xda4(%rsp)
movl 0xda4(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x124bf75
movq 0x1f10(%rsp), %rcx
movl 0xda4(%rsp), %eax
leaq 0xd50(%rsp), %rdx
movq %rdx, 0x2048(%rsp)
movq %rcx, 0x2040(%rsp)
movl %eax, 0x203c(%rsp)
movq 0x2040(%rsp), %rax
movq %rax, 0x1b8(%rsp)
movb $0x0, 0x203b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x203c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xd50(%rsp), %r10
movq %r10, 0x39c8(%rsp)
movl %r9d, 0x39c4(%rsp)
movl %r8d, 0x39c0(%rsp)
movl %edi, 0x39bc(%rsp)
movq %rsi, 0x39b0(%rsp)
movq %rdx, 0x39a8(%rsp)
movl %ecx, 0x39a4(%rsp)
movq %rax, 0x3998(%rsp)
movq 0x39c8(%rsp), %rcx
movq %rcx, 0x1b0(%rsp)
movq 0x39b0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x39a8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x39a4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3998(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x39c4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x39c0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x39bc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ab0(%rsp)
movl $0x10, 0x3aac(%rsp)
movq 0x3ab0(%rsp), %rax
movslq 0x3aac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3aac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x1b8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xd78(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x124b810
movq 0x1b8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd90(%rsp)
movb $0x1, 0x203b(%rsp)
testb $0x1, 0x203b(%rsp)
jne 0x124b94b
leaq 0xd50(%rsp), %rax
movq %rax, 0x2540(%rsp)
movq 0x2540(%rsp), %rax
movq %rax, 0x4370(%rsp)
movq 0x4370(%rsp), %rax
movq %rax, 0x1a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x124b8ee
movq 0x1a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x436c(%rsp) # imm = 0xFFFFFFFF
movl 0x436c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4368(%rsp)
cmpl $0x1, 0x4368(%rsp)
jne 0x124b8ee
movq 0x1a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x124b8bf
movq 0x1a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x124b8bd
jmp 0x124b8ec
movq 0x1a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4648(%rsp)
cmpq $0x0, 0x4648(%rsp)
je 0x124b8ea
movq 0x4648(%rsp), %rdi
callq 0x5f480
jmp 0x124b8ec
jmp 0x124b8ee
movq 0x1a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x124b949
movq %rax, %rdi
callq 0x678a0
jmp 0x124b94b
leaq 0xd50(%rsp), %rax
movq %rax, 0x2340(%rsp)
movq 0x2340(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x198(%rsp)
leaq 0xd50(%rsp), %rax
movq %rax, 0x26f0(%rsp)
movq 0x26f0(%rsp), %rax
movq %rax, 0x4010(%rsp)
movq 0x4010(%rsp), %rax
movq %rax, 0x1a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x124ba36
movq 0x1a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x400c(%rsp) # imm = 0xFFFFFFFF
movl 0x400c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4008(%rsp)
cmpl $0x1, 0x4008(%rsp)
jne 0x124ba36
movq 0x1a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x124ba07
movq 0x1a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x124ba05
jmp 0x124ba34
movq 0x1a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47f8(%rsp)
cmpq $0x0, 0x47f8(%rsp)
je 0x124ba32
movq 0x47f8(%rsp), %rdi
callq 0x5f480
jmp 0x124ba34
jmp 0x124ba36
movq 0x1a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x124ba91
movq %rax, %rdi
callq 0x678a0
movq 0x198(%rsp), %rax
movq %rax, 0xd98(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0xda4(%rsp), %eax
leaq 0xd00(%rsp), %rdx
movq %rdx, 0x27a0(%rsp)
movq %rcx, 0x2798(%rsp)
movl %eax, 0x2794(%rsp)
movq 0x2798(%rsp), %rax
movq %rax, 0x190(%rsp)
movb $0x0, 0x2793(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2794(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xd00(%rsp), %r10
movq %r10, 0x3258(%rsp)
movl %r9d, 0x3254(%rsp)
movl %r8d, 0x3250(%rsp)
movl %edi, 0x324c(%rsp)
movq %rsi, 0x3240(%rsp)
movq %rdx, 0x3238(%rsp)
movl %ecx, 0x3234(%rsp)
movq %rax, 0x3228(%rsp)
movq 0x3258(%rsp), %rcx
movq %rcx, 0x188(%rsp)
movq 0x3240(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3238(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3234(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3228(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3254(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3250(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x324c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3cd0(%rsp)
movl $0x10, 0x3ccc(%rsp)
movq 0x3cd0(%rsp), %rax
movslq 0x3ccc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3ccc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x190(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xd28(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x124bc5d
movq 0x190(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd40(%rsp)
movb $0x1, 0x2793(%rsp)
testb $0x1, 0x2793(%rsp)
jne 0x124bd98
leaq 0xd00(%rsp), %rax
movq %rax, 0x27a8(%rsp)
movq 0x27a8(%rsp), %rax
movq %rax, 0x3f60(%rsp)
movq 0x3f60(%rsp), %rax
movq %rax, 0x180(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x124bd3b
movq 0x180(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f5c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f5c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f58(%rsp)
cmpl $0x1, 0x3f58(%rsp)
jne 0x124bd3b
movq 0x180(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x124bd0c
movq 0x180(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x124bd0a
jmp 0x124bd39
movq 0x180(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4850(%rsp)
cmpq $0x0, 0x4850(%rsp)
je 0x124bd37
movq 0x4850(%rsp), %rdi
callq 0x5f480
jmp 0x124bd39
jmp 0x124bd3b
movq 0x180(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x124bd96
movq %rax, %rdi
callq 0x678a0
jmp 0x124bd98
leaq 0xd00(%rsp), %rax
movq %rax, 0x2a50(%rsp)
movq 0x2a50(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x170(%rsp)
leaq 0xd00(%rsp), %rax
movq %rax, 0x26f8(%rsp)
movq 0x26f8(%rsp), %rax
movq %rax, 0x4000(%rsp)
movq 0x4000(%rsp), %rax
movq %rax, 0x178(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x124be83
movq 0x178(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ffc(%rsp) # imm = 0xFFFFFFFF
movl 0x3ffc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ff8(%rsp)
cmpl $0x1, 0x3ff8(%rsp)
jne 0x124be83
movq 0x178(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x124be54
movq 0x178(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x124be52
jmp 0x124be81
movq 0x178(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4800(%rsp)
cmpq $0x0, 0x4800(%rsp)
je 0x124be7f
movq 0x4800(%rsp), %rdi
callq 0x5f480
jmp 0x124be81
jmp 0x124be83
movq 0x178(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x124bede
movq %rax, %rdi
callq 0x678a0
movq 0x170(%rsp), %rax
movq %rax, 0xd48(%rsp)
movl $0x0, 0xcfc(%rsp)
movl 0xcfc(%rsp), %eax
cmpl 0x1ecc(%rsp), %eax
jge 0x124bf5d
movq 0xd98(%rsp), %rdx
movslq 0xcfc(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xda8(%rsp), %rsi
callq 0x12780c0
movq 0xd48(%rsp), %rax
movslq 0xcfc(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xcfc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xcfc(%rsp)
jmp 0x124bef9
jmp 0x124bf5f
movl 0xda4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xda4(%rsp)
jmp 0x124b640
movl $0x0, 0x1f24(%rsp)
jmp 0x124e6a5
movq 0x1f10(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x124c9d8
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed0(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f58(%rsp)
movq 0x1f58(%rsp), %rcx
movq %rcx, 0x160(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x16f(%rsp)
je 0x124c02e
movq 0x160(%rsp), %rax
movq %rax, 0x2d90(%rsp)
movq 0x2d90(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x16f(%rsp)
movb 0x16f(%rsp), %al
testb $0x1, %al
jne 0x124c03b
jmp 0x124c04b
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x124e6a5
movq 0x1f18(%rsp), %rax
movq %rax, 0x2bf8(%rsp)
movq $0x0, 0x2bf0(%rsp)
movq 0x2bf8(%rsp), %rax
movq (%rax), %rax
movq 0x2bf0(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xcf8(%rsp)
movl $0x0, 0xcf4(%rsp)
movl 0xcf4(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x124c9c8
movq 0x1f10(%rsp), %rcx
movl 0xcf4(%rsp), %eax
leaq 0xca0(%rsp), %rdx
movq %rdx, 0x2030(%rsp)
movq %rcx, 0x2028(%rsp)
movl %eax, 0x2024(%rsp)
movq 0x2028(%rsp), %rax
movq %rax, 0x158(%rsp)
movb $0x0, 0x2023(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2024(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xca0(%rsp), %r10
movq %r10, 0x3a00(%rsp)
movl %r9d, 0x39fc(%rsp)
movl %r8d, 0x39f8(%rsp)
movl %edi, 0x39f4(%rsp)
movq %rsi, 0x39e8(%rsp)
movq %rdx, 0x39e0(%rsp)
movl %ecx, 0x39dc(%rsp)
movq %rax, 0x39d0(%rsp)
movq 0x3a00(%rsp), %rcx
movq %rcx, 0x150(%rsp)
movq 0x39e8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x39e0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x39dc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x39d0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x39fc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x39f8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x39f4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3aa0(%rsp)
movl $0x10, 0x3a9c(%rsp)
movq 0x3aa0(%rsp), %rax
movslq 0x3a9c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3a9c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x158(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xcc8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x124c263
movq 0x158(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xce0(%rsp)
movb $0x1, 0x2023(%rsp)
testb $0x1, 0x2023(%rsp)
jne 0x124c39e
leaq 0xca0(%rsp), %rax
movq %rax, 0x2548(%rsp)
movq 0x2548(%rsp), %rax
movq %rax, 0x4360(%rsp)
movq 0x4360(%rsp), %rax
movq %rax, 0x148(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x124c341
movq 0x148(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x435c(%rsp) # imm = 0xFFFFFFFF
movl 0x435c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4358(%rsp)
cmpl $0x1, 0x4358(%rsp)
jne 0x124c341
movq 0x148(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x124c312
movq 0x148(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x124c310
jmp 0x124c33f
movq 0x148(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4650(%rsp)
cmpq $0x0, 0x4650(%rsp)
je 0x124c33d
movq 0x4650(%rsp), %rdi
callq 0x5f480
jmp 0x124c33f
jmp 0x124c341
movq 0x148(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x124c39c
movq %rax, %rdi
callq 0x678a0
jmp 0x124c39e
leaq 0xca0(%rsp), %rax
movq %rax, 0x2338(%rsp)
movq 0x2338(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x138(%rsp)
leaq 0xca0(%rsp), %rax
movq %rax, 0x2700(%rsp)
movq 0x2700(%rsp), %rax
movq %rax, 0x3ff0(%rsp)
movq 0x3ff0(%rsp), %rax
movq %rax, 0x140(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x124c489
movq 0x140(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fec(%rsp) # imm = 0xFFFFFFFF
movl 0x3fec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fe8(%rsp)
cmpl $0x1, 0x3fe8(%rsp)
jne 0x124c489
movq 0x140(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x124c45a
movq 0x140(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x124c458
jmp 0x124c487
movq 0x140(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4808(%rsp)
cmpq $0x0, 0x4808(%rsp)
je 0x124c485
movq 0x4808(%rsp), %rdi
callq 0x5f480
jmp 0x124c487
jmp 0x124c489
movq 0x140(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x124c4e4
movq %rax, %rdi
callq 0x678a0
movq 0x138(%rsp), %rax
movq %rax, 0xce8(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0xcf4(%rsp), %eax
leaq 0xc50(%rsp), %rdx
movq %rdx, 0x2780(%rsp)
movq %rcx, 0x2778(%rsp)
movl %eax, 0x2774(%rsp)
movq 0x2778(%rsp), %rax
movq %rax, 0x130(%rsp)
movb $0x0, 0x2773(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2774(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xc50(%rsp), %r10
movq %r10, 0x3290(%rsp)
movl %r9d, 0x328c(%rsp)
movl %r8d, 0x3288(%rsp)
movl %edi, 0x3284(%rsp)
movq %rsi, 0x3278(%rsp)
movq %rdx, 0x3270(%rsp)
movl %ecx, 0x326c(%rsp)
movq %rax, 0x3260(%rsp)
movq 0x3290(%rsp), %rcx
movq %rcx, 0x128(%rsp)
movq 0x3278(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3270(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x326c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3260(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x328c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3288(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3284(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3cc0(%rsp)
movl $0x10, 0x3cbc(%rsp)
movq 0x3cc0(%rsp), %rax
movslq 0x3cbc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cbc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x130(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc78(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x124c6b0
movq 0x130(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xc90(%rsp)
movb $0x1, 0x2773(%rsp)
testb $0x1, 0x2773(%rsp)
jne 0x124c7eb
leaq 0xc50(%rsp), %rax
movq %rax, 0x2788(%rsp)
movq 0x2788(%rsp), %rax
movq %rax, 0x3f70(%rsp)
movq 0x3f70(%rsp), %rax
movq %rax, 0x120(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x124c78e
movq 0x120(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f6c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f6c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f68(%rsp)
cmpl $0x1, 0x3f68(%rsp)
jne 0x124c78e
movq 0x120(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x124c75f
movq 0x120(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x124c75d
jmp 0x124c78c
movq 0x120(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4848(%rsp)
cmpq $0x0, 0x4848(%rsp)
je 0x124c78a
movq 0x4848(%rsp), %rdi
callq 0x5f480
jmp 0x124c78c
jmp 0x124c78e
movq 0x120(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x124c7e9
movq %rax, %rdi
callq 0x678a0
jmp 0x124c7eb
leaq 0xc50(%rsp), %rax
movq %rax, 0x2a48(%rsp)
movq 0x2a48(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x110(%rsp)
leaq 0xc50(%rsp), %rax
movq %rax, 0x2708(%rsp)
movq 0x2708(%rsp), %rax
movq %rax, 0x3fe0(%rsp)
movq 0x3fe0(%rsp), %rax
movq %rax, 0x118(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x124c8d6
movq 0x118(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fdc(%rsp) # imm = 0xFFFFFFFF
movl 0x3fdc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fd8(%rsp)
cmpl $0x1, 0x3fd8(%rsp)
jne 0x124c8d6
movq 0x118(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x124c8a7
movq 0x118(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x124c8a5
jmp 0x124c8d4
movq 0x118(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4810(%rsp)
cmpq $0x0, 0x4810(%rsp)
je 0x124c8d2
movq 0x4810(%rsp), %rdi
callq 0x5f480
jmp 0x124c8d4
jmp 0x124c8d6
movq 0x118(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x124c931
movq %rax, %rdi
callq 0x678a0
movq 0x110(%rsp), %rax
movq %rax, 0xc98(%rsp)
movl $0x0, 0xc4c(%rsp)
movl 0xc4c(%rsp), %eax
cmpl 0x1ecc(%rsp), %eax
jge 0x124c9b0
movq 0xce8(%rsp), %rdx
movslq 0xc4c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xcf8(%rsp), %rsi
callq 0x12780c0
movq 0xc98(%rsp), %rax
movslq 0xc4c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xc4c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xc4c(%rsp)
jmp 0x124c94c
jmp 0x124c9b2
movl 0xcf4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xcf4(%rsp)
jmp 0x124c093
movl $0x0, 0x1f24(%rsp)
jmp 0x124e6a5
movq 0x1f10(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x124cba0
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movq 0x1ee0(%rsp), %rcx
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6f5a0
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f50(%rsp)
movq 0x1f50(%rsp), %rcx
movq %rcx, 0x100(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x10f(%rsp)
je 0x124ca7a
movq 0x100(%rsp), %rax
movq %rax, 0x2d98(%rsp)
movq 0x2d98(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x10f(%rsp)
movb 0x10f(%rsp), %al
testb $0x1, %al
jne 0x124ca87
jmp 0x124ca97
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x124e6a5
movq 0x1f18(%rsp), %rax
movq %rax, 0x2be8(%rsp)
movq $0x0, 0x2be0(%rsp)
movq 0x2be8(%rsp), %rax
movq (%rax), %rax
movq 0x2be0(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xc48(%rsp)
movl $0x0, 0xc44(%rsp)
movl 0xc44(%rsp), %eax
cmpl 0x1ecc(%rsp), %eax
jge 0x124cb90
movq 0x1f10(%rsp), %rcx
movslq 0xc44(%rsp), %rax
movq %rcx, 0x2bd8(%rsp)
movq %rax, 0x2bd0(%rsp)
movq 0x2bd8(%rsp), %rax
movq (%rax), %rdx
movq 0x2bd0(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xc48(%rsp), %rsi
callq 0x12780c0
movq 0x1f08(%rsp), %rcx
movslq 0xc44(%rsp), %rax
movq %rcx, 0x2cd8(%rsp)
movq %rax, 0x2cd0(%rsp)
movq 0x2cd8(%rsp), %rax
movq (%rax), %rax
movq 0x2cd0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xc44(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xc44(%rsp)
jmp 0x124cadf
movl $0x0, 0x1f24(%rsp)
jmp 0x124e6a5
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x124cd61
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movq 0x1ee0(%rsp), %rdx
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rcx
callq 0x6f320
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f48(%rsp)
movq 0x1f48(%rsp), %rcx
movq %rcx, 0xf0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xff(%rsp)
je 0x124cc3b
movq 0xf0(%rsp), %rax
movq %rax, 0x2da0(%rsp)
movq 0x2da0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xff(%rsp)
movb 0xff(%rsp), %al
testb $0x1, %al
jne 0x124cc48
jmp 0x124cc58
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x124e6a5
movq 0x1f18(%rsp), %rax
movq %rax, 0x2bc8(%rsp)
movq $0x0, 0x2bc0(%rsp)
movq 0x2bc8(%rsp), %rax
movq (%rax), %rax
movq 0x2bc0(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xc40(%rsp)
movl $0x0, 0xc3c(%rsp)
movl 0xc3c(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x124cd51
movq 0x1f10(%rsp), %rcx
movslq 0xc3c(%rsp), %rax
movq %rcx, 0x2bb8(%rsp)
movq %rax, 0x2bb0(%rsp)
movq 0x2bb8(%rsp), %rax
movq (%rax), %rdx
movq 0x2bb0(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xc40(%rsp), %rsi
callq 0x12780c0
movq 0x1f08(%rsp), %rcx
movslq 0xc3c(%rsp), %rax
movq %rcx, 0x2cc8(%rsp)
movq %rax, 0x2cc0(%rsp)
movq 0x2cc8(%rsp), %rax
movq (%rax), %rax
movq 0x2cc0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xc3c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xc3c(%rsp)
jmp 0x124cca0
movl $0x0, 0x1f24(%rsp)
jmp 0x124e6a5
jmp 0x124cd63
movq 0x1f10(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x124d7c6
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed4(%rsp), %ecx
movl 0x1ed0(%rsp), %r8d
movq 0x1ee0(%rsp), %r9
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6fb30
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f40(%rsp)
movq 0x1f40(%rsp), %rcx
movq %rcx, 0xe0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xef(%rsp)
je 0x124ce18
movq 0xe0(%rsp), %rax
movq %rax, 0x2da8(%rsp)
movq 0x2da8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xef(%rsp)
movb 0xef(%rsp), %al
testb $0x1, %al
jne 0x124ce25
jmp 0x124ce35
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x124e6a5
movl $0x0, 0xc38(%rsp)
movl 0xc38(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x124d7b6
movq 0x1f18(%rsp), %rcx
movslq 0xc38(%rsp), %rax
movq %rcx, 0x2ba8(%rsp)
movq %rax, 0x2ba0(%rsp)
movq 0x2ba8(%rsp), %rax
movq (%rax), %rax
movq 0x2ba0(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xc34(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0xc38(%rsp), %eax
leaq 0xbe0(%rsp), %rdx
movq %rdx, 0x2018(%rsp)
movq %rcx, 0x2010(%rsp)
movl %eax, 0x200c(%rsp)
movq 0x2010(%rsp), %rax
movq %rax, 0xd8(%rsp)
movb $0x0, 0x200b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x200c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xbe0(%rsp), %r10
movq %r10, 0x3a38(%rsp)
movl %r9d, 0x3a34(%rsp)
movl %r8d, 0x3a30(%rsp)
movl %edi, 0x3a2c(%rsp)
movq %rsi, 0x3a20(%rsp)
movq %rdx, 0x3a18(%rsp)
movl %ecx, 0x3a14(%rsp)
movq %rax, 0x3a08(%rsp)
movq 0x3a38(%rsp), %rcx
movq %rcx, 0xd0(%rsp)
movq 0x3a20(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3a18(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3a14(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3a08(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3a34(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3a30(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3a2c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3a90(%rsp)
movl $0x10, 0x3a8c(%rsp)
movq 0x3a90(%rsp), %rax
movslq 0x3a8c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3a8c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xd8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc08(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x124d051
movq 0xd8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xc20(%rsp)
movb $0x1, 0x200b(%rsp)
testb $0x1, 0x200b(%rsp)
jne 0x124d18c
leaq 0xbe0(%rsp), %rax
movq %rax, 0x2550(%rsp)
movq 0x2550(%rsp), %rax
movq %rax, 0x4350(%rsp)
movq 0x4350(%rsp), %rax
movq %rax, 0xc8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x124d12f
movq 0xc8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x434c(%rsp) # imm = 0xFFFFFFFF
movl 0x434c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4348(%rsp)
cmpl $0x1, 0x4348(%rsp)
jne 0x124d12f
movq 0xc8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x124d100
movq 0xc8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x124d0fe
jmp 0x124d12d
movq 0xc8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4658(%rsp)
cmpq $0x0, 0x4658(%rsp)
je 0x124d12b
movq 0x4658(%rsp), %rdi
callq 0x5f480
jmp 0x124d12d
jmp 0x124d12f
movq 0xc8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x124d18a
movq %rax, %rdi
callq 0x678a0
jmp 0x124d18c
leaq 0xbe0(%rsp), %rax
movq %rax, 0x2330(%rsp)
movq 0x2330(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xb8(%rsp)
leaq 0xbe0(%rsp), %rax
movq %rax, 0x2710(%rsp)
movq 0x2710(%rsp), %rax
movq %rax, 0x3fd0(%rsp)
movq 0x3fd0(%rsp), %rax
movq %rax, 0xc0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x124d277
movq 0xc0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fcc(%rsp) # imm = 0xFFFFFFFF
movl 0x3fcc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fc8(%rsp)
cmpl $0x1, 0x3fc8(%rsp)
jne 0x124d277
movq 0xc0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x124d248
movq 0xc0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x124d246
jmp 0x124d275
movq 0xc0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4818(%rsp)
cmpq $0x0, 0x4818(%rsp)
je 0x124d273
movq 0x4818(%rsp), %rdi
callq 0x5f480
jmp 0x124d275
jmp 0x124d277
movq 0xc0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x124d2d2
movq %rax, %rdi
callq 0x678a0
movq 0xb8(%rsp), %rax
movq %rax, 0xc28(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0xc38(%rsp), %eax
leaq 0xb90(%rsp), %rdx
movq %rdx, 0x2760(%rsp)
movq %rcx, 0x2758(%rsp)
movl %eax, 0x2754(%rsp)
movq 0x2758(%rsp), %rax
movq %rax, 0xb0(%rsp)
movb $0x0, 0x2753(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2754(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xb90(%rsp), %r10
movq %r10, 0x32c8(%rsp)
movl %r9d, 0x32c4(%rsp)
movl %r8d, 0x32c0(%rsp)
movl %edi, 0x32bc(%rsp)
movq %rsi, 0x32b0(%rsp)
movq %rdx, 0x32a8(%rsp)
movl %ecx, 0x32a4(%rsp)
movq %rax, 0x3298(%rsp)
movq 0x32c8(%rsp), %rcx
movq %rcx, 0xa8(%rsp)
movq 0x32b0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x32a8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x32a4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3298(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x32c4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x32c0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x32bc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3cb0(%rsp)
movl $0x10, 0x3cac(%rsp)
movq 0x3cb0(%rsp), %rax
movslq 0x3cac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xb0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xbb8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x124d49e
movq 0xb0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xbd0(%rsp)
movb $0x1, 0x2753(%rsp)
testb $0x1, 0x2753(%rsp)
jne 0x124d5d9
leaq 0xb90(%rsp), %rax
movq %rax, 0x2768(%rsp)
movq 0x2768(%rsp), %rax
movq %rax, 0x3f80(%rsp)
movq 0x3f80(%rsp), %rax
movq %rax, 0xa0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x124d57c
movq 0xa0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f7c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f7c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f78(%rsp)
cmpl $0x1, 0x3f78(%rsp)
jne 0x124d57c
movq 0xa0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x124d54d
movq 0xa0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x124d54b
jmp 0x124d57a
movq 0xa0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4840(%rsp)
cmpq $0x0, 0x4840(%rsp)
je 0x124d578
movq 0x4840(%rsp), %rdi
callq 0x5f480
jmp 0x124d57a
jmp 0x124d57c
movq 0xa0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x124d5d7
movq %rax, %rdi
callq 0x678a0
jmp 0x124d5d9
leaq 0xb90(%rsp), %rax
movq %rax, 0x2a40(%rsp)
movq 0x2a40(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x90(%rsp)
leaq 0xb90(%rsp), %rax
movq %rax, 0x2718(%rsp)
movq 0x2718(%rsp), %rax
movq %rax, 0x3fc0(%rsp)
movq 0x3fc0(%rsp), %rax
movq %rax, 0x98(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x124d6c4
movq 0x98(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fbc(%rsp) # imm = 0xFFFFFFFF
movl 0x3fbc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fb8(%rsp)
cmpl $0x1, 0x3fb8(%rsp)
jne 0x124d6c4
movq 0x98(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x124d695
movq 0x98(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x124d693
jmp 0x124d6c2
movq 0x98(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4820(%rsp)
cmpq $0x0, 0x4820(%rsp)
je 0x124d6c0
movq 0x4820(%rsp), %rdi
callq 0x5f480
jmp 0x124d6c2
jmp 0x124d6c4
movq 0x98(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x124d71f
movq %rax, %rdi
callq 0x678a0
movq 0x90(%rsp), %rax
movq %rax, 0xbd8(%rsp)
movl $0x0, 0xb8c(%rsp)
movl 0xb8c(%rsp), %eax
cmpl 0x1ecc(%rsp), %eax
jge 0x124d79e
movq 0xc28(%rsp), %rdx
movslq 0xb8c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xc34(%rsp), %rsi
callq 0x12780c0
movq 0xbd8(%rsp), %rax
movslq 0xb8c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xb8c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xb8c(%rsp)
jmp 0x124d73a
jmp 0x124d7a0
movl 0xc38(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xc38(%rsp)
jmp 0x124ce40
movl $0x0, 0x1f24(%rsp)
jmp 0x124e6a5
movq 0x1f10(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x124e1b1
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed0(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f38(%rsp)
movq 0x1f38(%rsp), %rcx
movq %rcx, 0x80(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x8f(%rsp)
je 0x124d86f
movq 0x80(%rsp), %rax
movq %rax, 0x2db0(%rsp)
movq 0x2db0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x8f(%rsp)
movb 0x8f(%rsp), %al
testb $0x1, %al
jne 0x124d87c
jmp 0x124d88c
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x124e6a5
movl $0x0, 0xb88(%rsp)
movl 0xb88(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x124e1a1
movq 0x1f18(%rsp), %rcx
movslq 0xb88(%rsp), %rax
movq %rcx, 0x2b98(%rsp)
movq %rax, 0x2b90(%rsp)
movq 0x2b98(%rsp), %rax
movq (%rax), %rax
movq 0x2b90(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xb84(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0xb88(%rsp), %eax
leaq 0xb30(%rsp), %rdx
movq %rdx, 0x2000(%rsp)
movq %rcx, 0x1ff8(%rsp)
movl %eax, 0x1ff4(%rsp)
movq 0x1ff8(%rsp), %rax
movq %rax, 0x78(%rsp)
movb $0x0, 0x1ff3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1ff4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xb30(%rsp), %r10
movq %r10, 0x3a70(%rsp)
movl %r9d, 0x3a6c(%rsp)
movl %r8d, 0x3a68(%rsp)
movl %edi, 0x3a64(%rsp)
movq %rsi, 0x3a58(%rsp)
movq %rdx, 0x3a50(%rsp)
movl %ecx, 0x3a4c(%rsp)
movq %rax, 0x3a40(%rsp)
movq 0x3a70(%rsp), %rcx
movq %rcx, 0x70(%rsp)
movq 0x3a58(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3a50(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3a4c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3a40(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3a6c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3a68(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3a64(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3a80(%rsp)
movl $0x10, 0x3a7c(%rsp)
movq 0x3a80(%rsp), %rax
movslq 0x3a7c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3a7c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x78(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xb58(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x124da9c
movq 0x78(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xb70(%rsp)
movb $0x1, 0x1ff3(%rsp)
testb $0x1, 0x1ff3(%rsp)
jne 0x124dbc5
leaq 0xb30(%rsp), %rax
movq %rax, 0x2558(%rsp)
movq 0x2558(%rsp), %rax
movq %rax, 0x4340(%rsp)
movq 0x4340(%rsp), %rax
movq %rax, 0x68(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x124db6b
movq 0x68(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x433c(%rsp) # imm = 0xFFFFFFFF
movl 0x433c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4338(%rsp)
cmpl $0x1, 0x4338(%rsp)
jne 0x124db6b
movq 0x68(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x124db3f
movq 0x68(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x124db3d
jmp 0x124db69
movq 0x68(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4660(%rsp)
cmpq $0x0, 0x4660(%rsp)
je 0x124db67
movq 0x4660(%rsp), %rdi
callq 0x5f480
jmp 0x124db69
jmp 0x124db6b
movq 0x68(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x124dbc3
movq %rax, %rdi
callq 0x678a0
jmp 0x124dbc5
leaq 0xb30(%rsp), %rax
movq %rax, 0x2328(%rsp)
movq 0x2328(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x58(%rsp)
leaq 0xb30(%rsp), %rax
movq %rax, 0x2720(%rsp)
movq 0x2720(%rsp), %rax
movq %rax, 0x3fb0(%rsp)
movq 0x3fb0(%rsp), %rax
movq %rax, 0x60(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x124dc9e
movq 0x60(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fac(%rsp) # imm = 0xFFFFFFFF
movl 0x3fac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fa8(%rsp)
cmpl $0x1, 0x3fa8(%rsp)
jne 0x124dc9e
movq 0x60(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x124dc72
movq 0x60(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x124dc70
jmp 0x124dc9c
movq 0x60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4828(%rsp)
cmpq $0x0, 0x4828(%rsp)
je 0x124dc9a
movq 0x4828(%rsp), %rdi
callq 0x5f480
jmp 0x124dc9c
jmp 0x124dc9e
movq 0x60(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x124dcf6
movq %rax, %rdi
callq 0x678a0
movq 0x58(%rsp), %rax
movq %rax, 0xb78(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0xb88(%rsp), %eax
leaq 0xae0(%rsp), %rdx
movq %rdx, 0x2740(%rsp)
movq %rcx, 0x2738(%rsp)
movl %eax, 0x2734(%rsp)
movq 0x2738(%rsp), %rax
movq %rax, 0x50(%rsp)
movb $0x0, 0x2733(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2734(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xae0(%rsp), %r10
movq %r10, 0x3300(%rsp)
movl %r9d, 0x32fc(%rsp)
movl %r8d, 0x32f8(%rsp)
movl %edi, 0x32f4(%rsp)
movq %rsi, 0x32e8(%rsp)
movq %rdx, 0x32e0(%rsp)
movl %ecx, 0x32dc(%rsp)
movq %rax, 0x32d0(%rsp)
movq 0x3300(%rsp), %rcx
movq %rcx, 0x48(%rsp)
movq 0x32e8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x32e0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x32dc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x32d0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x32fc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x32f8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x32f4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ca0(%rsp)
movl $0x10, 0x3c9c(%rsp)
movq 0x3ca0(%rsp), %rax
movslq 0x3c9c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c9c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x50(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xb08(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x124deb3
movq 0x50(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xb20(%rsp)
movb $0x1, 0x2733(%rsp)
testb $0x1, 0x2733(%rsp)
jne 0x124dfdc
leaq 0xae0(%rsp), %rax
movq %rax, 0x2748(%rsp)
movq 0x2748(%rsp), %rax
movq %rax, 0x3f90(%rsp)
movq 0x3f90(%rsp), %rax
movq %rax, 0x40(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x124df82
movq 0x40(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f8c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f8c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f88(%rsp)
cmpl $0x1, 0x3f88(%rsp)
jne 0x124df82
movq 0x40(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x124df56
movq 0x40(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x124df54
jmp 0x124df80
movq 0x40(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4838(%rsp)
cmpq $0x0, 0x4838(%rsp)
je 0x124df7e
movq 0x4838(%rsp), %rdi
callq 0x5f480
jmp 0x124df80
jmp 0x124df82
movq 0x40(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x124dfda
movq %rax, %rdi
callq 0x678a0
jmp 0x124dfdc
leaq 0xae0(%rsp), %rax
movq %rax, 0x2a38(%rsp)
movq 0x2a38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x30(%rsp)
leaq 0xae0(%rsp), %rax
movq %rax, 0x2728(%rsp)
movq 0x2728(%rsp), %rax
movq %rax, 0x3fa0(%rsp)
movq 0x3fa0(%rsp), %rax
movq %rax, 0x38(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x124e0b5
movq 0x38(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f9c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f9c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f98(%rsp)
cmpl $0x1, 0x3f98(%rsp)
jne 0x124e0b5
movq 0x38(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x124e089
movq 0x38(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x124e087
jmp 0x124e0b3
movq 0x38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4830(%rsp)
cmpq $0x0, 0x4830(%rsp)
je 0x124e0b1
movq 0x4830(%rsp), %rdi
callq 0x5f480
jmp 0x124e0b3
jmp 0x124e0b5
movq 0x38(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x124e10d
movq %rax, %rdi
callq 0x678a0
movq 0x30(%rsp), %rax
movq %rax, 0xb28(%rsp)
movl $0x0, 0xadc(%rsp)
movl 0xadc(%rsp), %eax
cmpl 0x1ecc(%rsp), %eax
jge 0x124e189
movq 0xb78(%rsp), %rdx
movslq 0xadc(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xb84(%rsp), %rsi
callq 0x12780c0
movq 0xb28(%rsp), %rax
movslq 0xadc(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xadc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xadc(%rsp)
jmp 0x124e125
jmp 0x124e18b
movl 0xb88(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xb88(%rsp)
jmp 0x124d897
movl $0x0, 0x1f24(%rsp)
jmp 0x124e6a5
movq 0x1f10(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x124e3de
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movq 0x1ee0(%rsp), %rcx
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6f5a0
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f30(%rsp)
movq 0x1f30(%rsp), %rcx
movq %rcx, 0x20(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x2f(%rsp)
je 0x124e247
movq 0x20(%rsp), %rax
movq %rax, 0x2db8(%rsp)
movq 0x2db8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x2f(%rsp)
movb 0x2f(%rsp), %al
testb $0x1, %al
jne 0x124e251
jmp 0x124e261
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x124e6a5
movq 0x1f10(%rsp), %rax
movq %rax, 0x2320(%rsp)
movq 0x2320(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xad0(%rsp)
movq 0x1f08(%rsp), %rax
movq %rax, 0x2a30(%rsp)
movq 0x2a30(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xac8(%rsp)
movl $0x0, 0xac4(%rsp)
movl 0xac4(%rsp), %eax
cmpl 0x1ed8(%rsp), %eax
jge 0x124e3ce
movq 0x1f18(%rsp), %rcx
movslq 0xac4(%rsp), %rax
movq %rcx, 0x2b88(%rsp)
movq %rax, 0x2b80(%rsp)
movq 0x2b88(%rsp), %rax
movq (%rax), %rax
movq 0x2b80(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xac0(%rsp)
movl $0x0, 0xabc(%rsp)
movl 0xabc(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x124e376
movq 0xad0(%rsp), %rdx
movslq 0xabc(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xac0(%rsp), %rsi
callq 0x12780c0
movq 0xac8(%rsp), %rax
movslq 0xabc(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xabc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xabc(%rsp)
jmp 0x124e312
movl 0x1edc(%rsp), %ecx
movq 0xad0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xad0(%rsp)
movl 0x1edc(%rsp), %ecx
movq 0xac8(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xac8(%rsp)
movl 0xac4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xac4(%rsp)
jmp 0x124e2b2
movl $0x0, 0x1f24(%rsp)
jmp 0x124e6a5
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x124e692
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movq 0x1ee0(%rsp), %rdx
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rcx
callq 0x6f320
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f28(%rsp)
movq 0x1f28(%rsp), %rcx
movq %rcx, 0x10(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1f(%rsp)
je 0x124e46d
movq 0x10(%rsp), %rax
movq %rax, 0x2dc0(%rsp)
movq 0x2dc0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1f(%rsp)
movb 0x1f(%rsp), %al
testb $0x1, %al
jne 0x124e477
jmp 0x124e487
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x124e6a5
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x124e5a2
movq 0x1f10(%rsp), %rax
movq %rax, 0x2b78(%rsp)
movq $0x0, 0x2b70(%rsp)
movq 0x2b78(%rsp), %rax
movq (%rax), %rax
movq 0x2b70(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xab8(%rsp)
movl $0x0, 0xab4(%rsp)
movl 0xab4(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x124e592
movq 0x1f18(%rsp), %rcx
movslq 0xab4(%rsp), %rax
movq %rcx, 0x2b68(%rsp)
movq %rax, 0x2b60(%rsp)
movq 0x2b68(%rsp), %rax
movq (%rax), %rsi
movq 0x2b60(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0xab8(%rsp), %rdx
callq 0x12780c0
movq 0x1f08(%rsp), %rcx
movslq 0xab4(%rsp), %rax
movq %rcx, 0x2cb8(%rsp)
movq %rax, 0x2cb0(%rsp)
movq 0x2cb8(%rsp), %rax
movq (%rax), %rax
movq 0x2cb0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xab4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xab4(%rsp)
jmp 0x124e4e1
movl $0x0, 0x1f24(%rsp)
jmp 0x124e6a5
movl $0x0, 0xab0(%rsp)
movl 0xab0(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x124e690
movq 0x1f18(%rsp), %rcx
movslq 0xab0(%rsp), %rax
movq %rcx, 0x2b58(%rsp)
movq %rax, 0x2b50(%rsp)
movq 0x2b58(%rsp), %rax
movq (%rax), %rsi
movq 0x2b50(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1f10(%rsp), %rcx
movslq 0xab0(%rsp), %rax
movq %rcx, 0x2b48(%rsp)
movq %rax, 0x2b40(%rsp)
movq 0x2b48(%rsp), %rax
movq (%rax), %rdx
movq 0x2b40(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x12780c0
movq 0x1f08(%rsp), %rcx
movslq 0xab0(%rsp), %rax
movq %rcx, 0x2ca8(%rsp)
movq %rax, 0x2ca0(%rsp)
movq 0x2ca8(%rsp), %rax
movq (%rax), %rax
movq 0x2ca0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xab0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xab0(%rsp)
jmp 0x124e5ad
jmp 0x124e692
jmp 0x124e694
jmp 0x124e696
jmp 0x124e698
jmp 0x124e69a
movl $0x0, 0x1f24(%rsp)
movl 0x1f24(%rsp), %eax
addq $0x48f8, %rsp # imm = 0x48F8
retq
nopw %cs:(%rax,%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/binaryop.cpp
|
2,112,805
|
int ncnn::binary_op<ncnn::binary_op_min>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int size = w * h * d;
size_t elemsize = a.elemsize;
int w1 = b.w;
int h1 = b.h;
int d1 = b.d;
int channels1 = b.c;
int size1 = w1 * h1 * d1;
if (a.dims == 4)
{
if (b.dims == 4)
{
// type 29
c.create(w, h, d, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], ptr1[i]);
}
}
return 0;
}
c.create(w, h, d, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 3)
{
// type 28
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
for (int y = 0; y < h; y++)
{
const float b0 = ptr1[y];
for (int x = 0; x < w; x++)
{
outptr[x] = op(ptr[x], b0);
}
ptr += w;
outptr += w;
}
ptr1 += h;
}
}
return 0;
}
if (b.dims == 2)
{
// type 27
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
const float b0 = ptr1[z];
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
outptr[x] = op(ptr[x], b0);
}
ptr += w;
outptr += w;
}
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1)
{
// type 25
const float b0 = b[0];
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], b0);
}
}
return 0;
}
// type 26
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float b0 = b[q];
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], b0);
}
}
return 0;
}
}
else if (a.dims == 3)
{
if (b.dims == 4)
{
// type 23
c.create(w1, h1, d1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
for (int y = 0; y < h1; y++)
{
const float a0 = ptr[y];
for (int x = 0; x < w1; x++)
{
outptr[x] = op(a0, ptr1[x]);
}
ptr1 += w1;
outptr += w1;
}
ptr += h1;
}
}
return 0;
}
if (b.dims == 3)
{
if (w1 == 1 && h1 == 1 && channels1 == channels)
{
// special type 1
c.create(w, h, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* b0 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], b0[0]);
}
}
return 0;
}
if (w1 == w && h1 == h && channels1 == 1)
{
// special type 2
c.create(w, h, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b;
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], ptr1[i]);
}
}
return 0;
}
if (w == 1 && h == 1 && channels1 == channels)
{
// special type 3
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* a0 = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
outptr[i] = op(a0[0], ptr1[i]);
}
}
return 0;
}
if (w1 == w && h1 == h && channels == 1)
{
// special type 4
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a;
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
outptr[i] = op(ptr[i], ptr1[i]);
}
}
return 0;
}
if (w != 1 && w1 == 1 && h1 == h && channels1 == channels)
{
// special type 5
c.create(w, h, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
const float b0 = ptr1[y];
for (int x = 0; x < w; x++)
{
outptr[x] = op(ptr[x], b0);
}
ptr += w;
outptr += w;
}
}
return 0;
}
if (w1 == w && h != 1 && h1 == 1 && channels1 == channels)
{
// special type 6
c.create(w, h, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
outptr[x] = op(ptr[x], ptr1[x]);
}
ptr += w;
outptr += w;
}
}
return 0;
}
if (w1 != 1 && w == 1 && h1 == h && channels1 == channels)
{
// special type 7
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
const float a0 = ptr[y];
for (int x = 0; x < w1; x++)
{
outptr[x] = op(a0, ptr1[x]);
}
ptr1 += w1;
outptr += w1;
}
}
return 0;
}
if (w1 == w && h1 != 1 && h == 1 && channels1 == channels)
{
// special type 8
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
outptr[x] = op(ptr[x], ptr1[x]);
}
ptr1 += w1;
outptr += w1;
}
}
return 0;
}
// type 19
c.create(w, h, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], ptr1[i]);
}
}
return 0;
}
c.create(w, h, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 18
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
const float b0 = ptr1[y];
for (int x = 0; x < w; x++)
{
outptr[x] = op(ptr[x], b0);
}
ptr += w;
outptr += w;
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1)
{
// type 16
const float b0 = b[0];
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], b0);
}
}
return 0;
}
// type 17
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float b0 = b[q];
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], b0);
}
}
return 0;
}
}
else if (a.dims == 2)
{
if (b.dims == 4)
{
// type 22
c.create(w1, h1, d1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
const float a0 = ptr[z];
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
outptr[x] = op(a0, ptr1[x]);
}
ptr1 += w1;
outptr += w1;
}
}
}
return 0;
}
if (b.dims == 3)
{
// type 14
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
const float a0 = ptr[y];
for (int x = 0; x < w1; x++)
{
outptr[x] = op(a0, ptr1[x]);
}
ptr1 += w1;
outptr += w1;
}
}
return 0;
}
c.create(w, h, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 13
for (int i = 0; i < size; i++)
{
c[i] = op(a[i], b[i]);
}
return 0;
}
if (b.dims == 1)
{
c.create(w, h, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1)
{
// type 11
const float b0 = b[0];
for (int i = 0; i < size; i++)
{
c[i] = op(a[i], b0);
}
return 0;
}
// type 12
const float* ptr = a;
float* outptr = c;
for (int y = 0; y < h; y++)
{
const float b0 = b[y];
for (int x = 0; x < w; x++)
{
outptr[x] = op(ptr[x], b0);
}
ptr += w;
outptr += w;
}
return 0;
}
}
else if (a.dims == 1)
{
if (a.w == 1)
{
if (b.dims == 4)
{
// type 20
c.create(w1, h1, d1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
const float a0 = a[0];
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
outptr[i] = op(a0, ptr1[i]);
}
}
return 0;
}
if (b.dims == 3)
{
// type 4
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
const float a0 = a[0];
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
outptr[i] = op(a0, ptr1[i]);
}
}
return 0;
}
if (b.dims == 2)
{
// type 3
c.create(w1, h1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
const float a0 = a[0];
for (int i = 0; i < size1; i++)
{
c[i] = op(a0, b[i]);
}
return 0;
}
if (b.dims == 1)
{
// type 2
c.create(w1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
const float a0 = a[0];
for (int i = 0; i < w1; i++)
{
c[i] = op(a0, b[i]);
}
return 0;
}
}
if (b.dims == 4)
{
// type 21
c.create(w1, h1, d1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float a0 = a[q];
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
outptr[i] = op(a0, ptr1[i]);
}
}
return 0;
}
if (b.dims == 3)
{
// type 9
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float a0 = a[q];
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
outptr[i] = op(a0, ptr1[i]);
}
}
return 0;
}
if (b.dims == 2)
{
// type 8
c.create(w1, h1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
const float* ptr1 = b;
float* outptr = c;
for (int y = 0; y < h1; y++)
{
const float a0 = a[y];
for (int x = 0; x < w1; x++)
{
outptr[x] = op(a0, ptr1[x]);
}
ptr1 += w1;
outptr += w1;
}
return 0;
}
if (b.dims == 1)
{
c.create(w, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1)
{
// type 6
const float b0 = b[0];
for (int i = 0; i < w; i++)
{
c[i] = op(a[i], b0);
}
return 0;
}
// type 7
for (int i = 0; i < w; i++)
{
c[i] = op(a[i], b[i]);
}
}
}
return 0;
}
|
subq $0x48f8, %rsp # imm = 0x48F8
movq %rdi, 0x1f18(%rsp)
movq %rsi, 0x1f10(%rsp)
movq %rdx, 0x1f08(%rsp)
movq %rcx, 0x1f00(%rsp)
movq 0x1f18(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x1ef8(%rsp)
movq 0x1f18(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x1ef4(%rsp)
movq 0x1f18(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x1ef0(%rsp)
movq 0x1f18(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x1eec(%rsp)
movl 0x1ef8(%rsp), %eax
imull 0x1ef4(%rsp), %eax
imull 0x1ef0(%rsp), %eax
movl %eax, 0x1ee8(%rsp)
movq 0x1f18(%rsp), %rax
movq 0x10(%rax), %rax
movq %rax, 0x1ee0(%rsp)
movq 0x1f10(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x1edc(%rsp)
movq 0x1f10(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x1ed8(%rsp)
movq 0x1f10(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x1ed4(%rsp)
movq 0x1f10(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x1ed0(%rsp)
movl 0x1edc(%rsp), %eax
imull 0x1ed8(%rsp), %eax
imull 0x1ed4(%rsp), %eax
movl %eax, 0x1ecc(%rsp)
movq 0x1f18(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x125236f
movq 0x1f10(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x124f657
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1ef0(%rsp), %ecx
movl 0x1eec(%rsp), %r8d
movq 0x1ee0(%rsp), %r9
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6fb30
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fe8(%rsp)
movq 0x1fe8(%rsp), %rcx
movq %rcx, 0xaa0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xaaf(%rsp)
je 0x124e88e
movq 0xaa0(%rsp), %rax
movq %rax, 0x2d00(%rsp)
movq 0x2d00(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xaaf(%rsp)
movb 0xaaf(%rsp), %al
testb $0x1, %al
jne 0x124e89b
jmp 0x124e8ab
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1261ae5
movl $0x0, 0x1ec8(%rsp)
movl 0x1ec8(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x124f647
movq 0x1f18(%rsp), %rcx
movl 0x1ec8(%rsp), %eax
leaq 0x1e78(%rsp), %rdx
movq %rdx, 0x2318(%rsp)
movq %rcx, 0x2310(%rsp)
movl %eax, 0x230c(%rsp)
movq 0x2310(%rsp), %rax
movq %rax, 0xa98(%rsp)
movb $0x0, 0x230b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x230c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1e78(%rsp), %r10
movq %r10, 0x3338(%rsp)
movl %r9d, 0x3334(%rsp)
movl %r8d, 0x3330(%rsp)
movl %edi, 0x332c(%rsp)
movq %rsi, 0x3320(%rsp)
movq %rdx, 0x3318(%rsp)
movl %ecx, 0x3314(%rsp)
movq %rax, 0x3308(%rsp)
movq 0x3338(%rsp), %rcx
movq %rcx, 0xa90(%rsp)
movq 0x3320(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3318(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3314(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3308(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3334(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3330(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x332c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c90(%rsp)
movl $0x10, 0x3c8c(%rsp)
movq 0x3c90(%rsp), %rax
movslq 0x3c8c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c8c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xa98(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1ea0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x124ea86
movq 0xa98(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1eb8(%rsp)
movb $0x1, 0x230b(%rsp)
testb $0x1, 0x230b(%rsp)
jne 0x124ebc1
leaq 0x1e78(%rsp), %rax
movq %rax, 0x2450(%rsp)
movq 0x2450(%rsp), %rax
movq %rax, 0x4550(%rsp)
movq 0x4550(%rsp), %rax
movq %rax, 0xa88(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x124eb64
movq 0xa88(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x454c(%rsp) # imm = 0xFFFFFFFF
movl 0x454c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4548(%rsp)
cmpl $0x1, 0x4548(%rsp)
jne 0x124eb64
movq 0xa88(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x124eb35
movq 0xa88(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x124eb33
jmp 0x124eb62
movq 0xa88(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4558(%rsp)
cmpq $0x0, 0x4558(%rsp)
je 0x124eb60
movq 0x4558(%rsp), %rdi
callq 0x5f480
jmp 0x124eb62
jmp 0x124eb64
movq 0xa88(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x124ebbf
movq %rax, %rdi
callq 0x678a0
jmp 0x124ebc1
leaq 0x1e78(%rsp), %rax
movq %rax, 0x2448(%rsp)
movq 0x2448(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xa78(%rsp)
leaq 0x1e78(%rsp), %rax
movq %rax, 0x2560(%rsp)
movq 0x2560(%rsp), %rax
movq %rax, 0x4330(%rsp)
movq 0x4330(%rsp), %rax
movq %rax, 0xa80(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x124ecac
movq 0xa80(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x432c(%rsp) # imm = 0xFFFFFFFF
movl 0x432c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4328(%rsp)
cmpl $0x1, 0x4328(%rsp)
jne 0x124ecac
movq 0xa80(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x124ec7d
movq 0xa80(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x124ec7b
jmp 0x124ecaa
movq 0xa80(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4668(%rsp)
cmpq $0x0, 0x4668(%rsp)
je 0x124eca8
movq 0x4668(%rsp), %rdi
callq 0x5f480
jmp 0x124ecaa
jmp 0x124ecac
movq 0xa80(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x124ed07
movq %rax, %rdi
callq 0x678a0
movq 0xa78(%rsp), %rax
movq %rax, 0x1ec0(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1ec8(%rsp), %eax
leaq 0x1e28(%rsp), %rdx
movq %rdx, 0x2300(%rsp)
movq %rcx, 0x22f8(%rsp)
movl %eax, 0x22f4(%rsp)
movq 0x22f8(%rsp), %rax
movq %rax, 0xa70(%rsp)
movb $0x0, 0x22f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1e28(%rsp), %r10
movq %r10, 0x3370(%rsp)
movl %r9d, 0x336c(%rsp)
movl %r8d, 0x3368(%rsp)
movl %edi, 0x3364(%rsp)
movq %rsi, 0x3358(%rsp)
movq %rdx, 0x3350(%rsp)
movl %ecx, 0x334c(%rsp)
movq %rax, 0x3340(%rsp)
movq 0x3370(%rsp), %rcx
movq %rcx, 0xa68(%rsp)
movq 0x3358(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3350(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x334c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3340(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x336c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3368(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3364(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c80(%rsp)
movl $0x10, 0x3c7c(%rsp)
movq 0x3c80(%rsp), %rax
movslq 0x3c7c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c7c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xa70(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1e50(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x124eed3
movq 0xa70(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1e68(%rsp)
movb $0x1, 0x22f3(%rsp)
testb $0x1, 0x22f3(%rsp)
jne 0x124f00e
leaq 0x1e28(%rsp), %rax
movq %rax, 0x2458(%rsp)
movq 0x2458(%rsp), %rax
movq %rax, 0x4540(%rsp)
movq 0x4540(%rsp), %rax
movq %rax, 0xa60(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x124efb1
movq 0xa60(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x453c(%rsp) # imm = 0xFFFFFFFF
movl 0x453c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4538(%rsp)
cmpl $0x1, 0x4538(%rsp)
jne 0x124efb1
movq 0xa60(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x124ef82
movq 0xa60(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x124ef80
jmp 0x124efaf
movq 0xa60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4560(%rsp)
cmpq $0x0, 0x4560(%rsp)
je 0x124efad
movq 0x4560(%rsp), %rdi
callq 0x5f480
jmp 0x124efaf
jmp 0x124efb1
movq 0xa60(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x124f00c
movq %rax, %rdi
callq 0x678a0
jmp 0x124f00e
leaq 0x1e28(%rsp), %rax
movq %rax, 0x2440(%rsp)
movq 0x2440(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xa50(%rsp)
leaq 0x1e28(%rsp), %rax
movq %rax, 0x2568(%rsp)
movq 0x2568(%rsp), %rax
movq %rax, 0x4320(%rsp)
movq 0x4320(%rsp), %rax
movq %rax, 0xa58(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x124f0f9
movq 0xa58(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x431c(%rsp) # imm = 0xFFFFFFFF
movl 0x431c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4318(%rsp)
cmpl $0x1, 0x4318(%rsp)
jne 0x124f0f9
movq 0xa58(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x124f0ca
movq 0xa58(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x124f0c8
jmp 0x124f0f7
movq 0xa58(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4670(%rsp)
cmpq $0x0, 0x4670(%rsp)
je 0x124f0f5
movq 0x4670(%rsp), %rdi
callq 0x5f480
jmp 0x124f0f7
jmp 0x124f0f9
movq 0xa58(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x124f154
movq %rax, %rdi
callq 0x678a0
movq 0xa50(%rsp), %rax
movq %rax, 0x1e70(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1ec8(%rsp), %eax
leaq 0x1dd8(%rsp), %rdx
movq %rdx, 0x2a20(%rsp)
movq %rcx, 0x2a18(%rsp)
movl %eax, 0x2a14(%rsp)
movq 0x2a18(%rsp), %rax
movq %rax, 0xa48(%rsp)
movb $0x0, 0x2a13(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2a14(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1dd8(%rsp), %r10
movq %r10, 0x2df8(%rsp)
movl %r9d, 0x2df4(%rsp)
movl %r8d, 0x2df0(%rsp)
movl %edi, 0x2dec(%rsp)
movq %rsi, 0x2de0(%rsp)
movq %rdx, 0x2dd8(%rsp)
movl %ecx, 0x2dd4(%rsp)
movq %rax, 0x2dc8(%rsp)
movq 0x2df8(%rsp), %rcx
movq %rcx, 0xa40(%rsp)
movq 0x2de0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2dd8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2dd4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2dc8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2df4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2df0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2dec(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3e10(%rsp)
movl $0x10, 0x3e0c(%rsp)
movq 0x3e10(%rsp), %rax
movslq 0x3e0c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3e0c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xa48(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1e00(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x124f320
movq 0xa48(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1e18(%rsp)
movb $0x1, 0x2a13(%rsp)
testb $0x1, 0x2a13(%rsp)
jne 0x124f45b
leaq 0x1dd8(%rsp), %rax
movq %rax, 0x2a28(%rsp)
movq 0x2a28(%rsp), %rax
movq %rax, 0x3e20(%rsp)
movq 0x3e20(%rsp), %rax
movq %rax, 0xa38(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x124f3fe
movq 0xa38(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e1c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e1c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e18(%rsp)
cmpl $0x1, 0x3e18(%rsp)
jne 0x124f3fe
movq 0xa38(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x124f3cf
movq 0xa38(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x124f3cd
jmp 0x124f3fc
movq 0xa38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48f0(%rsp)
cmpq $0x0, 0x48f0(%rsp)
je 0x124f3fa
movq 0x48f0(%rsp), %rdi
callq 0x5f480
jmp 0x124f3fc
jmp 0x124f3fe
movq 0xa38(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x124f459
movq %rax, %rdi
callq 0x678a0
jmp 0x124f45b
leaq 0x1dd8(%rsp), %rax
movq %rax, 0x2af8(%rsp)
movq 0x2af8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xa28(%rsp)
leaq 0x1dd8(%rsp), %rax
movq %rax, 0x2570(%rsp)
movq 0x2570(%rsp), %rax
movq %rax, 0x4310(%rsp)
movq 0x4310(%rsp), %rax
movq %rax, 0xa30(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x124f546
movq 0xa30(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x430c(%rsp) # imm = 0xFFFFFFFF
movl 0x430c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4308(%rsp)
cmpl $0x1, 0x4308(%rsp)
jne 0x124f546
movq 0xa30(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x124f517
movq 0xa30(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x124f515
jmp 0x124f544
movq 0xa30(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4678(%rsp)
cmpq $0x0, 0x4678(%rsp)
je 0x124f542
movq 0x4678(%rsp), %rdi
callq 0x5f480
jmp 0x124f544
jmp 0x124f546
movq 0xa30(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x124f5a1
movq %rax, %rdi
callq 0x678a0
movq 0xa28(%rsp), %rax
movq %rax, 0x1e20(%rsp)
movl $0x0, 0x1dd4(%rsp)
movl 0x1dd4(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x124f62f
movq 0x1ec0(%rsp), %rsi
movslq 0x1dd4(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1e70(%rsp), %rdx
movslq 0x1dd4(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x12780f0
movq 0x1e20(%rsp), %rax
movslq 0x1dd4(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1dd4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1dd4(%rsp)
jmp 0x124f5bc
jmp 0x124f631
movl 0x1ec8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1ec8(%rsp)
jmp 0x124e8b6
movl $0x0, 0x1f24(%rsp)
jmp 0x1261ae5
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1ef0(%rsp), %ecx
movl 0x1eec(%rsp), %r8d
movq 0x1ee0(%rsp), %r9
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6fb30
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fe0(%rsp)
movq 0x1fe0(%rsp), %rcx
movq %rcx, 0xa18(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xa27(%rsp)
je 0x124f6fa
movq 0xa18(%rsp), %rax
movq %rax, 0x2d08(%rsp)
movq 0x2d08(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xa27(%rsp)
movb 0xa27(%rsp), %al
testb $0x1, %al
jne 0x124f707
jmp 0x124f717
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1261ae5
movq 0x1f10(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x12505b1
movl $0x0, 0x1dd0(%rsp)
movl 0x1dd0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x12505a1
movq 0x1f18(%rsp), %rcx
movl 0x1dd0(%rsp), %eax
leaq 0x1d80(%rsp), %rdx
movq %rdx, 0x22e8(%rsp)
movq %rcx, 0x22e0(%rsp)
movl %eax, 0x22dc(%rsp)
movq 0x22e0(%rsp), %rax
movq %rax, 0xa10(%rsp)
movb $0x0, 0x22db(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22dc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1d80(%rsp), %r10
movq %r10, 0x33a8(%rsp)
movl %r9d, 0x33a4(%rsp)
movl %r8d, 0x33a0(%rsp)
movl %edi, 0x339c(%rsp)
movq %rsi, 0x3390(%rsp)
movq %rdx, 0x3388(%rsp)
movl %ecx, 0x3384(%rsp)
movq %rax, 0x3378(%rsp)
movq 0x33a8(%rsp), %rcx
movq %rcx, 0xa08(%rsp)
movq 0x3390(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3388(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3384(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3378(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x33a4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x33a0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x339c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c70(%rsp)
movl $0x10, 0x3c6c(%rsp)
movq 0x3c70(%rsp), %rax
movslq 0x3c6c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c6c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xa10(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1da8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x124f904
movq 0xa10(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1dc0(%rsp)
movb $0x1, 0x22db(%rsp)
testb $0x1, 0x22db(%rsp)
jne 0x124fa3f
leaq 0x1d80(%rsp), %rax
movq %rax, 0x2460(%rsp)
movq 0x2460(%rsp), %rax
movq %rax, 0x4530(%rsp)
movq 0x4530(%rsp), %rax
movq %rax, 0xa00(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x124f9e2
movq 0xa00(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x452c(%rsp) # imm = 0xFFFFFFFF
movl 0x452c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4528(%rsp)
cmpl $0x1, 0x4528(%rsp)
jne 0x124f9e2
movq 0xa00(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x124f9b3
movq 0xa00(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x124f9b1
jmp 0x124f9e0
movq 0xa00(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4568(%rsp)
cmpq $0x0, 0x4568(%rsp)
je 0x124f9de
movq 0x4568(%rsp), %rdi
callq 0x5f480
jmp 0x124f9e0
jmp 0x124f9e2
movq 0xa00(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x124fa3d
movq %rax, %rdi
callq 0x678a0
jmp 0x124fa3f
leaq 0x1d80(%rsp), %rax
movq %rax, 0x2438(%rsp)
movq 0x2438(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x9f0(%rsp)
leaq 0x1d80(%rsp), %rax
movq %rax, 0x2578(%rsp)
movq 0x2578(%rsp), %rax
movq %rax, 0x4300(%rsp)
movq 0x4300(%rsp), %rax
movq %rax, 0x9f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x124fb2a
movq 0x9f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42fc(%rsp) # imm = 0xFFFFFFFF
movl 0x42fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42f8(%rsp)
cmpl $0x1, 0x42f8(%rsp)
jne 0x124fb2a
movq 0x9f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x124fafb
movq 0x9f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x124faf9
jmp 0x124fb28
movq 0x9f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4680(%rsp)
cmpq $0x0, 0x4680(%rsp)
je 0x124fb26
movq 0x4680(%rsp), %rdi
callq 0x5f480
jmp 0x124fb28
jmp 0x124fb2a
movq 0x9f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x124fb85
movq %rax, %rdi
callq 0x678a0
movq 0x9f0(%rsp), %rax
movq %rax, 0x1dc8(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1dd0(%rsp), %eax
leaq 0x1d30(%rsp), %rdx
movq %rdx, 0x22d0(%rsp)
movq %rcx, 0x22c8(%rsp)
movl %eax, 0x22c4(%rsp)
movq 0x22c8(%rsp), %rax
movq %rax, 0x9e8(%rsp)
movb $0x0, 0x22c3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22c4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1d30(%rsp), %r10
movq %r10, 0x33e0(%rsp)
movl %r9d, 0x33dc(%rsp)
movl %r8d, 0x33d8(%rsp)
movl %edi, 0x33d4(%rsp)
movq %rsi, 0x33c8(%rsp)
movq %rdx, 0x33c0(%rsp)
movl %ecx, 0x33bc(%rsp)
movq %rax, 0x33b0(%rsp)
movq 0x33e0(%rsp), %rcx
movq %rcx, 0x9e0(%rsp)
movq 0x33c8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x33c0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x33bc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x33b0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x33dc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x33d8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x33d4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c60(%rsp)
movl $0x10, 0x3c5c(%rsp)
movq 0x3c60(%rsp), %rax
movslq 0x3c5c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c5c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x9e8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1d58(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x124fd51
movq 0x9e8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1d70(%rsp)
movb $0x1, 0x22c3(%rsp)
testb $0x1, 0x22c3(%rsp)
jne 0x124fe8c
leaq 0x1d30(%rsp), %rax
movq %rax, 0x2468(%rsp)
movq 0x2468(%rsp), %rax
movq %rax, 0x4520(%rsp)
movq 0x4520(%rsp), %rax
movq %rax, 0x9d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x124fe2f
movq 0x9d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x451c(%rsp) # imm = 0xFFFFFFFF
movl 0x451c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4518(%rsp)
cmpl $0x1, 0x4518(%rsp)
jne 0x124fe2f
movq 0x9d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x124fe00
movq 0x9d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x124fdfe
jmp 0x124fe2d
movq 0x9d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4570(%rsp)
cmpq $0x0, 0x4570(%rsp)
je 0x124fe2b
movq 0x4570(%rsp), %rdi
callq 0x5f480
jmp 0x124fe2d
jmp 0x124fe2f
movq 0x9d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x124fe8a
movq %rax, %rdi
callq 0x678a0
jmp 0x124fe8c
leaq 0x1d30(%rsp), %rax
movq %rax, 0x2430(%rsp)
movq 0x2430(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x9c8(%rsp)
leaq 0x1d30(%rsp), %rax
movq %rax, 0x2580(%rsp)
movq 0x2580(%rsp), %rax
movq %rax, 0x42f0(%rsp)
movq 0x42f0(%rsp), %rax
movq %rax, 0x9d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x124ff77
movq 0x9d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42ec(%rsp) # imm = 0xFFFFFFFF
movl 0x42ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42e8(%rsp)
cmpl $0x1, 0x42e8(%rsp)
jne 0x124ff77
movq 0x9d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x124ff48
movq 0x9d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x124ff46
jmp 0x124ff75
movq 0x9d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4688(%rsp)
cmpq $0x0, 0x4688(%rsp)
je 0x124ff73
movq 0x4688(%rsp), %rdi
callq 0x5f480
jmp 0x124ff75
jmp 0x124ff77
movq 0x9d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x124ffd2
movq %rax, %rdi
callq 0x678a0
movq 0x9c8(%rsp), %rax
movq %rax, 0x1d78(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1dd0(%rsp), %eax
leaq 0x1ce0(%rsp), %rdx
movq %rdx, 0x2a00(%rsp)
movq %rcx, 0x29f8(%rsp)
movl %eax, 0x29f4(%rsp)
movq 0x29f8(%rsp), %rax
movq %rax, 0x9c0(%rsp)
movb $0x0, 0x29f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x29f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1ce0(%rsp), %r10
movq %r10, 0x2e30(%rsp)
movl %r9d, 0x2e2c(%rsp)
movl %r8d, 0x2e28(%rsp)
movl %edi, 0x2e24(%rsp)
movq %rsi, 0x2e18(%rsp)
movq %rdx, 0x2e10(%rsp)
movl %ecx, 0x2e0c(%rsp)
movq %rax, 0x2e00(%rsp)
movq 0x2e30(%rsp), %rcx
movq %rcx, 0x9b8(%rsp)
movq 0x2e18(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2e10(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2e0c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2e00(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2e2c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2e28(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2e24(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3e00(%rsp)
movl $0x10, 0x3dfc(%rsp)
movq 0x3e00(%rsp), %rax
movslq 0x3dfc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3dfc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x9c0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1d08(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x125019e
movq 0x9c0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1d20(%rsp)
movb $0x1, 0x29f3(%rsp)
testb $0x1, 0x29f3(%rsp)
jne 0x12502d9
leaq 0x1ce0(%rsp), %rax
movq %rax, 0x2a08(%rsp)
movq 0x2a08(%rsp), %rax
movq %rax, 0x3e30(%rsp)
movq 0x3e30(%rsp), %rax
movq %rax, 0x9b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125027c
movq 0x9b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e2c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e2c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e28(%rsp)
cmpl $0x1, 0x3e28(%rsp)
jne 0x125027c
movq 0x9b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125024d
movq 0x9b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x125024b
jmp 0x125027a
movq 0x9b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48e8(%rsp)
cmpq $0x0, 0x48e8(%rsp)
je 0x1250278
movq 0x48e8(%rsp), %rdi
callq 0x5f480
jmp 0x125027a
jmp 0x125027c
movq 0x9b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12502d7
movq %rax, %rdi
callq 0x678a0
jmp 0x12502d9
leaq 0x1ce0(%rsp), %rax
movq %rax, 0x2af0(%rsp)
movq 0x2af0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x9a0(%rsp)
leaq 0x1ce0(%rsp), %rax
movq %rax, 0x2588(%rsp)
movq 0x2588(%rsp), %rax
movq %rax, 0x42e0(%rsp)
movq 0x42e0(%rsp), %rax
movq %rax, 0x9a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12503c4
movq 0x9a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42dc(%rsp) # imm = 0xFFFFFFFF
movl 0x42dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42d8(%rsp)
cmpl $0x1, 0x42d8(%rsp)
jne 0x12503c4
movq 0x9a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1250395
movq 0x9a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1250393
jmp 0x12503c2
movq 0x9a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4690(%rsp)
cmpq $0x0, 0x4690(%rsp)
je 0x12503c0
movq 0x4690(%rsp), %rdi
callq 0x5f480
jmp 0x12503c2
jmp 0x12503c4
movq 0x9a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125041f
movq %rax, %rdi
callq 0x678a0
movq 0x9a0(%rsp), %rax
movq %rax, 0x1d28(%rsp)
movl $0x0, 0x1cdc(%rsp)
movl 0x1cdc(%rsp), %eax
cmpl 0x1ef0(%rsp), %eax
jge 0x1250589
movl $0x0, 0x1cd8(%rsp)
movl 0x1cd8(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jge 0x1250552
movq 0x1d78(%rsp), %rax
movslq 0x1cd8(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x1cd4(%rsp)
movl $0x0, 0x1cd0(%rsp)
movl 0x1cd0(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x12504fa
movq 0x1dc8(%rsp), %rsi
movslq 0x1cd0(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0x1cd4(%rsp), %rdx
callq 0x12780f0
movq 0x1d28(%rsp), %rax
movslq 0x1cd0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1cd0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1cd0(%rsp)
jmp 0x1250496
movl 0x1ef8(%rsp), %ecx
movq 0x1dc8(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1dc8(%rsp)
movl 0x1ef8(%rsp), %ecx
movq 0x1d28(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1d28(%rsp)
movl 0x1cd8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1cd8(%rsp)
jmp 0x1250459
movl 0x1ef4(%rsp), %ecx
movq 0x1d78(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1d78(%rsp)
movl 0x1cdc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1cdc(%rsp)
jmp 0x125043a
jmp 0x125058b
movl 0x1dd0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1dd0(%rsp)
jmp 0x124f734
movl $0x0, 0x1f24(%rsp)
jmp 0x1261ae5
movq 0x1f10(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1251028
movl $0x0, 0x1ccc(%rsp)
movl 0x1ccc(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x1251018
movq 0x1f18(%rsp), %rcx
movl 0x1ccc(%rsp), %eax
leaq 0x1c78(%rsp), %rdx
movq %rdx, 0x22b8(%rsp)
movq %rcx, 0x22b0(%rsp)
movl %eax, 0x22ac(%rsp)
movq 0x22b0(%rsp), %rax
movq %rax, 0x998(%rsp)
movb $0x0, 0x22ab(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22ac(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1c78(%rsp), %r10
movq %r10, 0x3418(%rsp)
movl %r9d, 0x3414(%rsp)
movl %r8d, 0x3410(%rsp)
movl %edi, 0x340c(%rsp)
movq %rsi, 0x3400(%rsp)
movq %rdx, 0x33f8(%rsp)
movl %ecx, 0x33f4(%rsp)
movq %rax, 0x33e8(%rsp)
movq 0x3418(%rsp), %rcx
movq %rcx, 0x990(%rsp)
movq 0x3400(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x33f8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x33f4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x33e8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3414(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3410(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x340c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c50(%rsp)
movl $0x10, 0x3c4c(%rsp)
movq 0x3c50(%rsp), %rax
movslq 0x3c4c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c4c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x998(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1ca0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x125079e
movq 0x998(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1cb8(%rsp)
movb $0x1, 0x22ab(%rsp)
testb $0x1, 0x22ab(%rsp)
jne 0x12508d9
leaq 0x1c78(%rsp), %rax
movq %rax, 0x2470(%rsp)
movq 0x2470(%rsp), %rax
movq %rax, 0x4510(%rsp)
movq 0x4510(%rsp), %rax
movq %rax, 0x988(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125087c
movq 0x988(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x450c(%rsp) # imm = 0xFFFFFFFF
movl 0x450c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4508(%rsp)
cmpl $0x1, 0x4508(%rsp)
jne 0x125087c
movq 0x988(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125084d
movq 0x988(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x125084b
jmp 0x125087a
movq 0x988(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4578(%rsp)
cmpq $0x0, 0x4578(%rsp)
je 0x1250878
movq 0x4578(%rsp), %rdi
callq 0x5f480
jmp 0x125087a
jmp 0x125087c
movq 0x988(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12508d7
movq %rax, %rdi
callq 0x678a0
jmp 0x12508d9
leaq 0x1c78(%rsp), %rax
movq %rax, 0x2428(%rsp)
movq 0x2428(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x978(%rsp)
leaq 0x1c78(%rsp), %rax
movq %rax, 0x2590(%rsp)
movq 0x2590(%rsp), %rax
movq %rax, 0x42d0(%rsp)
movq 0x42d0(%rsp), %rax
movq %rax, 0x980(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12509c4
movq 0x980(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42cc(%rsp) # imm = 0xFFFFFFFF
movl 0x42cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42c8(%rsp)
cmpl $0x1, 0x42c8(%rsp)
jne 0x12509c4
movq 0x980(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1250995
movq 0x980(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1250993
jmp 0x12509c2
movq 0x980(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4698(%rsp)
cmpq $0x0, 0x4698(%rsp)
je 0x12509c0
movq 0x4698(%rsp), %rdi
callq 0x5f480
jmp 0x12509c2
jmp 0x12509c4
movq 0x980(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1250a1f
movq %rax, %rdi
callq 0x678a0
movq 0x978(%rsp), %rax
movq %rax, 0x1cc0(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1ccc(%rsp), %eax
movq %rcx, 0x2b38(%rsp)
movl %eax, 0x2b34(%rsp)
movq 0x2b38(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2b34(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x1c70(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1ccc(%rsp), %eax
leaq 0x1c20(%rsp), %rdx
movq %rdx, 0x29e0(%rsp)
movq %rcx, 0x29d8(%rsp)
movl %eax, 0x29d4(%rsp)
movq 0x29d8(%rsp), %rax
movq %rax, 0x970(%rsp)
movb $0x0, 0x29d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x29d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1c20(%rsp), %r10
movq %r10, 0x2e68(%rsp)
movl %r9d, 0x2e64(%rsp)
movl %r8d, 0x2e60(%rsp)
movl %edi, 0x2e5c(%rsp)
movq %rsi, 0x2e50(%rsp)
movq %rdx, 0x2e48(%rsp)
movl %ecx, 0x2e44(%rsp)
movq %rax, 0x2e38(%rsp)
movq 0x2e68(%rsp), %rcx
movq %rcx, 0x968(%rsp)
movq 0x2e50(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2e48(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2e44(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2e38(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2e64(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2e60(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2e5c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3df0(%rsp)
movl $0x10, 0x3dec(%rsp)
movq 0x3df0(%rsp), %rax
movslq 0x3dec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3dec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x970(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1c48(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1250c34
movq 0x970(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1c60(%rsp)
movb $0x1, 0x29d3(%rsp)
testb $0x1, 0x29d3(%rsp)
jne 0x1250d6f
leaq 0x1c20(%rsp), %rax
movq %rax, 0x29e8(%rsp)
movq 0x29e8(%rsp), %rax
movq %rax, 0x3e40(%rsp)
movq 0x3e40(%rsp), %rax
movq %rax, 0x960(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1250d12
movq 0x960(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e3c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e3c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e38(%rsp)
cmpl $0x1, 0x3e38(%rsp)
jne 0x1250d12
movq 0x960(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1250ce3
movq 0x960(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1250ce1
jmp 0x1250d10
movq 0x960(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48e0(%rsp)
cmpq $0x0, 0x48e0(%rsp)
je 0x1250d0e
movq 0x48e0(%rsp), %rdi
callq 0x5f480
jmp 0x1250d10
jmp 0x1250d12
movq 0x960(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1250d6d
movq %rax, %rdi
callq 0x678a0
jmp 0x1250d6f
leaq 0x1c20(%rsp), %rax
movq %rax, 0x2ae8(%rsp)
movq 0x2ae8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x950(%rsp)
leaq 0x1c20(%rsp), %rax
movq %rax, 0x2598(%rsp)
movq 0x2598(%rsp), %rax
movq %rax, 0x42c0(%rsp)
movq 0x42c0(%rsp), %rax
movq %rax, 0x958(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1250e5a
movq 0x958(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42bc(%rsp) # imm = 0xFFFFFFFF
movl 0x42bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42b8(%rsp)
cmpl $0x1, 0x42b8(%rsp)
jne 0x1250e5a
movq 0x958(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1250e2b
movq 0x958(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1250e29
jmp 0x1250e58
movq 0x958(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46a0(%rsp)
cmpq $0x0, 0x46a0(%rsp)
je 0x1250e56
movq 0x46a0(%rsp), %rdi
callq 0x5f480
jmp 0x1250e58
jmp 0x1250e5a
movq 0x958(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1250eb5
movq %rax, %rdi
callq 0x678a0
movq 0x950(%rsp), %rax
movq %rax, 0x1c68(%rsp)
movl $0x0, 0x1c1c(%rsp)
movl 0x1c1c(%rsp), %eax
cmpl 0x1ef0(%rsp), %eax
jge 0x1251000
movq 0x1c70(%rsp), %rax
movslq 0x1c1c(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x1c18(%rsp)
movl $0x0, 0x1c14(%rsp)
movl 0x1c14(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jge 0x1250fe8
movl $0x0, 0x1c10(%rsp)
movl 0x1c10(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x1250f90
movq 0x1cc0(%rsp), %rsi
movslq 0x1c10(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0x1c18(%rsp), %rdx
callq 0x12780f0
movq 0x1c68(%rsp), %rax
movslq 0x1c10(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1c10(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c10(%rsp)
jmp 0x1250f2c
movl 0x1ef8(%rsp), %ecx
movq 0x1cc0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1cc0(%rsp)
movl 0x1ef8(%rsp), %ecx
movq 0x1c68(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1c68(%rsp)
movl 0x1c14(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c14(%rsp)
jmp 0x1250f0d
jmp 0x1250fea
movl 0x1c1c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c1c(%rsp)
jmp 0x1250ed0
jmp 0x1251002
movl 0x1ccc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1ccc(%rsp)
jmp 0x12505ce
movl $0x0, 0x1f24(%rsp)
jmp 0x1261ae5
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x125236a
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x12519d9
movq 0x1f10(%rsp), %rax
movq %rax, 0x2c98(%rsp)
movq $0x0, 0x2c90(%rsp)
movq 0x2c98(%rsp), %rax
movq (%rax), %rax
movq 0x2c90(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x1c0c(%rsp)
movl $0x0, 0x1c08(%rsp)
movl 0x1c08(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x12519c9
movq 0x1f18(%rsp), %rcx
movl 0x1c08(%rsp), %eax
leaq 0x1bb8(%rsp), %rdx
movq %rdx, 0x22a0(%rsp)
movq %rcx, 0x2298(%rsp)
movl %eax, 0x2294(%rsp)
movq 0x2298(%rsp), %rax
movq %rax, 0x948(%rsp)
movb $0x0, 0x2293(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2294(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1bb8(%rsp), %r10
movq %r10, 0x3450(%rsp)
movl %r9d, 0x344c(%rsp)
movl %r8d, 0x3448(%rsp)
movl %edi, 0x3444(%rsp)
movq %rsi, 0x3438(%rsp)
movq %rdx, 0x3430(%rsp)
movl %ecx, 0x342c(%rsp)
movq %rax, 0x3420(%rsp)
movq 0x3450(%rsp), %rcx
movq %rcx, 0x940(%rsp)
movq 0x3438(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3430(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x342c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3420(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x344c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3448(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3444(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c40(%rsp)
movl $0x10, 0x3c3c(%rsp)
movq 0x3c40(%rsp), %rax
movslq 0x3c3c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c3c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x948(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1be0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1251264
movq 0x948(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1bf8(%rsp)
movb $0x1, 0x2293(%rsp)
testb $0x1, 0x2293(%rsp)
jne 0x125139f
leaq 0x1bb8(%rsp), %rax
movq %rax, 0x2478(%rsp)
movq 0x2478(%rsp), %rax
movq %rax, 0x4500(%rsp)
movq 0x4500(%rsp), %rax
movq %rax, 0x938(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1251342
movq 0x938(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x44fc(%rsp) # imm = 0xFFFFFFFF
movl 0x44fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x44f8(%rsp)
cmpl $0x1, 0x44f8(%rsp)
jne 0x1251342
movq 0x938(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1251313
movq 0x938(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1251311
jmp 0x1251340
movq 0x938(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4580(%rsp)
cmpq $0x0, 0x4580(%rsp)
je 0x125133e
movq 0x4580(%rsp), %rdi
callq 0x5f480
jmp 0x1251340
jmp 0x1251342
movq 0x938(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125139d
movq %rax, %rdi
callq 0x678a0
jmp 0x125139f
leaq 0x1bb8(%rsp), %rax
movq %rax, 0x2420(%rsp)
movq 0x2420(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x928(%rsp)
leaq 0x1bb8(%rsp), %rax
movq %rax, 0x25a0(%rsp)
movq 0x25a0(%rsp), %rax
movq %rax, 0x42b0(%rsp)
movq 0x42b0(%rsp), %rax
movq %rax, 0x930(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125148a
movq 0x930(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42ac(%rsp) # imm = 0xFFFFFFFF
movl 0x42ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42a8(%rsp)
cmpl $0x1, 0x42a8(%rsp)
jne 0x125148a
movq 0x930(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125145b
movq 0x930(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1251459
jmp 0x1251488
movq 0x930(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46a8(%rsp)
cmpq $0x0, 0x46a8(%rsp)
je 0x1251486
movq 0x46a8(%rsp), %rdi
callq 0x5f480
jmp 0x1251488
jmp 0x125148a
movq 0x930(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12514e5
movq %rax, %rdi
callq 0x678a0
movq 0x928(%rsp), %rax
movq %rax, 0x1c00(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1c08(%rsp), %eax
leaq 0x1b68(%rsp), %rdx
movq %rdx, 0x29c0(%rsp)
movq %rcx, 0x29b8(%rsp)
movl %eax, 0x29b4(%rsp)
movq 0x29b8(%rsp), %rax
movq %rax, 0x920(%rsp)
movb $0x0, 0x29b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x29b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1b68(%rsp), %r10
movq %r10, 0x2ea0(%rsp)
movl %r9d, 0x2e9c(%rsp)
movl %r8d, 0x2e98(%rsp)
movl %edi, 0x2e94(%rsp)
movq %rsi, 0x2e88(%rsp)
movq %rdx, 0x2e80(%rsp)
movl %ecx, 0x2e7c(%rsp)
movq %rax, 0x2e70(%rsp)
movq 0x2ea0(%rsp), %rcx
movq %rcx, 0x918(%rsp)
movq 0x2e88(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2e80(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2e7c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2e70(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2e9c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2e98(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2e94(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3de0(%rsp)
movl $0x10, 0x3ddc(%rsp)
movq 0x3de0(%rsp), %rax
movslq 0x3ddc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3ddc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x920(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1b90(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12516b1
movq 0x920(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1ba8(%rsp)
movb $0x1, 0x29b3(%rsp)
testb $0x1, 0x29b3(%rsp)
jne 0x12517ec
leaq 0x1b68(%rsp), %rax
movq %rax, 0x29c8(%rsp)
movq 0x29c8(%rsp), %rax
movq %rax, 0x3e50(%rsp)
movq 0x3e50(%rsp), %rax
movq %rax, 0x910(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125178f
movq 0x910(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e4c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e4c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e48(%rsp)
cmpl $0x1, 0x3e48(%rsp)
jne 0x125178f
movq 0x910(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1251760
movq 0x910(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x125175e
jmp 0x125178d
movq 0x910(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48d8(%rsp)
cmpq $0x0, 0x48d8(%rsp)
je 0x125178b
movq 0x48d8(%rsp), %rdi
callq 0x5f480
jmp 0x125178d
jmp 0x125178f
movq 0x910(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12517ea
movq %rax, %rdi
callq 0x678a0
jmp 0x12517ec
leaq 0x1b68(%rsp), %rax
movq %rax, 0x2ae0(%rsp)
movq 0x2ae0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x900(%rsp)
leaq 0x1b68(%rsp), %rax
movq %rax, 0x25a8(%rsp)
movq 0x25a8(%rsp), %rax
movq %rax, 0x42a0(%rsp)
movq 0x42a0(%rsp), %rax
movq %rax, 0x908(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12518d7
movq 0x908(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x429c(%rsp) # imm = 0xFFFFFFFF
movl 0x429c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4298(%rsp)
cmpl $0x1, 0x4298(%rsp)
jne 0x12518d7
movq 0x908(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12518a8
movq 0x908(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12518a6
jmp 0x12518d5
movq 0x908(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46b0(%rsp)
cmpq $0x0, 0x46b0(%rsp)
je 0x12518d3
movq 0x46b0(%rsp), %rdi
callq 0x5f480
jmp 0x12518d5
jmp 0x12518d7
movq 0x908(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1251932
movq %rax, %rdi
callq 0x678a0
movq 0x900(%rsp), %rax
movq %rax, 0x1bb0(%rsp)
movl $0x0, 0x1b64(%rsp)
movl 0x1b64(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x12519b1
movq 0x1c00(%rsp), %rsi
movslq 0x1b64(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0x1c0c(%rsp), %rdx
callq 0x12780f0
movq 0x1bb0(%rsp), %rax
movslq 0x1b64(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1b64(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b64(%rsp)
jmp 0x125194d
jmp 0x12519b3
movl 0x1c08(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c08(%rsp)
jmp 0x1251094
movl $0x0, 0x1f24(%rsp)
jmp 0x1261ae5
movl $0x0, 0x1b60(%rsp)
movl 0x1b60(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x125235a
movq 0x1f18(%rsp), %rcx
movl 0x1b60(%rsp), %eax
leaq 0x1b10(%rsp), %rdx
movq %rdx, 0x2288(%rsp)
movq %rcx, 0x2280(%rsp)
movl %eax, 0x227c(%rsp)
movq 0x2280(%rsp), %rax
movq %rax, 0x8f8(%rsp)
movb $0x0, 0x227b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x227c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1b10(%rsp), %r10
movq %r10, 0x3488(%rsp)
movl %r9d, 0x3484(%rsp)
movl %r8d, 0x3480(%rsp)
movl %edi, 0x347c(%rsp)
movq %rsi, 0x3470(%rsp)
movq %rdx, 0x3468(%rsp)
movl %ecx, 0x3464(%rsp)
movq %rax, 0x3458(%rsp)
movq 0x3488(%rsp), %rcx
movq %rcx, 0x8f0(%rsp)
movq 0x3470(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3468(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3464(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3458(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3484(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3480(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x347c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c30(%rsp)
movl $0x10, 0x3c2c(%rsp)
movq 0x3c30(%rsp), %rax
movslq 0x3c2c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c2c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x8f8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1b38(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1251bb4
movq 0x8f8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1b50(%rsp)
movb $0x1, 0x227b(%rsp)
testb $0x1, 0x227b(%rsp)
jne 0x1251cef
leaq 0x1b10(%rsp), %rax
movq %rax, 0x2480(%rsp)
movq 0x2480(%rsp), %rax
movq %rax, 0x44f0(%rsp)
movq 0x44f0(%rsp), %rax
movq %rax, 0x8e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1251c92
movq 0x8e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x44ec(%rsp) # imm = 0xFFFFFFFF
movl 0x44ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x44e8(%rsp)
cmpl $0x1, 0x44e8(%rsp)
jne 0x1251c92
movq 0x8e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1251c63
movq 0x8e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1251c61
jmp 0x1251c90
movq 0x8e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4588(%rsp)
cmpq $0x0, 0x4588(%rsp)
je 0x1251c8e
movq 0x4588(%rsp), %rdi
callq 0x5f480
jmp 0x1251c90
jmp 0x1251c92
movq 0x8e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1251ced
movq %rax, %rdi
callq 0x678a0
jmp 0x1251cef
leaq 0x1b10(%rsp), %rax
movq %rax, 0x2418(%rsp)
movq 0x2418(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8d8(%rsp)
leaq 0x1b10(%rsp), %rax
movq %rax, 0x25b0(%rsp)
movq 0x25b0(%rsp), %rax
movq %rax, 0x4290(%rsp)
movq 0x4290(%rsp), %rax
movq %rax, 0x8e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1251dda
movq 0x8e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x428c(%rsp) # imm = 0xFFFFFFFF
movl 0x428c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4288(%rsp)
cmpl $0x1, 0x4288(%rsp)
jne 0x1251dda
movq 0x8e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1251dab
movq 0x8e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1251da9
jmp 0x1251dd8
movq 0x8e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46b8(%rsp)
cmpq $0x0, 0x46b8(%rsp)
je 0x1251dd6
movq 0x46b8(%rsp), %rdi
callq 0x5f480
jmp 0x1251dd8
jmp 0x1251dda
movq 0x8e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1251e35
movq %rax, %rdi
callq 0x678a0
movq 0x8d8(%rsp), %rax
movq %rax, 0x1b58(%rsp)
movq 0x1f10(%rsp), %rcx
movslq 0x1b60(%rsp), %rax
movq %rcx, 0x2c88(%rsp)
movq %rax, 0x2c80(%rsp)
movq 0x2c88(%rsp), %rax
movq (%rax), %rax
movq 0x2c80(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x1b0c(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1b60(%rsp), %eax
leaq 0x1ab8(%rsp), %rdx
movq %rdx, 0x29a0(%rsp)
movq %rcx, 0x2998(%rsp)
movl %eax, 0x2994(%rsp)
movq 0x2998(%rsp), %rax
movq %rax, 0x8d0(%rsp)
movb $0x0, 0x2993(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2994(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1ab8(%rsp), %r10
movq %r10, 0x2ed8(%rsp)
movl %r9d, 0x2ed4(%rsp)
movl %r8d, 0x2ed0(%rsp)
movl %edi, 0x2ecc(%rsp)
movq %rsi, 0x2ec0(%rsp)
movq %rdx, 0x2eb8(%rsp)
movl %ecx, 0x2eb4(%rsp)
movq %rax, 0x2ea8(%rsp)
movq 0x2ed8(%rsp), %rcx
movq %rcx, 0x8c8(%rsp)
movq 0x2ec0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2eb8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2eb4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ea8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2ed4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2ed0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2ecc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3dd0(%rsp)
movl $0x10, 0x3dcc(%rsp)
movq 0x3dd0(%rsp), %rax
movslq 0x3dcc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3dcc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x8d0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1ae0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1252042
movq 0x8d0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1af8(%rsp)
movb $0x1, 0x2993(%rsp)
testb $0x1, 0x2993(%rsp)
jne 0x125217d
leaq 0x1ab8(%rsp), %rax
movq %rax, 0x29a8(%rsp)
movq 0x29a8(%rsp), %rax
movq %rax, 0x3e60(%rsp)
movq 0x3e60(%rsp), %rax
movq %rax, 0x8c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1252120
movq 0x8c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e5c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e5c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e58(%rsp)
cmpl $0x1, 0x3e58(%rsp)
jne 0x1252120
movq 0x8c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12520f1
movq 0x8c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12520ef
jmp 0x125211e
movq 0x8c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48d0(%rsp)
cmpq $0x0, 0x48d0(%rsp)
je 0x125211c
movq 0x48d0(%rsp), %rdi
callq 0x5f480
jmp 0x125211e
jmp 0x1252120
movq 0x8c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125217b
movq %rax, %rdi
callq 0x678a0
jmp 0x125217d
leaq 0x1ab8(%rsp), %rax
movq %rax, 0x2ad8(%rsp)
movq 0x2ad8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8b0(%rsp)
leaq 0x1ab8(%rsp), %rax
movq %rax, 0x25b8(%rsp)
movq 0x25b8(%rsp), %rax
movq %rax, 0x4280(%rsp)
movq 0x4280(%rsp), %rax
movq %rax, 0x8b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1252268
movq 0x8b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x427c(%rsp) # imm = 0xFFFFFFFF
movl 0x427c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4278(%rsp)
cmpl $0x1, 0x4278(%rsp)
jne 0x1252268
movq 0x8b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1252239
movq 0x8b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1252237
jmp 0x1252266
movq 0x8b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46c0(%rsp)
cmpq $0x0, 0x46c0(%rsp)
je 0x1252264
movq 0x46c0(%rsp), %rdi
callq 0x5f480
jmp 0x1252266
jmp 0x1252268
movq 0x8b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12522c3
movq %rax, %rdi
callq 0x678a0
movq 0x8b0(%rsp), %rax
movq %rax, 0x1b00(%rsp)
movl $0x0, 0x1ab4(%rsp)
movl 0x1ab4(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x1252342
movq 0x1b58(%rsp), %rsi
movslq 0x1ab4(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0x1b0c(%rsp), %rdx
callq 0x12780f0
movq 0x1b00(%rsp), %rax
movslq 0x1ab4(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1ab4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1ab4(%rsp)
jmp 0x12522de
jmp 0x1252344
movl 0x1b60(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b60(%rsp)
jmp 0x12519e4
movl $0x0, 0x1f24(%rsp)
jmp 0x1261ae5
jmp 0x1261ada
movq 0x1f18(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x125cdec
movq 0x1f10(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x12532db
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed4(%rsp), %ecx
movl 0x1ed0(%rsp), %r8d
movq 0x1ee0(%rsp), %r9
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6fb30
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fd8(%rsp)
movq 0x1fd8(%rsp), %rcx
movq %rcx, 0x8a0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x8af(%rsp)
je 0x1252436
movq 0x8a0(%rsp), %rax
movq %rax, 0x2d10(%rsp)
movq 0x2d10(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x8af(%rsp)
movb 0x8af(%rsp), %al
testb $0x1, %al
jne 0x1252443
jmp 0x1252453
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1261ae5
movl $0x0, 0x1ab0(%rsp)
movl 0x1ab0(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x12532cb
movq 0x1f18(%rsp), %rcx
movl 0x1ab0(%rsp), %eax
leaq 0x1a60(%rsp), %rdx
movq %rdx, 0x2270(%rsp)
movq %rcx, 0x2268(%rsp)
movl %eax, 0x2264(%rsp)
movq 0x2268(%rsp), %rax
movq %rax, 0x898(%rsp)
movb $0x0, 0x2263(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2264(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1a60(%rsp), %r10
movq %r10, 0x34c0(%rsp)
movl %r9d, 0x34bc(%rsp)
movl %r8d, 0x34b8(%rsp)
movl %edi, 0x34b4(%rsp)
movq %rsi, 0x34a8(%rsp)
movq %rdx, 0x34a0(%rsp)
movl %ecx, 0x349c(%rsp)
movq %rax, 0x3490(%rsp)
movq 0x34c0(%rsp), %rcx
movq %rcx, 0x890(%rsp)
movq 0x34a8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x34a0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x349c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3490(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x34bc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x34b8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x34b4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c20(%rsp)
movl $0x10, 0x3c1c(%rsp)
movq 0x3c20(%rsp), %rax
movslq 0x3c1c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c1c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x898(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1a88(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x125262e
movq 0x898(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1aa0(%rsp)
movb $0x1, 0x2263(%rsp)
testb $0x1, 0x2263(%rsp)
jne 0x1252769
leaq 0x1a60(%rsp), %rax
movq %rax, 0x2488(%rsp)
movq 0x2488(%rsp), %rax
movq %rax, 0x44e0(%rsp)
movq 0x44e0(%rsp), %rax
movq %rax, 0x888(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125270c
movq 0x888(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x44dc(%rsp) # imm = 0xFFFFFFFF
movl 0x44dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x44d8(%rsp)
cmpl $0x1, 0x44d8(%rsp)
jne 0x125270c
movq 0x888(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12526dd
movq 0x888(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12526db
jmp 0x125270a
movq 0x888(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4590(%rsp)
cmpq $0x0, 0x4590(%rsp)
je 0x1252708
movq 0x4590(%rsp), %rdi
callq 0x5f480
jmp 0x125270a
jmp 0x125270c
movq 0x888(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1252767
movq %rax, %rdi
callq 0x678a0
jmp 0x1252769
leaq 0x1a60(%rsp), %rax
movq %rax, 0x2410(%rsp)
movq 0x2410(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x878(%rsp)
leaq 0x1a60(%rsp), %rax
movq %rax, 0x25c0(%rsp)
movq 0x25c0(%rsp), %rax
movq %rax, 0x4270(%rsp)
movq 0x4270(%rsp), %rax
movq %rax, 0x880(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1252854
movq 0x880(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x426c(%rsp) # imm = 0xFFFFFFFF
movl 0x426c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4268(%rsp)
cmpl $0x1, 0x4268(%rsp)
jne 0x1252854
movq 0x880(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1252825
movq 0x880(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1252823
jmp 0x1252852
movq 0x880(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46c8(%rsp)
cmpq $0x0, 0x46c8(%rsp)
je 0x1252850
movq 0x46c8(%rsp), %rdi
callq 0x5f480
jmp 0x1252852
jmp 0x1252854
movq 0x880(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12528af
movq %rax, %rdi
callq 0x678a0
movq 0x878(%rsp), %rax
movq %rax, 0x1aa8(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1ab0(%rsp), %eax
leaq 0x1a10(%rsp), %rdx
movq %rdx, 0x2258(%rsp)
movq %rcx, 0x2250(%rsp)
movl %eax, 0x224c(%rsp)
movq 0x2250(%rsp), %rax
movq %rax, 0x870(%rsp)
movb $0x0, 0x224b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x224c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1a10(%rsp), %r10
movq %r10, 0x34f8(%rsp)
movl %r9d, 0x34f4(%rsp)
movl %r8d, 0x34f0(%rsp)
movl %edi, 0x34ec(%rsp)
movq %rsi, 0x34e0(%rsp)
movq %rdx, 0x34d8(%rsp)
movl %ecx, 0x34d4(%rsp)
movq %rax, 0x34c8(%rsp)
movq 0x34f8(%rsp), %rcx
movq %rcx, 0x868(%rsp)
movq 0x34e0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x34d8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x34d4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x34c8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x34f4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x34f0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x34ec(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c10(%rsp)
movl $0x10, 0x3c0c(%rsp)
movq 0x3c10(%rsp), %rax
movslq 0x3c0c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c0c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x870(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1a38(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1252a7b
movq 0x870(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1a50(%rsp)
movb $0x1, 0x224b(%rsp)
testb $0x1, 0x224b(%rsp)
jne 0x1252bb6
leaq 0x1a10(%rsp), %rax
movq %rax, 0x2490(%rsp)
movq 0x2490(%rsp), %rax
movq %rax, 0x44d0(%rsp)
movq 0x44d0(%rsp), %rax
movq %rax, 0x860(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1252b59
movq 0x860(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x44cc(%rsp) # imm = 0xFFFFFFFF
movl 0x44cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x44c8(%rsp)
cmpl $0x1, 0x44c8(%rsp)
jne 0x1252b59
movq 0x860(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1252b2a
movq 0x860(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1252b28
jmp 0x1252b57
movq 0x860(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4598(%rsp)
cmpq $0x0, 0x4598(%rsp)
je 0x1252b55
movq 0x4598(%rsp), %rdi
callq 0x5f480
jmp 0x1252b57
jmp 0x1252b59
movq 0x860(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1252bb4
movq %rax, %rdi
callq 0x678a0
jmp 0x1252bb6
leaq 0x1a10(%rsp), %rax
movq %rax, 0x2408(%rsp)
movq 0x2408(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x850(%rsp)
leaq 0x1a10(%rsp), %rax
movq %rax, 0x25c8(%rsp)
movq 0x25c8(%rsp), %rax
movq %rax, 0x4260(%rsp)
movq 0x4260(%rsp), %rax
movq %rax, 0x858(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1252ca1
movq 0x858(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x425c(%rsp) # imm = 0xFFFFFFFF
movl 0x425c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4258(%rsp)
cmpl $0x1, 0x4258(%rsp)
jne 0x1252ca1
movq 0x858(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1252c72
movq 0x858(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1252c70
jmp 0x1252c9f
movq 0x858(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46d0(%rsp)
cmpq $0x0, 0x46d0(%rsp)
je 0x1252c9d
movq 0x46d0(%rsp), %rdi
callq 0x5f480
jmp 0x1252c9f
jmp 0x1252ca1
movq 0x858(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1252cfc
movq %rax, %rdi
callq 0x678a0
movq 0x850(%rsp), %rax
movq %rax, 0x1a58(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1ab0(%rsp), %eax
leaq 0x19c0(%rsp), %rdx
movq %rdx, 0x2980(%rsp)
movq %rcx, 0x2978(%rsp)
movl %eax, 0x2974(%rsp)
movq 0x2978(%rsp), %rax
movq %rax, 0x848(%rsp)
movb $0x0, 0x2973(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2974(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x19c0(%rsp), %r10
movq %r10, 0x2f10(%rsp)
movl %r9d, 0x2f0c(%rsp)
movl %r8d, 0x2f08(%rsp)
movl %edi, 0x2f04(%rsp)
movq %rsi, 0x2ef8(%rsp)
movq %rdx, 0x2ef0(%rsp)
movl %ecx, 0x2eec(%rsp)
movq %rax, 0x2ee0(%rsp)
movq 0x2f10(%rsp), %rcx
movq %rcx, 0x840(%rsp)
movq 0x2ef8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2ef0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2eec(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ee0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2f0c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f08(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f04(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3dc0(%rsp)
movl $0x10, 0x3dbc(%rsp)
movq 0x3dc0(%rsp), %rax
movslq 0x3dbc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3dbc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x848(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x19e8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1252ec8
movq 0x848(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1a00(%rsp)
movb $0x1, 0x2973(%rsp)
testb $0x1, 0x2973(%rsp)
jne 0x1253003
leaq 0x19c0(%rsp), %rax
movq %rax, 0x2988(%rsp)
movq 0x2988(%rsp), %rax
movq %rax, 0x3e70(%rsp)
movq 0x3e70(%rsp), %rax
movq %rax, 0x838(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1252fa6
movq 0x838(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e6c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e6c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e68(%rsp)
cmpl $0x1, 0x3e68(%rsp)
jne 0x1252fa6
movq 0x838(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1252f77
movq 0x838(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1252f75
jmp 0x1252fa4
movq 0x838(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48c8(%rsp)
cmpq $0x0, 0x48c8(%rsp)
je 0x1252fa2
movq 0x48c8(%rsp), %rdi
callq 0x5f480
jmp 0x1252fa4
jmp 0x1252fa6
movq 0x838(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1253001
movq %rax, %rdi
callq 0x678a0
jmp 0x1253003
leaq 0x19c0(%rsp), %rax
movq %rax, 0x2ad0(%rsp)
movq 0x2ad0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x828(%rsp)
leaq 0x19c0(%rsp), %rax
movq %rax, 0x25d0(%rsp)
movq 0x25d0(%rsp), %rax
movq %rax, 0x4250(%rsp)
movq 0x4250(%rsp), %rax
movq %rax, 0x830(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12530ee
movq 0x830(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x424c(%rsp) # imm = 0xFFFFFFFF
movl 0x424c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4248(%rsp)
cmpl $0x1, 0x4248(%rsp)
jne 0x12530ee
movq 0x830(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12530bf
movq 0x830(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12530bd
jmp 0x12530ec
movq 0x830(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46d8(%rsp)
cmpq $0x0, 0x46d8(%rsp)
je 0x12530ea
movq 0x46d8(%rsp), %rdi
callq 0x5f480
jmp 0x12530ec
jmp 0x12530ee
movq 0x830(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1253149
movq %rax, %rdi
callq 0x678a0
movq 0x828(%rsp), %rax
movq %rax, 0x1a08(%rsp)
movl $0x0, 0x19bc(%rsp)
movl 0x19bc(%rsp), %eax
cmpl 0x1ed4(%rsp), %eax
jge 0x12532b3
movl $0x0, 0x19b8(%rsp)
movl 0x19b8(%rsp), %eax
cmpl 0x1ed8(%rsp), %eax
jge 0x125327c
movq 0x1aa8(%rsp), %rax
movslq 0x19b8(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x19b4(%rsp)
movl $0x0, 0x19b0(%rsp)
movl 0x19b0(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x1253224
movq 0x1a58(%rsp), %rdx
movslq 0x19b0(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0x19b4(%rsp), %rsi
callq 0x12780f0
movq 0x1a08(%rsp), %rax
movslq 0x19b0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x19b0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x19b0(%rsp)
jmp 0x12531c0
movl 0x1edc(%rsp), %ecx
movq 0x1a58(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1a58(%rsp)
movl 0x1edc(%rsp), %ecx
movq 0x1a08(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1a08(%rsp)
movl 0x19b8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x19b8(%rsp)
jmp 0x1253183
movl 0x1ed8(%rsp), %ecx
movq 0x1aa8(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1aa8(%rsp)
movl 0x19bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x19bc(%rsp)
jmp 0x1253164
jmp 0x12532b5
movl 0x1ab0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1ab0(%rsp)
jmp 0x125245e
movl $0x0, 0x1f24(%rsp)
jmp 0x1261ae5
movq 0x1f10(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x125afb1
cmpl $0x1, 0x1edc(%rsp)
jne 0x125416e
cmpl $0x1, 0x1ed8(%rsp)
jne 0x125416e
movl 0x1ed0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jne 0x125416e
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1eec(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fd0(%rsp)
movq 0x1fd0(%rsp), %rcx
movq %rcx, 0x818(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x827(%rsp)
je 0x12533b4
movq 0x818(%rsp), %rax
movq %rax, 0x2d18(%rsp)
movq 0x2d18(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x827(%rsp)
movb 0x827(%rsp), %al
testb $0x1, %al
jne 0x12533c1
jmp 0x12533d1
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1261ae5
movl $0x0, 0x19ac(%rsp)
movl 0x19ac(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x125415e
movq 0x1f18(%rsp), %rcx
movl 0x19ac(%rsp), %eax
leaq 0x1958(%rsp), %rdx
movq %rdx, 0x2240(%rsp)
movq %rcx, 0x2238(%rsp)
movl %eax, 0x2234(%rsp)
movq 0x2238(%rsp), %rax
movq %rax, 0x810(%rsp)
movb $0x0, 0x2233(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2234(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1958(%rsp), %r10
movq %r10, 0x3530(%rsp)
movl %r9d, 0x352c(%rsp)
movl %r8d, 0x3528(%rsp)
movl %edi, 0x3524(%rsp)
movq %rsi, 0x3518(%rsp)
movq %rdx, 0x3510(%rsp)
movl %ecx, 0x350c(%rsp)
movq %rax, 0x3500(%rsp)
movq 0x3530(%rsp), %rcx
movq %rcx, 0x808(%rsp)
movq 0x3518(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3510(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x350c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3500(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x352c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3528(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3524(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c00(%rsp)
movl $0x10, 0x3bfc(%rsp)
movq 0x3c00(%rsp), %rax
movslq 0x3bfc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bfc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x810(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1980(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12535ac
movq 0x810(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1998(%rsp)
movb $0x1, 0x2233(%rsp)
testb $0x1, 0x2233(%rsp)
jne 0x12536e7
leaq 0x1958(%rsp), %rax
movq %rax, 0x2498(%rsp)
movq 0x2498(%rsp), %rax
movq %rax, 0x44c0(%rsp)
movq 0x44c0(%rsp), %rax
movq %rax, 0x800(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125368a
movq 0x800(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x44bc(%rsp) # imm = 0xFFFFFFFF
movl 0x44bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x44b8(%rsp)
cmpl $0x1, 0x44b8(%rsp)
jne 0x125368a
movq 0x800(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125365b
movq 0x800(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1253659
jmp 0x1253688
movq 0x800(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45a0(%rsp)
cmpq $0x0, 0x45a0(%rsp)
je 0x1253686
movq 0x45a0(%rsp), %rdi
callq 0x5f480
jmp 0x1253688
jmp 0x125368a
movq 0x800(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12536e5
movq %rax, %rdi
callq 0x678a0
jmp 0x12536e7
leaq 0x1958(%rsp), %rax
movq %rax, 0x2400(%rsp)
movq 0x2400(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7f0(%rsp)
leaq 0x1958(%rsp), %rax
movq %rax, 0x25d8(%rsp)
movq 0x25d8(%rsp), %rax
movq %rax, 0x4240(%rsp)
movq 0x4240(%rsp), %rax
movq %rax, 0x7f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12537d2
movq 0x7f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x423c(%rsp) # imm = 0xFFFFFFFF
movl 0x423c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4238(%rsp)
cmpl $0x1, 0x4238(%rsp)
jne 0x12537d2
movq 0x7f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12537a3
movq 0x7f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12537a1
jmp 0x12537d0
movq 0x7f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46e0(%rsp)
cmpq $0x0, 0x46e0(%rsp)
je 0x12537ce
movq 0x46e0(%rsp), %rdi
callq 0x5f480
jmp 0x12537d0
jmp 0x12537d2
movq 0x7f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125382d
movq %rax, %rdi
callq 0x678a0
movq 0x7f0(%rsp), %rax
movq %rax, 0x19a0(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x19ac(%rsp), %eax
leaq 0x1908(%rsp), %rdx
movq %rdx, 0x2228(%rsp)
movq %rcx, 0x2220(%rsp)
movl %eax, 0x221c(%rsp)
movq 0x2220(%rsp), %rax
movq %rax, 0x7e8(%rsp)
movb $0x0, 0x221b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x221c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1908(%rsp), %r10
movq %r10, 0x3568(%rsp)
movl %r9d, 0x3564(%rsp)
movl %r8d, 0x3560(%rsp)
movl %edi, 0x355c(%rsp)
movq %rsi, 0x3550(%rsp)
movq %rdx, 0x3548(%rsp)
movl %ecx, 0x3544(%rsp)
movq %rax, 0x3538(%rsp)
movq 0x3568(%rsp), %rcx
movq %rcx, 0x7e0(%rsp)
movq 0x3550(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3548(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3544(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3538(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3564(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3560(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x355c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3bf0(%rsp)
movl $0x10, 0x3bec(%rsp)
movq 0x3bf0(%rsp), %rax
movslq 0x3bec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7e8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1930(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12539f9
movq 0x7e8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1948(%rsp)
movb $0x1, 0x221b(%rsp)
testb $0x1, 0x221b(%rsp)
jne 0x1253b34
leaq 0x1908(%rsp), %rax
movq %rax, 0x24a0(%rsp)
movq 0x24a0(%rsp), %rax
movq %rax, 0x44b0(%rsp)
movq 0x44b0(%rsp), %rax
movq %rax, 0x7d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1253ad7
movq 0x7d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x44ac(%rsp) # imm = 0xFFFFFFFF
movl 0x44ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x44a8(%rsp)
cmpl $0x1, 0x44a8(%rsp)
jne 0x1253ad7
movq 0x7d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1253aa8
movq 0x7d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1253aa6
jmp 0x1253ad5
movq 0x7d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45a8(%rsp)
cmpq $0x0, 0x45a8(%rsp)
je 0x1253ad3
movq 0x45a8(%rsp), %rdi
callq 0x5f480
jmp 0x1253ad5
jmp 0x1253ad7
movq 0x7d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1253b32
movq %rax, %rdi
callq 0x678a0
jmp 0x1253b34
leaq 0x1908(%rsp), %rax
movq %rax, 0x23f8(%rsp)
movq 0x23f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7c8(%rsp)
leaq 0x1908(%rsp), %rax
movq %rax, 0x25e0(%rsp)
movq 0x25e0(%rsp), %rax
movq %rax, 0x4230(%rsp)
movq 0x4230(%rsp), %rax
movq %rax, 0x7d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1253c1f
movq 0x7d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x422c(%rsp) # imm = 0xFFFFFFFF
movl 0x422c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4228(%rsp)
cmpl $0x1, 0x4228(%rsp)
jne 0x1253c1f
movq 0x7d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1253bf0
movq 0x7d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1253bee
jmp 0x1253c1d
movq 0x7d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46e8(%rsp)
cmpq $0x0, 0x46e8(%rsp)
je 0x1253c1b
movq 0x46e8(%rsp), %rdi
callq 0x5f480
jmp 0x1253c1d
jmp 0x1253c1f
movq 0x7d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1253c7a
movq %rax, %rdi
callq 0x678a0
movq 0x7c8(%rsp), %rax
movq %rax, 0x1950(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x19ac(%rsp), %eax
leaq 0x18b8(%rsp), %rdx
movq %rdx, 0x2960(%rsp)
movq %rcx, 0x2958(%rsp)
movl %eax, 0x2954(%rsp)
movq 0x2958(%rsp), %rax
movq %rax, 0x7c0(%rsp)
movb $0x0, 0x2953(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2954(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x18b8(%rsp), %r10
movq %r10, 0x2f48(%rsp)
movl %r9d, 0x2f44(%rsp)
movl %r8d, 0x2f40(%rsp)
movl %edi, 0x2f3c(%rsp)
movq %rsi, 0x2f30(%rsp)
movq %rdx, 0x2f28(%rsp)
movl %ecx, 0x2f24(%rsp)
movq %rax, 0x2f18(%rsp)
movq 0x2f48(%rsp), %rcx
movq %rcx, 0x7b8(%rsp)
movq 0x2f30(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2f28(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2f24(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2f18(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2f44(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f40(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f3c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3db0(%rsp)
movl $0x10, 0x3dac(%rsp)
movq 0x3db0(%rsp), %rax
movslq 0x3dac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3dac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7c0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x18e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1253e46
movq 0x7c0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x18f8(%rsp)
movb $0x1, 0x2953(%rsp)
testb $0x1, 0x2953(%rsp)
jne 0x1253f81
leaq 0x18b8(%rsp), %rax
movq %rax, 0x2968(%rsp)
movq 0x2968(%rsp), %rax
movq %rax, 0x3e80(%rsp)
movq 0x3e80(%rsp), %rax
movq %rax, 0x7b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1253f24
movq 0x7b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e7c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e7c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e78(%rsp)
cmpl $0x1, 0x3e78(%rsp)
jne 0x1253f24
movq 0x7b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1253ef5
movq 0x7b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1253ef3
jmp 0x1253f22
movq 0x7b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48c0(%rsp)
cmpq $0x0, 0x48c0(%rsp)
je 0x1253f20
movq 0x48c0(%rsp), %rdi
callq 0x5f480
jmp 0x1253f22
jmp 0x1253f24
movq 0x7b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1253f7f
movq %rax, %rdi
callq 0x678a0
jmp 0x1253f81
leaq 0x18b8(%rsp), %rax
movq %rax, 0x2ac8(%rsp)
movq 0x2ac8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7a0(%rsp)
leaq 0x18b8(%rsp), %rax
movq %rax, 0x25e8(%rsp)
movq 0x25e8(%rsp), %rax
movq %rax, 0x4220(%rsp)
movq 0x4220(%rsp), %rax
movq %rax, 0x7a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125406c
movq 0x7a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x421c(%rsp) # imm = 0xFFFFFFFF
movl 0x421c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4218(%rsp)
cmpl $0x1, 0x4218(%rsp)
jne 0x125406c
movq 0x7a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125403d
movq 0x7a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x125403b
jmp 0x125406a
movq 0x7a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46f0(%rsp)
cmpq $0x0, 0x46f0(%rsp)
je 0x1254068
movq 0x46f0(%rsp), %rdi
callq 0x5f480
jmp 0x125406a
jmp 0x125406c
movq 0x7a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12540c7
movq %rax, %rdi
callq 0x678a0
movq 0x7a0(%rsp), %rax
movq %rax, 0x1900(%rsp)
movl $0x0, 0x18b4(%rsp)
movl 0x18b4(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x1254146
movq 0x19a0(%rsp), %rsi
movslq 0x18b4(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1950(%rsp), %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x12780f0
movq 0x1900(%rsp), %rax
movslq 0x18b4(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x18b4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x18b4(%rsp)
jmp 0x12540e2
jmp 0x1254148
movl 0x19ac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x19ac(%rsp)
jmp 0x12533dc
movl $0x0, 0x1f24(%rsp)
jmp 0x1261ae5
movl 0x1edc(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jne 0x1254bda
movl 0x1ed8(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jne 0x1254bda
cmpl $0x1, 0x1ed0(%rsp)
jne 0x1254bda
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1eec(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fc8(%rsp)
movq 0x1fc8(%rsp), %rcx
movq %rcx, 0x790(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x79f(%rsp)
je 0x125423b
movq 0x790(%rsp), %rax
movq %rax, 0x2d20(%rsp)
movq 0x2d20(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x79f(%rsp)
movb 0x79f(%rsp), %al
testb $0x1, %al
jne 0x1254248
jmp 0x1254258
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1261ae5
movl $0x0, 0x18b0(%rsp)
movl 0x18b0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x1254bca
movq 0x1f18(%rsp), %rcx
movl 0x18b0(%rsp), %eax
leaq 0x1860(%rsp), %rdx
movq %rdx, 0x2210(%rsp)
movq %rcx, 0x2208(%rsp)
movl %eax, 0x2204(%rsp)
movq 0x2208(%rsp), %rax
movq %rax, 0x788(%rsp)
movb $0x0, 0x2203(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2204(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1860(%rsp), %r10
movq %r10, 0x35a0(%rsp)
movl %r9d, 0x359c(%rsp)
movl %r8d, 0x3598(%rsp)
movl %edi, 0x3594(%rsp)
movq %rsi, 0x3588(%rsp)
movq %rdx, 0x3580(%rsp)
movl %ecx, 0x357c(%rsp)
movq %rax, 0x3570(%rsp)
movq 0x35a0(%rsp), %rcx
movq %rcx, 0x780(%rsp)
movq 0x3588(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3580(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x357c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3570(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x359c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3598(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3594(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3be0(%rsp)
movl $0x10, 0x3bdc(%rsp)
movq 0x3be0(%rsp), %rax
movslq 0x3bdc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bdc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x788(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1888(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1254433
movq 0x788(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x18a0(%rsp)
movb $0x1, 0x2203(%rsp)
testb $0x1, 0x2203(%rsp)
jne 0x125456e
leaq 0x1860(%rsp), %rax
movq %rax, 0x24a8(%rsp)
movq 0x24a8(%rsp), %rax
movq %rax, 0x44a0(%rsp)
movq 0x44a0(%rsp), %rax
movq %rax, 0x778(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1254511
movq 0x778(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x449c(%rsp) # imm = 0xFFFFFFFF
movl 0x449c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4498(%rsp)
cmpl $0x1, 0x4498(%rsp)
jne 0x1254511
movq 0x778(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12544e2
movq 0x778(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12544e0
jmp 0x125450f
movq 0x778(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45b0(%rsp)
cmpq $0x0, 0x45b0(%rsp)
je 0x125450d
movq 0x45b0(%rsp), %rdi
callq 0x5f480
jmp 0x125450f
jmp 0x1254511
movq 0x778(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125456c
movq %rax, %rdi
callq 0x678a0
jmp 0x125456e
leaq 0x1860(%rsp), %rax
movq %rax, 0x23f0(%rsp)
movq 0x23f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x768(%rsp)
leaq 0x1860(%rsp), %rax
movq %rax, 0x25f0(%rsp)
movq 0x25f0(%rsp), %rax
movq %rax, 0x4210(%rsp)
movq 0x4210(%rsp), %rax
movq %rax, 0x770(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1254659
movq 0x770(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x420c(%rsp) # imm = 0xFFFFFFFF
movl 0x420c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4208(%rsp)
cmpl $0x1, 0x4208(%rsp)
jne 0x1254659
movq 0x770(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125462a
movq 0x770(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1254628
jmp 0x1254657
movq 0x770(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46f8(%rsp)
cmpq $0x0, 0x46f8(%rsp)
je 0x1254655
movq 0x46f8(%rsp), %rdi
callq 0x5f480
jmp 0x1254657
jmp 0x1254659
movq 0x770(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12546b4
movq %rax, %rdi
callq 0x678a0
movq 0x768(%rsp), %rax
movq %rax, 0x18a8(%rsp)
movq 0x1f10(%rsp), %rax
movq %rax, 0x23e8(%rsp)
movq 0x23e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1858(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x18b0(%rsp), %eax
leaq 0x1808(%rsp), %rdx
movq %rdx, 0x2940(%rsp)
movq %rcx, 0x2938(%rsp)
movl %eax, 0x2934(%rsp)
movq 0x2938(%rsp), %rax
movq %rax, 0x760(%rsp)
movb $0x0, 0x2933(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2934(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1808(%rsp), %r10
movq %r10, 0x2f80(%rsp)
movl %r9d, 0x2f7c(%rsp)
movl %r8d, 0x2f78(%rsp)
movl %edi, 0x2f74(%rsp)
movq %rsi, 0x2f68(%rsp)
movq %rdx, 0x2f60(%rsp)
movl %ecx, 0x2f5c(%rsp)
movq %rax, 0x2f50(%rsp)
movq 0x2f80(%rsp), %rcx
movq %rcx, 0x758(%rsp)
movq 0x2f68(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2f60(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2f5c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2f50(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2f7c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f78(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f74(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3da0(%rsp)
movl $0x10, 0x3d9c(%rsp)
movq 0x3da0(%rsp), %rax
movslq 0x3d9c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d9c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x760(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1830(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12548a3
movq 0x760(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1848(%rsp)
movb $0x1, 0x2933(%rsp)
testb $0x1, 0x2933(%rsp)
jne 0x12549de
leaq 0x1808(%rsp), %rax
movq %rax, 0x2948(%rsp)
movq 0x2948(%rsp), %rax
movq %rax, 0x3e90(%rsp)
movq 0x3e90(%rsp), %rax
movq %rax, 0x750(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1254981
movq 0x750(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e8c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e8c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e88(%rsp)
cmpl $0x1, 0x3e88(%rsp)
jne 0x1254981
movq 0x750(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1254952
movq 0x750(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1254950
jmp 0x125497f
movq 0x750(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48b8(%rsp)
cmpq $0x0, 0x48b8(%rsp)
je 0x125497d
movq 0x48b8(%rsp), %rdi
callq 0x5f480
jmp 0x125497f
jmp 0x1254981
movq 0x750(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12549dc
movq %rax, %rdi
callq 0x678a0
jmp 0x12549de
leaq 0x1808(%rsp), %rax
movq %rax, 0x2ac0(%rsp)
movq 0x2ac0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x740(%rsp)
leaq 0x1808(%rsp), %rax
movq %rax, 0x25f8(%rsp)
movq 0x25f8(%rsp), %rax
movq %rax, 0x4200(%rsp)
movq 0x4200(%rsp), %rax
movq %rax, 0x748(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1254ac9
movq 0x748(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41fc(%rsp) # imm = 0xFFFFFFFF
movl 0x41fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41f8(%rsp)
cmpl $0x1, 0x41f8(%rsp)
jne 0x1254ac9
movq 0x748(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1254a9a
movq 0x748(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1254a98
jmp 0x1254ac7
movq 0x748(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4700(%rsp)
cmpq $0x0, 0x4700(%rsp)
je 0x1254ac5
movq 0x4700(%rsp), %rdi
callq 0x5f480
jmp 0x1254ac7
jmp 0x1254ac9
movq 0x748(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1254b24
movq %rax, %rdi
callq 0x678a0
movq 0x740(%rsp), %rax
movq %rax, 0x1850(%rsp)
movl $0x0, 0x1804(%rsp)
movl 0x1804(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x1254bb2
movq 0x18a8(%rsp), %rsi
movslq 0x1804(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1858(%rsp), %rdx
movslq 0x1804(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x12780f0
movq 0x1850(%rsp), %rax
movslq 0x1804(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1804(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1804(%rsp)
jmp 0x1254b3f
jmp 0x1254bb4
movl 0x18b0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x18b0(%rsp)
jmp 0x1254263
movl $0x0, 0x1f24(%rsp)
jmp 0x1261ae5
cmpl $0x1, 0x1ef8(%rsp)
jne 0x1255a5b
cmpl $0x1, 0x1ef4(%rsp)
jne 0x1255a5b
movl 0x1ed0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jne 0x1255a5b
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed0(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fc0(%rsp)
movq 0x1fc0(%rsp), %rcx
movq %rcx, 0x730(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x73f(%rsp)
je 0x1254ca1
movq 0x730(%rsp), %rax
movq %rax, 0x2d28(%rsp)
movq 0x2d28(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x73f(%rsp)
movb 0x73f(%rsp), %al
testb $0x1, %al
jne 0x1254cae
jmp 0x1254cbe
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1261ae5
movl $0x0, 0x1800(%rsp)
movl 0x1800(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x1255a4b
movq 0x1f18(%rsp), %rcx
movl 0x1800(%rsp), %eax
leaq 0x17b0(%rsp), %rdx
movq %rdx, 0x21f8(%rsp)
movq %rcx, 0x21f0(%rsp)
movl %eax, 0x21ec(%rsp)
movq 0x21f0(%rsp), %rax
movq %rax, 0x728(%rsp)
movb $0x0, 0x21eb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x21ec(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x17b0(%rsp), %r10
movq %r10, 0x35d8(%rsp)
movl %r9d, 0x35d4(%rsp)
movl %r8d, 0x35d0(%rsp)
movl %edi, 0x35cc(%rsp)
movq %rsi, 0x35c0(%rsp)
movq %rdx, 0x35b8(%rsp)
movl %ecx, 0x35b4(%rsp)
movq %rax, 0x35a8(%rsp)
movq 0x35d8(%rsp), %rcx
movq %rcx, 0x720(%rsp)
movq 0x35c0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x35b8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x35b4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x35a8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x35d4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x35d0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x35cc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3bd0(%rsp)
movl $0x10, 0x3bcc(%rsp)
movq 0x3bd0(%rsp), %rax
movslq 0x3bcc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bcc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x728(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x17d8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1254e99
movq 0x728(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x17f0(%rsp)
movb $0x1, 0x21eb(%rsp)
testb $0x1, 0x21eb(%rsp)
jne 0x1254fd4
leaq 0x17b0(%rsp), %rax
movq %rax, 0x24b0(%rsp)
movq 0x24b0(%rsp), %rax
movq %rax, 0x4490(%rsp)
movq 0x4490(%rsp), %rax
movq %rax, 0x718(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1254f77
movq 0x718(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x448c(%rsp) # imm = 0xFFFFFFFF
movl 0x448c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4488(%rsp)
cmpl $0x1, 0x4488(%rsp)
jne 0x1254f77
movq 0x718(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1254f48
movq 0x718(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1254f46
jmp 0x1254f75
movq 0x718(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45b8(%rsp)
cmpq $0x0, 0x45b8(%rsp)
je 0x1254f73
movq 0x45b8(%rsp), %rdi
callq 0x5f480
jmp 0x1254f75
jmp 0x1254f77
movq 0x718(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1254fd2
movq %rax, %rdi
callq 0x678a0
jmp 0x1254fd4
leaq 0x17b0(%rsp), %rax
movq %rax, 0x23e0(%rsp)
movq 0x23e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x708(%rsp)
leaq 0x17b0(%rsp), %rax
movq %rax, 0x2600(%rsp)
movq 0x2600(%rsp), %rax
movq %rax, 0x41f0(%rsp)
movq 0x41f0(%rsp), %rax
movq %rax, 0x710(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12550bf
movq 0x710(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41ec(%rsp) # imm = 0xFFFFFFFF
movl 0x41ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41e8(%rsp)
cmpl $0x1, 0x41e8(%rsp)
jne 0x12550bf
movq 0x710(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1255090
movq 0x710(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x125508e
jmp 0x12550bd
movq 0x710(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4708(%rsp)
cmpq $0x0, 0x4708(%rsp)
je 0x12550bb
movq 0x4708(%rsp), %rdi
callq 0x5f480
jmp 0x12550bd
jmp 0x12550bf
movq 0x710(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125511a
movq %rax, %rdi
callq 0x678a0
movq 0x708(%rsp), %rax
movq %rax, 0x17f8(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1800(%rsp), %eax
leaq 0x1760(%rsp), %rdx
movq %rdx, 0x21e0(%rsp)
movq %rcx, 0x21d8(%rsp)
movl %eax, 0x21d4(%rsp)
movq 0x21d8(%rsp), %rax
movq %rax, 0x700(%rsp)
movb $0x0, 0x21d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x21d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1760(%rsp), %r10
movq %r10, 0x3610(%rsp)
movl %r9d, 0x360c(%rsp)
movl %r8d, 0x3608(%rsp)
movl %edi, 0x3604(%rsp)
movq %rsi, 0x35f8(%rsp)
movq %rdx, 0x35f0(%rsp)
movl %ecx, 0x35ec(%rsp)
movq %rax, 0x35e0(%rsp)
movq 0x3610(%rsp), %rcx
movq %rcx, 0x6f8(%rsp)
movq 0x35f8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x35f0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x35ec(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x35e0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x360c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3608(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3604(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3bc0(%rsp)
movl $0x10, 0x3bbc(%rsp)
movq 0x3bc0(%rsp), %rax
movslq 0x3bbc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bbc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x700(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1788(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12552e6
movq 0x700(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x17a0(%rsp)
movb $0x1, 0x21d3(%rsp)
testb $0x1, 0x21d3(%rsp)
jne 0x1255421
leaq 0x1760(%rsp), %rax
movq %rax, 0x24b8(%rsp)
movq 0x24b8(%rsp), %rax
movq %rax, 0x4480(%rsp)
movq 0x4480(%rsp), %rax
movq %rax, 0x6f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12553c4
movq 0x6f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x447c(%rsp) # imm = 0xFFFFFFFF
movl 0x447c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4478(%rsp)
cmpl $0x1, 0x4478(%rsp)
jne 0x12553c4
movq 0x6f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1255395
movq 0x6f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1255393
jmp 0x12553c2
movq 0x6f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45c0(%rsp)
cmpq $0x0, 0x45c0(%rsp)
je 0x12553c0
movq 0x45c0(%rsp), %rdi
callq 0x5f480
jmp 0x12553c2
jmp 0x12553c4
movq 0x6f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125541f
movq %rax, %rdi
callq 0x678a0
jmp 0x1255421
leaq 0x1760(%rsp), %rax
movq %rax, 0x23d8(%rsp)
movq 0x23d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6e0(%rsp)
leaq 0x1760(%rsp), %rax
movq %rax, 0x2608(%rsp)
movq 0x2608(%rsp), %rax
movq %rax, 0x41e0(%rsp)
movq 0x41e0(%rsp), %rax
movq %rax, 0x6e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125550c
movq 0x6e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41dc(%rsp) # imm = 0xFFFFFFFF
movl 0x41dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41d8(%rsp)
cmpl $0x1, 0x41d8(%rsp)
jne 0x125550c
movq 0x6e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12554dd
movq 0x6e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12554db
jmp 0x125550a
movq 0x6e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4710(%rsp)
cmpq $0x0, 0x4710(%rsp)
je 0x1255508
movq 0x4710(%rsp), %rdi
callq 0x5f480
jmp 0x125550a
jmp 0x125550c
movq 0x6e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1255567
movq %rax, %rdi
callq 0x678a0
movq 0x6e0(%rsp), %rax
movq %rax, 0x17a8(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1800(%rsp), %eax
leaq 0x1710(%rsp), %rdx
movq %rdx, 0x2920(%rsp)
movq %rcx, 0x2918(%rsp)
movl %eax, 0x2914(%rsp)
movq 0x2918(%rsp), %rax
movq %rax, 0x6d8(%rsp)
movb $0x0, 0x2913(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2914(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1710(%rsp), %r10
movq %r10, 0x2fb8(%rsp)
movl %r9d, 0x2fb4(%rsp)
movl %r8d, 0x2fb0(%rsp)
movl %edi, 0x2fac(%rsp)
movq %rsi, 0x2fa0(%rsp)
movq %rdx, 0x2f98(%rsp)
movl %ecx, 0x2f94(%rsp)
movq %rax, 0x2f88(%rsp)
movq 0x2fb8(%rsp), %rcx
movq %rcx, 0x6d0(%rsp)
movq 0x2fa0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2f98(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2f94(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2f88(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2fb4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2fb0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2fac(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d90(%rsp)
movl $0x10, 0x3d8c(%rsp)
movq 0x3d90(%rsp), %rax
movslq 0x3d8c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d8c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6d8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1738(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1255733
movq 0x6d8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1750(%rsp)
movb $0x1, 0x2913(%rsp)
testb $0x1, 0x2913(%rsp)
jne 0x125586e
leaq 0x1710(%rsp), %rax
movq %rax, 0x2928(%rsp)
movq 0x2928(%rsp), %rax
movq %rax, 0x3ea0(%rsp)
movq 0x3ea0(%rsp), %rax
movq %rax, 0x6c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1255811
movq 0x6c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e9c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e9c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e98(%rsp)
cmpl $0x1, 0x3e98(%rsp)
jne 0x1255811
movq 0x6c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12557e2
movq 0x6c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12557e0
jmp 0x125580f
movq 0x6c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48b0(%rsp)
cmpq $0x0, 0x48b0(%rsp)
je 0x125580d
movq 0x48b0(%rsp), %rdi
callq 0x5f480
jmp 0x125580f
jmp 0x1255811
movq 0x6c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125586c
movq %rax, %rdi
callq 0x678a0
jmp 0x125586e
leaq 0x1710(%rsp), %rax
movq %rax, 0x2ab8(%rsp)
movq 0x2ab8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6b8(%rsp)
leaq 0x1710(%rsp), %rax
movq %rax, 0x2610(%rsp)
movq 0x2610(%rsp), %rax
movq %rax, 0x41d0(%rsp)
movq 0x41d0(%rsp), %rax
movq %rax, 0x6c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1255959
movq 0x6c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41cc(%rsp) # imm = 0xFFFFFFFF
movl 0x41cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41c8(%rsp)
cmpl $0x1, 0x41c8(%rsp)
jne 0x1255959
movq 0x6c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125592a
movq 0x6c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1255928
jmp 0x1255957
movq 0x6c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4718(%rsp)
cmpq $0x0, 0x4718(%rsp)
je 0x1255955
movq 0x4718(%rsp), %rdi
callq 0x5f480
jmp 0x1255957
jmp 0x1255959
movq 0x6c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12559b4
movq %rax, %rdi
callq 0x678a0
movq 0x6b8(%rsp), %rax
movq %rax, 0x1758(%rsp)
movl $0x0, 0x170c(%rsp)
movl 0x170c(%rsp), %eax
cmpl 0x1ecc(%rsp), %eax
jge 0x1255a33
movq 0x17f8(%rsp), %rsi
movq 0x17a8(%rsp), %rdx
movslq 0x170c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x12780f0
movq 0x1758(%rsp), %rax
movslq 0x170c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x170c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x170c(%rsp)
jmp 0x12559cf
jmp 0x1255a35
movl 0x1800(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1800(%rsp)
jmp 0x1254cc9
movl $0x0, 0x1f24(%rsp)
jmp 0x1261ae5
movl 0x1edc(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jne 0x12564c7
movl 0x1ed8(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jne 0x12564c7
cmpl $0x1, 0x1eec(%rsp)
jne 0x12564c7
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed0(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fb8(%rsp)
movq 0x1fb8(%rsp), %rcx
movq %rcx, 0x6a8(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x6b7(%rsp)
je 0x1255b28
movq 0x6a8(%rsp), %rax
movq %rax, 0x2d30(%rsp)
movq 0x2d30(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x6b7(%rsp)
movb 0x6b7(%rsp), %al
testb $0x1, %al
jne 0x1255b35
jmp 0x1255b45
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1261ae5
movl $0x0, 0x1708(%rsp)
movl 0x1708(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x12564b7
movq 0x1f18(%rsp), %rax
movq %rax, 0x23d0(%rsp)
movq 0x23d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1700(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1708(%rsp), %eax
leaq 0x16b0(%rsp), %rdx
movq %rdx, 0x21c8(%rsp)
movq %rcx, 0x21c0(%rsp)
movl %eax, 0x21bc(%rsp)
movq 0x21c0(%rsp), %rax
movq %rax, 0x6a0(%rsp)
movb $0x0, 0x21bb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x21bc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x16b0(%rsp), %r10
movq %r10, 0x3648(%rsp)
movl %r9d, 0x3644(%rsp)
movl %r8d, 0x3640(%rsp)
movl %edi, 0x363c(%rsp)
movq %rsi, 0x3630(%rsp)
movq %rdx, 0x3628(%rsp)
movl %ecx, 0x3624(%rsp)
movq %rax, 0x3618(%rsp)
movq 0x3648(%rsp), %rcx
movq %rcx, 0x698(%rsp)
movq 0x3630(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3628(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3624(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3618(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3644(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3640(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x363c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3bb0(%rsp)
movl $0x10, 0x3bac(%rsp)
movq 0x3bb0(%rsp), %rax
movslq 0x3bac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6a0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x16d8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1255d43
movq 0x6a0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x16f0(%rsp)
movb $0x1, 0x21bb(%rsp)
testb $0x1, 0x21bb(%rsp)
jne 0x1255e7e
leaq 0x16b0(%rsp), %rax
movq %rax, 0x24c0(%rsp)
movq 0x24c0(%rsp), %rax
movq %rax, 0x4470(%rsp)
movq 0x4470(%rsp), %rax
movq %rax, 0x690(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1255e21
movq 0x690(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x446c(%rsp) # imm = 0xFFFFFFFF
movl 0x446c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4468(%rsp)
cmpl $0x1, 0x4468(%rsp)
jne 0x1255e21
movq 0x690(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1255df2
movq 0x690(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1255df0
jmp 0x1255e1f
movq 0x690(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45c8(%rsp)
cmpq $0x0, 0x45c8(%rsp)
je 0x1255e1d
movq 0x45c8(%rsp), %rdi
callq 0x5f480
jmp 0x1255e1f
jmp 0x1255e21
movq 0x690(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1255e7c
movq %rax, %rdi
callq 0x678a0
jmp 0x1255e7e
leaq 0x16b0(%rsp), %rax
movq %rax, 0x23c8(%rsp)
movq 0x23c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x680(%rsp)
leaq 0x16b0(%rsp), %rax
movq %rax, 0x2618(%rsp)
movq 0x2618(%rsp), %rax
movq %rax, 0x41c0(%rsp)
movq 0x41c0(%rsp), %rax
movq %rax, 0x688(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1255f69
movq 0x688(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41bc(%rsp) # imm = 0xFFFFFFFF
movl 0x41bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41b8(%rsp)
cmpl $0x1, 0x41b8(%rsp)
jne 0x1255f69
movq 0x688(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1255f3a
movq 0x688(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1255f38
jmp 0x1255f67
movq 0x688(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4720(%rsp)
cmpq $0x0, 0x4720(%rsp)
je 0x1255f65
movq 0x4720(%rsp), %rdi
callq 0x5f480
jmp 0x1255f67
jmp 0x1255f69
movq 0x688(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1255fc4
movq %rax, %rdi
callq 0x678a0
movq 0x680(%rsp), %rax
movq %rax, 0x16f8(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1708(%rsp), %eax
leaq 0x1660(%rsp), %rdx
movq %rdx, 0x2900(%rsp)
movq %rcx, 0x28f8(%rsp)
movl %eax, 0x28f4(%rsp)
movq 0x28f8(%rsp), %rax
movq %rax, 0x678(%rsp)
movb $0x0, 0x28f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x28f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1660(%rsp), %r10
movq %r10, 0x2ff0(%rsp)
movl %r9d, 0x2fec(%rsp)
movl %r8d, 0x2fe8(%rsp)
movl %edi, 0x2fe4(%rsp)
movq %rsi, 0x2fd8(%rsp)
movq %rdx, 0x2fd0(%rsp)
movl %ecx, 0x2fcc(%rsp)
movq %rax, 0x2fc0(%rsp)
movq 0x2ff0(%rsp), %rcx
movq %rcx, 0x670(%rsp)
movq 0x2fd8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2fd0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2fcc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2fc0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2fec(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2fe8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2fe4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d80(%rsp)
movl $0x10, 0x3d7c(%rsp)
movq 0x3d80(%rsp), %rax
movslq 0x3d7c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d7c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x678(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1688(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1256190
movq 0x678(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x16a0(%rsp)
movb $0x1, 0x28f3(%rsp)
testb $0x1, 0x28f3(%rsp)
jne 0x12562cb
leaq 0x1660(%rsp), %rax
movq %rax, 0x2908(%rsp)
movq 0x2908(%rsp), %rax
movq %rax, 0x3eb0(%rsp)
movq 0x3eb0(%rsp), %rax
movq %rax, 0x668(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125626e
movq 0x668(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3eac(%rsp) # imm = 0xFFFFFFFF
movl 0x3eac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ea8(%rsp)
cmpl $0x1, 0x3ea8(%rsp)
jne 0x125626e
movq 0x668(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125623f
movq 0x668(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x125623d
jmp 0x125626c
movq 0x668(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48a8(%rsp)
cmpq $0x0, 0x48a8(%rsp)
je 0x125626a
movq 0x48a8(%rsp), %rdi
callq 0x5f480
jmp 0x125626c
jmp 0x125626e
movq 0x668(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12562c9
movq %rax, %rdi
callq 0x678a0
jmp 0x12562cb
leaq 0x1660(%rsp), %rax
movq %rax, 0x2ab0(%rsp)
movq 0x2ab0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x658(%rsp)
leaq 0x1660(%rsp), %rax
movq %rax, 0x2620(%rsp)
movq 0x2620(%rsp), %rax
movq %rax, 0x41b0(%rsp)
movq 0x41b0(%rsp), %rax
movq %rax, 0x660(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12563b6
movq 0x660(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41ac(%rsp) # imm = 0xFFFFFFFF
movl 0x41ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41a8(%rsp)
cmpl $0x1, 0x41a8(%rsp)
jne 0x12563b6
movq 0x660(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1256387
movq 0x660(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1256385
jmp 0x12563b4
movq 0x660(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4728(%rsp)
cmpq $0x0, 0x4728(%rsp)
je 0x12563b2
movq 0x4728(%rsp), %rdi
callq 0x5f480
jmp 0x12563b4
jmp 0x12563b6
movq 0x660(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1256411
movq %rax, %rdi
callq 0x678a0
movq 0x658(%rsp), %rax
movq %rax, 0x16a8(%rsp)
movl $0x0, 0x165c(%rsp)
movl 0x165c(%rsp), %eax
cmpl 0x1ecc(%rsp), %eax
jge 0x125649f
movq 0x1700(%rsp), %rsi
movslq 0x165c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x16f8(%rsp), %rdx
movslq 0x165c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x12780f0
movq 0x16a8(%rsp), %rax
movslq 0x165c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x165c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x165c(%rsp)
jmp 0x125642c
jmp 0x12564a1
movl 0x1708(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1708(%rsp)
jmp 0x1255b50
movl $0x0, 0x1f24(%rsp)
jmp 0x1261ae5
cmpl $0x1, 0x1ef8(%rsp)
je 0x12573f1
cmpl $0x1, 0x1edc(%rsp)
jne 0x12573f1
movl 0x1ed8(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jne 0x12573f1
movl 0x1ed0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jne 0x12573f1
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1eec(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fb0(%rsp)
movq 0x1fb0(%rsp), %rcx
movq %rcx, 0x648(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x657(%rsp)
je 0x12565a2
movq 0x648(%rsp), %rax
movq %rax, 0x2d38(%rsp)
movq 0x2d38(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x657(%rsp)
movb 0x657(%rsp), %al
testb $0x1, %al
jne 0x12565af
jmp 0x12565bf
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1261ae5
movl $0x0, 0x1658(%rsp)
movl 0x1658(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x12573e1
movq 0x1f18(%rsp), %rcx
movl 0x1658(%rsp), %eax
leaq 0x1608(%rsp), %rdx
movq %rdx, 0x21b0(%rsp)
movq %rcx, 0x21a8(%rsp)
movl %eax, 0x21a4(%rsp)
movq 0x21a8(%rsp), %rax
movq %rax, 0x640(%rsp)
movb $0x0, 0x21a3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x21a4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1608(%rsp), %r10
movq %r10, 0x3680(%rsp)
movl %r9d, 0x367c(%rsp)
movl %r8d, 0x3678(%rsp)
movl %edi, 0x3674(%rsp)
movq %rsi, 0x3668(%rsp)
movq %rdx, 0x3660(%rsp)
movl %ecx, 0x365c(%rsp)
movq %rax, 0x3650(%rsp)
movq 0x3680(%rsp), %rcx
movq %rcx, 0x638(%rsp)
movq 0x3668(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3660(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x365c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3650(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x367c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3678(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3674(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ba0(%rsp)
movl $0x10, 0x3b9c(%rsp)
movq 0x3ba0(%rsp), %rax
movslq 0x3b9c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b9c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x640(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1630(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x125679a
movq 0x640(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1648(%rsp)
movb $0x1, 0x21a3(%rsp)
testb $0x1, 0x21a3(%rsp)
jne 0x12568d5
leaq 0x1608(%rsp), %rax
movq %rax, 0x24c8(%rsp)
movq 0x24c8(%rsp), %rax
movq %rax, 0x4460(%rsp)
movq 0x4460(%rsp), %rax
movq %rax, 0x630(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1256878
movq 0x630(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x445c(%rsp) # imm = 0xFFFFFFFF
movl 0x445c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4458(%rsp)
cmpl $0x1, 0x4458(%rsp)
jne 0x1256878
movq 0x630(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1256849
movq 0x630(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1256847
jmp 0x1256876
movq 0x630(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45d0(%rsp)
cmpq $0x0, 0x45d0(%rsp)
je 0x1256874
movq 0x45d0(%rsp), %rdi
callq 0x5f480
jmp 0x1256876
jmp 0x1256878
movq 0x630(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12568d3
movq %rax, %rdi
callq 0x678a0
jmp 0x12568d5
leaq 0x1608(%rsp), %rax
movq %rax, 0x23c0(%rsp)
movq 0x23c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x620(%rsp)
leaq 0x1608(%rsp), %rax
movq %rax, 0x2628(%rsp)
movq 0x2628(%rsp), %rax
movq %rax, 0x41a0(%rsp)
movq 0x41a0(%rsp), %rax
movq %rax, 0x628(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12569c0
movq 0x628(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x419c(%rsp) # imm = 0xFFFFFFFF
movl 0x419c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4198(%rsp)
cmpl $0x1, 0x4198(%rsp)
jne 0x12569c0
movq 0x628(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1256991
movq 0x628(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x125698f
jmp 0x12569be
movq 0x628(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4730(%rsp)
cmpq $0x0, 0x4730(%rsp)
je 0x12569bc
movq 0x4730(%rsp), %rdi
callq 0x5f480
jmp 0x12569be
jmp 0x12569c0
movq 0x628(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1256a1b
movq %rax, %rdi
callq 0x678a0
movq 0x620(%rsp), %rax
movq %rax, 0x1650(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1658(%rsp), %eax
leaq 0x15b8(%rsp), %rdx
movq %rdx, 0x2198(%rsp)
movq %rcx, 0x2190(%rsp)
movl %eax, 0x218c(%rsp)
movq 0x2190(%rsp), %rax
movq %rax, 0x618(%rsp)
movb $0x0, 0x218b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x218c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x15b8(%rsp), %r10
movq %r10, 0x36b8(%rsp)
movl %r9d, 0x36b4(%rsp)
movl %r8d, 0x36b0(%rsp)
movl %edi, 0x36ac(%rsp)
movq %rsi, 0x36a0(%rsp)
movq %rdx, 0x3698(%rsp)
movl %ecx, 0x3694(%rsp)
movq %rax, 0x3688(%rsp)
movq 0x36b8(%rsp), %rcx
movq %rcx, 0x610(%rsp)
movq 0x36a0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3698(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3694(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3688(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x36b4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x36b0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x36ac(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b90(%rsp)
movl $0x10, 0x3b8c(%rsp)
movq 0x3b90(%rsp), %rax
movslq 0x3b8c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b8c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x618(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x15e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1256be7
movq 0x618(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x15f8(%rsp)
movb $0x1, 0x218b(%rsp)
testb $0x1, 0x218b(%rsp)
jne 0x1256d22
leaq 0x15b8(%rsp), %rax
movq %rax, 0x24d0(%rsp)
movq 0x24d0(%rsp), %rax
movq %rax, 0x4450(%rsp)
movq 0x4450(%rsp), %rax
movq %rax, 0x608(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1256cc5
movq 0x608(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x444c(%rsp) # imm = 0xFFFFFFFF
movl 0x444c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4448(%rsp)
cmpl $0x1, 0x4448(%rsp)
jne 0x1256cc5
movq 0x608(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1256c96
movq 0x608(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1256c94
jmp 0x1256cc3
movq 0x608(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45d8(%rsp)
cmpq $0x0, 0x45d8(%rsp)
je 0x1256cc1
movq 0x45d8(%rsp), %rdi
callq 0x5f480
jmp 0x1256cc3
jmp 0x1256cc5
movq 0x608(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1256d20
movq %rax, %rdi
callq 0x678a0
jmp 0x1256d22
leaq 0x15b8(%rsp), %rax
movq %rax, 0x23b8(%rsp)
movq 0x23b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5f8(%rsp)
leaq 0x15b8(%rsp), %rax
movq %rax, 0x2630(%rsp)
movq 0x2630(%rsp), %rax
movq %rax, 0x4190(%rsp)
movq 0x4190(%rsp), %rax
movq %rax, 0x600(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1256e0d
movq 0x600(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x418c(%rsp) # imm = 0xFFFFFFFF
movl 0x418c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4188(%rsp)
cmpl $0x1, 0x4188(%rsp)
jne 0x1256e0d
movq 0x600(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1256dde
movq 0x600(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1256ddc
jmp 0x1256e0b
movq 0x600(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4738(%rsp)
cmpq $0x0, 0x4738(%rsp)
je 0x1256e09
movq 0x4738(%rsp), %rdi
callq 0x5f480
jmp 0x1256e0b
jmp 0x1256e0d
movq 0x600(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1256e68
movq %rax, %rdi
callq 0x678a0
movq 0x5f8(%rsp), %rax
movq %rax, 0x1600(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1658(%rsp), %eax
leaq 0x1568(%rsp), %rdx
movq %rdx, 0x28e0(%rsp)
movq %rcx, 0x28d8(%rsp)
movl %eax, 0x28d4(%rsp)
movq 0x28d8(%rsp), %rax
movq %rax, 0x5f0(%rsp)
movb $0x0, 0x28d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x28d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1568(%rsp), %r10
movq %r10, 0x3028(%rsp)
movl %r9d, 0x3024(%rsp)
movl %r8d, 0x3020(%rsp)
movl %edi, 0x301c(%rsp)
movq %rsi, 0x3010(%rsp)
movq %rdx, 0x3008(%rsp)
movl %ecx, 0x3004(%rsp)
movq %rax, 0x2ff8(%rsp)
movq 0x3028(%rsp), %rcx
movq %rcx, 0x5e8(%rsp)
movq 0x3010(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3008(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3004(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ff8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3024(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3020(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x301c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d70(%rsp)
movl $0x10, 0x3d6c(%rsp)
movq 0x3d70(%rsp), %rax
movslq 0x3d6c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d6c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5f0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1590(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1257034
movq 0x5f0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x15a8(%rsp)
movb $0x1, 0x28d3(%rsp)
testb $0x1, 0x28d3(%rsp)
jne 0x125716f
leaq 0x1568(%rsp), %rax
movq %rax, 0x28e8(%rsp)
movq 0x28e8(%rsp), %rax
movq %rax, 0x3ec0(%rsp)
movq 0x3ec0(%rsp), %rax
movq %rax, 0x5e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1257112
movq 0x5e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ebc(%rsp) # imm = 0xFFFFFFFF
movl 0x3ebc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3eb8(%rsp)
cmpl $0x1, 0x3eb8(%rsp)
jne 0x1257112
movq 0x5e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12570e3
movq 0x5e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12570e1
jmp 0x1257110
movq 0x5e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48a0(%rsp)
cmpq $0x0, 0x48a0(%rsp)
je 0x125710e
movq 0x48a0(%rsp), %rdi
callq 0x5f480
jmp 0x1257110
jmp 0x1257112
movq 0x5e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125716d
movq %rax, %rdi
callq 0x678a0
jmp 0x125716f
leaq 0x1568(%rsp), %rax
movq %rax, 0x2aa8(%rsp)
movq 0x2aa8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5d0(%rsp)
leaq 0x1568(%rsp), %rax
movq %rax, 0x2638(%rsp)
movq 0x2638(%rsp), %rax
movq %rax, 0x4180(%rsp)
movq 0x4180(%rsp), %rax
movq %rax, 0x5d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125725a
movq 0x5d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x417c(%rsp) # imm = 0xFFFFFFFF
movl 0x417c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4178(%rsp)
cmpl $0x1, 0x4178(%rsp)
jne 0x125725a
movq 0x5d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125722b
movq 0x5d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1257229
jmp 0x1257258
movq 0x5d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4740(%rsp)
cmpq $0x0, 0x4740(%rsp)
je 0x1257256
movq 0x4740(%rsp), %rdi
callq 0x5f480
jmp 0x1257258
jmp 0x125725a
movq 0x5d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12572b5
movq %rax, %rdi
callq 0x678a0
movq 0x5d0(%rsp), %rax
movq %rax, 0x15b0(%rsp)
movl $0x0, 0x1564(%rsp)
movl 0x1564(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jge 0x12573c9
movq 0x1600(%rsp), %rax
movslq 0x1564(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x1560(%rsp)
movl $0x0, 0x155c(%rsp)
movl 0x155c(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x1257371
movq 0x1650(%rsp), %rsi
movslq 0x155c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0x1560(%rsp), %rdx
callq 0x12780f0
movq 0x15b0(%rsp), %rax
movslq 0x155c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x155c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x155c(%rsp)
jmp 0x125730d
movl 0x1ef8(%rsp), %ecx
movq 0x1650(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1650(%rsp)
movl 0x1ef8(%rsp), %ecx
movq 0x15b0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x15b0(%rsp)
movl 0x1564(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1564(%rsp)
jmp 0x12572d0
jmp 0x12573cb
movl 0x1658(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1658(%rsp)
jmp 0x12565ca
movl $0x0, 0x1f24(%rsp)
jmp 0x1261ae5
movl 0x1edc(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jne 0x125830c
cmpl $0x1, 0x1ef4(%rsp)
je 0x125830c
cmpl $0x1, 0x1ed8(%rsp)
jne 0x125830c
movl 0x1ed0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jne 0x125830c
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1eec(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fa8(%rsp)
movq 0x1fa8(%rsp), %rcx
movq %rcx, 0x5c0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x5cf(%rsp)
je 0x12574cc
movq 0x5c0(%rsp), %rax
movq %rax, 0x2d40(%rsp)
movq 0x2d40(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x5cf(%rsp)
movb 0x5cf(%rsp), %al
testb $0x1, %al
jne 0x12574d9
jmp 0x12574e9
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1261ae5
movl $0x0, 0x1558(%rsp)
movl 0x1558(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x12582fc
movq 0x1f18(%rsp), %rcx
movl 0x1558(%rsp), %eax
leaq 0x1508(%rsp), %rdx
movq %rdx, 0x2180(%rsp)
movq %rcx, 0x2178(%rsp)
movl %eax, 0x2174(%rsp)
movq 0x2178(%rsp), %rax
movq %rax, 0x5b8(%rsp)
movb $0x0, 0x2173(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2174(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1508(%rsp), %r10
movq %r10, 0x36f0(%rsp)
movl %r9d, 0x36ec(%rsp)
movl %r8d, 0x36e8(%rsp)
movl %edi, 0x36e4(%rsp)
movq %rsi, 0x36d8(%rsp)
movq %rdx, 0x36d0(%rsp)
movl %ecx, 0x36cc(%rsp)
movq %rax, 0x36c0(%rsp)
movq 0x36f0(%rsp), %rcx
movq %rcx, 0x5b0(%rsp)
movq 0x36d8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x36d0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x36cc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x36c0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x36ec(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x36e8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x36e4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b80(%rsp)
movl $0x10, 0x3b7c(%rsp)
movq 0x3b80(%rsp), %rax
movslq 0x3b7c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b7c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5b8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1530(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12576c4
movq 0x5b8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1548(%rsp)
movb $0x1, 0x2173(%rsp)
testb $0x1, 0x2173(%rsp)
jne 0x12577ff
leaq 0x1508(%rsp), %rax
movq %rax, 0x24d8(%rsp)
movq 0x24d8(%rsp), %rax
movq %rax, 0x4440(%rsp)
movq 0x4440(%rsp), %rax
movq %rax, 0x5a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12577a2
movq 0x5a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x443c(%rsp) # imm = 0xFFFFFFFF
movl 0x443c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4438(%rsp)
cmpl $0x1, 0x4438(%rsp)
jne 0x12577a2
movq 0x5a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1257773
movq 0x5a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1257771
jmp 0x12577a0
movq 0x5a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45e0(%rsp)
cmpq $0x0, 0x45e0(%rsp)
je 0x125779e
movq 0x45e0(%rsp), %rdi
callq 0x5f480
jmp 0x12577a0
jmp 0x12577a2
movq 0x5a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12577fd
movq %rax, %rdi
callq 0x678a0
jmp 0x12577ff
leaq 0x1508(%rsp), %rax
movq %rax, 0x23b0(%rsp)
movq 0x23b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x598(%rsp)
leaq 0x1508(%rsp), %rax
movq %rax, 0x2640(%rsp)
movq 0x2640(%rsp), %rax
movq %rax, 0x4170(%rsp)
movq 0x4170(%rsp), %rax
movq %rax, 0x5a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12578ea
movq 0x5a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x416c(%rsp) # imm = 0xFFFFFFFF
movl 0x416c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4168(%rsp)
cmpl $0x1, 0x4168(%rsp)
jne 0x12578ea
movq 0x5a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12578bb
movq 0x5a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12578b9
jmp 0x12578e8
movq 0x5a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4748(%rsp)
cmpq $0x0, 0x4748(%rsp)
je 0x12578e6
movq 0x4748(%rsp), %rdi
callq 0x5f480
jmp 0x12578e8
jmp 0x12578ea
movq 0x5a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1257945
movq %rax, %rdi
callq 0x678a0
movq 0x598(%rsp), %rax
movq %rax, 0x1550(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1558(%rsp), %eax
leaq 0x14b8(%rsp), %rdx
movq %rdx, 0x2168(%rsp)
movq %rcx, 0x2160(%rsp)
movl %eax, 0x215c(%rsp)
movq 0x2160(%rsp), %rax
movq %rax, 0x590(%rsp)
movb $0x0, 0x215b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x215c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x14b8(%rsp), %r10
movq %r10, 0x3728(%rsp)
movl %r9d, 0x3724(%rsp)
movl %r8d, 0x3720(%rsp)
movl %edi, 0x371c(%rsp)
movq %rsi, 0x3710(%rsp)
movq %rdx, 0x3708(%rsp)
movl %ecx, 0x3704(%rsp)
movq %rax, 0x36f8(%rsp)
movq 0x3728(%rsp), %rcx
movq %rcx, 0x588(%rsp)
movq 0x3710(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3708(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3704(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x36f8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3724(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3720(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x371c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b70(%rsp)
movl $0x10, 0x3b6c(%rsp)
movq 0x3b70(%rsp), %rax
movslq 0x3b6c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b6c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x590(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x14e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1257b11
movq 0x590(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x14f8(%rsp)
movb $0x1, 0x215b(%rsp)
testb $0x1, 0x215b(%rsp)
jne 0x1257c4c
leaq 0x14b8(%rsp), %rax
movq %rax, 0x24e0(%rsp)
movq 0x24e0(%rsp), %rax
movq %rax, 0x4430(%rsp)
movq 0x4430(%rsp), %rax
movq %rax, 0x580(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1257bef
movq 0x580(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x442c(%rsp) # imm = 0xFFFFFFFF
movl 0x442c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4428(%rsp)
cmpl $0x1, 0x4428(%rsp)
jne 0x1257bef
movq 0x580(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1257bc0
movq 0x580(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1257bbe
jmp 0x1257bed
movq 0x580(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45e8(%rsp)
cmpq $0x0, 0x45e8(%rsp)
je 0x1257beb
movq 0x45e8(%rsp), %rdi
callq 0x5f480
jmp 0x1257bed
jmp 0x1257bef
movq 0x580(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1257c4a
movq %rax, %rdi
callq 0x678a0
jmp 0x1257c4c
leaq 0x14b8(%rsp), %rax
movq %rax, 0x23a8(%rsp)
movq 0x23a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x570(%rsp)
leaq 0x14b8(%rsp), %rax
movq %rax, 0x2648(%rsp)
movq 0x2648(%rsp), %rax
movq %rax, 0x4160(%rsp)
movq 0x4160(%rsp), %rax
movq %rax, 0x578(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1257d37
movq 0x578(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x415c(%rsp) # imm = 0xFFFFFFFF
movl 0x415c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4158(%rsp)
cmpl $0x1, 0x4158(%rsp)
jne 0x1257d37
movq 0x578(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1257d08
movq 0x578(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1257d06
jmp 0x1257d35
movq 0x578(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4750(%rsp)
cmpq $0x0, 0x4750(%rsp)
je 0x1257d33
movq 0x4750(%rsp), %rdi
callq 0x5f480
jmp 0x1257d35
jmp 0x1257d37
movq 0x578(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1257d92
movq %rax, %rdi
callq 0x678a0
movq 0x570(%rsp), %rax
movq %rax, 0x1500(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1558(%rsp), %eax
leaq 0x1468(%rsp), %rdx
movq %rdx, 0x28c0(%rsp)
movq %rcx, 0x28b8(%rsp)
movl %eax, 0x28b4(%rsp)
movq 0x28b8(%rsp), %rax
movq %rax, 0x568(%rsp)
movb $0x0, 0x28b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x28b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1468(%rsp), %r10
movq %r10, 0x3060(%rsp)
movl %r9d, 0x305c(%rsp)
movl %r8d, 0x3058(%rsp)
movl %edi, 0x3054(%rsp)
movq %rsi, 0x3048(%rsp)
movq %rdx, 0x3040(%rsp)
movl %ecx, 0x303c(%rsp)
movq %rax, 0x3030(%rsp)
movq 0x3060(%rsp), %rcx
movq %rcx, 0x560(%rsp)
movq 0x3048(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3040(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x303c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3030(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x305c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3058(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3054(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d60(%rsp)
movl $0x10, 0x3d5c(%rsp)
movq 0x3d60(%rsp), %rax
movslq 0x3d5c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d5c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x568(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1490(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1257f5e
movq 0x568(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x14a8(%rsp)
movb $0x1, 0x28b3(%rsp)
testb $0x1, 0x28b3(%rsp)
jne 0x1258099
leaq 0x1468(%rsp), %rax
movq %rax, 0x28c8(%rsp)
movq 0x28c8(%rsp), %rax
movq %rax, 0x3ed0(%rsp)
movq 0x3ed0(%rsp), %rax
movq %rax, 0x558(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125803c
movq 0x558(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ecc(%rsp) # imm = 0xFFFFFFFF
movl 0x3ecc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ec8(%rsp)
cmpl $0x1, 0x3ec8(%rsp)
jne 0x125803c
movq 0x558(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125800d
movq 0x558(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x125800b
jmp 0x125803a
movq 0x558(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4898(%rsp)
cmpq $0x0, 0x4898(%rsp)
je 0x1258038
movq 0x4898(%rsp), %rdi
callq 0x5f480
jmp 0x125803a
jmp 0x125803c
movq 0x558(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1258097
movq %rax, %rdi
callq 0x678a0
jmp 0x1258099
leaq 0x1468(%rsp), %rax
movq %rax, 0x2aa0(%rsp)
movq 0x2aa0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x548(%rsp)
leaq 0x1468(%rsp), %rax
movq %rax, 0x2650(%rsp)
movq 0x2650(%rsp), %rax
movq %rax, 0x4150(%rsp)
movq 0x4150(%rsp), %rax
movq %rax, 0x550(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1258184
movq 0x550(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x414c(%rsp) # imm = 0xFFFFFFFF
movl 0x414c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4148(%rsp)
cmpl $0x1, 0x4148(%rsp)
jne 0x1258184
movq 0x550(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1258155
movq 0x550(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1258153
jmp 0x1258182
movq 0x550(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4758(%rsp)
cmpq $0x0, 0x4758(%rsp)
je 0x1258180
movq 0x4758(%rsp), %rdi
callq 0x5f480
jmp 0x1258182
jmp 0x1258184
movq 0x550(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12581df
movq %rax, %rdi
callq 0x678a0
movq 0x548(%rsp), %rax
movq %rax, 0x14b0(%rsp)
movl $0x0, 0x1464(%rsp)
movl 0x1464(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jge 0x12582e4
movl $0x0, 0x1460(%rsp)
movl 0x1460(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x125828c
movq 0x1550(%rsp), %rsi
movslq 0x1460(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1500(%rsp), %rdx
movslq 0x1460(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x12780f0
movq 0x14b0(%rsp), %rax
movslq 0x1460(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1460(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1460(%rsp)
jmp 0x1258219
movl 0x1ef8(%rsp), %ecx
movq 0x1550(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1550(%rsp)
movl 0x1ef8(%rsp), %ecx
movq 0x14b0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x14b0(%rsp)
movl 0x1464(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1464(%rsp)
jmp 0x12581fa
jmp 0x12582e6
movl 0x1558(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1558(%rsp)
jmp 0x12574f4
movl $0x0, 0x1f24(%rsp)
jmp 0x1261ae5
cmpl $0x1, 0x1edc(%rsp)
je 0x1259236
cmpl $0x1, 0x1ef8(%rsp)
jne 0x1259236
movl 0x1ed8(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jne 0x1259236
movl 0x1ed0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jne 0x1259236
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed0(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fa0(%rsp)
movq 0x1fa0(%rsp), %rcx
movq %rcx, 0x538(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x547(%rsp)
je 0x12583e7
movq 0x538(%rsp), %rax
movq %rax, 0x2d48(%rsp)
movq 0x2d48(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x547(%rsp)
movb 0x547(%rsp), %al
testb $0x1, %al
jne 0x12583f4
jmp 0x1258404
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1261ae5
movl $0x0, 0x145c(%rsp)
movl 0x145c(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x1259226
movq 0x1f18(%rsp), %rcx
movl 0x145c(%rsp), %eax
leaq 0x1408(%rsp), %rdx
movq %rdx, 0x2150(%rsp)
movq %rcx, 0x2148(%rsp)
movl %eax, 0x2144(%rsp)
movq 0x2148(%rsp), %rax
movq %rax, 0x530(%rsp)
movb $0x0, 0x2143(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2144(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1408(%rsp), %r10
movq %r10, 0x3760(%rsp)
movl %r9d, 0x375c(%rsp)
movl %r8d, 0x3758(%rsp)
movl %edi, 0x3754(%rsp)
movq %rsi, 0x3748(%rsp)
movq %rdx, 0x3740(%rsp)
movl %ecx, 0x373c(%rsp)
movq %rax, 0x3730(%rsp)
movq 0x3760(%rsp), %rcx
movq %rcx, 0x528(%rsp)
movq 0x3748(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3740(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x373c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3730(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x375c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3758(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3754(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b60(%rsp)
movl $0x10, 0x3b5c(%rsp)
movq 0x3b60(%rsp), %rax
movslq 0x3b5c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b5c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x530(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1430(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12585df
movq 0x530(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1448(%rsp)
movb $0x1, 0x2143(%rsp)
testb $0x1, 0x2143(%rsp)
jne 0x125871a
leaq 0x1408(%rsp), %rax
movq %rax, 0x24e8(%rsp)
movq 0x24e8(%rsp), %rax
movq %rax, 0x4420(%rsp)
movq 0x4420(%rsp), %rax
movq %rax, 0x520(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12586bd
movq 0x520(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x441c(%rsp) # imm = 0xFFFFFFFF
movl 0x441c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4418(%rsp)
cmpl $0x1, 0x4418(%rsp)
jne 0x12586bd
movq 0x520(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125868e
movq 0x520(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x125868c
jmp 0x12586bb
movq 0x520(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45f0(%rsp)
cmpq $0x0, 0x45f0(%rsp)
je 0x12586b9
movq 0x45f0(%rsp), %rdi
callq 0x5f480
jmp 0x12586bb
jmp 0x12586bd
movq 0x520(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1258718
movq %rax, %rdi
callq 0x678a0
jmp 0x125871a
leaq 0x1408(%rsp), %rax
movq %rax, 0x23a0(%rsp)
movq 0x23a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x510(%rsp)
leaq 0x1408(%rsp), %rax
movq %rax, 0x2658(%rsp)
movq 0x2658(%rsp), %rax
movq %rax, 0x4140(%rsp)
movq 0x4140(%rsp), %rax
movq %rax, 0x518(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1258805
movq 0x518(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x413c(%rsp) # imm = 0xFFFFFFFF
movl 0x413c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4138(%rsp)
cmpl $0x1, 0x4138(%rsp)
jne 0x1258805
movq 0x518(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12587d6
movq 0x518(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12587d4
jmp 0x1258803
movq 0x518(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4760(%rsp)
cmpq $0x0, 0x4760(%rsp)
je 0x1258801
movq 0x4760(%rsp), %rdi
callq 0x5f480
jmp 0x1258803
jmp 0x1258805
movq 0x518(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1258860
movq %rax, %rdi
callq 0x678a0
movq 0x510(%rsp), %rax
movq %rax, 0x1450(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x145c(%rsp), %eax
leaq 0x13b8(%rsp), %rdx
movq %rdx, 0x2138(%rsp)
movq %rcx, 0x2130(%rsp)
movl %eax, 0x212c(%rsp)
movq 0x2130(%rsp), %rax
movq %rax, 0x508(%rsp)
movb $0x0, 0x212b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x212c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x13b8(%rsp), %r10
movq %r10, 0x3798(%rsp)
movl %r9d, 0x3794(%rsp)
movl %r8d, 0x3790(%rsp)
movl %edi, 0x378c(%rsp)
movq %rsi, 0x3780(%rsp)
movq %rdx, 0x3778(%rsp)
movl %ecx, 0x3774(%rsp)
movq %rax, 0x3768(%rsp)
movq 0x3798(%rsp), %rcx
movq %rcx, 0x500(%rsp)
movq 0x3780(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3778(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3774(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3768(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3794(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3790(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x378c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b50(%rsp)
movl $0x10, 0x3b4c(%rsp)
movq 0x3b50(%rsp), %rax
movslq 0x3b4c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b4c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x508(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x13e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1258a2c
movq 0x508(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x13f8(%rsp)
movb $0x1, 0x212b(%rsp)
testb $0x1, 0x212b(%rsp)
jne 0x1258b67
leaq 0x13b8(%rsp), %rax
movq %rax, 0x24f0(%rsp)
movq 0x24f0(%rsp), %rax
movq %rax, 0x4410(%rsp)
movq 0x4410(%rsp), %rax
movq %rax, 0x4f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1258b0a
movq 0x4f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x440c(%rsp) # imm = 0xFFFFFFFF
movl 0x440c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4408(%rsp)
cmpl $0x1, 0x4408(%rsp)
jne 0x1258b0a
movq 0x4f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1258adb
movq 0x4f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1258ad9
jmp 0x1258b08
movq 0x4f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45f8(%rsp)
cmpq $0x0, 0x45f8(%rsp)
je 0x1258b06
movq 0x45f8(%rsp), %rdi
callq 0x5f480
jmp 0x1258b08
jmp 0x1258b0a
movq 0x4f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1258b65
movq %rax, %rdi
callq 0x678a0
jmp 0x1258b67
leaq 0x13b8(%rsp), %rax
movq %rax, 0x2398(%rsp)
movq 0x2398(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4e8(%rsp)
leaq 0x13b8(%rsp), %rax
movq %rax, 0x2660(%rsp)
movq 0x2660(%rsp), %rax
movq %rax, 0x4130(%rsp)
movq 0x4130(%rsp), %rax
movq %rax, 0x4f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1258c52
movq 0x4f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x412c(%rsp) # imm = 0xFFFFFFFF
movl 0x412c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4128(%rsp)
cmpl $0x1, 0x4128(%rsp)
jne 0x1258c52
movq 0x4f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1258c23
movq 0x4f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1258c21
jmp 0x1258c50
movq 0x4f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4768(%rsp)
cmpq $0x0, 0x4768(%rsp)
je 0x1258c4e
movq 0x4768(%rsp), %rdi
callq 0x5f480
jmp 0x1258c50
jmp 0x1258c52
movq 0x4f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1258cad
movq %rax, %rdi
callq 0x678a0
movq 0x4e8(%rsp), %rax
movq %rax, 0x1400(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x145c(%rsp), %eax
leaq 0x1368(%rsp), %rdx
movq %rdx, 0x28a0(%rsp)
movq %rcx, 0x2898(%rsp)
movl %eax, 0x2894(%rsp)
movq 0x2898(%rsp), %rax
movq %rax, 0x4e0(%rsp)
movb $0x0, 0x2893(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2894(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1368(%rsp), %r10
movq %r10, 0x3098(%rsp)
movl %r9d, 0x3094(%rsp)
movl %r8d, 0x3090(%rsp)
movl %edi, 0x308c(%rsp)
movq %rsi, 0x3080(%rsp)
movq %rdx, 0x3078(%rsp)
movl %ecx, 0x3074(%rsp)
movq %rax, 0x3068(%rsp)
movq 0x3098(%rsp), %rcx
movq %rcx, 0x4d8(%rsp)
movq 0x3080(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3078(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3074(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3068(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3094(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3090(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x308c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d50(%rsp)
movl $0x10, 0x3d4c(%rsp)
movq 0x3d50(%rsp), %rax
movslq 0x3d4c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d4c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4e0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1390(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1258e79
movq 0x4e0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x13a8(%rsp)
movb $0x1, 0x2893(%rsp)
testb $0x1, 0x2893(%rsp)
jne 0x1258fb4
leaq 0x1368(%rsp), %rax
movq %rax, 0x28a8(%rsp)
movq 0x28a8(%rsp), %rax
movq %rax, 0x3ee0(%rsp)
movq 0x3ee0(%rsp), %rax
movq %rax, 0x4d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1258f57
movq 0x4d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3edc(%rsp) # imm = 0xFFFFFFFF
movl 0x3edc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ed8(%rsp)
cmpl $0x1, 0x3ed8(%rsp)
jne 0x1258f57
movq 0x4d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1258f28
movq 0x4d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1258f26
jmp 0x1258f55
movq 0x4d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4890(%rsp)
cmpq $0x0, 0x4890(%rsp)
je 0x1258f53
movq 0x4890(%rsp), %rdi
callq 0x5f480
jmp 0x1258f55
jmp 0x1258f57
movq 0x4d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1258fb2
movq %rax, %rdi
callq 0x678a0
jmp 0x1258fb4
leaq 0x1368(%rsp), %rax
movq %rax, 0x2a98(%rsp)
movq 0x2a98(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4c0(%rsp)
leaq 0x1368(%rsp), %rax
movq %rax, 0x2668(%rsp)
movq 0x2668(%rsp), %rax
movq %rax, 0x4120(%rsp)
movq 0x4120(%rsp), %rax
movq %rax, 0x4c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125909f
movq 0x4c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x411c(%rsp) # imm = 0xFFFFFFFF
movl 0x411c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4118(%rsp)
cmpl $0x1, 0x4118(%rsp)
jne 0x125909f
movq 0x4c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1259070
movq 0x4c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x125906e
jmp 0x125909d
movq 0x4c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4770(%rsp)
cmpq $0x0, 0x4770(%rsp)
je 0x125909b
movq 0x4770(%rsp), %rdi
callq 0x5f480
jmp 0x125909d
jmp 0x125909f
movq 0x4c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12590fa
movq %rax, %rdi
callq 0x678a0
movq 0x4c0(%rsp), %rax
movq %rax, 0x13b0(%rsp)
movl $0x0, 0x1364(%rsp)
movl 0x1364(%rsp), %eax
cmpl 0x1ed8(%rsp), %eax
jge 0x125920e
movq 0x1450(%rsp), %rax
movslq 0x1364(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x1360(%rsp)
movl $0x0, 0x135c(%rsp)
movl 0x135c(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x12591b6
movq 0x1400(%rsp), %rdx
movslq 0x135c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0x1360(%rsp), %rsi
callq 0x12780f0
movq 0x13b0(%rsp), %rax
movslq 0x135c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x135c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x135c(%rsp)
jmp 0x1259152
movl 0x1edc(%rsp), %ecx
movq 0x1400(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1400(%rsp)
movl 0x1edc(%rsp), %ecx
movq 0x13b0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x13b0(%rsp)
movl 0x1364(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1364(%rsp)
jmp 0x1259115
jmp 0x1259210
movl 0x145c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x145c(%rsp)
jmp 0x125840f
movl $0x0, 0x1f24(%rsp)
jmp 0x1261ae5
movl 0x1edc(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jne 0x125a151
cmpl $0x1, 0x1ed8(%rsp)
je 0x125a151
cmpl $0x1, 0x1ef4(%rsp)
jne 0x125a151
movl 0x1ed0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jne 0x125a151
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed0(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f98(%rsp)
movq 0x1f98(%rsp), %rcx
movq %rcx, 0x4b0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x4bf(%rsp)
je 0x1259311
movq 0x4b0(%rsp), %rax
movq %rax, 0x2d50(%rsp)
movq 0x2d50(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x4bf(%rsp)
movb 0x4bf(%rsp), %al
testb $0x1, %al
jne 0x125931e
jmp 0x125932e
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1261ae5
movl $0x0, 0x1358(%rsp)
movl 0x1358(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x125a141
movq 0x1f18(%rsp), %rcx
movl 0x1358(%rsp), %eax
leaq 0x1308(%rsp), %rdx
movq %rdx, 0x2120(%rsp)
movq %rcx, 0x2118(%rsp)
movl %eax, 0x2114(%rsp)
movq 0x2118(%rsp), %rax
movq %rax, 0x4a8(%rsp)
movb $0x0, 0x2113(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2114(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1308(%rsp), %r10
movq %r10, 0x37d0(%rsp)
movl %r9d, 0x37cc(%rsp)
movl %r8d, 0x37c8(%rsp)
movl %edi, 0x37c4(%rsp)
movq %rsi, 0x37b8(%rsp)
movq %rdx, 0x37b0(%rsp)
movl %ecx, 0x37ac(%rsp)
movq %rax, 0x37a0(%rsp)
movq 0x37d0(%rsp), %rcx
movq %rcx, 0x4a0(%rsp)
movq 0x37b8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x37b0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x37ac(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x37a0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x37cc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x37c8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x37c4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b40(%rsp)
movl $0x10, 0x3b3c(%rsp)
movq 0x3b40(%rsp), %rax
movslq 0x3b3c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b3c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4a8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1330(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1259509
movq 0x4a8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1348(%rsp)
movb $0x1, 0x2113(%rsp)
testb $0x1, 0x2113(%rsp)
jne 0x1259644
leaq 0x1308(%rsp), %rax
movq %rax, 0x24f8(%rsp)
movq 0x24f8(%rsp), %rax
movq %rax, 0x4400(%rsp)
movq 0x4400(%rsp), %rax
movq %rax, 0x498(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12595e7
movq 0x498(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x43fc(%rsp) # imm = 0xFFFFFFFF
movl 0x43fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x43f8(%rsp)
cmpl $0x1, 0x43f8(%rsp)
jne 0x12595e7
movq 0x498(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12595b8
movq 0x498(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12595b6
jmp 0x12595e5
movq 0x498(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4600(%rsp)
cmpq $0x0, 0x4600(%rsp)
je 0x12595e3
movq 0x4600(%rsp), %rdi
callq 0x5f480
jmp 0x12595e5
jmp 0x12595e7
movq 0x498(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1259642
movq %rax, %rdi
callq 0x678a0
jmp 0x1259644
leaq 0x1308(%rsp), %rax
movq %rax, 0x2390(%rsp)
movq 0x2390(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x488(%rsp)
leaq 0x1308(%rsp), %rax
movq %rax, 0x2670(%rsp)
movq 0x2670(%rsp), %rax
movq %rax, 0x4110(%rsp)
movq 0x4110(%rsp), %rax
movq %rax, 0x490(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125972f
movq 0x490(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x410c(%rsp) # imm = 0xFFFFFFFF
movl 0x410c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4108(%rsp)
cmpl $0x1, 0x4108(%rsp)
jne 0x125972f
movq 0x490(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1259700
movq 0x490(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12596fe
jmp 0x125972d
movq 0x490(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4778(%rsp)
cmpq $0x0, 0x4778(%rsp)
je 0x125972b
movq 0x4778(%rsp), %rdi
callq 0x5f480
jmp 0x125972d
jmp 0x125972f
movq 0x490(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125978a
movq %rax, %rdi
callq 0x678a0
movq 0x488(%rsp), %rax
movq %rax, 0x1350(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1358(%rsp), %eax
leaq 0x12b8(%rsp), %rdx
movq %rdx, 0x2108(%rsp)
movq %rcx, 0x2100(%rsp)
movl %eax, 0x20fc(%rsp)
movq 0x2100(%rsp), %rax
movq %rax, 0x480(%rsp)
movb $0x0, 0x20fb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x20fc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x12b8(%rsp), %r10
movq %r10, 0x3808(%rsp)
movl %r9d, 0x3804(%rsp)
movl %r8d, 0x3800(%rsp)
movl %edi, 0x37fc(%rsp)
movq %rsi, 0x37f0(%rsp)
movq %rdx, 0x37e8(%rsp)
movl %ecx, 0x37e4(%rsp)
movq %rax, 0x37d8(%rsp)
movq 0x3808(%rsp), %rcx
movq %rcx, 0x478(%rsp)
movq 0x37f0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x37e8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x37e4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x37d8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3804(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3800(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x37fc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b30(%rsp)
movl $0x10, 0x3b2c(%rsp)
movq 0x3b30(%rsp), %rax
movslq 0x3b2c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b2c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x480(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x12e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1259956
movq 0x480(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x12f8(%rsp)
movb $0x1, 0x20fb(%rsp)
testb $0x1, 0x20fb(%rsp)
jne 0x1259a91
leaq 0x12b8(%rsp), %rax
movq %rax, 0x2500(%rsp)
movq 0x2500(%rsp), %rax
movq %rax, 0x43f0(%rsp)
movq 0x43f0(%rsp), %rax
movq %rax, 0x470(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1259a34
movq 0x470(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x43ec(%rsp) # imm = 0xFFFFFFFF
movl 0x43ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x43e8(%rsp)
cmpl $0x1, 0x43e8(%rsp)
jne 0x1259a34
movq 0x470(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1259a05
movq 0x470(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1259a03
jmp 0x1259a32
movq 0x470(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4608(%rsp)
cmpq $0x0, 0x4608(%rsp)
je 0x1259a30
movq 0x4608(%rsp), %rdi
callq 0x5f480
jmp 0x1259a32
jmp 0x1259a34
movq 0x470(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1259a8f
movq %rax, %rdi
callq 0x678a0
jmp 0x1259a91
leaq 0x12b8(%rsp), %rax
movq %rax, 0x2388(%rsp)
movq 0x2388(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x460(%rsp)
leaq 0x12b8(%rsp), %rax
movq %rax, 0x2678(%rsp)
movq 0x2678(%rsp), %rax
movq %rax, 0x4100(%rsp)
movq 0x4100(%rsp), %rax
movq %rax, 0x468(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1259b7c
movq 0x468(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40fc(%rsp) # imm = 0xFFFFFFFF
movl 0x40fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40f8(%rsp)
cmpl $0x1, 0x40f8(%rsp)
jne 0x1259b7c
movq 0x468(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1259b4d
movq 0x468(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1259b4b
jmp 0x1259b7a
movq 0x468(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4780(%rsp)
cmpq $0x0, 0x4780(%rsp)
je 0x1259b78
movq 0x4780(%rsp), %rdi
callq 0x5f480
jmp 0x1259b7a
jmp 0x1259b7c
movq 0x468(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1259bd7
movq %rax, %rdi
callq 0x678a0
movq 0x460(%rsp), %rax
movq %rax, 0x1300(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1358(%rsp), %eax
leaq 0x1268(%rsp), %rdx
movq %rdx, 0x2880(%rsp)
movq %rcx, 0x2878(%rsp)
movl %eax, 0x2874(%rsp)
movq 0x2878(%rsp), %rax
movq %rax, 0x458(%rsp)
movb $0x0, 0x2873(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2874(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1268(%rsp), %r10
movq %r10, 0x30d0(%rsp)
movl %r9d, 0x30cc(%rsp)
movl %r8d, 0x30c8(%rsp)
movl %edi, 0x30c4(%rsp)
movq %rsi, 0x30b8(%rsp)
movq %rdx, 0x30b0(%rsp)
movl %ecx, 0x30ac(%rsp)
movq %rax, 0x30a0(%rsp)
movq 0x30d0(%rsp), %rcx
movq %rcx, 0x450(%rsp)
movq 0x30b8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x30b0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x30ac(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x30a0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x30cc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x30c8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x30c4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d40(%rsp)
movl $0x10, 0x3d3c(%rsp)
movq 0x3d40(%rsp), %rax
movslq 0x3d3c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d3c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x458(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1290(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1259da3
movq 0x458(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x12a8(%rsp)
movb $0x1, 0x2873(%rsp)
testb $0x1, 0x2873(%rsp)
jne 0x1259ede
leaq 0x1268(%rsp), %rax
movq %rax, 0x2888(%rsp)
movq 0x2888(%rsp), %rax
movq %rax, 0x3ef0(%rsp)
movq 0x3ef0(%rsp), %rax
movq %rax, 0x448(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1259e81
movq 0x448(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3eec(%rsp) # imm = 0xFFFFFFFF
movl 0x3eec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ee8(%rsp)
cmpl $0x1, 0x3ee8(%rsp)
jne 0x1259e81
movq 0x448(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1259e52
movq 0x448(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1259e50
jmp 0x1259e7f
movq 0x448(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4888(%rsp)
cmpq $0x0, 0x4888(%rsp)
je 0x1259e7d
movq 0x4888(%rsp), %rdi
callq 0x5f480
jmp 0x1259e7f
jmp 0x1259e81
movq 0x448(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1259edc
movq %rax, %rdi
callq 0x678a0
jmp 0x1259ede
leaq 0x1268(%rsp), %rax
movq %rax, 0x2a90(%rsp)
movq 0x2a90(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x438(%rsp)
leaq 0x1268(%rsp), %rax
movq %rax, 0x2680(%rsp)
movq 0x2680(%rsp), %rax
movq %rax, 0x40f0(%rsp)
movq 0x40f0(%rsp), %rax
movq %rax, 0x440(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1259fc9
movq 0x440(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40ec(%rsp) # imm = 0xFFFFFFFF
movl 0x40ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40e8(%rsp)
cmpl $0x1, 0x40e8(%rsp)
jne 0x1259fc9
movq 0x440(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1259f9a
movq 0x440(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1259f98
jmp 0x1259fc7
movq 0x440(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4788(%rsp)
cmpq $0x0, 0x4788(%rsp)
je 0x1259fc5
movq 0x4788(%rsp), %rdi
callq 0x5f480
jmp 0x1259fc7
jmp 0x1259fc9
movq 0x440(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125a024
movq %rax, %rdi
callq 0x678a0
movq 0x438(%rsp), %rax
movq %rax, 0x12b0(%rsp)
movl $0x0, 0x1264(%rsp)
movl 0x1264(%rsp), %eax
cmpl 0x1ed8(%rsp), %eax
jge 0x125a129
movl $0x0, 0x1260(%rsp)
movl 0x1260(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x125a0d1
movq 0x1350(%rsp), %rsi
movslq 0x1260(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1300(%rsp), %rdx
movslq 0x1260(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x12780f0
movq 0x12b0(%rsp), %rax
movslq 0x1260(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1260(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1260(%rsp)
jmp 0x125a05e
movl 0x1edc(%rsp), %ecx
movq 0x1300(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1300(%rsp)
movl 0x1edc(%rsp), %ecx
movq 0x12b0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x12b0(%rsp)
movl 0x1264(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1264(%rsp)
jmp 0x125a03f
jmp 0x125a12b
movl 0x1358(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1358(%rsp)
jmp 0x1259339
movl $0x0, 0x1f24(%rsp)
jmp 0x1261ae5
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1eec(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f90(%rsp)
movq 0x1f90(%rsp), %rcx
movq %rcx, 0x428(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x437(%rsp)
je 0x125a1e8
movq 0x428(%rsp), %rax
movq %rax, 0x2d58(%rsp)
movq 0x2d58(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x437(%rsp)
movb 0x437(%rsp), %al
testb $0x1, %al
jne 0x125a1f5
jmp 0x125a205
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1261ae5
movl $0x0, 0x125c(%rsp)
movl 0x125c(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x125afa1
movq 0x1f18(%rsp), %rcx
movl 0x125c(%rsp), %eax
leaq 0x1208(%rsp), %rdx
movq %rdx, 0x20f0(%rsp)
movq %rcx, 0x20e8(%rsp)
movl %eax, 0x20e4(%rsp)
movq 0x20e8(%rsp), %rax
movq %rax, 0x420(%rsp)
movb $0x0, 0x20e3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x20e4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1208(%rsp), %r10
movq %r10, 0x3840(%rsp)
movl %r9d, 0x383c(%rsp)
movl %r8d, 0x3838(%rsp)
movl %edi, 0x3834(%rsp)
movq %rsi, 0x3828(%rsp)
movq %rdx, 0x3820(%rsp)
movl %ecx, 0x381c(%rsp)
movq %rax, 0x3810(%rsp)
movq 0x3840(%rsp), %rcx
movq %rcx, 0x418(%rsp)
movq 0x3828(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3820(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x381c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3810(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x383c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3838(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3834(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b20(%rsp)
movl $0x10, 0x3b1c(%rsp)
movq 0x3b20(%rsp), %rax
movslq 0x3b1c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b1c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x420(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1230(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x125a3e0
movq 0x420(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1248(%rsp)
movb $0x1, 0x20e3(%rsp)
testb $0x1, 0x20e3(%rsp)
jne 0x125a51b
leaq 0x1208(%rsp), %rax
movq %rax, 0x2508(%rsp)
movq 0x2508(%rsp), %rax
movq %rax, 0x43e0(%rsp)
movq 0x43e0(%rsp), %rax
movq %rax, 0x410(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125a4be
movq 0x410(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x43dc(%rsp) # imm = 0xFFFFFFFF
movl 0x43dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x43d8(%rsp)
cmpl $0x1, 0x43d8(%rsp)
jne 0x125a4be
movq 0x410(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125a48f
movq 0x410(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x125a48d
jmp 0x125a4bc
movq 0x410(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4610(%rsp)
cmpq $0x0, 0x4610(%rsp)
je 0x125a4ba
movq 0x4610(%rsp), %rdi
callq 0x5f480
jmp 0x125a4bc
jmp 0x125a4be
movq 0x410(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125a519
movq %rax, %rdi
callq 0x678a0
jmp 0x125a51b
leaq 0x1208(%rsp), %rax
movq %rax, 0x2380(%rsp)
movq 0x2380(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x400(%rsp)
leaq 0x1208(%rsp), %rax
movq %rax, 0x2688(%rsp)
movq 0x2688(%rsp), %rax
movq %rax, 0x40e0(%rsp)
movq 0x40e0(%rsp), %rax
movq %rax, 0x408(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125a606
movq 0x408(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40dc(%rsp) # imm = 0xFFFFFFFF
movl 0x40dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40d8(%rsp)
cmpl $0x1, 0x40d8(%rsp)
jne 0x125a606
movq 0x408(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125a5d7
movq 0x408(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x125a5d5
jmp 0x125a604
movq 0x408(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4790(%rsp)
cmpq $0x0, 0x4790(%rsp)
je 0x125a602
movq 0x4790(%rsp), %rdi
callq 0x5f480
jmp 0x125a604
jmp 0x125a606
movq 0x408(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125a661
movq %rax, %rdi
callq 0x678a0
movq 0x400(%rsp), %rax
movq %rax, 0x1250(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x125c(%rsp), %eax
leaq 0x11b8(%rsp), %rdx
movq %rdx, 0x20d8(%rsp)
movq %rcx, 0x20d0(%rsp)
movl %eax, 0x20cc(%rsp)
movq 0x20d0(%rsp), %rax
movq %rax, 0x3f8(%rsp)
movb $0x0, 0x20cb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x20cc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x11b8(%rsp), %r10
movq %r10, 0x3878(%rsp)
movl %r9d, 0x3874(%rsp)
movl %r8d, 0x3870(%rsp)
movl %edi, 0x386c(%rsp)
movq %rsi, 0x3860(%rsp)
movq %rdx, 0x3858(%rsp)
movl %ecx, 0x3854(%rsp)
movq %rax, 0x3848(%rsp)
movq 0x3878(%rsp), %rcx
movq %rcx, 0x3f0(%rsp)
movq 0x3860(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3858(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3854(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3848(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3874(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3870(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x386c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b10(%rsp)
movl $0x10, 0x3b0c(%rsp)
movq 0x3b10(%rsp), %rax
movslq 0x3b0c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b0c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3f8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x11e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x125a82d
movq 0x3f8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x11f8(%rsp)
movb $0x1, 0x20cb(%rsp)
testb $0x1, 0x20cb(%rsp)
jne 0x125a968
leaq 0x11b8(%rsp), %rax
movq %rax, 0x2510(%rsp)
movq 0x2510(%rsp), %rax
movq %rax, 0x43d0(%rsp)
movq 0x43d0(%rsp), %rax
movq %rax, 0x3e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125a90b
movq 0x3e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x43cc(%rsp) # imm = 0xFFFFFFFF
movl 0x43cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x43c8(%rsp)
cmpl $0x1, 0x43c8(%rsp)
jne 0x125a90b
movq 0x3e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125a8dc
movq 0x3e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x125a8da
jmp 0x125a909
movq 0x3e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4618(%rsp)
cmpq $0x0, 0x4618(%rsp)
je 0x125a907
movq 0x4618(%rsp), %rdi
callq 0x5f480
jmp 0x125a909
jmp 0x125a90b
movq 0x3e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125a966
movq %rax, %rdi
callq 0x678a0
jmp 0x125a968
leaq 0x11b8(%rsp), %rax
movq %rax, 0x2378(%rsp)
movq 0x2378(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d8(%rsp)
leaq 0x11b8(%rsp), %rax
movq %rax, 0x2690(%rsp)
movq 0x2690(%rsp), %rax
movq %rax, 0x40d0(%rsp)
movq 0x40d0(%rsp), %rax
movq %rax, 0x3e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125aa53
movq 0x3e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40cc(%rsp) # imm = 0xFFFFFFFF
movl 0x40cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40c8(%rsp)
cmpl $0x1, 0x40c8(%rsp)
jne 0x125aa53
movq 0x3e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125aa24
movq 0x3e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x125aa22
jmp 0x125aa51
movq 0x3e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4798(%rsp)
cmpq $0x0, 0x4798(%rsp)
je 0x125aa4f
movq 0x4798(%rsp), %rdi
callq 0x5f480
jmp 0x125aa51
jmp 0x125aa53
movq 0x3e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125aaae
movq %rax, %rdi
callq 0x678a0
movq 0x3d8(%rsp), %rax
movq %rax, 0x1200(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x125c(%rsp), %eax
leaq 0x1168(%rsp), %rdx
movq %rdx, 0x2860(%rsp)
movq %rcx, 0x2858(%rsp)
movl %eax, 0x2854(%rsp)
movq 0x2858(%rsp), %rax
movq %rax, 0x3d0(%rsp)
movb $0x0, 0x2853(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2854(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1168(%rsp), %r10
movq %r10, 0x3108(%rsp)
movl %r9d, 0x3104(%rsp)
movl %r8d, 0x3100(%rsp)
movl %edi, 0x30fc(%rsp)
movq %rsi, 0x30f0(%rsp)
movq %rdx, 0x30e8(%rsp)
movl %ecx, 0x30e4(%rsp)
movq %rax, 0x30d8(%rsp)
movq 0x3108(%rsp), %rcx
movq %rcx, 0x3c8(%rsp)
movq 0x30f0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x30e8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x30e4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x30d8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3104(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3100(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x30fc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d30(%rsp)
movl $0x10, 0x3d2c(%rsp)
movq 0x3d30(%rsp), %rax
movslq 0x3d2c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d2c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3d0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1190(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x125ac7a
movq 0x3d0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x11a8(%rsp)
movb $0x1, 0x2853(%rsp)
testb $0x1, 0x2853(%rsp)
jne 0x125adb5
leaq 0x1168(%rsp), %rax
movq %rax, 0x2868(%rsp)
movq 0x2868(%rsp), %rax
movq %rax, 0x3f00(%rsp)
movq 0x3f00(%rsp), %rax
movq %rax, 0x3c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125ad58
movq 0x3c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3efc(%rsp) # imm = 0xFFFFFFFF
movl 0x3efc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ef8(%rsp)
cmpl $0x1, 0x3ef8(%rsp)
jne 0x125ad58
movq 0x3c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125ad29
movq 0x3c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x125ad27
jmp 0x125ad56
movq 0x3c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4880(%rsp)
cmpq $0x0, 0x4880(%rsp)
je 0x125ad54
movq 0x4880(%rsp), %rdi
callq 0x5f480
jmp 0x125ad56
jmp 0x125ad58
movq 0x3c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125adb3
movq %rax, %rdi
callq 0x678a0
jmp 0x125adb5
leaq 0x1168(%rsp), %rax
movq %rax, 0x2a88(%rsp)
movq 0x2a88(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3b0(%rsp)
leaq 0x1168(%rsp), %rax
movq %rax, 0x2698(%rsp)
movq 0x2698(%rsp), %rax
movq %rax, 0x40c0(%rsp)
movq 0x40c0(%rsp), %rax
movq %rax, 0x3b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125aea0
movq 0x3b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40bc(%rsp) # imm = 0xFFFFFFFF
movl 0x40bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40b8(%rsp)
cmpl $0x1, 0x40b8(%rsp)
jne 0x125aea0
movq 0x3b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125ae71
movq 0x3b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x125ae6f
jmp 0x125ae9e
movq 0x3b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47a0(%rsp)
cmpq $0x0, 0x47a0(%rsp)
je 0x125ae9c
movq 0x47a0(%rsp), %rdi
callq 0x5f480
jmp 0x125ae9e
jmp 0x125aea0
movq 0x3b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125aefb
movq %rax, %rdi
callq 0x678a0
movq 0x3b0(%rsp), %rax
movq %rax, 0x11b0(%rsp)
movl $0x0, 0x1164(%rsp)
movl 0x1164(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x125af89
movq 0x1250(%rsp), %rsi
movslq 0x1164(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1200(%rsp), %rdx
movslq 0x1164(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x12780f0
movq 0x11b0(%rsp), %rax
movslq 0x1164(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1164(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1164(%rsp)
jmp 0x125af16
jmp 0x125af8b
movl 0x125c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x125c(%rsp)
jmp 0x125a210
movl $0x0, 0x1f24(%rsp)
jmp 0x1261ae5
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1eec(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f88(%rsp)
movq 0x1f88(%rsp), %rcx
movq %rcx, 0x3a0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x3af(%rsp)
je 0x125b048
movq 0x3a0(%rsp), %rax
movq %rax, 0x2d60(%rsp)
movq 0x2d60(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x3af(%rsp)
movb 0x3af(%rsp), %al
testb $0x1, %al
jne 0x125b055
jmp 0x125b065
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1261ae5
movq 0x1f10(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x125baa5
movl $0x0, 0x1160(%rsp)
movl 0x1160(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x125ba95
movq 0x1f18(%rsp), %rcx
movl 0x1160(%rsp), %eax
leaq 0x1110(%rsp), %rdx
movq %rdx, 0x20c0(%rsp)
movq %rcx, 0x20b8(%rsp)
movl %eax, 0x20b4(%rsp)
movq 0x20b8(%rsp), %rax
movq %rax, 0x398(%rsp)
movb $0x0, 0x20b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x20b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1110(%rsp), %r10
movq %r10, 0x38b0(%rsp)
movl %r9d, 0x38ac(%rsp)
movl %r8d, 0x38a8(%rsp)
movl %edi, 0x38a4(%rsp)
movq %rsi, 0x3898(%rsp)
movq %rdx, 0x3890(%rsp)
movl %ecx, 0x388c(%rsp)
movq %rax, 0x3880(%rsp)
movq 0x38b0(%rsp), %rcx
movq %rcx, 0x390(%rsp)
movq 0x3898(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3890(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x388c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3880(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x38ac(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x38a8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x38a4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b00(%rsp)
movl $0x10, 0x3afc(%rsp)
movq 0x3b00(%rsp), %rax
movslq 0x3afc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3afc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x398(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1138(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x125b252
movq 0x398(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1150(%rsp)
movb $0x1, 0x20b3(%rsp)
testb $0x1, 0x20b3(%rsp)
jne 0x125b38d
leaq 0x1110(%rsp), %rax
movq %rax, 0x2518(%rsp)
movq 0x2518(%rsp), %rax
movq %rax, 0x43c0(%rsp)
movq 0x43c0(%rsp), %rax
movq %rax, 0x388(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125b330
movq 0x388(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x43bc(%rsp) # imm = 0xFFFFFFFF
movl 0x43bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x43b8(%rsp)
cmpl $0x1, 0x43b8(%rsp)
jne 0x125b330
movq 0x388(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125b301
movq 0x388(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x125b2ff
jmp 0x125b32e
movq 0x388(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4620(%rsp)
cmpq $0x0, 0x4620(%rsp)
je 0x125b32c
movq 0x4620(%rsp), %rdi
callq 0x5f480
jmp 0x125b32e
jmp 0x125b330
movq 0x388(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125b38b
movq %rax, %rdi
callq 0x678a0
jmp 0x125b38d
leaq 0x1110(%rsp), %rax
movq %rax, 0x2370(%rsp)
movq 0x2370(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x378(%rsp)
leaq 0x1110(%rsp), %rax
movq %rax, 0x26a0(%rsp)
movq 0x26a0(%rsp), %rax
movq %rax, 0x40b0(%rsp)
movq 0x40b0(%rsp), %rax
movq %rax, 0x380(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125b478
movq 0x380(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40ac(%rsp) # imm = 0xFFFFFFFF
movl 0x40ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40a8(%rsp)
cmpl $0x1, 0x40a8(%rsp)
jne 0x125b478
movq 0x380(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125b449
movq 0x380(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x125b447
jmp 0x125b476
movq 0x380(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47a8(%rsp)
cmpq $0x0, 0x47a8(%rsp)
je 0x125b474
movq 0x47a8(%rsp), %rdi
callq 0x5f480
jmp 0x125b476
jmp 0x125b478
movq 0x380(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125b4d3
movq %rax, %rdi
callq 0x678a0
movq 0x378(%rsp), %rax
movq %rax, 0x1158(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1160(%rsp), %eax
movq %rcx, 0x2b28(%rsp)
movl %eax, 0x2b24(%rsp)
movq 0x2b28(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2b24(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x1108(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1160(%rsp), %eax
leaq 0x10b8(%rsp), %rdx
movq %rdx, 0x2840(%rsp)
movq %rcx, 0x2838(%rsp)
movl %eax, 0x2834(%rsp)
movq 0x2838(%rsp), %rax
movq %rax, 0x370(%rsp)
movb $0x0, 0x2833(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2834(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x10b8(%rsp), %r10
movq %r10, 0x3140(%rsp)
movl %r9d, 0x313c(%rsp)
movl %r8d, 0x3138(%rsp)
movl %edi, 0x3134(%rsp)
movq %rsi, 0x3128(%rsp)
movq %rdx, 0x3120(%rsp)
movl %ecx, 0x311c(%rsp)
movq %rax, 0x3110(%rsp)
movq 0x3140(%rsp), %rcx
movq %rcx, 0x368(%rsp)
movq 0x3128(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3120(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x311c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3110(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x313c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3138(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3134(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d20(%rsp)
movl $0x10, 0x3d1c(%rsp)
movq 0x3d20(%rsp), %rax
movslq 0x3d1c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d1c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x370(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x10e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x125b6e8
movq 0x370(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x10f8(%rsp)
movb $0x1, 0x2833(%rsp)
testb $0x1, 0x2833(%rsp)
jne 0x125b823
leaq 0x10b8(%rsp), %rax
movq %rax, 0x2848(%rsp)
movq 0x2848(%rsp), %rax
movq %rax, 0x3f10(%rsp)
movq 0x3f10(%rsp), %rax
movq %rax, 0x360(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125b7c6
movq 0x360(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f0c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f0c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f08(%rsp)
cmpl $0x1, 0x3f08(%rsp)
jne 0x125b7c6
movq 0x360(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125b797
movq 0x360(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x125b795
jmp 0x125b7c4
movq 0x360(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4878(%rsp)
cmpq $0x0, 0x4878(%rsp)
je 0x125b7c2
movq 0x4878(%rsp), %rdi
callq 0x5f480
jmp 0x125b7c4
jmp 0x125b7c6
movq 0x360(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125b821
movq %rax, %rdi
callq 0x678a0
jmp 0x125b823
leaq 0x10b8(%rsp), %rax
movq %rax, 0x2a80(%rsp)
movq 0x2a80(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x350(%rsp)
leaq 0x10b8(%rsp), %rax
movq %rax, 0x26a8(%rsp)
movq 0x26a8(%rsp), %rax
movq %rax, 0x40a0(%rsp)
movq 0x40a0(%rsp), %rax
movq %rax, 0x358(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125b90e
movq 0x358(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x409c(%rsp) # imm = 0xFFFFFFFF
movl 0x409c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4098(%rsp)
cmpl $0x1, 0x4098(%rsp)
jne 0x125b90e
movq 0x358(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125b8df
movq 0x358(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x125b8dd
jmp 0x125b90c
movq 0x358(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47b0(%rsp)
cmpq $0x0, 0x47b0(%rsp)
je 0x125b90a
movq 0x47b0(%rsp), %rdi
callq 0x5f480
jmp 0x125b90c
jmp 0x125b90e
movq 0x358(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125b969
movq %rax, %rdi
callq 0x678a0
movq 0x350(%rsp), %rax
movq %rax, 0x1100(%rsp)
movl $0x0, 0x10b4(%rsp)
movl 0x10b4(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jge 0x125ba7d
movq 0x1108(%rsp), %rax
movslq 0x10b4(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x10b0(%rsp)
movl $0x0, 0x10ac(%rsp)
movl 0x10ac(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x125ba25
movq 0x1158(%rsp), %rsi
movslq 0x10ac(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0x10b0(%rsp), %rdx
callq 0x12780f0
movq 0x1100(%rsp), %rax
movslq 0x10ac(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x10ac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x10ac(%rsp)
jmp 0x125b9c1
movl 0x1ef8(%rsp), %ecx
movq 0x1158(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1158(%rsp)
movl 0x1ef8(%rsp), %ecx
movq 0x1100(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1100(%rsp)
movl 0x10b4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x10b4(%rsp)
jmp 0x125b984
jmp 0x125ba7f
movl 0x1160(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1160(%rsp)
jmp 0x125b082
movl $0x0, 0x1f24(%rsp)
jmp 0x1261ae5
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x125cde7
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x125c456
movq 0x1f10(%rsp), %rax
movq %rax, 0x2c78(%rsp)
movq $0x0, 0x2c70(%rsp)
movq 0x2c78(%rsp), %rax
movq (%rax), %rax
movq 0x2c70(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x10a8(%rsp)
movl $0x0, 0x10a4(%rsp)
movl 0x10a4(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x125c446
movq 0x1f18(%rsp), %rcx
movl 0x10a4(%rsp), %eax
leaq 0x1050(%rsp), %rdx
movq %rdx, 0x20a8(%rsp)
movq %rcx, 0x20a0(%rsp)
movl %eax, 0x209c(%rsp)
movq 0x20a0(%rsp), %rax
movq %rax, 0x348(%rsp)
movb $0x0, 0x209b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x209c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1050(%rsp), %r10
movq %r10, 0x38e8(%rsp)
movl %r9d, 0x38e4(%rsp)
movl %r8d, 0x38e0(%rsp)
movl %edi, 0x38dc(%rsp)
movq %rsi, 0x38d0(%rsp)
movq %rdx, 0x38c8(%rsp)
movl %ecx, 0x38c4(%rsp)
movq %rax, 0x38b8(%rsp)
movq 0x38e8(%rsp), %rcx
movq %rcx, 0x340(%rsp)
movq 0x38d0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x38c8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x38c4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x38b8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x38e4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x38e0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x38dc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3af0(%rsp)
movl $0x10, 0x3aec(%rsp)
movq 0x3af0(%rsp), %rax
movslq 0x3aec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3aec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x348(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1078(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x125bce1
movq 0x348(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1090(%rsp)
movb $0x1, 0x209b(%rsp)
testb $0x1, 0x209b(%rsp)
jne 0x125be1c
leaq 0x1050(%rsp), %rax
movq %rax, 0x2520(%rsp)
movq 0x2520(%rsp), %rax
movq %rax, 0x43b0(%rsp)
movq 0x43b0(%rsp), %rax
movq %rax, 0x338(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125bdbf
movq 0x338(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x43ac(%rsp) # imm = 0xFFFFFFFF
movl 0x43ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x43a8(%rsp)
cmpl $0x1, 0x43a8(%rsp)
jne 0x125bdbf
movq 0x338(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125bd90
movq 0x338(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x125bd8e
jmp 0x125bdbd
movq 0x338(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4628(%rsp)
cmpq $0x0, 0x4628(%rsp)
je 0x125bdbb
movq 0x4628(%rsp), %rdi
callq 0x5f480
jmp 0x125bdbd
jmp 0x125bdbf
movq 0x338(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125be1a
movq %rax, %rdi
callq 0x678a0
jmp 0x125be1c
leaq 0x1050(%rsp), %rax
movq %rax, 0x2368(%rsp)
movq 0x2368(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x328(%rsp)
leaq 0x1050(%rsp), %rax
movq %rax, 0x26b0(%rsp)
movq 0x26b0(%rsp), %rax
movq %rax, 0x4090(%rsp)
movq 0x4090(%rsp), %rax
movq %rax, 0x330(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125bf07
movq 0x330(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x408c(%rsp) # imm = 0xFFFFFFFF
movl 0x408c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4088(%rsp)
cmpl $0x1, 0x4088(%rsp)
jne 0x125bf07
movq 0x330(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125bed8
movq 0x330(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x125bed6
jmp 0x125bf05
movq 0x330(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47b8(%rsp)
cmpq $0x0, 0x47b8(%rsp)
je 0x125bf03
movq 0x47b8(%rsp), %rdi
callq 0x5f480
jmp 0x125bf05
jmp 0x125bf07
movq 0x330(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125bf62
movq %rax, %rdi
callq 0x678a0
movq 0x328(%rsp), %rax
movq %rax, 0x1098(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x10a4(%rsp), %eax
leaq 0x1000(%rsp), %rdx
movq %rdx, 0x2820(%rsp)
movq %rcx, 0x2818(%rsp)
movl %eax, 0x2814(%rsp)
movq 0x2818(%rsp), %rax
movq %rax, 0x320(%rsp)
movb $0x0, 0x2813(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2814(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1000(%rsp), %r10
movq %r10, 0x3178(%rsp)
movl %r9d, 0x3174(%rsp)
movl %r8d, 0x3170(%rsp)
movl %edi, 0x316c(%rsp)
movq %rsi, 0x3160(%rsp)
movq %rdx, 0x3158(%rsp)
movl %ecx, 0x3154(%rsp)
movq %rax, 0x3148(%rsp)
movq 0x3178(%rsp), %rcx
movq %rcx, 0x318(%rsp)
movq 0x3160(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3158(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3154(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3148(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3174(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3170(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x316c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d10(%rsp)
movl $0x10, 0x3d0c(%rsp)
movq 0x3d10(%rsp), %rax
movslq 0x3d0c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d0c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x320(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1028(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x125c12e
movq 0x320(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1040(%rsp)
movb $0x1, 0x2813(%rsp)
testb $0x1, 0x2813(%rsp)
jne 0x125c269
leaq 0x1000(%rsp), %rax
movq %rax, 0x2828(%rsp)
movq 0x2828(%rsp), %rax
movq %rax, 0x3f20(%rsp)
movq 0x3f20(%rsp), %rax
movq %rax, 0x310(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125c20c
movq 0x310(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f1c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f1c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f18(%rsp)
cmpl $0x1, 0x3f18(%rsp)
jne 0x125c20c
movq 0x310(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125c1dd
movq 0x310(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x125c1db
jmp 0x125c20a
movq 0x310(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4870(%rsp)
cmpq $0x0, 0x4870(%rsp)
je 0x125c208
movq 0x4870(%rsp), %rdi
callq 0x5f480
jmp 0x125c20a
jmp 0x125c20c
movq 0x310(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125c267
movq %rax, %rdi
callq 0x678a0
jmp 0x125c269
leaq 0x1000(%rsp), %rax
movq %rax, 0x2a78(%rsp)
movq 0x2a78(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x300(%rsp)
leaq 0x1000(%rsp), %rax
movq %rax, 0x26b8(%rsp)
movq 0x26b8(%rsp), %rax
movq %rax, 0x4080(%rsp)
movq 0x4080(%rsp), %rax
movq %rax, 0x308(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125c354
movq 0x308(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x407c(%rsp) # imm = 0xFFFFFFFF
movl 0x407c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4078(%rsp)
cmpl $0x1, 0x4078(%rsp)
jne 0x125c354
movq 0x308(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125c325
movq 0x308(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x125c323
jmp 0x125c352
movq 0x308(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47c0(%rsp)
cmpq $0x0, 0x47c0(%rsp)
je 0x125c350
movq 0x47c0(%rsp), %rdi
callq 0x5f480
jmp 0x125c352
jmp 0x125c354
movq 0x308(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125c3af
movq %rax, %rdi
callq 0x678a0
movq 0x300(%rsp), %rax
movq %rax, 0x1048(%rsp)
movl $0x0, 0xffc(%rsp)
movl 0xffc(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x125c42e
movq 0x1098(%rsp), %rsi
movslq 0xffc(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0x10a8(%rsp), %rdx
callq 0x12780f0
movq 0x1048(%rsp), %rax
movslq 0xffc(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xffc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xffc(%rsp)
jmp 0x125c3ca
jmp 0x125c430
movl 0x10a4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x10a4(%rsp)
jmp 0x125bb11
movl $0x0, 0x1f24(%rsp)
jmp 0x1261ae5
movl $0x0, 0xff8(%rsp)
movl 0xff8(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x125cdd7
movq 0x1f18(%rsp), %rcx
movl 0xff8(%rsp), %eax
leaq 0xfa8(%rsp), %rdx
movq %rdx, 0x2090(%rsp)
movq %rcx, 0x2088(%rsp)
movl %eax, 0x2084(%rsp)
movq 0x2088(%rsp), %rax
movq %rax, 0x2f8(%rsp)
movb $0x0, 0x2083(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2084(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xfa8(%rsp), %r10
movq %r10, 0x3920(%rsp)
movl %r9d, 0x391c(%rsp)
movl %r8d, 0x3918(%rsp)
movl %edi, 0x3914(%rsp)
movq %rsi, 0x3908(%rsp)
movq %rdx, 0x3900(%rsp)
movl %ecx, 0x38fc(%rsp)
movq %rax, 0x38f0(%rsp)
movq 0x3920(%rsp), %rcx
movq %rcx, 0x2f0(%rsp)
movq 0x3908(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3900(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x38fc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x38f0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x391c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3918(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3914(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ae0(%rsp)
movl $0x10, 0x3adc(%rsp)
movq 0x3ae0(%rsp), %rax
movslq 0x3adc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3adc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2f8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xfd0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x125c631
movq 0x2f8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xfe8(%rsp)
movb $0x1, 0x2083(%rsp)
testb $0x1, 0x2083(%rsp)
jne 0x125c76c
leaq 0xfa8(%rsp), %rax
movq %rax, 0x2528(%rsp)
movq 0x2528(%rsp), %rax
movq %rax, 0x43a0(%rsp)
movq 0x43a0(%rsp), %rax
movq %rax, 0x2e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125c70f
movq 0x2e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x439c(%rsp) # imm = 0xFFFFFFFF
movl 0x439c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4398(%rsp)
cmpl $0x1, 0x4398(%rsp)
jne 0x125c70f
movq 0x2e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125c6e0
movq 0x2e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x125c6de
jmp 0x125c70d
movq 0x2e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4630(%rsp)
cmpq $0x0, 0x4630(%rsp)
je 0x125c70b
movq 0x4630(%rsp), %rdi
callq 0x5f480
jmp 0x125c70d
jmp 0x125c70f
movq 0x2e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125c76a
movq %rax, %rdi
callq 0x678a0
jmp 0x125c76c
leaq 0xfa8(%rsp), %rax
movq %rax, 0x2360(%rsp)
movq 0x2360(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2d8(%rsp)
leaq 0xfa8(%rsp), %rax
movq %rax, 0x26c0(%rsp)
movq 0x26c0(%rsp), %rax
movq %rax, 0x4070(%rsp)
movq 0x4070(%rsp), %rax
movq %rax, 0x2e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125c857
movq 0x2e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x406c(%rsp) # imm = 0xFFFFFFFF
movl 0x406c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4068(%rsp)
cmpl $0x1, 0x4068(%rsp)
jne 0x125c857
movq 0x2e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125c828
movq 0x2e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x125c826
jmp 0x125c855
movq 0x2e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47c8(%rsp)
cmpq $0x0, 0x47c8(%rsp)
je 0x125c853
movq 0x47c8(%rsp), %rdi
callq 0x5f480
jmp 0x125c855
jmp 0x125c857
movq 0x2e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125c8b2
movq %rax, %rdi
callq 0x678a0
movq 0x2d8(%rsp), %rax
movq %rax, 0xff0(%rsp)
movq 0x1f10(%rsp), %rcx
movslq 0xff8(%rsp), %rax
movq %rcx, 0x2c68(%rsp)
movq %rax, 0x2c60(%rsp)
movq 0x2c68(%rsp), %rax
movq (%rax), %rax
movq 0x2c60(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xfa4(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0xff8(%rsp), %eax
leaq 0xf50(%rsp), %rdx
movq %rdx, 0x2800(%rsp)
movq %rcx, 0x27f8(%rsp)
movl %eax, 0x27f4(%rsp)
movq 0x27f8(%rsp), %rax
movq %rax, 0x2d0(%rsp)
movb $0x0, 0x27f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x27f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xf50(%rsp), %r10
movq %r10, 0x31b0(%rsp)
movl %r9d, 0x31ac(%rsp)
movl %r8d, 0x31a8(%rsp)
movl %edi, 0x31a4(%rsp)
movq %rsi, 0x3198(%rsp)
movq %rdx, 0x3190(%rsp)
movl %ecx, 0x318c(%rsp)
movq %rax, 0x3180(%rsp)
movq 0x31b0(%rsp), %rcx
movq %rcx, 0x2c8(%rsp)
movq 0x3198(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3190(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x318c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3180(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x31ac(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x31a8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x31a4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d00(%rsp)
movl $0x10, 0x3cfc(%rsp)
movq 0x3d00(%rsp), %rax
movslq 0x3cfc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cfc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2d0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf78(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x125cabf
movq 0x2d0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xf90(%rsp)
movb $0x1, 0x27f3(%rsp)
testb $0x1, 0x27f3(%rsp)
jne 0x125cbfa
leaq 0xf50(%rsp), %rax
movq %rax, 0x2808(%rsp)
movq 0x2808(%rsp), %rax
movq %rax, 0x3f30(%rsp)
movq 0x3f30(%rsp), %rax
movq %rax, 0x2c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125cb9d
movq 0x2c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f2c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f2c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f28(%rsp)
cmpl $0x1, 0x3f28(%rsp)
jne 0x125cb9d
movq 0x2c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125cb6e
movq 0x2c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x125cb6c
jmp 0x125cb9b
movq 0x2c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4868(%rsp)
cmpq $0x0, 0x4868(%rsp)
je 0x125cb99
movq 0x4868(%rsp), %rdi
callq 0x5f480
jmp 0x125cb9b
jmp 0x125cb9d
movq 0x2c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125cbf8
movq %rax, %rdi
callq 0x678a0
jmp 0x125cbfa
leaq 0xf50(%rsp), %rax
movq %rax, 0x2a70(%rsp)
movq 0x2a70(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2b0(%rsp)
leaq 0xf50(%rsp), %rax
movq %rax, 0x26c8(%rsp)
movq 0x26c8(%rsp), %rax
movq %rax, 0x4060(%rsp)
movq 0x4060(%rsp), %rax
movq %rax, 0x2b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125cce5
movq 0x2b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x405c(%rsp) # imm = 0xFFFFFFFF
movl 0x405c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4058(%rsp)
cmpl $0x1, 0x4058(%rsp)
jne 0x125cce5
movq 0x2b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125ccb6
movq 0x2b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x125ccb4
jmp 0x125cce3
movq 0x2b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47d0(%rsp)
cmpq $0x0, 0x47d0(%rsp)
je 0x125cce1
movq 0x47d0(%rsp), %rdi
callq 0x5f480
jmp 0x125cce3
jmp 0x125cce5
movq 0x2b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125cd40
movq %rax, %rdi
callq 0x678a0
movq 0x2b0(%rsp), %rax
movq %rax, 0xf98(%rsp)
movl $0x0, 0xf4c(%rsp)
movl 0xf4c(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x125cdbf
movq 0xff0(%rsp), %rsi
movslq 0xf4c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0xfa4(%rsp), %rdx
callq 0x12780f0
movq 0xf98(%rsp), %rax
movslq 0xf4c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xf4c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xf4c(%rsp)
jmp 0x125cd5b
jmp 0x125cdc1
movl 0xff8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xff8(%rsp)
jmp 0x125c461
movl $0x0, 0x1f24(%rsp)
jmp 0x1261ae5
jmp 0x1261ad8
movq 0x1f18(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x125e942
movq 0x1f10(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x125d935
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed4(%rsp), %ecx
movl 0x1ed0(%rsp), %r8d
movq 0x1ee0(%rsp), %r9
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6fb30
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f80(%rsp)
movq 0x1f80(%rsp), %rcx
movq %rcx, 0x2a0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x2af(%rsp)
je 0x125ceb3
movq 0x2a0(%rsp), %rax
movq %rax, 0x2d68(%rsp)
movq 0x2d68(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x2af(%rsp)
movb 0x2af(%rsp), %al
testb $0x1, %al
jne 0x125cec0
jmp 0x125ced0
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1261ae5
movl $0x0, 0xf48(%rsp)
movl 0xf48(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x125d925
movq 0x1f18(%rsp), %rcx
movl 0xf48(%rsp), %eax
movq %rcx, 0x2b18(%rsp)
movl %eax, 0x2b14(%rsp)
movq 0x2b18(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2b14(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xf40(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0xf48(%rsp), %eax
leaq 0xef0(%rsp), %rdx
movq %rdx, 0x2078(%rsp)
movq %rcx, 0x2070(%rsp)
movl %eax, 0x206c(%rsp)
movq 0x2070(%rsp), %rax
movq %rax, 0x298(%rsp)
movb $0x0, 0x206b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x206c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xef0(%rsp), %r10
movq %r10, 0x3958(%rsp)
movl %r9d, 0x3954(%rsp)
movl %r8d, 0x3950(%rsp)
movl %edi, 0x394c(%rsp)
movq %rsi, 0x3940(%rsp)
movq %rdx, 0x3938(%rsp)
movl %ecx, 0x3934(%rsp)
movq %rax, 0x3928(%rsp)
movq 0x3958(%rsp), %rcx
movq %rcx, 0x290(%rsp)
movq 0x3940(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3938(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3934(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3928(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3954(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3950(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x394c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ad0(%rsp)
movl $0x10, 0x3acc(%rsp)
movq 0x3ad0(%rsp), %rax
movslq 0x3acc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3acc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x298(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf18(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x125d0f4
movq 0x298(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xf30(%rsp)
movb $0x1, 0x206b(%rsp)
testb $0x1, 0x206b(%rsp)
jne 0x125d22f
leaq 0xef0(%rsp), %rax
movq %rax, 0x2530(%rsp)
movq 0x2530(%rsp), %rax
movq %rax, 0x4390(%rsp)
movq 0x4390(%rsp), %rax
movq %rax, 0x288(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125d1d2
movq 0x288(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x438c(%rsp) # imm = 0xFFFFFFFF
movl 0x438c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4388(%rsp)
cmpl $0x1, 0x4388(%rsp)
jne 0x125d1d2
movq 0x288(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125d1a3
movq 0x288(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x125d1a1
jmp 0x125d1d0
movq 0x288(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4638(%rsp)
cmpq $0x0, 0x4638(%rsp)
je 0x125d1ce
movq 0x4638(%rsp), %rdi
callq 0x5f480
jmp 0x125d1d0
jmp 0x125d1d2
movq 0x288(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125d22d
movq %rax, %rdi
callq 0x678a0
jmp 0x125d22f
leaq 0xef0(%rsp), %rax
movq %rax, 0x2358(%rsp)
movq 0x2358(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x278(%rsp)
leaq 0xef0(%rsp), %rax
movq %rax, 0x26d0(%rsp)
movq 0x26d0(%rsp), %rax
movq %rax, 0x4050(%rsp)
movq 0x4050(%rsp), %rax
movq %rax, 0x280(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125d31a
movq 0x280(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x404c(%rsp) # imm = 0xFFFFFFFF
movl 0x404c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4048(%rsp)
cmpl $0x1, 0x4048(%rsp)
jne 0x125d31a
movq 0x280(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125d2eb
movq 0x280(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x125d2e9
jmp 0x125d318
movq 0x280(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47d8(%rsp)
cmpq $0x0, 0x47d8(%rsp)
je 0x125d316
movq 0x47d8(%rsp), %rdi
callq 0x5f480
jmp 0x125d318
jmp 0x125d31a
movq 0x280(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125d375
movq %rax, %rdi
callq 0x678a0
movq 0x278(%rsp), %rax
movq %rax, 0xf38(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0xf48(%rsp), %eax
leaq 0xea0(%rsp), %rdx
movq %rdx, 0x27e0(%rsp)
movq %rcx, 0x27d8(%rsp)
movl %eax, 0x27d4(%rsp)
movq 0x27d8(%rsp), %rax
movq %rax, 0x270(%rsp)
movb $0x0, 0x27d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x27d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xea0(%rsp), %r10
movq %r10, 0x31e8(%rsp)
movl %r9d, 0x31e4(%rsp)
movl %r8d, 0x31e0(%rsp)
movl %edi, 0x31dc(%rsp)
movq %rsi, 0x31d0(%rsp)
movq %rdx, 0x31c8(%rsp)
movl %ecx, 0x31c4(%rsp)
movq %rax, 0x31b8(%rsp)
movq 0x31e8(%rsp), %rcx
movq %rcx, 0x268(%rsp)
movq 0x31d0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x31c8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x31c4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x31b8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x31e4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x31e0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x31dc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3cf0(%rsp)
movl $0x10, 0x3cec(%rsp)
movq 0x3cf0(%rsp), %rax
movslq 0x3cec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x270(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xec8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x125d541
movq 0x270(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xee0(%rsp)
movb $0x1, 0x27d3(%rsp)
testb $0x1, 0x27d3(%rsp)
jne 0x125d67c
leaq 0xea0(%rsp), %rax
movq %rax, 0x27e8(%rsp)
movq 0x27e8(%rsp), %rax
movq %rax, 0x3f40(%rsp)
movq 0x3f40(%rsp), %rax
movq %rax, 0x260(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125d61f
movq 0x260(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f3c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f3c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f38(%rsp)
cmpl $0x1, 0x3f38(%rsp)
jne 0x125d61f
movq 0x260(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125d5f0
movq 0x260(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x125d5ee
jmp 0x125d61d
movq 0x260(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4860(%rsp)
cmpq $0x0, 0x4860(%rsp)
je 0x125d61b
movq 0x4860(%rsp), %rdi
callq 0x5f480
jmp 0x125d61d
jmp 0x125d61f
movq 0x260(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125d67a
movq %rax, %rdi
callq 0x678a0
jmp 0x125d67c
leaq 0xea0(%rsp), %rax
movq %rax, 0x2a68(%rsp)
movq 0x2a68(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x250(%rsp)
leaq 0xea0(%rsp), %rax
movq %rax, 0x26d8(%rsp)
movq 0x26d8(%rsp), %rax
movq %rax, 0x4040(%rsp)
movq 0x4040(%rsp), %rax
movq %rax, 0x258(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125d767
movq 0x258(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x403c(%rsp) # imm = 0xFFFFFFFF
movl 0x403c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4038(%rsp)
cmpl $0x1, 0x4038(%rsp)
jne 0x125d767
movq 0x258(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125d738
movq 0x258(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x125d736
jmp 0x125d765
movq 0x258(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47e0(%rsp)
cmpq $0x0, 0x47e0(%rsp)
je 0x125d763
movq 0x47e0(%rsp), %rdi
callq 0x5f480
jmp 0x125d765
jmp 0x125d767
movq 0x258(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125d7c2
movq %rax, %rdi
callq 0x678a0
movq 0x250(%rsp), %rax
movq %rax, 0xee8(%rsp)
movl $0x0, 0xe9c(%rsp)
movl 0xe9c(%rsp), %eax
cmpl 0x1ed4(%rsp), %eax
jge 0x125d90d
movq 0xf40(%rsp), %rax
movslq 0xe9c(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xe98(%rsp)
movl $0x0, 0xe94(%rsp)
movl 0xe94(%rsp), %eax
cmpl 0x1ed8(%rsp), %eax
jge 0x125d8f5
movl $0x0, 0xe90(%rsp)
movl 0xe90(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x125d89d
movq 0xf38(%rsp), %rdx
movslq 0xe90(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xe98(%rsp), %rsi
callq 0x12780f0
movq 0xee8(%rsp), %rax
movslq 0xe90(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xe90(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xe90(%rsp)
jmp 0x125d839
movl 0x1edc(%rsp), %ecx
movq 0xf38(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xf38(%rsp)
movl 0x1edc(%rsp), %ecx
movq 0xee8(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xee8(%rsp)
movl 0xe94(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xe94(%rsp)
jmp 0x125d81a
jmp 0x125d8f7
movl 0xe9c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xe9c(%rsp)
jmp 0x125d7dd
jmp 0x125d90f
movl 0xf48(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xf48(%rsp)
jmp 0x125cedb
movl $0x0, 0x1f24(%rsp)
jmp 0x1261ae5
movq 0x1f10(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x125e429
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed0(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f78(%rsp)
movq 0x1f78(%rsp), %rcx
movq %rcx, 0x240(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x24f(%rsp)
je 0x125d9de
movq 0x240(%rsp), %rax
movq %rax, 0x2d70(%rsp)
movq 0x2d70(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x24f(%rsp)
movb 0x24f(%rsp), %al
testb $0x1, %al
jne 0x125d9eb
jmp 0x125d9fb
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1261ae5
movl $0x0, 0xe8c(%rsp)
movl 0xe8c(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x125e419
movq 0x1f18(%rsp), %rcx
movl 0xe8c(%rsp), %eax
movq %rcx, 0x2b08(%rsp)
movl %eax, 0x2b04(%rsp)
movq 0x2b08(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2b04(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xe80(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0xe8c(%rsp), %eax
leaq 0xe30(%rsp), %rdx
movq %rdx, 0x2060(%rsp)
movq %rcx, 0x2058(%rsp)
movl %eax, 0x2054(%rsp)
movq 0x2058(%rsp), %rax
movq %rax, 0x238(%rsp)
movb $0x0, 0x2053(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2054(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xe30(%rsp), %r10
movq %r10, 0x3990(%rsp)
movl %r9d, 0x398c(%rsp)
movl %r8d, 0x3988(%rsp)
movl %edi, 0x3984(%rsp)
movq %rsi, 0x3978(%rsp)
movq %rdx, 0x3970(%rsp)
movl %ecx, 0x396c(%rsp)
movq %rax, 0x3960(%rsp)
movq 0x3990(%rsp), %rcx
movq %rcx, 0x230(%rsp)
movq 0x3978(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3970(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x396c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3960(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x398c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3988(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3984(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ac0(%rsp)
movl $0x10, 0x3abc(%rsp)
movq 0x3ac0(%rsp), %rax
movslq 0x3abc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3abc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x238(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xe58(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x125dc1f
movq 0x238(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xe70(%rsp)
movb $0x1, 0x2053(%rsp)
testb $0x1, 0x2053(%rsp)
jne 0x125dd5a
leaq 0xe30(%rsp), %rax
movq %rax, 0x2538(%rsp)
movq 0x2538(%rsp), %rax
movq %rax, 0x4380(%rsp)
movq 0x4380(%rsp), %rax
movq %rax, 0x228(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125dcfd
movq 0x228(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x437c(%rsp) # imm = 0xFFFFFFFF
movl 0x437c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4378(%rsp)
cmpl $0x1, 0x4378(%rsp)
jne 0x125dcfd
movq 0x228(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125dcce
movq 0x228(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x125dccc
jmp 0x125dcfb
movq 0x228(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4640(%rsp)
cmpq $0x0, 0x4640(%rsp)
je 0x125dcf9
movq 0x4640(%rsp), %rdi
callq 0x5f480
jmp 0x125dcfb
jmp 0x125dcfd
movq 0x228(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125dd58
movq %rax, %rdi
callq 0x678a0
jmp 0x125dd5a
leaq 0xe30(%rsp), %rax
movq %rax, 0x2350(%rsp)
movq 0x2350(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x218(%rsp)
leaq 0xe30(%rsp), %rax
movq %rax, 0x26e0(%rsp)
movq 0x26e0(%rsp), %rax
movq %rax, 0x4030(%rsp)
movq 0x4030(%rsp), %rax
movq %rax, 0x220(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125de45
movq 0x220(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x402c(%rsp) # imm = 0xFFFFFFFF
movl 0x402c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4028(%rsp)
cmpl $0x1, 0x4028(%rsp)
jne 0x125de45
movq 0x220(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125de16
movq 0x220(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x125de14
jmp 0x125de43
movq 0x220(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47e8(%rsp)
cmpq $0x0, 0x47e8(%rsp)
je 0x125de41
movq 0x47e8(%rsp), %rdi
callq 0x5f480
jmp 0x125de43
jmp 0x125de45
movq 0x220(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125dea0
movq %rax, %rdi
callq 0x678a0
movq 0x218(%rsp), %rax
movq %rax, 0xe78(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0xe8c(%rsp), %eax
leaq 0xde0(%rsp), %rdx
movq %rdx, 0x27c0(%rsp)
movq %rcx, 0x27b8(%rsp)
movl %eax, 0x27b4(%rsp)
movq 0x27b8(%rsp), %rax
movq %rax, 0x210(%rsp)
movb $0x0, 0x27b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x27b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xde0(%rsp), %r10
movq %r10, 0x3220(%rsp)
movl %r9d, 0x321c(%rsp)
movl %r8d, 0x3218(%rsp)
movl %edi, 0x3214(%rsp)
movq %rsi, 0x3208(%rsp)
movq %rdx, 0x3200(%rsp)
movl %ecx, 0x31fc(%rsp)
movq %rax, 0x31f0(%rsp)
movq 0x3220(%rsp), %rcx
movq %rcx, 0x208(%rsp)
movq 0x3208(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3200(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x31fc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x31f0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x321c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3218(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3214(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ce0(%rsp)
movl $0x10, 0x3cdc(%rsp)
movq 0x3ce0(%rsp), %rax
movslq 0x3cdc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cdc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x210(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xe08(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x125e06c
movq 0x210(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xe20(%rsp)
movb $0x1, 0x27b3(%rsp)
testb $0x1, 0x27b3(%rsp)
jne 0x125e1a7
leaq 0xde0(%rsp), %rax
movq %rax, 0x27c8(%rsp)
movq 0x27c8(%rsp), %rax
movq %rax, 0x3f50(%rsp)
movq 0x3f50(%rsp), %rax
movq %rax, 0x200(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125e14a
movq 0x200(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f4c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f4c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f48(%rsp)
cmpl $0x1, 0x3f48(%rsp)
jne 0x125e14a
movq 0x200(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125e11b
movq 0x200(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x125e119
jmp 0x125e148
movq 0x200(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4858(%rsp)
cmpq $0x0, 0x4858(%rsp)
je 0x125e146
movq 0x4858(%rsp), %rdi
callq 0x5f480
jmp 0x125e148
jmp 0x125e14a
movq 0x200(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125e1a5
movq %rax, %rdi
callq 0x678a0
jmp 0x125e1a7
leaq 0xde0(%rsp), %rax
movq %rax, 0x2a60(%rsp)
movq 0x2a60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1f0(%rsp)
leaq 0xde0(%rsp), %rax
movq %rax, 0x26e8(%rsp)
movq 0x26e8(%rsp), %rax
movq %rax, 0x4020(%rsp)
movq 0x4020(%rsp), %rax
movq %rax, 0x1f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125e292
movq 0x1f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x401c(%rsp) # imm = 0xFFFFFFFF
movl 0x401c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4018(%rsp)
cmpl $0x1, 0x4018(%rsp)
jne 0x125e292
movq 0x1f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125e263
movq 0x1f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x125e261
jmp 0x125e290
movq 0x1f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47f0(%rsp)
cmpq $0x0, 0x47f0(%rsp)
je 0x125e28e
movq 0x47f0(%rsp), %rdi
callq 0x5f480
jmp 0x125e290
jmp 0x125e292
movq 0x1f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125e2ed
movq %rax, %rdi
callq 0x678a0
movq 0x1f0(%rsp), %rax
movq %rax, 0xe28(%rsp)
movl $0x0, 0xddc(%rsp)
movl 0xddc(%rsp), %eax
cmpl 0x1ed8(%rsp), %eax
jge 0x125e401
movq 0xe80(%rsp), %rax
movslq 0xddc(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xdd8(%rsp)
movl $0x0, 0xdd4(%rsp)
movl 0xdd4(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x125e3a9
movq 0xe78(%rsp), %rdx
movslq 0xdd4(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xdd8(%rsp), %rsi
callq 0x12780f0
movq 0xe28(%rsp), %rax
movslq 0xdd4(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xdd4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdd4(%rsp)
jmp 0x125e345
movl 0x1edc(%rsp), %ecx
movq 0xe78(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xe78(%rsp)
movl 0x1edc(%rsp), %ecx
movq 0xe28(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xe28(%rsp)
movl 0xddc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xddc(%rsp)
jmp 0x125e308
jmp 0x125e403
movl 0xe8c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xe8c(%rsp)
jmp 0x125da06
movl $0x0, 0x1f24(%rsp)
jmp 0x1261ae5
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movq 0x1ee0(%rsp), %rcx
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6f5a0
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f70(%rsp)
movq 0x1f70(%rsp), %rcx
movq %rcx, 0x1e0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1ef(%rsp)
je 0x125e4b9
movq 0x1e0(%rsp), %rax
movq %rax, 0x2d78(%rsp)
movq 0x2d78(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1ef(%rsp)
movb 0x1ef(%rsp), %al
testb $0x1, %al
jne 0x125e4c6
jmp 0x125e4d6
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1261ae5
movq 0x1f10(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x125e5e6
movl $0x0, 0xdd0(%rsp)
movl 0xdd0(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x125e5d6
movq 0x1f18(%rsp), %rcx
movslq 0xdd0(%rsp), %rax
movq %rcx, 0x2c58(%rsp)
movq %rax, 0x2c50(%rsp)
movq 0x2c58(%rsp), %rax
movq (%rax), %rsi
movq 0x2c50(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1f10(%rsp), %rcx
movslq 0xdd0(%rsp), %rax
movq %rcx, 0x2c48(%rsp)
movq %rax, 0x2c40(%rsp)
movq 0x2c48(%rsp), %rax
movq (%rax), %rdx
movq 0x2c40(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x12780f0
movq 0x1f08(%rsp), %rcx
movslq 0xdd0(%rsp), %rax
movq %rcx, 0x2cf8(%rsp)
movq %rax, 0x2cf0(%rsp)
movq 0x2cf8(%rsp), %rax
movq (%rax), %rax
movq 0x2cf0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xdd0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdd0(%rsp)
jmp 0x125e4f3
movl $0x0, 0x1f24(%rsp)
jmp 0x1261ae5
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x125e93d
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movq 0x1ee0(%rsp), %rcx
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6f5a0
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f68(%rsp)
movq 0x1f68(%rsp), %rcx
movq %rcx, 0x1d0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1df(%rsp)
je 0x125e688
movq 0x1d0(%rsp), %rax
movq %rax, 0x2d80(%rsp)
movq 0x2d80(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1df(%rsp)
movb 0x1df(%rsp), %al
testb $0x1, %al
jne 0x125e695
jmp 0x125e6a5
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1261ae5
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x125e7c0
movq 0x1f10(%rsp), %rax
movq %rax, 0x2c38(%rsp)
movq $0x0, 0x2c30(%rsp)
movq 0x2c38(%rsp), %rax
movq (%rax), %rax
movq 0x2c30(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xdcc(%rsp)
movl $0x0, 0xdc8(%rsp)
movl 0xdc8(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x125e7b0
movq 0x1f18(%rsp), %rcx
movslq 0xdc8(%rsp), %rax
movq %rcx, 0x2c28(%rsp)
movq %rax, 0x2c20(%rsp)
movq 0x2c28(%rsp), %rax
movq (%rax), %rsi
movq 0x2c20(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0xdcc(%rsp), %rdx
callq 0x12780f0
movq 0x1f08(%rsp), %rcx
movslq 0xdc8(%rsp), %rax
movq %rcx, 0x2ce8(%rsp)
movq %rax, 0x2ce0(%rsp)
movq 0x2ce8(%rsp), %rax
movq (%rax), %rax
movq 0x2ce0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xdc8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdc8(%rsp)
jmp 0x125e6ff
movl $0x0, 0x1f24(%rsp)
jmp 0x1261ae5
movq 0x1f18(%rsp), %rax
movq %rax, 0x2348(%rsp)
movq 0x2348(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xdc0(%rsp)
movq 0x1f08(%rsp), %rax
movq %rax, 0x2a58(%rsp)
movq 0x2a58(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xdb8(%rsp)
movl $0x0, 0xdb4(%rsp)
movl 0xdb4(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jge 0x125e92d
movq 0x1f10(%rsp), %rcx
movslq 0xdb4(%rsp), %rax
movq %rcx, 0x2c18(%rsp)
movq %rax, 0x2c10(%rsp)
movq 0x2c18(%rsp), %rax
movq (%rax), %rax
movq 0x2c10(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xdb0(%rsp)
movl $0x0, 0xdac(%rsp)
movl 0xdac(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x125e8d5
movq 0xdc0(%rsp), %rsi
movslq 0xdac(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0xdb0(%rsp), %rdx
callq 0x12780f0
movq 0xdb8(%rsp), %rax
movslq 0xdac(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xdac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdac(%rsp)
jmp 0x125e871
movl 0x1ef8(%rsp), %ecx
movq 0xdc0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xdc0(%rsp)
movl 0x1ef8(%rsp), %ecx
movq 0xdb8(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xdb8(%rsp)
movl 0xdb4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdb4(%rsp)
jmp 0x125e811
movl $0x0, 0x1f24(%rsp)
jmp 0x1261ae5
jmp 0x1261ad6
movq 0x1f18(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1261ad4
movq 0x1f18(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x12601a3
movq 0x1f10(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x125f3c5
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed4(%rsp), %ecx
movl 0x1ed0(%rsp), %r8d
movq 0x1ee0(%rsp), %r9
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6fb30
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f60(%rsp)
movq 0x1f60(%rsp), %rcx
movq %rcx, 0x1c0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1cf(%rsp)
je 0x125ea1b
movq 0x1c0(%rsp), %rax
movq %rax, 0x2d88(%rsp)
movq 0x2d88(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1cf(%rsp)
movb 0x1cf(%rsp), %al
testb $0x1, %al
jne 0x125ea28
jmp 0x125ea38
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1261ae5
movq 0x1f18(%rsp), %rax
movq %rax, 0x2c08(%rsp)
movq $0x0, 0x2c00(%rsp)
movq 0x2c08(%rsp), %rax
movq (%rax), %rax
movq 0x2c00(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xda8(%rsp)
movl $0x0, 0xda4(%rsp)
movl 0xda4(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x125f3b5
movq 0x1f10(%rsp), %rcx
movl 0xda4(%rsp), %eax
leaq 0xd50(%rsp), %rdx
movq %rdx, 0x2048(%rsp)
movq %rcx, 0x2040(%rsp)
movl %eax, 0x203c(%rsp)
movq 0x2040(%rsp), %rax
movq %rax, 0x1b8(%rsp)
movb $0x0, 0x203b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x203c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xd50(%rsp), %r10
movq %r10, 0x39c8(%rsp)
movl %r9d, 0x39c4(%rsp)
movl %r8d, 0x39c0(%rsp)
movl %edi, 0x39bc(%rsp)
movq %rsi, 0x39b0(%rsp)
movq %rdx, 0x39a8(%rsp)
movl %ecx, 0x39a4(%rsp)
movq %rax, 0x3998(%rsp)
movq 0x39c8(%rsp), %rcx
movq %rcx, 0x1b0(%rsp)
movq 0x39b0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x39a8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x39a4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3998(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x39c4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x39c0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x39bc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ab0(%rsp)
movl $0x10, 0x3aac(%rsp)
movq 0x3ab0(%rsp), %rax
movslq 0x3aac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3aac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x1b8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xd78(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x125ec50
movq 0x1b8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd90(%rsp)
movb $0x1, 0x203b(%rsp)
testb $0x1, 0x203b(%rsp)
jne 0x125ed8b
leaq 0xd50(%rsp), %rax
movq %rax, 0x2540(%rsp)
movq 0x2540(%rsp), %rax
movq %rax, 0x4370(%rsp)
movq 0x4370(%rsp), %rax
movq %rax, 0x1a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125ed2e
movq 0x1a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x436c(%rsp) # imm = 0xFFFFFFFF
movl 0x436c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4368(%rsp)
cmpl $0x1, 0x4368(%rsp)
jne 0x125ed2e
movq 0x1a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125ecff
movq 0x1a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x125ecfd
jmp 0x125ed2c
movq 0x1a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4648(%rsp)
cmpq $0x0, 0x4648(%rsp)
je 0x125ed2a
movq 0x4648(%rsp), %rdi
callq 0x5f480
jmp 0x125ed2c
jmp 0x125ed2e
movq 0x1a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125ed89
movq %rax, %rdi
callq 0x678a0
jmp 0x125ed8b
leaq 0xd50(%rsp), %rax
movq %rax, 0x2340(%rsp)
movq 0x2340(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x198(%rsp)
leaq 0xd50(%rsp), %rax
movq %rax, 0x26f0(%rsp)
movq 0x26f0(%rsp), %rax
movq %rax, 0x4010(%rsp)
movq 0x4010(%rsp), %rax
movq %rax, 0x1a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125ee76
movq 0x1a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x400c(%rsp) # imm = 0xFFFFFFFF
movl 0x400c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4008(%rsp)
cmpl $0x1, 0x4008(%rsp)
jne 0x125ee76
movq 0x1a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125ee47
movq 0x1a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x125ee45
jmp 0x125ee74
movq 0x1a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47f8(%rsp)
cmpq $0x0, 0x47f8(%rsp)
je 0x125ee72
movq 0x47f8(%rsp), %rdi
callq 0x5f480
jmp 0x125ee74
jmp 0x125ee76
movq 0x1a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125eed1
movq %rax, %rdi
callq 0x678a0
movq 0x198(%rsp), %rax
movq %rax, 0xd98(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0xda4(%rsp), %eax
leaq 0xd00(%rsp), %rdx
movq %rdx, 0x27a0(%rsp)
movq %rcx, 0x2798(%rsp)
movl %eax, 0x2794(%rsp)
movq 0x2798(%rsp), %rax
movq %rax, 0x190(%rsp)
movb $0x0, 0x2793(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2794(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xd00(%rsp), %r10
movq %r10, 0x3258(%rsp)
movl %r9d, 0x3254(%rsp)
movl %r8d, 0x3250(%rsp)
movl %edi, 0x324c(%rsp)
movq %rsi, 0x3240(%rsp)
movq %rdx, 0x3238(%rsp)
movl %ecx, 0x3234(%rsp)
movq %rax, 0x3228(%rsp)
movq 0x3258(%rsp), %rcx
movq %rcx, 0x188(%rsp)
movq 0x3240(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3238(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3234(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3228(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3254(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3250(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x324c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3cd0(%rsp)
movl $0x10, 0x3ccc(%rsp)
movq 0x3cd0(%rsp), %rax
movslq 0x3ccc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3ccc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x190(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xd28(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x125f09d
movq 0x190(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd40(%rsp)
movb $0x1, 0x2793(%rsp)
testb $0x1, 0x2793(%rsp)
jne 0x125f1d8
leaq 0xd00(%rsp), %rax
movq %rax, 0x27a8(%rsp)
movq 0x27a8(%rsp), %rax
movq %rax, 0x3f60(%rsp)
movq 0x3f60(%rsp), %rax
movq %rax, 0x180(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125f17b
movq 0x180(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f5c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f5c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f58(%rsp)
cmpl $0x1, 0x3f58(%rsp)
jne 0x125f17b
movq 0x180(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125f14c
movq 0x180(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x125f14a
jmp 0x125f179
movq 0x180(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4850(%rsp)
cmpq $0x0, 0x4850(%rsp)
je 0x125f177
movq 0x4850(%rsp), %rdi
callq 0x5f480
jmp 0x125f179
jmp 0x125f17b
movq 0x180(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125f1d6
movq %rax, %rdi
callq 0x678a0
jmp 0x125f1d8
leaq 0xd00(%rsp), %rax
movq %rax, 0x2a50(%rsp)
movq 0x2a50(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x170(%rsp)
leaq 0xd00(%rsp), %rax
movq %rax, 0x26f8(%rsp)
movq 0x26f8(%rsp), %rax
movq %rax, 0x4000(%rsp)
movq 0x4000(%rsp), %rax
movq %rax, 0x178(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125f2c3
movq 0x178(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ffc(%rsp) # imm = 0xFFFFFFFF
movl 0x3ffc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ff8(%rsp)
cmpl $0x1, 0x3ff8(%rsp)
jne 0x125f2c3
movq 0x178(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125f294
movq 0x178(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x125f292
jmp 0x125f2c1
movq 0x178(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4800(%rsp)
cmpq $0x0, 0x4800(%rsp)
je 0x125f2bf
movq 0x4800(%rsp), %rdi
callq 0x5f480
jmp 0x125f2c1
jmp 0x125f2c3
movq 0x178(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125f31e
movq %rax, %rdi
callq 0x678a0
movq 0x170(%rsp), %rax
movq %rax, 0xd48(%rsp)
movl $0x0, 0xcfc(%rsp)
movl 0xcfc(%rsp), %eax
cmpl 0x1ecc(%rsp), %eax
jge 0x125f39d
movq 0xd98(%rsp), %rdx
movslq 0xcfc(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xda8(%rsp), %rsi
callq 0x12780f0
movq 0xd48(%rsp), %rax
movslq 0xcfc(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xcfc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xcfc(%rsp)
jmp 0x125f339
jmp 0x125f39f
movl 0xda4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xda4(%rsp)
jmp 0x125ea80
movl $0x0, 0x1f24(%rsp)
jmp 0x1261ae5
movq 0x1f10(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x125fe18
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed0(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f58(%rsp)
movq 0x1f58(%rsp), %rcx
movq %rcx, 0x160(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x16f(%rsp)
je 0x125f46e
movq 0x160(%rsp), %rax
movq %rax, 0x2d90(%rsp)
movq 0x2d90(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x16f(%rsp)
movb 0x16f(%rsp), %al
testb $0x1, %al
jne 0x125f47b
jmp 0x125f48b
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1261ae5
movq 0x1f18(%rsp), %rax
movq %rax, 0x2bf8(%rsp)
movq $0x0, 0x2bf0(%rsp)
movq 0x2bf8(%rsp), %rax
movq (%rax), %rax
movq 0x2bf0(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xcf8(%rsp)
movl $0x0, 0xcf4(%rsp)
movl 0xcf4(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x125fe08
movq 0x1f10(%rsp), %rcx
movl 0xcf4(%rsp), %eax
leaq 0xca0(%rsp), %rdx
movq %rdx, 0x2030(%rsp)
movq %rcx, 0x2028(%rsp)
movl %eax, 0x2024(%rsp)
movq 0x2028(%rsp), %rax
movq %rax, 0x158(%rsp)
movb $0x0, 0x2023(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2024(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xca0(%rsp), %r10
movq %r10, 0x3a00(%rsp)
movl %r9d, 0x39fc(%rsp)
movl %r8d, 0x39f8(%rsp)
movl %edi, 0x39f4(%rsp)
movq %rsi, 0x39e8(%rsp)
movq %rdx, 0x39e0(%rsp)
movl %ecx, 0x39dc(%rsp)
movq %rax, 0x39d0(%rsp)
movq 0x3a00(%rsp), %rcx
movq %rcx, 0x150(%rsp)
movq 0x39e8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x39e0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x39dc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x39d0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x39fc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x39f8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x39f4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3aa0(%rsp)
movl $0x10, 0x3a9c(%rsp)
movq 0x3aa0(%rsp), %rax
movslq 0x3a9c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3a9c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x158(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xcc8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x125f6a3
movq 0x158(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xce0(%rsp)
movb $0x1, 0x2023(%rsp)
testb $0x1, 0x2023(%rsp)
jne 0x125f7de
leaq 0xca0(%rsp), %rax
movq %rax, 0x2548(%rsp)
movq 0x2548(%rsp), %rax
movq %rax, 0x4360(%rsp)
movq 0x4360(%rsp), %rax
movq %rax, 0x148(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125f781
movq 0x148(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x435c(%rsp) # imm = 0xFFFFFFFF
movl 0x435c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4358(%rsp)
cmpl $0x1, 0x4358(%rsp)
jne 0x125f781
movq 0x148(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125f752
movq 0x148(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x125f750
jmp 0x125f77f
movq 0x148(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4650(%rsp)
cmpq $0x0, 0x4650(%rsp)
je 0x125f77d
movq 0x4650(%rsp), %rdi
callq 0x5f480
jmp 0x125f77f
jmp 0x125f781
movq 0x148(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125f7dc
movq %rax, %rdi
callq 0x678a0
jmp 0x125f7de
leaq 0xca0(%rsp), %rax
movq %rax, 0x2338(%rsp)
movq 0x2338(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x138(%rsp)
leaq 0xca0(%rsp), %rax
movq %rax, 0x2700(%rsp)
movq 0x2700(%rsp), %rax
movq %rax, 0x3ff0(%rsp)
movq 0x3ff0(%rsp), %rax
movq %rax, 0x140(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125f8c9
movq 0x140(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fec(%rsp) # imm = 0xFFFFFFFF
movl 0x3fec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fe8(%rsp)
cmpl $0x1, 0x3fe8(%rsp)
jne 0x125f8c9
movq 0x140(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125f89a
movq 0x140(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x125f898
jmp 0x125f8c7
movq 0x140(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4808(%rsp)
cmpq $0x0, 0x4808(%rsp)
je 0x125f8c5
movq 0x4808(%rsp), %rdi
callq 0x5f480
jmp 0x125f8c7
jmp 0x125f8c9
movq 0x140(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125f924
movq %rax, %rdi
callq 0x678a0
movq 0x138(%rsp), %rax
movq %rax, 0xce8(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0xcf4(%rsp), %eax
leaq 0xc50(%rsp), %rdx
movq %rdx, 0x2780(%rsp)
movq %rcx, 0x2778(%rsp)
movl %eax, 0x2774(%rsp)
movq 0x2778(%rsp), %rax
movq %rax, 0x130(%rsp)
movb $0x0, 0x2773(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2774(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xc50(%rsp), %r10
movq %r10, 0x3290(%rsp)
movl %r9d, 0x328c(%rsp)
movl %r8d, 0x3288(%rsp)
movl %edi, 0x3284(%rsp)
movq %rsi, 0x3278(%rsp)
movq %rdx, 0x3270(%rsp)
movl %ecx, 0x326c(%rsp)
movq %rax, 0x3260(%rsp)
movq 0x3290(%rsp), %rcx
movq %rcx, 0x128(%rsp)
movq 0x3278(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3270(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x326c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3260(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x328c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3288(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3284(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3cc0(%rsp)
movl $0x10, 0x3cbc(%rsp)
movq 0x3cc0(%rsp), %rax
movslq 0x3cbc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cbc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x130(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc78(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x125faf0
movq 0x130(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xc90(%rsp)
movb $0x1, 0x2773(%rsp)
testb $0x1, 0x2773(%rsp)
jne 0x125fc2b
leaq 0xc50(%rsp), %rax
movq %rax, 0x2788(%rsp)
movq 0x2788(%rsp), %rax
movq %rax, 0x3f70(%rsp)
movq 0x3f70(%rsp), %rax
movq %rax, 0x120(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125fbce
movq 0x120(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f6c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f6c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f68(%rsp)
cmpl $0x1, 0x3f68(%rsp)
jne 0x125fbce
movq 0x120(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125fb9f
movq 0x120(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x125fb9d
jmp 0x125fbcc
movq 0x120(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4848(%rsp)
cmpq $0x0, 0x4848(%rsp)
je 0x125fbca
movq 0x4848(%rsp), %rdi
callq 0x5f480
jmp 0x125fbcc
jmp 0x125fbce
movq 0x120(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125fc29
movq %rax, %rdi
callq 0x678a0
jmp 0x125fc2b
leaq 0xc50(%rsp), %rax
movq %rax, 0x2a48(%rsp)
movq 0x2a48(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x110(%rsp)
leaq 0xc50(%rsp), %rax
movq %rax, 0x2708(%rsp)
movq 0x2708(%rsp), %rax
movq %rax, 0x3fe0(%rsp)
movq 0x3fe0(%rsp), %rax
movq %rax, 0x118(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x125fd16
movq 0x118(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fdc(%rsp) # imm = 0xFFFFFFFF
movl 0x3fdc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fd8(%rsp)
cmpl $0x1, 0x3fd8(%rsp)
jne 0x125fd16
movq 0x118(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x125fce7
movq 0x118(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x125fce5
jmp 0x125fd14
movq 0x118(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4810(%rsp)
cmpq $0x0, 0x4810(%rsp)
je 0x125fd12
movq 0x4810(%rsp), %rdi
callq 0x5f480
jmp 0x125fd14
jmp 0x125fd16
movq 0x118(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x125fd71
movq %rax, %rdi
callq 0x678a0
movq 0x110(%rsp), %rax
movq %rax, 0xc98(%rsp)
movl $0x0, 0xc4c(%rsp)
movl 0xc4c(%rsp), %eax
cmpl 0x1ecc(%rsp), %eax
jge 0x125fdf0
movq 0xce8(%rsp), %rdx
movslq 0xc4c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xcf8(%rsp), %rsi
callq 0x12780f0
movq 0xc98(%rsp), %rax
movslq 0xc4c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xc4c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xc4c(%rsp)
jmp 0x125fd8c
jmp 0x125fdf2
movl 0xcf4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xcf4(%rsp)
jmp 0x125f4d3
movl $0x0, 0x1f24(%rsp)
jmp 0x1261ae5
movq 0x1f10(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x125ffe0
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movq 0x1ee0(%rsp), %rcx
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6f5a0
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f50(%rsp)
movq 0x1f50(%rsp), %rcx
movq %rcx, 0x100(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x10f(%rsp)
je 0x125feba
movq 0x100(%rsp), %rax
movq %rax, 0x2d98(%rsp)
movq 0x2d98(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x10f(%rsp)
movb 0x10f(%rsp), %al
testb $0x1, %al
jne 0x125fec7
jmp 0x125fed7
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1261ae5
movq 0x1f18(%rsp), %rax
movq %rax, 0x2be8(%rsp)
movq $0x0, 0x2be0(%rsp)
movq 0x2be8(%rsp), %rax
movq (%rax), %rax
movq 0x2be0(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xc48(%rsp)
movl $0x0, 0xc44(%rsp)
movl 0xc44(%rsp), %eax
cmpl 0x1ecc(%rsp), %eax
jge 0x125ffd0
movq 0x1f10(%rsp), %rcx
movslq 0xc44(%rsp), %rax
movq %rcx, 0x2bd8(%rsp)
movq %rax, 0x2bd0(%rsp)
movq 0x2bd8(%rsp), %rax
movq (%rax), %rdx
movq 0x2bd0(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xc48(%rsp), %rsi
callq 0x12780f0
movq 0x1f08(%rsp), %rcx
movslq 0xc44(%rsp), %rax
movq %rcx, 0x2cd8(%rsp)
movq %rax, 0x2cd0(%rsp)
movq 0x2cd8(%rsp), %rax
movq (%rax), %rax
movq 0x2cd0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xc44(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xc44(%rsp)
jmp 0x125ff1f
movl $0x0, 0x1f24(%rsp)
jmp 0x1261ae5
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x12601a1
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movq 0x1ee0(%rsp), %rdx
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rcx
callq 0x6f320
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f48(%rsp)
movq 0x1f48(%rsp), %rcx
movq %rcx, 0xf0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xff(%rsp)
je 0x126007b
movq 0xf0(%rsp), %rax
movq %rax, 0x2da0(%rsp)
movq 0x2da0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xff(%rsp)
movb 0xff(%rsp), %al
testb $0x1, %al
jne 0x1260088
jmp 0x1260098
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1261ae5
movq 0x1f18(%rsp), %rax
movq %rax, 0x2bc8(%rsp)
movq $0x0, 0x2bc0(%rsp)
movq 0x2bc8(%rsp), %rax
movq (%rax), %rax
movq 0x2bc0(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xc40(%rsp)
movl $0x0, 0xc3c(%rsp)
movl 0xc3c(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x1260191
movq 0x1f10(%rsp), %rcx
movslq 0xc3c(%rsp), %rax
movq %rcx, 0x2bb8(%rsp)
movq %rax, 0x2bb0(%rsp)
movq 0x2bb8(%rsp), %rax
movq (%rax), %rdx
movq 0x2bb0(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xc40(%rsp), %rsi
callq 0x12780f0
movq 0x1f08(%rsp), %rcx
movslq 0xc3c(%rsp), %rax
movq %rcx, 0x2cc8(%rsp)
movq %rax, 0x2cc0(%rsp)
movq 0x2cc8(%rsp), %rax
movq (%rax), %rax
movq 0x2cc0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xc3c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xc3c(%rsp)
jmp 0x12600e0
movl $0x0, 0x1f24(%rsp)
jmp 0x1261ae5
jmp 0x12601a3
movq 0x1f10(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1260c06
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed4(%rsp), %ecx
movl 0x1ed0(%rsp), %r8d
movq 0x1ee0(%rsp), %r9
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6fb30
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f40(%rsp)
movq 0x1f40(%rsp), %rcx
movq %rcx, 0xe0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xef(%rsp)
je 0x1260258
movq 0xe0(%rsp), %rax
movq %rax, 0x2da8(%rsp)
movq 0x2da8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xef(%rsp)
movb 0xef(%rsp), %al
testb $0x1, %al
jne 0x1260265
jmp 0x1260275
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1261ae5
movl $0x0, 0xc38(%rsp)
movl 0xc38(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x1260bf6
movq 0x1f18(%rsp), %rcx
movslq 0xc38(%rsp), %rax
movq %rcx, 0x2ba8(%rsp)
movq %rax, 0x2ba0(%rsp)
movq 0x2ba8(%rsp), %rax
movq (%rax), %rax
movq 0x2ba0(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xc34(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0xc38(%rsp), %eax
leaq 0xbe0(%rsp), %rdx
movq %rdx, 0x2018(%rsp)
movq %rcx, 0x2010(%rsp)
movl %eax, 0x200c(%rsp)
movq 0x2010(%rsp), %rax
movq %rax, 0xd8(%rsp)
movb $0x0, 0x200b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x200c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xbe0(%rsp), %r10
movq %r10, 0x3a38(%rsp)
movl %r9d, 0x3a34(%rsp)
movl %r8d, 0x3a30(%rsp)
movl %edi, 0x3a2c(%rsp)
movq %rsi, 0x3a20(%rsp)
movq %rdx, 0x3a18(%rsp)
movl %ecx, 0x3a14(%rsp)
movq %rax, 0x3a08(%rsp)
movq 0x3a38(%rsp), %rcx
movq %rcx, 0xd0(%rsp)
movq 0x3a20(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3a18(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3a14(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3a08(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3a34(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3a30(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3a2c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3a90(%rsp)
movl $0x10, 0x3a8c(%rsp)
movq 0x3a90(%rsp), %rax
movslq 0x3a8c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3a8c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xd8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc08(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1260491
movq 0xd8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xc20(%rsp)
movb $0x1, 0x200b(%rsp)
testb $0x1, 0x200b(%rsp)
jne 0x12605cc
leaq 0xbe0(%rsp), %rax
movq %rax, 0x2550(%rsp)
movq 0x2550(%rsp), %rax
movq %rax, 0x4350(%rsp)
movq 0x4350(%rsp), %rax
movq %rax, 0xc8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126056f
movq 0xc8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x434c(%rsp) # imm = 0xFFFFFFFF
movl 0x434c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4348(%rsp)
cmpl $0x1, 0x4348(%rsp)
jne 0x126056f
movq 0xc8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1260540
movq 0xc8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126053e
jmp 0x126056d
movq 0xc8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4658(%rsp)
cmpq $0x0, 0x4658(%rsp)
je 0x126056b
movq 0x4658(%rsp), %rdi
callq 0x5f480
jmp 0x126056d
jmp 0x126056f
movq 0xc8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12605ca
movq %rax, %rdi
callq 0x678a0
jmp 0x12605cc
leaq 0xbe0(%rsp), %rax
movq %rax, 0x2330(%rsp)
movq 0x2330(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xb8(%rsp)
leaq 0xbe0(%rsp), %rax
movq %rax, 0x2710(%rsp)
movq 0x2710(%rsp), %rax
movq %rax, 0x3fd0(%rsp)
movq 0x3fd0(%rsp), %rax
movq %rax, 0xc0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12606b7
movq 0xc0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fcc(%rsp) # imm = 0xFFFFFFFF
movl 0x3fcc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fc8(%rsp)
cmpl $0x1, 0x3fc8(%rsp)
jne 0x12606b7
movq 0xc0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1260688
movq 0xc0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1260686
jmp 0x12606b5
movq 0xc0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4818(%rsp)
cmpq $0x0, 0x4818(%rsp)
je 0x12606b3
movq 0x4818(%rsp), %rdi
callq 0x5f480
jmp 0x12606b5
jmp 0x12606b7
movq 0xc0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1260712
movq %rax, %rdi
callq 0x678a0
movq 0xb8(%rsp), %rax
movq %rax, 0xc28(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0xc38(%rsp), %eax
leaq 0xb90(%rsp), %rdx
movq %rdx, 0x2760(%rsp)
movq %rcx, 0x2758(%rsp)
movl %eax, 0x2754(%rsp)
movq 0x2758(%rsp), %rax
movq %rax, 0xb0(%rsp)
movb $0x0, 0x2753(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2754(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xb90(%rsp), %r10
movq %r10, 0x32c8(%rsp)
movl %r9d, 0x32c4(%rsp)
movl %r8d, 0x32c0(%rsp)
movl %edi, 0x32bc(%rsp)
movq %rsi, 0x32b0(%rsp)
movq %rdx, 0x32a8(%rsp)
movl %ecx, 0x32a4(%rsp)
movq %rax, 0x3298(%rsp)
movq 0x32c8(%rsp), %rcx
movq %rcx, 0xa8(%rsp)
movq 0x32b0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x32a8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x32a4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3298(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x32c4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x32c0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x32bc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3cb0(%rsp)
movl $0x10, 0x3cac(%rsp)
movq 0x3cb0(%rsp), %rax
movslq 0x3cac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xb0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xbb8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12608de
movq 0xb0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xbd0(%rsp)
movb $0x1, 0x2753(%rsp)
testb $0x1, 0x2753(%rsp)
jne 0x1260a19
leaq 0xb90(%rsp), %rax
movq %rax, 0x2768(%rsp)
movq 0x2768(%rsp), %rax
movq %rax, 0x3f80(%rsp)
movq 0x3f80(%rsp), %rax
movq %rax, 0xa0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12609bc
movq 0xa0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f7c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f7c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f78(%rsp)
cmpl $0x1, 0x3f78(%rsp)
jne 0x12609bc
movq 0xa0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126098d
movq 0xa0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126098b
jmp 0x12609ba
movq 0xa0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4840(%rsp)
cmpq $0x0, 0x4840(%rsp)
je 0x12609b8
movq 0x4840(%rsp), %rdi
callq 0x5f480
jmp 0x12609ba
jmp 0x12609bc
movq 0xa0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1260a17
movq %rax, %rdi
callq 0x678a0
jmp 0x1260a19
leaq 0xb90(%rsp), %rax
movq %rax, 0x2a40(%rsp)
movq 0x2a40(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x90(%rsp)
leaq 0xb90(%rsp), %rax
movq %rax, 0x2718(%rsp)
movq 0x2718(%rsp), %rax
movq %rax, 0x3fc0(%rsp)
movq 0x3fc0(%rsp), %rax
movq %rax, 0x98(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1260b04
movq 0x98(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fbc(%rsp) # imm = 0xFFFFFFFF
movl 0x3fbc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fb8(%rsp)
cmpl $0x1, 0x3fb8(%rsp)
jne 0x1260b04
movq 0x98(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1260ad5
movq 0x98(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1260ad3
jmp 0x1260b02
movq 0x98(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4820(%rsp)
cmpq $0x0, 0x4820(%rsp)
je 0x1260b00
movq 0x4820(%rsp), %rdi
callq 0x5f480
jmp 0x1260b02
jmp 0x1260b04
movq 0x98(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1260b5f
movq %rax, %rdi
callq 0x678a0
movq 0x90(%rsp), %rax
movq %rax, 0xbd8(%rsp)
movl $0x0, 0xb8c(%rsp)
movl 0xb8c(%rsp), %eax
cmpl 0x1ecc(%rsp), %eax
jge 0x1260bde
movq 0xc28(%rsp), %rdx
movslq 0xb8c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xc34(%rsp), %rsi
callq 0x12780f0
movq 0xbd8(%rsp), %rax
movslq 0xb8c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xb8c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xb8c(%rsp)
jmp 0x1260b7a
jmp 0x1260be0
movl 0xc38(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xc38(%rsp)
jmp 0x1260280
movl $0x0, 0x1f24(%rsp)
jmp 0x1261ae5
movq 0x1f10(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x12615f1
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed0(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f38(%rsp)
movq 0x1f38(%rsp), %rcx
movq %rcx, 0x80(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x8f(%rsp)
je 0x1260caf
movq 0x80(%rsp), %rax
movq %rax, 0x2db0(%rsp)
movq 0x2db0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x8f(%rsp)
movb 0x8f(%rsp), %al
testb $0x1, %al
jne 0x1260cbc
jmp 0x1260ccc
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1261ae5
movl $0x0, 0xb88(%rsp)
movl 0xb88(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x12615e1
movq 0x1f18(%rsp), %rcx
movslq 0xb88(%rsp), %rax
movq %rcx, 0x2b98(%rsp)
movq %rax, 0x2b90(%rsp)
movq 0x2b98(%rsp), %rax
movq (%rax), %rax
movq 0x2b90(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xb84(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0xb88(%rsp), %eax
leaq 0xb30(%rsp), %rdx
movq %rdx, 0x2000(%rsp)
movq %rcx, 0x1ff8(%rsp)
movl %eax, 0x1ff4(%rsp)
movq 0x1ff8(%rsp), %rax
movq %rax, 0x78(%rsp)
movb $0x0, 0x1ff3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1ff4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xb30(%rsp), %r10
movq %r10, 0x3a70(%rsp)
movl %r9d, 0x3a6c(%rsp)
movl %r8d, 0x3a68(%rsp)
movl %edi, 0x3a64(%rsp)
movq %rsi, 0x3a58(%rsp)
movq %rdx, 0x3a50(%rsp)
movl %ecx, 0x3a4c(%rsp)
movq %rax, 0x3a40(%rsp)
movq 0x3a70(%rsp), %rcx
movq %rcx, 0x70(%rsp)
movq 0x3a58(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3a50(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3a4c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3a40(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3a6c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3a68(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3a64(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3a80(%rsp)
movl $0x10, 0x3a7c(%rsp)
movq 0x3a80(%rsp), %rax
movslq 0x3a7c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3a7c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x78(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xb58(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1260edc
movq 0x78(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xb70(%rsp)
movb $0x1, 0x1ff3(%rsp)
testb $0x1, 0x1ff3(%rsp)
jne 0x1261005
leaq 0xb30(%rsp), %rax
movq %rax, 0x2558(%rsp)
movq 0x2558(%rsp), %rax
movq %rax, 0x4340(%rsp)
movq 0x4340(%rsp), %rax
movq %rax, 0x68(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1260fab
movq 0x68(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x433c(%rsp) # imm = 0xFFFFFFFF
movl 0x433c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4338(%rsp)
cmpl $0x1, 0x4338(%rsp)
jne 0x1260fab
movq 0x68(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1260f7f
movq 0x68(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1260f7d
jmp 0x1260fa9
movq 0x68(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4660(%rsp)
cmpq $0x0, 0x4660(%rsp)
je 0x1260fa7
movq 0x4660(%rsp), %rdi
callq 0x5f480
jmp 0x1260fa9
jmp 0x1260fab
movq 0x68(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1261003
movq %rax, %rdi
callq 0x678a0
jmp 0x1261005
leaq 0xb30(%rsp), %rax
movq %rax, 0x2328(%rsp)
movq 0x2328(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x58(%rsp)
leaq 0xb30(%rsp), %rax
movq %rax, 0x2720(%rsp)
movq 0x2720(%rsp), %rax
movq %rax, 0x3fb0(%rsp)
movq 0x3fb0(%rsp), %rax
movq %rax, 0x60(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12610de
movq 0x60(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fac(%rsp) # imm = 0xFFFFFFFF
movl 0x3fac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fa8(%rsp)
cmpl $0x1, 0x3fa8(%rsp)
jne 0x12610de
movq 0x60(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12610b2
movq 0x60(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12610b0
jmp 0x12610dc
movq 0x60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4828(%rsp)
cmpq $0x0, 0x4828(%rsp)
je 0x12610da
movq 0x4828(%rsp), %rdi
callq 0x5f480
jmp 0x12610dc
jmp 0x12610de
movq 0x60(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1261136
movq %rax, %rdi
callq 0x678a0
movq 0x58(%rsp), %rax
movq %rax, 0xb78(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0xb88(%rsp), %eax
leaq 0xae0(%rsp), %rdx
movq %rdx, 0x2740(%rsp)
movq %rcx, 0x2738(%rsp)
movl %eax, 0x2734(%rsp)
movq 0x2738(%rsp), %rax
movq %rax, 0x50(%rsp)
movb $0x0, 0x2733(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2734(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xae0(%rsp), %r10
movq %r10, 0x3300(%rsp)
movl %r9d, 0x32fc(%rsp)
movl %r8d, 0x32f8(%rsp)
movl %edi, 0x32f4(%rsp)
movq %rsi, 0x32e8(%rsp)
movq %rdx, 0x32e0(%rsp)
movl %ecx, 0x32dc(%rsp)
movq %rax, 0x32d0(%rsp)
movq 0x3300(%rsp), %rcx
movq %rcx, 0x48(%rsp)
movq 0x32e8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x32e0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x32dc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x32d0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x32fc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x32f8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x32f4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ca0(%rsp)
movl $0x10, 0x3c9c(%rsp)
movq 0x3ca0(%rsp), %rax
movslq 0x3c9c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c9c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x50(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xb08(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12612f3
movq 0x50(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xb20(%rsp)
movb $0x1, 0x2733(%rsp)
testb $0x1, 0x2733(%rsp)
jne 0x126141c
leaq 0xae0(%rsp), %rax
movq %rax, 0x2748(%rsp)
movq 0x2748(%rsp), %rax
movq %rax, 0x3f90(%rsp)
movq 0x3f90(%rsp), %rax
movq %rax, 0x40(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12613c2
movq 0x40(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f8c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f8c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f88(%rsp)
cmpl $0x1, 0x3f88(%rsp)
jne 0x12613c2
movq 0x40(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1261396
movq 0x40(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1261394
jmp 0x12613c0
movq 0x40(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4838(%rsp)
cmpq $0x0, 0x4838(%rsp)
je 0x12613be
movq 0x4838(%rsp), %rdi
callq 0x5f480
jmp 0x12613c0
jmp 0x12613c2
movq 0x40(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126141a
movq %rax, %rdi
callq 0x678a0
jmp 0x126141c
leaq 0xae0(%rsp), %rax
movq %rax, 0x2a38(%rsp)
movq 0x2a38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x30(%rsp)
leaq 0xae0(%rsp), %rax
movq %rax, 0x2728(%rsp)
movq 0x2728(%rsp), %rax
movq %rax, 0x3fa0(%rsp)
movq 0x3fa0(%rsp), %rax
movq %rax, 0x38(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12614f5
movq 0x38(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f9c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f9c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f98(%rsp)
cmpl $0x1, 0x3f98(%rsp)
jne 0x12614f5
movq 0x38(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12614c9
movq 0x38(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12614c7
jmp 0x12614f3
movq 0x38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4830(%rsp)
cmpq $0x0, 0x4830(%rsp)
je 0x12614f1
movq 0x4830(%rsp), %rdi
callq 0x5f480
jmp 0x12614f3
jmp 0x12614f5
movq 0x38(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126154d
movq %rax, %rdi
callq 0x678a0
movq 0x30(%rsp), %rax
movq %rax, 0xb28(%rsp)
movl $0x0, 0xadc(%rsp)
movl 0xadc(%rsp), %eax
cmpl 0x1ecc(%rsp), %eax
jge 0x12615c9
movq 0xb78(%rsp), %rdx
movslq 0xadc(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xb84(%rsp), %rsi
callq 0x12780f0
movq 0xb28(%rsp), %rax
movslq 0xadc(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xadc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xadc(%rsp)
jmp 0x1261565
jmp 0x12615cb
movl 0xb88(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xb88(%rsp)
jmp 0x1260cd7
movl $0x0, 0x1f24(%rsp)
jmp 0x1261ae5
movq 0x1f10(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x126181e
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movq 0x1ee0(%rsp), %rcx
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6f5a0
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f30(%rsp)
movq 0x1f30(%rsp), %rcx
movq %rcx, 0x20(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x2f(%rsp)
je 0x1261687
movq 0x20(%rsp), %rax
movq %rax, 0x2db8(%rsp)
movq 0x2db8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x2f(%rsp)
movb 0x2f(%rsp), %al
testb $0x1, %al
jne 0x1261691
jmp 0x12616a1
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1261ae5
movq 0x1f10(%rsp), %rax
movq %rax, 0x2320(%rsp)
movq 0x2320(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xad0(%rsp)
movq 0x1f08(%rsp), %rax
movq %rax, 0x2a30(%rsp)
movq 0x2a30(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xac8(%rsp)
movl $0x0, 0xac4(%rsp)
movl 0xac4(%rsp), %eax
cmpl 0x1ed8(%rsp), %eax
jge 0x126180e
movq 0x1f18(%rsp), %rcx
movslq 0xac4(%rsp), %rax
movq %rcx, 0x2b88(%rsp)
movq %rax, 0x2b80(%rsp)
movq 0x2b88(%rsp), %rax
movq (%rax), %rax
movq 0x2b80(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xac0(%rsp)
movl $0x0, 0xabc(%rsp)
movl 0xabc(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x12617b6
movq 0xad0(%rsp), %rdx
movslq 0xabc(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xac0(%rsp), %rsi
callq 0x12780f0
movq 0xac8(%rsp), %rax
movslq 0xabc(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xabc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xabc(%rsp)
jmp 0x1261752
movl 0x1edc(%rsp), %ecx
movq 0xad0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xad0(%rsp)
movl 0x1edc(%rsp), %ecx
movq 0xac8(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xac8(%rsp)
movl 0xac4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xac4(%rsp)
jmp 0x12616f2
movl $0x0, 0x1f24(%rsp)
jmp 0x1261ae5
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1261ad2
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movq 0x1ee0(%rsp), %rdx
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rcx
callq 0x6f320
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f28(%rsp)
movq 0x1f28(%rsp), %rcx
movq %rcx, 0x10(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1f(%rsp)
je 0x12618ad
movq 0x10(%rsp), %rax
movq %rax, 0x2dc0(%rsp)
movq 0x2dc0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1f(%rsp)
movb 0x1f(%rsp), %al
testb $0x1, %al
jne 0x12618b7
jmp 0x12618c7
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1261ae5
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x12619e2
movq 0x1f10(%rsp), %rax
movq %rax, 0x2b78(%rsp)
movq $0x0, 0x2b70(%rsp)
movq 0x2b78(%rsp), %rax
movq (%rax), %rax
movq 0x2b70(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xab8(%rsp)
movl $0x0, 0xab4(%rsp)
movl 0xab4(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x12619d2
movq 0x1f18(%rsp), %rcx
movslq 0xab4(%rsp), %rax
movq %rcx, 0x2b68(%rsp)
movq %rax, 0x2b60(%rsp)
movq 0x2b68(%rsp), %rax
movq (%rax), %rsi
movq 0x2b60(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0xab8(%rsp), %rdx
callq 0x12780f0
movq 0x1f08(%rsp), %rcx
movslq 0xab4(%rsp), %rax
movq %rcx, 0x2cb8(%rsp)
movq %rax, 0x2cb0(%rsp)
movq 0x2cb8(%rsp), %rax
movq (%rax), %rax
movq 0x2cb0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xab4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xab4(%rsp)
jmp 0x1261921
movl $0x0, 0x1f24(%rsp)
jmp 0x1261ae5
movl $0x0, 0xab0(%rsp)
movl 0xab0(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x1261ad0
movq 0x1f18(%rsp), %rcx
movslq 0xab0(%rsp), %rax
movq %rcx, 0x2b58(%rsp)
movq %rax, 0x2b50(%rsp)
movq 0x2b58(%rsp), %rax
movq (%rax), %rsi
movq 0x2b50(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1f10(%rsp), %rcx
movslq 0xab0(%rsp), %rax
movq %rcx, 0x2b48(%rsp)
movq %rax, 0x2b40(%rsp)
movq 0x2b48(%rsp), %rax
movq (%rax), %rdx
movq 0x2b40(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x12780f0
movq 0x1f08(%rsp), %rcx
movslq 0xab0(%rsp), %rax
movq %rcx, 0x2ca8(%rsp)
movq %rax, 0x2ca0(%rsp)
movq 0x2ca8(%rsp), %rax
movq (%rax), %rax
movq 0x2ca0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xab0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xab0(%rsp)
jmp 0x12619ed
jmp 0x1261ad2
jmp 0x1261ad4
jmp 0x1261ad6
jmp 0x1261ad8
jmp 0x1261ada
movl $0x0, 0x1f24(%rsp)
movl 0x1f24(%rsp), %eax
addq $0x48f8, %rsp # imm = 0x48F8
retq
nopw %cs:(%rax,%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/binaryop.cpp
|
2,112,806
|
int ncnn::binary_op<ncnn::binary_op_pow>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int size = w * h * d;
size_t elemsize = a.elemsize;
int w1 = b.w;
int h1 = b.h;
int d1 = b.d;
int channels1 = b.c;
int size1 = w1 * h1 * d1;
if (a.dims == 4)
{
if (b.dims == 4)
{
// type 29
c.create(w, h, d, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], ptr1[i]);
}
}
return 0;
}
c.create(w, h, d, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 3)
{
// type 28
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
for (int y = 0; y < h; y++)
{
const float b0 = ptr1[y];
for (int x = 0; x < w; x++)
{
outptr[x] = op(ptr[x], b0);
}
ptr += w;
outptr += w;
}
ptr1 += h;
}
}
return 0;
}
if (b.dims == 2)
{
// type 27
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
const float b0 = ptr1[z];
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
outptr[x] = op(ptr[x], b0);
}
ptr += w;
outptr += w;
}
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1)
{
// type 25
const float b0 = b[0];
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], b0);
}
}
return 0;
}
// type 26
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float b0 = b[q];
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], b0);
}
}
return 0;
}
}
else if (a.dims == 3)
{
if (b.dims == 4)
{
// type 23
c.create(w1, h1, d1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
for (int y = 0; y < h1; y++)
{
const float a0 = ptr[y];
for (int x = 0; x < w1; x++)
{
outptr[x] = op(a0, ptr1[x]);
}
ptr1 += w1;
outptr += w1;
}
ptr += h1;
}
}
return 0;
}
if (b.dims == 3)
{
if (w1 == 1 && h1 == 1 && channels1 == channels)
{
// special type 1
c.create(w, h, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* b0 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], b0[0]);
}
}
return 0;
}
if (w1 == w && h1 == h && channels1 == 1)
{
// special type 2
c.create(w, h, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b;
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], ptr1[i]);
}
}
return 0;
}
if (w == 1 && h == 1 && channels1 == channels)
{
// special type 3
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* a0 = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
outptr[i] = op(a0[0], ptr1[i]);
}
}
return 0;
}
if (w1 == w && h1 == h && channels == 1)
{
// special type 4
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a;
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
outptr[i] = op(ptr[i], ptr1[i]);
}
}
return 0;
}
if (w != 1 && w1 == 1 && h1 == h && channels1 == channels)
{
// special type 5
c.create(w, h, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
const float b0 = ptr1[y];
for (int x = 0; x < w; x++)
{
outptr[x] = op(ptr[x], b0);
}
ptr += w;
outptr += w;
}
}
return 0;
}
if (w1 == w && h != 1 && h1 == 1 && channels1 == channels)
{
// special type 6
c.create(w, h, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
outptr[x] = op(ptr[x], ptr1[x]);
}
ptr += w;
outptr += w;
}
}
return 0;
}
if (w1 != 1 && w == 1 && h1 == h && channels1 == channels)
{
// special type 7
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
const float a0 = ptr[y];
for (int x = 0; x < w1; x++)
{
outptr[x] = op(a0, ptr1[x]);
}
ptr1 += w1;
outptr += w1;
}
}
return 0;
}
if (w1 == w && h1 != 1 && h == 1 && channels1 == channels)
{
// special type 8
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
outptr[x] = op(ptr[x], ptr1[x]);
}
ptr1 += w1;
outptr += w1;
}
}
return 0;
}
// type 19
c.create(w, h, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], ptr1[i]);
}
}
return 0;
}
c.create(w, h, channels, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 18
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
const float b0 = ptr1[y];
for (int x = 0; x < w; x++)
{
outptr[x] = op(ptr[x], b0);
}
ptr += w;
outptr += w;
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1)
{
// type 16
const float b0 = b[0];
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], b0);
}
}
return 0;
}
// type 17
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float b0 = b[q];
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
outptr[i] = op(ptr[i], b0);
}
}
return 0;
}
}
else if (a.dims == 2)
{
if (b.dims == 4)
{
// type 22
c.create(w1, h1, d1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
const float a0 = ptr[z];
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
outptr[x] = op(a0, ptr1[x]);
}
ptr1 += w1;
outptr += w1;
}
}
}
return 0;
}
if (b.dims == 3)
{
// type 14
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
const float a0 = ptr[y];
for (int x = 0; x < w1; x++)
{
outptr[x] = op(a0, ptr1[x]);
}
ptr1 += w1;
outptr += w1;
}
}
return 0;
}
c.create(w, h, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 13
for (int i = 0; i < size; i++)
{
c[i] = op(a[i], b[i]);
}
return 0;
}
if (b.dims == 1)
{
c.create(w, h, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1)
{
// type 11
const float b0 = b[0];
for (int i = 0; i < size; i++)
{
c[i] = op(a[i], b0);
}
return 0;
}
// type 12
const float* ptr = a;
float* outptr = c;
for (int y = 0; y < h; y++)
{
const float b0 = b[y];
for (int x = 0; x < w; x++)
{
outptr[x] = op(ptr[x], b0);
}
ptr += w;
outptr += w;
}
return 0;
}
}
else if (a.dims == 1)
{
if (a.w == 1)
{
if (b.dims == 4)
{
// type 20
c.create(w1, h1, d1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
const float a0 = a[0];
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
outptr[i] = op(a0, ptr1[i]);
}
}
return 0;
}
if (b.dims == 3)
{
// type 4
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
const float a0 = a[0];
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
outptr[i] = op(a0, ptr1[i]);
}
}
return 0;
}
if (b.dims == 2)
{
// type 3
c.create(w1, h1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
const float a0 = a[0];
for (int i = 0; i < size1; i++)
{
c[i] = op(a0, b[i]);
}
return 0;
}
if (b.dims == 1)
{
// type 2
c.create(w1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
const float a0 = a[0];
for (int i = 0; i < w1; i++)
{
c[i] = op(a0, b[i]);
}
return 0;
}
}
if (b.dims == 4)
{
// type 21
c.create(w1, h1, d1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float a0 = a[q];
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
outptr[i] = op(a0, ptr1[i]);
}
}
return 0;
}
if (b.dims == 3)
{
// type 9
c.create(w1, h1, channels1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float a0 = a[q];
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
outptr[i] = op(a0, ptr1[i]);
}
}
return 0;
}
if (b.dims == 2)
{
// type 8
c.create(w1, h1, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
const float* ptr1 = b;
float* outptr = c;
for (int y = 0; y < h1; y++)
{
const float a0 = a[y];
for (int x = 0; x < w1; x++)
{
outptr[x] = op(a0, ptr1[x]);
}
ptr1 += w1;
outptr += w1;
}
return 0;
}
if (b.dims == 1)
{
c.create(w, elemsize, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1)
{
// type 6
const float b0 = b[0];
for (int i = 0; i < w; i++)
{
c[i] = op(a[i], b0);
}
return 0;
}
// type 7
for (int i = 0; i < w; i++)
{
c[i] = op(a[i], b[i]);
}
}
}
return 0;
}
|
subq $0x48f8, %rsp # imm = 0x48F8
movq %rdi, 0x1f18(%rsp)
movq %rsi, 0x1f10(%rsp)
movq %rdx, 0x1f08(%rsp)
movq %rcx, 0x1f00(%rsp)
movq 0x1f18(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x1ef8(%rsp)
movq 0x1f18(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x1ef4(%rsp)
movq 0x1f18(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x1ef0(%rsp)
movq 0x1f18(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x1eec(%rsp)
movl 0x1ef8(%rsp), %eax
imull 0x1ef4(%rsp), %eax
imull 0x1ef0(%rsp), %eax
movl %eax, 0x1ee8(%rsp)
movq 0x1f18(%rsp), %rax
movq 0x10(%rax), %rax
movq %rax, 0x1ee0(%rsp)
movq 0x1f10(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x1edc(%rsp)
movq 0x1f10(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x1ed8(%rsp)
movq 0x1f10(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x1ed4(%rsp)
movq 0x1f10(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x1ed0(%rsp)
movl 0x1edc(%rsp), %eax
imull 0x1ed8(%rsp), %eax
imull 0x1ed4(%rsp), %eax
movl %eax, 0x1ecc(%rsp)
movq 0x1f18(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x12657af
movq 0x1f10(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1262a97
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1ef0(%rsp), %ecx
movl 0x1eec(%rsp), %r8d
movq 0x1ee0(%rsp), %r9
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6fb30
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fe8(%rsp)
movq 0x1fe8(%rsp), %rcx
movq %rcx, 0xaa0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xaaf(%rsp)
je 0x1261cce
movq 0xaa0(%rsp), %rax
movq %rax, 0x2d00(%rsp)
movq 0x2d00(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xaaf(%rsp)
movb 0xaaf(%rsp), %al
testb $0x1, %al
jne 0x1261cdb
jmp 0x1261ceb
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1274f25
movl $0x0, 0x1ec8(%rsp)
movl 0x1ec8(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x1262a87
movq 0x1f18(%rsp), %rcx
movl 0x1ec8(%rsp), %eax
leaq 0x1e78(%rsp), %rdx
movq %rdx, 0x2318(%rsp)
movq %rcx, 0x2310(%rsp)
movl %eax, 0x230c(%rsp)
movq 0x2310(%rsp), %rax
movq %rax, 0xa98(%rsp)
movb $0x0, 0x230b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x230c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1e78(%rsp), %r10
movq %r10, 0x3338(%rsp)
movl %r9d, 0x3334(%rsp)
movl %r8d, 0x3330(%rsp)
movl %edi, 0x332c(%rsp)
movq %rsi, 0x3320(%rsp)
movq %rdx, 0x3318(%rsp)
movl %ecx, 0x3314(%rsp)
movq %rax, 0x3308(%rsp)
movq 0x3338(%rsp), %rcx
movq %rcx, 0xa90(%rsp)
movq 0x3320(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3318(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3314(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3308(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3334(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3330(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x332c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c90(%rsp)
movl $0x10, 0x3c8c(%rsp)
movq 0x3c90(%rsp), %rax
movslq 0x3c8c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c8c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xa98(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1ea0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1261ec6
movq 0xa98(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1eb8(%rsp)
movb $0x1, 0x230b(%rsp)
testb $0x1, 0x230b(%rsp)
jne 0x1262001
leaq 0x1e78(%rsp), %rax
movq %rax, 0x2450(%rsp)
movq 0x2450(%rsp), %rax
movq %rax, 0x4550(%rsp)
movq 0x4550(%rsp), %rax
movq %rax, 0xa88(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1261fa4
movq 0xa88(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x454c(%rsp) # imm = 0xFFFFFFFF
movl 0x454c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4548(%rsp)
cmpl $0x1, 0x4548(%rsp)
jne 0x1261fa4
movq 0xa88(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1261f75
movq 0xa88(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1261f73
jmp 0x1261fa2
movq 0xa88(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4558(%rsp)
cmpq $0x0, 0x4558(%rsp)
je 0x1261fa0
movq 0x4558(%rsp), %rdi
callq 0x5f480
jmp 0x1261fa2
jmp 0x1261fa4
movq 0xa88(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1261fff
movq %rax, %rdi
callq 0x678a0
jmp 0x1262001
leaq 0x1e78(%rsp), %rax
movq %rax, 0x2448(%rsp)
movq 0x2448(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xa78(%rsp)
leaq 0x1e78(%rsp), %rax
movq %rax, 0x2560(%rsp)
movq 0x2560(%rsp), %rax
movq %rax, 0x4330(%rsp)
movq 0x4330(%rsp), %rax
movq %rax, 0xa80(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12620ec
movq 0xa80(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x432c(%rsp) # imm = 0xFFFFFFFF
movl 0x432c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4328(%rsp)
cmpl $0x1, 0x4328(%rsp)
jne 0x12620ec
movq 0xa80(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12620bd
movq 0xa80(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12620bb
jmp 0x12620ea
movq 0xa80(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4668(%rsp)
cmpq $0x0, 0x4668(%rsp)
je 0x12620e8
movq 0x4668(%rsp), %rdi
callq 0x5f480
jmp 0x12620ea
jmp 0x12620ec
movq 0xa80(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1262147
movq %rax, %rdi
callq 0x678a0
movq 0xa78(%rsp), %rax
movq %rax, 0x1ec0(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1ec8(%rsp), %eax
leaq 0x1e28(%rsp), %rdx
movq %rdx, 0x2300(%rsp)
movq %rcx, 0x22f8(%rsp)
movl %eax, 0x22f4(%rsp)
movq 0x22f8(%rsp), %rax
movq %rax, 0xa70(%rsp)
movb $0x0, 0x22f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1e28(%rsp), %r10
movq %r10, 0x3370(%rsp)
movl %r9d, 0x336c(%rsp)
movl %r8d, 0x3368(%rsp)
movl %edi, 0x3364(%rsp)
movq %rsi, 0x3358(%rsp)
movq %rdx, 0x3350(%rsp)
movl %ecx, 0x334c(%rsp)
movq %rax, 0x3340(%rsp)
movq 0x3370(%rsp), %rcx
movq %rcx, 0xa68(%rsp)
movq 0x3358(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3350(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x334c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3340(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x336c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3368(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3364(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c80(%rsp)
movl $0x10, 0x3c7c(%rsp)
movq 0x3c80(%rsp), %rax
movslq 0x3c7c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c7c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xa70(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1e50(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1262313
movq 0xa70(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1e68(%rsp)
movb $0x1, 0x22f3(%rsp)
testb $0x1, 0x22f3(%rsp)
jne 0x126244e
leaq 0x1e28(%rsp), %rax
movq %rax, 0x2458(%rsp)
movq 0x2458(%rsp), %rax
movq %rax, 0x4540(%rsp)
movq 0x4540(%rsp), %rax
movq %rax, 0xa60(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12623f1
movq 0xa60(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x453c(%rsp) # imm = 0xFFFFFFFF
movl 0x453c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4538(%rsp)
cmpl $0x1, 0x4538(%rsp)
jne 0x12623f1
movq 0xa60(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12623c2
movq 0xa60(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12623c0
jmp 0x12623ef
movq 0xa60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4560(%rsp)
cmpq $0x0, 0x4560(%rsp)
je 0x12623ed
movq 0x4560(%rsp), %rdi
callq 0x5f480
jmp 0x12623ef
jmp 0x12623f1
movq 0xa60(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126244c
movq %rax, %rdi
callq 0x678a0
jmp 0x126244e
leaq 0x1e28(%rsp), %rax
movq %rax, 0x2440(%rsp)
movq 0x2440(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xa50(%rsp)
leaq 0x1e28(%rsp), %rax
movq %rax, 0x2568(%rsp)
movq 0x2568(%rsp), %rax
movq %rax, 0x4320(%rsp)
movq 0x4320(%rsp), %rax
movq %rax, 0xa58(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1262539
movq 0xa58(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x431c(%rsp) # imm = 0xFFFFFFFF
movl 0x431c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4318(%rsp)
cmpl $0x1, 0x4318(%rsp)
jne 0x1262539
movq 0xa58(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126250a
movq 0xa58(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1262508
jmp 0x1262537
movq 0xa58(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4670(%rsp)
cmpq $0x0, 0x4670(%rsp)
je 0x1262535
movq 0x4670(%rsp), %rdi
callq 0x5f480
jmp 0x1262537
jmp 0x1262539
movq 0xa58(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1262594
movq %rax, %rdi
callq 0x678a0
movq 0xa50(%rsp), %rax
movq %rax, 0x1e70(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1ec8(%rsp), %eax
leaq 0x1dd8(%rsp), %rdx
movq %rdx, 0x2a20(%rsp)
movq %rcx, 0x2a18(%rsp)
movl %eax, 0x2a14(%rsp)
movq 0x2a18(%rsp), %rax
movq %rax, 0xa48(%rsp)
movb $0x0, 0x2a13(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2a14(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1dd8(%rsp), %r10
movq %r10, 0x2df8(%rsp)
movl %r9d, 0x2df4(%rsp)
movl %r8d, 0x2df0(%rsp)
movl %edi, 0x2dec(%rsp)
movq %rsi, 0x2de0(%rsp)
movq %rdx, 0x2dd8(%rsp)
movl %ecx, 0x2dd4(%rsp)
movq %rax, 0x2dc8(%rsp)
movq 0x2df8(%rsp), %rcx
movq %rcx, 0xa40(%rsp)
movq 0x2de0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2dd8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2dd4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2dc8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2df4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2df0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2dec(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3e10(%rsp)
movl $0x10, 0x3e0c(%rsp)
movq 0x3e10(%rsp), %rax
movslq 0x3e0c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3e0c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xa48(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1e00(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1262760
movq 0xa48(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1e18(%rsp)
movb $0x1, 0x2a13(%rsp)
testb $0x1, 0x2a13(%rsp)
jne 0x126289b
leaq 0x1dd8(%rsp), %rax
movq %rax, 0x2a28(%rsp)
movq 0x2a28(%rsp), %rax
movq %rax, 0x3e20(%rsp)
movq 0x3e20(%rsp), %rax
movq %rax, 0xa38(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126283e
movq 0xa38(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e1c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e1c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e18(%rsp)
cmpl $0x1, 0x3e18(%rsp)
jne 0x126283e
movq 0xa38(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126280f
movq 0xa38(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126280d
jmp 0x126283c
movq 0xa38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48f0(%rsp)
cmpq $0x0, 0x48f0(%rsp)
je 0x126283a
movq 0x48f0(%rsp), %rdi
callq 0x5f480
jmp 0x126283c
jmp 0x126283e
movq 0xa38(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1262899
movq %rax, %rdi
callq 0x678a0
jmp 0x126289b
leaq 0x1dd8(%rsp), %rax
movq %rax, 0x2af8(%rsp)
movq 0x2af8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xa28(%rsp)
leaq 0x1dd8(%rsp), %rax
movq %rax, 0x2570(%rsp)
movq 0x2570(%rsp), %rax
movq %rax, 0x4310(%rsp)
movq 0x4310(%rsp), %rax
movq %rax, 0xa30(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1262986
movq 0xa30(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x430c(%rsp) # imm = 0xFFFFFFFF
movl 0x430c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4308(%rsp)
cmpl $0x1, 0x4308(%rsp)
jne 0x1262986
movq 0xa30(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1262957
movq 0xa30(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1262955
jmp 0x1262984
movq 0xa30(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4678(%rsp)
cmpq $0x0, 0x4678(%rsp)
je 0x1262982
movq 0x4678(%rsp), %rdi
callq 0x5f480
jmp 0x1262984
jmp 0x1262986
movq 0xa30(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12629e1
movq %rax, %rdi
callq 0x678a0
movq 0xa28(%rsp), %rax
movq %rax, 0x1e20(%rsp)
movl $0x0, 0x1dd4(%rsp)
movl 0x1dd4(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x1262a6f
movq 0x1ec0(%rsp), %rsi
movslq 0x1dd4(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1e70(%rsp), %rdx
movslq 0x1dd4(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x1278120
movq 0x1e20(%rsp), %rax
movslq 0x1dd4(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1dd4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1dd4(%rsp)
jmp 0x12629fc
jmp 0x1262a71
movl 0x1ec8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1ec8(%rsp)
jmp 0x1261cf6
movl $0x0, 0x1f24(%rsp)
jmp 0x1274f25
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1ef0(%rsp), %ecx
movl 0x1eec(%rsp), %r8d
movq 0x1ee0(%rsp), %r9
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6fb30
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fe0(%rsp)
movq 0x1fe0(%rsp), %rcx
movq %rcx, 0xa18(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xa27(%rsp)
je 0x1262b3a
movq 0xa18(%rsp), %rax
movq %rax, 0x2d08(%rsp)
movq 0x2d08(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xa27(%rsp)
movb 0xa27(%rsp), %al
testb $0x1, %al
jne 0x1262b47
jmp 0x1262b57
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1274f25
movq 0x1f10(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x12639f1
movl $0x0, 0x1dd0(%rsp)
movl 0x1dd0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x12639e1
movq 0x1f18(%rsp), %rcx
movl 0x1dd0(%rsp), %eax
leaq 0x1d80(%rsp), %rdx
movq %rdx, 0x22e8(%rsp)
movq %rcx, 0x22e0(%rsp)
movl %eax, 0x22dc(%rsp)
movq 0x22e0(%rsp), %rax
movq %rax, 0xa10(%rsp)
movb $0x0, 0x22db(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22dc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1d80(%rsp), %r10
movq %r10, 0x33a8(%rsp)
movl %r9d, 0x33a4(%rsp)
movl %r8d, 0x33a0(%rsp)
movl %edi, 0x339c(%rsp)
movq %rsi, 0x3390(%rsp)
movq %rdx, 0x3388(%rsp)
movl %ecx, 0x3384(%rsp)
movq %rax, 0x3378(%rsp)
movq 0x33a8(%rsp), %rcx
movq %rcx, 0xa08(%rsp)
movq 0x3390(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3388(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3384(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3378(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x33a4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x33a0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x339c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c70(%rsp)
movl $0x10, 0x3c6c(%rsp)
movq 0x3c70(%rsp), %rax
movslq 0x3c6c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c6c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xa10(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1da8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1262d44
movq 0xa10(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1dc0(%rsp)
movb $0x1, 0x22db(%rsp)
testb $0x1, 0x22db(%rsp)
jne 0x1262e7f
leaq 0x1d80(%rsp), %rax
movq %rax, 0x2460(%rsp)
movq 0x2460(%rsp), %rax
movq %rax, 0x4530(%rsp)
movq 0x4530(%rsp), %rax
movq %rax, 0xa00(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1262e22
movq 0xa00(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x452c(%rsp) # imm = 0xFFFFFFFF
movl 0x452c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4528(%rsp)
cmpl $0x1, 0x4528(%rsp)
jne 0x1262e22
movq 0xa00(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1262df3
movq 0xa00(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1262df1
jmp 0x1262e20
movq 0xa00(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4568(%rsp)
cmpq $0x0, 0x4568(%rsp)
je 0x1262e1e
movq 0x4568(%rsp), %rdi
callq 0x5f480
jmp 0x1262e20
jmp 0x1262e22
movq 0xa00(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1262e7d
movq %rax, %rdi
callq 0x678a0
jmp 0x1262e7f
leaq 0x1d80(%rsp), %rax
movq %rax, 0x2438(%rsp)
movq 0x2438(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x9f0(%rsp)
leaq 0x1d80(%rsp), %rax
movq %rax, 0x2578(%rsp)
movq 0x2578(%rsp), %rax
movq %rax, 0x4300(%rsp)
movq 0x4300(%rsp), %rax
movq %rax, 0x9f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1262f6a
movq 0x9f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42fc(%rsp) # imm = 0xFFFFFFFF
movl 0x42fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42f8(%rsp)
cmpl $0x1, 0x42f8(%rsp)
jne 0x1262f6a
movq 0x9f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1262f3b
movq 0x9f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1262f39
jmp 0x1262f68
movq 0x9f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4680(%rsp)
cmpq $0x0, 0x4680(%rsp)
je 0x1262f66
movq 0x4680(%rsp), %rdi
callq 0x5f480
jmp 0x1262f68
jmp 0x1262f6a
movq 0x9f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1262fc5
movq %rax, %rdi
callq 0x678a0
movq 0x9f0(%rsp), %rax
movq %rax, 0x1dc8(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1dd0(%rsp), %eax
leaq 0x1d30(%rsp), %rdx
movq %rdx, 0x22d0(%rsp)
movq %rcx, 0x22c8(%rsp)
movl %eax, 0x22c4(%rsp)
movq 0x22c8(%rsp), %rax
movq %rax, 0x9e8(%rsp)
movb $0x0, 0x22c3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22c4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1d30(%rsp), %r10
movq %r10, 0x33e0(%rsp)
movl %r9d, 0x33dc(%rsp)
movl %r8d, 0x33d8(%rsp)
movl %edi, 0x33d4(%rsp)
movq %rsi, 0x33c8(%rsp)
movq %rdx, 0x33c0(%rsp)
movl %ecx, 0x33bc(%rsp)
movq %rax, 0x33b0(%rsp)
movq 0x33e0(%rsp), %rcx
movq %rcx, 0x9e0(%rsp)
movq 0x33c8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x33c0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x33bc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x33b0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x33dc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x33d8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x33d4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c60(%rsp)
movl $0x10, 0x3c5c(%rsp)
movq 0x3c60(%rsp), %rax
movslq 0x3c5c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c5c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x9e8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1d58(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1263191
movq 0x9e8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1d70(%rsp)
movb $0x1, 0x22c3(%rsp)
testb $0x1, 0x22c3(%rsp)
jne 0x12632cc
leaq 0x1d30(%rsp), %rax
movq %rax, 0x2468(%rsp)
movq 0x2468(%rsp), %rax
movq %rax, 0x4520(%rsp)
movq 0x4520(%rsp), %rax
movq %rax, 0x9d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126326f
movq 0x9d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x451c(%rsp) # imm = 0xFFFFFFFF
movl 0x451c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4518(%rsp)
cmpl $0x1, 0x4518(%rsp)
jne 0x126326f
movq 0x9d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1263240
movq 0x9d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126323e
jmp 0x126326d
movq 0x9d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4570(%rsp)
cmpq $0x0, 0x4570(%rsp)
je 0x126326b
movq 0x4570(%rsp), %rdi
callq 0x5f480
jmp 0x126326d
jmp 0x126326f
movq 0x9d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12632ca
movq %rax, %rdi
callq 0x678a0
jmp 0x12632cc
leaq 0x1d30(%rsp), %rax
movq %rax, 0x2430(%rsp)
movq 0x2430(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x9c8(%rsp)
leaq 0x1d30(%rsp), %rax
movq %rax, 0x2580(%rsp)
movq 0x2580(%rsp), %rax
movq %rax, 0x42f0(%rsp)
movq 0x42f0(%rsp), %rax
movq %rax, 0x9d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12633b7
movq 0x9d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42ec(%rsp) # imm = 0xFFFFFFFF
movl 0x42ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42e8(%rsp)
cmpl $0x1, 0x42e8(%rsp)
jne 0x12633b7
movq 0x9d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1263388
movq 0x9d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1263386
jmp 0x12633b5
movq 0x9d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4688(%rsp)
cmpq $0x0, 0x4688(%rsp)
je 0x12633b3
movq 0x4688(%rsp), %rdi
callq 0x5f480
jmp 0x12633b5
jmp 0x12633b7
movq 0x9d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1263412
movq %rax, %rdi
callq 0x678a0
movq 0x9c8(%rsp), %rax
movq %rax, 0x1d78(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1dd0(%rsp), %eax
leaq 0x1ce0(%rsp), %rdx
movq %rdx, 0x2a00(%rsp)
movq %rcx, 0x29f8(%rsp)
movl %eax, 0x29f4(%rsp)
movq 0x29f8(%rsp), %rax
movq %rax, 0x9c0(%rsp)
movb $0x0, 0x29f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x29f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1ce0(%rsp), %r10
movq %r10, 0x2e30(%rsp)
movl %r9d, 0x2e2c(%rsp)
movl %r8d, 0x2e28(%rsp)
movl %edi, 0x2e24(%rsp)
movq %rsi, 0x2e18(%rsp)
movq %rdx, 0x2e10(%rsp)
movl %ecx, 0x2e0c(%rsp)
movq %rax, 0x2e00(%rsp)
movq 0x2e30(%rsp), %rcx
movq %rcx, 0x9b8(%rsp)
movq 0x2e18(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2e10(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2e0c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2e00(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2e2c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2e28(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2e24(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3e00(%rsp)
movl $0x10, 0x3dfc(%rsp)
movq 0x3e00(%rsp), %rax
movslq 0x3dfc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3dfc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x9c0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1d08(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12635de
movq 0x9c0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1d20(%rsp)
movb $0x1, 0x29f3(%rsp)
testb $0x1, 0x29f3(%rsp)
jne 0x1263719
leaq 0x1ce0(%rsp), %rax
movq %rax, 0x2a08(%rsp)
movq 0x2a08(%rsp), %rax
movq %rax, 0x3e30(%rsp)
movq 0x3e30(%rsp), %rax
movq %rax, 0x9b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12636bc
movq 0x9b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e2c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e2c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e28(%rsp)
cmpl $0x1, 0x3e28(%rsp)
jne 0x12636bc
movq 0x9b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126368d
movq 0x9b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126368b
jmp 0x12636ba
movq 0x9b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48e8(%rsp)
cmpq $0x0, 0x48e8(%rsp)
je 0x12636b8
movq 0x48e8(%rsp), %rdi
callq 0x5f480
jmp 0x12636ba
jmp 0x12636bc
movq 0x9b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1263717
movq %rax, %rdi
callq 0x678a0
jmp 0x1263719
leaq 0x1ce0(%rsp), %rax
movq %rax, 0x2af0(%rsp)
movq 0x2af0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x9a0(%rsp)
leaq 0x1ce0(%rsp), %rax
movq %rax, 0x2588(%rsp)
movq 0x2588(%rsp), %rax
movq %rax, 0x42e0(%rsp)
movq 0x42e0(%rsp), %rax
movq %rax, 0x9a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1263804
movq 0x9a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42dc(%rsp) # imm = 0xFFFFFFFF
movl 0x42dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42d8(%rsp)
cmpl $0x1, 0x42d8(%rsp)
jne 0x1263804
movq 0x9a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12637d5
movq 0x9a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12637d3
jmp 0x1263802
movq 0x9a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4690(%rsp)
cmpq $0x0, 0x4690(%rsp)
je 0x1263800
movq 0x4690(%rsp), %rdi
callq 0x5f480
jmp 0x1263802
jmp 0x1263804
movq 0x9a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126385f
movq %rax, %rdi
callq 0x678a0
movq 0x9a0(%rsp), %rax
movq %rax, 0x1d28(%rsp)
movl $0x0, 0x1cdc(%rsp)
movl 0x1cdc(%rsp), %eax
cmpl 0x1ef0(%rsp), %eax
jge 0x12639c9
movl $0x0, 0x1cd8(%rsp)
movl 0x1cd8(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jge 0x1263992
movq 0x1d78(%rsp), %rax
movslq 0x1cd8(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x1cd4(%rsp)
movl $0x0, 0x1cd0(%rsp)
movl 0x1cd0(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x126393a
movq 0x1dc8(%rsp), %rsi
movslq 0x1cd0(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0x1cd4(%rsp), %rdx
callq 0x1278120
movq 0x1d28(%rsp), %rax
movslq 0x1cd0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1cd0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1cd0(%rsp)
jmp 0x12638d6
movl 0x1ef8(%rsp), %ecx
movq 0x1dc8(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1dc8(%rsp)
movl 0x1ef8(%rsp), %ecx
movq 0x1d28(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1d28(%rsp)
movl 0x1cd8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1cd8(%rsp)
jmp 0x1263899
movl 0x1ef4(%rsp), %ecx
movq 0x1d78(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1d78(%rsp)
movl 0x1cdc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1cdc(%rsp)
jmp 0x126387a
jmp 0x12639cb
movl 0x1dd0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1dd0(%rsp)
jmp 0x1262b74
movl $0x0, 0x1f24(%rsp)
jmp 0x1274f25
movq 0x1f10(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1264468
movl $0x0, 0x1ccc(%rsp)
movl 0x1ccc(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x1264458
movq 0x1f18(%rsp), %rcx
movl 0x1ccc(%rsp), %eax
leaq 0x1c78(%rsp), %rdx
movq %rdx, 0x22b8(%rsp)
movq %rcx, 0x22b0(%rsp)
movl %eax, 0x22ac(%rsp)
movq 0x22b0(%rsp), %rax
movq %rax, 0x998(%rsp)
movb $0x0, 0x22ab(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22ac(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1c78(%rsp), %r10
movq %r10, 0x3418(%rsp)
movl %r9d, 0x3414(%rsp)
movl %r8d, 0x3410(%rsp)
movl %edi, 0x340c(%rsp)
movq %rsi, 0x3400(%rsp)
movq %rdx, 0x33f8(%rsp)
movl %ecx, 0x33f4(%rsp)
movq %rax, 0x33e8(%rsp)
movq 0x3418(%rsp), %rcx
movq %rcx, 0x990(%rsp)
movq 0x3400(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x33f8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x33f4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x33e8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3414(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3410(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x340c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c50(%rsp)
movl $0x10, 0x3c4c(%rsp)
movq 0x3c50(%rsp), %rax
movslq 0x3c4c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c4c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x998(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1ca0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1263bde
movq 0x998(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1cb8(%rsp)
movb $0x1, 0x22ab(%rsp)
testb $0x1, 0x22ab(%rsp)
jne 0x1263d19
leaq 0x1c78(%rsp), %rax
movq %rax, 0x2470(%rsp)
movq 0x2470(%rsp), %rax
movq %rax, 0x4510(%rsp)
movq 0x4510(%rsp), %rax
movq %rax, 0x988(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1263cbc
movq 0x988(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x450c(%rsp) # imm = 0xFFFFFFFF
movl 0x450c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4508(%rsp)
cmpl $0x1, 0x4508(%rsp)
jne 0x1263cbc
movq 0x988(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1263c8d
movq 0x988(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1263c8b
jmp 0x1263cba
movq 0x988(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4578(%rsp)
cmpq $0x0, 0x4578(%rsp)
je 0x1263cb8
movq 0x4578(%rsp), %rdi
callq 0x5f480
jmp 0x1263cba
jmp 0x1263cbc
movq 0x988(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1263d17
movq %rax, %rdi
callq 0x678a0
jmp 0x1263d19
leaq 0x1c78(%rsp), %rax
movq %rax, 0x2428(%rsp)
movq 0x2428(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x978(%rsp)
leaq 0x1c78(%rsp), %rax
movq %rax, 0x2590(%rsp)
movq 0x2590(%rsp), %rax
movq %rax, 0x42d0(%rsp)
movq 0x42d0(%rsp), %rax
movq %rax, 0x980(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1263e04
movq 0x980(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42cc(%rsp) # imm = 0xFFFFFFFF
movl 0x42cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42c8(%rsp)
cmpl $0x1, 0x42c8(%rsp)
jne 0x1263e04
movq 0x980(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1263dd5
movq 0x980(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1263dd3
jmp 0x1263e02
movq 0x980(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4698(%rsp)
cmpq $0x0, 0x4698(%rsp)
je 0x1263e00
movq 0x4698(%rsp), %rdi
callq 0x5f480
jmp 0x1263e02
jmp 0x1263e04
movq 0x980(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1263e5f
movq %rax, %rdi
callq 0x678a0
movq 0x978(%rsp), %rax
movq %rax, 0x1cc0(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1ccc(%rsp), %eax
movq %rcx, 0x2b38(%rsp)
movl %eax, 0x2b34(%rsp)
movq 0x2b38(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2b34(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x1c70(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1ccc(%rsp), %eax
leaq 0x1c20(%rsp), %rdx
movq %rdx, 0x29e0(%rsp)
movq %rcx, 0x29d8(%rsp)
movl %eax, 0x29d4(%rsp)
movq 0x29d8(%rsp), %rax
movq %rax, 0x970(%rsp)
movb $0x0, 0x29d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x29d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1c20(%rsp), %r10
movq %r10, 0x2e68(%rsp)
movl %r9d, 0x2e64(%rsp)
movl %r8d, 0x2e60(%rsp)
movl %edi, 0x2e5c(%rsp)
movq %rsi, 0x2e50(%rsp)
movq %rdx, 0x2e48(%rsp)
movl %ecx, 0x2e44(%rsp)
movq %rax, 0x2e38(%rsp)
movq 0x2e68(%rsp), %rcx
movq %rcx, 0x968(%rsp)
movq 0x2e50(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2e48(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2e44(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2e38(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2e64(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2e60(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2e5c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3df0(%rsp)
movl $0x10, 0x3dec(%rsp)
movq 0x3df0(%rsp), %rax
movslq 0x3dec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3dec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x970(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1c48(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1264074
movq 0x970(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1c60(%rsp)
movb $0x1, 0x29d3(%rsp)
testb $0x1, 0x29d3(%rsp)
jne 0x12641af
leaq 0x1c20(%rsp), %rax
movq %rax, 0x29e8(%rsp)
movq 0x29e8(%rsp), %rax
movq %rax, 0x3e40(%rsp)
movq 0x3e40(%rsp), %rax
movq %rax, 0x960(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1264152
movq 0x960(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e3c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e3c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e38(%rsp)
cmpl $0x1, 0x3e38(%rsp)
jne 0x1264152
movq 0x960(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1264123
movq 0x960(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1264121
jmp 0x1264150
movq 0x960(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48e0(%rsp)
cmpq $0x0, 0x48e0(%rsp)
je 0x126414e
movq 0x48e0(%rsp), %rdi
callq 0x5f480
jmp 0x1264150
jmp 0x1264152
movq 0x960(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12641ad
movq %rax, %rdi
callq 0x678a0
jmp 0x12641af
leaq 0x1c20(%rsp), %rax
movq %rax, 0x2ae8(%rsp)
movq 0x2ae8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x950(%rsp)
leaq 0x1c20(%rsp), %rax
movq %rax, 0x2598(%rsp)
movq 0x2598(%rsp), %rax
movq %rax, 0x42c0(%rsp)
movq 0x42c0(%rsp), %rax
movq %rax, 0x958(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126429a
movq 0x958(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42bc(%rsp) # imm = 0xFFFFFFFF
movl 0x42bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42b8(%rsp)
cmpl $0x1, 0x42b8(%rsp)
jne 0x126429a
movq 0x958(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126426b
movq 0x958(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1264269
jmp 0x1264298
movq 0x958(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46a0(%rsp)
cmpq $0x0, 0x46a0(%rsp)
je 0x1264296
movq 0x46a0(%rsp), %rdi
callq 0x5f480
jmp 0x1264298
jmp 0x126429a
movq 0x958(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12642f5
movq %rax, %rdi
callq 0x678a0
movq 0x950(%rsp), %rax
movq %rax, 0x1c68(%rsp)
movl $0x0, 0x1c1c(%rsp)
movl 0x1c1c(%rsp), %eax
cmpl 0x1ef0(%rsp), %eax
jge 0x1264440
movq 0x1c70(%rsp), %rax
movslq 0x1c1c(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x1c18(%rsp)
movl $0x0, 0x1c14(%rsp)
movl 0x1c14(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jge 0x1264428
movl $0x0, 0x1c10(%rsp)
movl 0x1c10(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x12643d0
movq 0x1cc0(%rsp), %rsi
movslq 0x1c10(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0x1c18(%rsp), %rdx
callq 0x1278120
movq 0x1c68(%rsp), %rax
movslq 0x1c10(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1c10(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c10(%rsp)
jmp 0x126436c
movl 0x1ef8(%rsp), %ecx
movq 0x1cc0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1cc0(%rsp)
movl 0x1ef8(%rsp), %ecx
movq 0x1c68(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1c68(%rsp)
movl 0x1c14(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c14(%rsp)
jmp 0x126434d
jmp 0x126442a
movl 0x1c1c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c1c(%rsp)
jmp 0x1264310
jmp 0x1264442
movl 0x1ccc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1ccc(%rsp)
jmp 0x1263a0e
movl $0x0, 0x1f24(%rsp)
jmp 0x1274f25
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x12657aa
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1264e19
movq 0x1f10(%rsp), %rax
movq %rax, 0x2c98(%rsp)
movq $0x0, 0x2c90(%rsp)
movq 0x2c98(%rsp), %rax
movq (%rax), %rax
movq 0x2c90(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x1c0c(%rsp)
movl $0x0, 0x1c08(%rsp)
movl 0x1c08(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x1264e09
movq 0x1f18(%rsp), %rcx
movl 0x1c08(%rsp), %eax
leaq 0x1bb8(%rsp), %rdx
movq %rdx, 0x22a0(%rsp)
movq %rcx, 0x2298(%rsp)
movl %eax, 0x2294(%rsp)
movq 0x2298(%rsp), %rax
movq %rax, 0x948(%rsp)
movb $0x0, 0x2293(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2294(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1bb8(%rsp), %r10
movq %r10, 0x3450(%rsp)
movl %r9d, 0x344c(%rsp)
movl %r8d, 0x3448(%rsp)
movl %edi, 0x3444(%rsp)
movq %rsi, 0x3438(%rsp)
movq %rdx, 0x3430(%rsp)
movl %ecx, 0x342c(%rsp)
movq %rax, 0x3420(%rsp)
movq 0x3450(%rsp), %rcx
movq %rcx, 0x940(%rsp)
movq 0x3438(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3430(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x342c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3420(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x344c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3448(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3444(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c40(%rsp)
movl $0x10, 0x3c3c(%rsp)
movq 0x3c40(%rsp), %rax
movslq 0x3c3c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c3c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x948(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1be0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12646a4
movq 0x948(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1bf8(%rsp)
movb $0x1, 0x2293(%rsp)
testb $0x1, 0x2293(%rsp)
jne 0x12647df
leaq 0x1bb8(%rsp), %rax
movq %rax, 0x2478(%rsp)
movq 0x2478(%rsp), %rax
movq %rax, 0x4500(%rsp)
movq 0x4500(%rsp), %rax
movq %rax, 0x938(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1264782
movq 0x938(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x44fc(%rsp) # imm = 0xFFFFFFFF
movl 0x44fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x44f8(%rsp)
cmpl $0x1, 0x44f8(%rsp)
jne 0x1264782
movq 0x938(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1264753
movq 0x938(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1264751
jmp 0x1264780
movq 0x938(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4580(%rsp)
cmpq $0x0, 0x4580(%rsp)
je 0x126477e
movq 0x4580(%rsp), %rdi
callq 0x5f480
jmp 0x1264780
jmp 0x1264782
movq 0x938(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12647dd
movq %rax, %rdi
callq 0x678a0
jmp 0x12647df
leaq 0x1bb8(%rsp), %rax
movq %rax, 0x2420(%rsp)
movq 0x2420(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x928(%rsp)
leaq 0x1bb8(%rsp), %rax
movq %rax, 0x25a0(%rsp)
movq 0x25a0(%rsp), %rax
movq %rax, 0x42b0(%rsp)
movq 0x42b0(%rsp), %rax
movq %rax, 0x930(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12648ca
movq 0x930(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42ac(%rsp) # imm = 0xFFFFFFFF
movl 0x42ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42a8(%rsp)
cmpl $0x1, 0x42a8(%rsp)
jne 0x12648ca
movq 0x930(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126489b
movq 0x930(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1264899
jmp 0x12648c8
movq 0x930(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46a8(%rsp)
cmpq $0x0, 0x46a8(%rsp)
je 0x12648c6
movq 0x46a8(%rsp), %rdi
callq 0x5f480
jmp 0x12648c8
jmp 0x12648ca
movq 0x930(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1264925
movq %rax, %rdi
callq 0x678a0
movq 0x928(%rsp), %rax
movq %rax, 0x1c00(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1c08(%rsp), %eax
leaq 0x1b68(%rsp), %rdx
movq %rdx, 0x29c0(%rsp)
movq %rcx, 0x29b8(%rsp)
movl %eax, 0x29b4(%rsp)
movq 0x29b8(%rsp), %rax
movq %rax, 0x920(%rsp)
movb $0x0, 0x29b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x29b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1b68(%rsp), %r10
movq %r10, 0x2ea0(%rsp)
movl %r9d, 0x2e9c(%rsp)
movl %r8d, 0x2e98(%rsp)
movl %edi, 0x2e94(%rsp)
movq %rsi, 0x2e88(%rsp)
movq %rdx, 0x2e80(%rsp)
movl %ecx, 0x2e7c(%rsp)
movq %rax, 0x2e70(%rsp)
movq 0x2ea0(%rsp), %rcx
movq %rcx, 0x918(%rsp)
movq 0x2e88(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2e80(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2e7c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2e70(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2e9c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2e98(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2e94(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3de0(%rsp)
movl $0x10, 0x3ddc(%rsp)
movq 0x3de0(%rsp), %rax
movslq 0x3ddc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3ddc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x920(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1b90(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1264af1
movq 0x920(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1ba8(%rsp)
movb $0x1, 0x29b3(%rsp)
testb $0x1, 0x29b3(%rsp)
jne 0x1264c2c
leaq 0x1b68(%rsp), %rax
movq %rax, 0x29c8(%rsp)
movq 0x29c8(%rsp), %rax
movq %rax, 0x3e50(%rsp)
movq 0x3e50(%rsp), %rax
movq %rax, 0x910(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1264bcf
movq 0x910(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e4c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e4c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e48(%rsp)
cmpl $0x1, 0x3e48(%rsp)
jne 0x1264bcf
movq 0x910(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1264ba0
movq 0x910(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1264b9e
jmp 0x1264bcd
movq 0x910(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48d8(%rsp)
cmpq $0x0, 0x48d8(%rsp)
je 0x1264bcb
movq 0x48d8(%rsp), %rdi
callq 0x5f480
jmp 0x1264bcd
jmp 0x1264bcf
movq 0x910(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1264c2a
movq %rax, %rdi
callq 0x678a0
jmp 0x1264c2c
leaq 0x1b68(%rsp), %rax
movq %rax, 0x2ae0(%rsp)
movq 0x2ae0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x900(%rsp)
leaq 0x1b68(%rsp), %rax
movq %rax, 0x25a8(%rsp)
movq 0x25a8(%rsp), %rax
movq %rax, 0x42a0(%rsp)
movq 0x42a0(%rsp), %rax
movq %rax, 0x908(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1264d17
movq 0x908(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x429c(%rsp) # imm = 0xFFFFFFFF
movl 0x429c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4298(%rsp)
cmpl $0x1, 0x4298(%rsp)
jne 0x1264d17
movq 0x908(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1264ce8
movq 0x908(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1264ce6
jmp 0x1264d15
movq 0x908(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46b0(%rsp)
cmpq $0x0, 0x46b0(%rsp)
je 0x1264d13
movq 0x46b0(%rsp), %rdi
callq 0x5f480
jmp 0x1264d15
jmp 0x1264d17
movq 0x908(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1264d72
movq %rax, %rdi
callq 0x678a0
movq 0x900(%rsp), %rax
movq %rax, 0x1bb0(%rsp)
movl $0x0, 0x1b64(%rsp)
movl 0x1b64(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x1264df1
movq 0x1c00(%rsp), %rsi
movslq 0x1b64(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0x1c0c(%rsp), %rdx
callq 0x1278120
movq 0x1bb0(%rsp), %rax
movslq 0x1b64(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1b64(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b64(%rsp)
jmp 0x1264d8d
jmp 0x1264df3
movl 0x1c08(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c08(%rsp)
jmp 0x12644d4
movl $0x0, 0x1f24(%rsp)
jmp 0x1274f25
movl $0x0, 0x1b60(%rsp)
movl 0x1b60(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x126579a
movq 0x1f18(%rsp), %rcx
movl 0x1b60(%rsp), %eax
leaq 0x1b10(%rsp), %rdx
movq %rdx, 0x2288(%rsp)
movq %rcx, 0x2280(%rsp)
movl %eax, 0x227c(%rsp)
movq 0x2280(%rsp), %rax
movq %rax, 0x8f8(%rsp)
movb $0x0, 0x227b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x227c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1b10(%rsp), %r10
movq %r10, 0x3488(%rsp)
movl %r9d, 0x3484(%rsp)
movl %r8d, 0x3480(%rsp)
movl %edi, 0x347c(%rsp)
movq %rsi, 0x3470(%rsp)
movq %rdx, 0x3468(%rsp)
movl %ecx, 0x3464(%rsp)
movq %rax, 0x3458(%rsp)
movq 0x3488(%rsp), %rcx
movq %rcx, 0x8f0(%rsp)
movq 0x3470(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3468(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3464(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3458(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3484(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3480(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x347c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c30(%rsp)
movl $0x10, 0x3c2c(%rsp)
movq 0x3c30(%rsp), %rax
movslq 0x3c2c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c2c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x8f8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1b38(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1264ff4
movq 0x8f8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1b50(%rsp)
movb $0x1, 0x227b(%rsp)
testb $0x1, 0x227b(%rsp)
jne 0x126512f
leaq 0x1b10(%rsp), %rax
movq %rax, 0x2480(%rsp)
movq 0x2480(%rsp), %rax
movq %rax, 0x44f0(%rsp)
movq 0x44f0(%rsp), %rax
movq %rax, 0x8e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12650d2
movq 0x8e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x44ec(%rsp) # imm = 0xFFFFFFFF
movl 0x44ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x44e8(%rsp)
cmpl $0x1, 0x44e8(%rsp)
jne 0x12650d2
movq 0x8e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12650a3
movq 0x8e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12650a1
jmp 0x12650d0
movq 0x8e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4588(%rsp)
cmpq $0x0, 0x4588(%rsp)
je 0x12650ce
movq 0x4588(%rsp), %rdi
callq 0x5f480
jmp 0x12650d0
jmp 0x12650d2
movq 0x8e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126512d
movq %rax, %rdi
callq 0x678a0
jmp 0x126512f
leaq 0x1b10(%rsp), %rax
movq %rax, 0x2418(%rsp)
movq 0x2418(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8d8(%rsp)
leaq 0x1b10(%rsp), %rax
movq %rax, 0x25b0(%rsp)
movq 0x25b0(%rsp), %rax
movq %rax, 0x4290(%rsp)
movq 0x4290(%rsp), %rax
movq %rax, 0x8e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126521a
movq 0x8e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x428c(%rsp) # imm = 0xFFFFFFFF
movl 0x428c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4288(%rsp)
cmpl $0x1, 0x4288(%rsp)
jne 0x126521a
movq 0x8e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12651eb
movq 0x8e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12651e9
jmp 0x1265218
movq 0x8e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46b8(%rsp)
cmpq $0x0, 0x46b8(%rsp)
je 0x1265216
movq 0x46b8(%rsp), %rdi
callq 0x5f480
jmp 0x1265218
jmp 0x126521a
movq 0x8e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1265275
movq %rax, %rdi
callq 0x678a0
movq 0x8d8(%rsp), %rax
movq %rax, 0x1b58(%rsp)
movq 0x1f10(%rsp), %rcx
movslq 0x1b60(%rsp), %rax
movq %rcx, 0x2c88(%rsp)
movq %rax, 0x2c80(%rsp)
movq 0x2c88(%rsp), %rax
movq (%rax), %rax
movq 0x2c80(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x1b0c(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1b60(%rsp), %eax
leaq 0x1ab8(%rsp), %rdx
movq %rdx, 0x29a0(%rsp)
movq %rcx, 0x2998(%rsp)
movl %eax, 0x2994(%rsp)
movq 0x2998(%rsp), %rax
movq %rax, 0x8d0(%rsp)
movb $0x0, 0x2993(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2994(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1ab8(%rsp), %r10
movq %r10, 0x2ed8(%rsp)
movl %r9d, 0x2ed4(%rsp)
movl %r8d, 0x2ed0(%rsp)
movl %edi, 0x2ecc(%rsp)
movq %rsi, 0x2ec0(%rsp)
movq %rdx, 0x2eb8(%rsp)
movl %ecx, 0x2eb4(%rsp)
movq %rax, 0x2ea8(%rsp)
movq 0x2ed8(%rsp), %rcx
movq %rcx, 0x8c8(%rsp)
movq 0x2ec0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2eb8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2eb4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ea8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2ed4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2ed0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2ecc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3dd0(%rsp)
movl $0x10, 0x3dcc(%rsp)
movq 0x3dd0(%rsp), %rax
movslq 0x3dcc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3dcc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x8d0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1ae0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1265482
movq 0x8d0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1af8(%rsp)
movb $0x1, 0x2993(%rsp)
testb $0x1, 0x2993(%rsp)
jne 0x12655bd
leaq 0x1ab8(%rsp), %rax
movq %rax, 0x29a8(%rsp)
movq 0x29a8(%rsp), %rax
movq %rax, 0x3e60(%rsp)
movq 0x3e60(%rsp), %rax
movq %rax, 0x8c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1265560
movq 0x8c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e5c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e5c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e58(%rsp)
cmpl $0x1, 0x3e58(%rsp)
jne 0x1265560
movq 0x8c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1265531
movq 0x8c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126552f
jmp 0x126555e
movq 0x8c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48d0(%rsp)
cmpq $0x0, 0x48d0(%rsp)
je 0x126555c
movq 0x48d0(%rsp), %rdi
callq 0x5f480
jmp 0x126555e
jmp 0x1265560
movq 0x8c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12655bb
movq %rax, %rdi
callq 0x678a0
jmp 0x12655bd
leaq 0x1ab8(%rsp), %rax
movq %rax, 0x2ad8(%rsp)
movq 0x2ad8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8b0(%rsp)
leaq 0x1ab8(%rsp), %rax
movq %rax, 0x25b8(%rsp)
movq 0x25b8(%rsp), %rax
movq %rax, 0x4280(%rsp)
movq 0x4280(%rsp), %rax
movq %rax, 0x8b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12656a8
movq 0x8b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x427c(%rsp) # imm = 0xFFFFFFFF
movl 0x427c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4278(%rsp)
cmpl $0x1, 0x4278(%rsp)
jne 0x12656a8
movq 0x8b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1265679
movq 0x8b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1265677
jmp 0x12656a6
movq 0x8b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46c0(%rsp)
cmpq $0x0, 0x46c0(%rsp)
je 0x12656a4
movq 0x46c0(%rsp), %rdi
callq 0x5f480
jmp 0x12656a6
jmp 0x12656a8
movq 0x8b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1265703
movq %rax, %rdi
callq 0x678a0
movq 0x8b0(%rsp), %rax
movq %rax, 0x1b00(%rsp)
movl $0x0, 0x1ab4(%rsp)
movl 0x1ab4(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x1265782
movq 0x1b58(%rsp), %rsi
movslq 0x1ab4(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0x1b0c(%rsp), %rdx
callq 0x1278120
movq 0x1b00(%rsp), %rax
movslq 0x1ab4(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1ab4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1ab4(%rsp)
jmp 0x126571e
jmp 0x1265784
movl 0x1b60(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b60(%rsp)
jmp 0x1264e24
movl $0x0, 0x1f24(%rsp)
jmp 0x1274f25
jmp 0x1274f1a
movq 0x1f18(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x127022c
movq 0x1f10(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x126671b
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed4(%rsp), %ecx
movl 0x1ed0(%rsp), %r8d
movq 0x1ee0(%rsp), %r9
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6fb30
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fd8(%rsp)
movq 0x1fd8(%rsp), %rcx
movq %rcx, 0x8a0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x8af(%rsp)
je 0x1265876
movq 0x8a0(%rsp), %rax
movq %rax, 0x2d10(%rsp)
movq 0x2d10(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x8af(%rsp)
movb 0x8af(%rsp), %al
testb $0x1, %al
jne 0x1265883
jmp 0x1265893
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1274f25
movl $0x0, 0x1ab0(%rsp)
movl 0x1ab0(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x126670b
movq 0x1f18(%rsp), %rcx
movl 0x1ab0(%rsp), %eax
leaq 0x1a60(%rsp), %rdx
movq %rdx, 0x2270(%rsp)
movq %rcx, 0x2268(%rsp)
movl %eax, 0x2264(%rsp)
movq 0x2268(%rsp), %rax
movq %rax, 0x898(%rsp)
movb $0x0, 0x2263(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2264(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1a60(%rsp), %r10
movq %r10, 0x34c0(%rsp)
movl %r9d, 0x34bc(%rsp)
movl %r8d, 0x34b8(%rsp)
movl %edi, 0x34b4(%rsp)
movq %rsi, 0x34a8(%rsp)
movq %rdx, 0x34a0(%rsp)
movl %ecx, 0x349c(%rsp)
movq %rax, 0x3490(%rsp)
movq 0x34c0(%rsp), %rcx
movq %rcx, 0x890(%rsp)
movq 0x34a8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x34a0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x349c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3490(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x34bc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x34b8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x34b4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c20(%rsp)
movl $0x10, 0x3c1c(%rsp)
movq 0x3c20(%rsp), %rax
movslq 0x3c1c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c1c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x898(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1a88(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1265a6e
movq 0x898(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1aa0(%rsp)
movb $0x1, 0x2263(%rsp)
testb $0x1, 0x2263(%rsp)
jne 0x1265ba9
leaq 0x1a60(%rsp), %rax
movq %rax, 0x2488(%rsp)
movq 0x2488(%rsp), %rax
movq %rax, 0x44e0(%rsp)
movq 0x44e0(%rsp), %rax
movq %rax, 0x888(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1265b4c
movq 0x888(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x44dc(%rsp) # imm = 0xFFFFFFFF
movl 0x44dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x44d8(%rsp)
cmpl $0x1, 0x44d8(%rsp)
jne 0x1265b4c
movq 0x888(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1265b1d
movq 0x888(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1265b1b
jmp 0x1265b4a
movq 0x888(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4590(%rsp)
cmpq $0x0, 0x4590(%rsp)
je 0x1265b48
movq 0x4590(%rsp), %rdi
callq 0x5f480
jmp 0x1265b4a
jmp 0x1265b4c
movq 0x888(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1265ba7
movq %rax, %rdi
callq 0x678a0
jmp 0x1265ba9
leaq 0x1a60(%rsp), %rax
movq %rax, 0x2410(%rsp)
movq 0x2410(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x878(%rsp)
leaq 0x1a60(%rsp), %rax
movq %rax, 0x25c0(%rsp)
movq 0x25c0(%rsp), %rax
movq %rax, 0x4270(%rsp)
movq 0x4270(%rsp), %rax
movq %rax, 0x880(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1265c94
movq 0x880(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x426c(%rsp) # imm = 0xFFFFFFFF
movl 0x426c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4268(%rsp)
cmpl $0x1, 0x4268(%rsp)
jne 0x1265c94
movq 0x880(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1265c65
movq 0x880(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1265c63
jmp 0x1265c92
movq 0x880(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46c8(%rsp)
cmpq $0x0, 0x46c8(%rsp)
je 0x1265c90
movq 0x46c8(%rsp), %rdi
callq 0x5f480
jmp 0x1265c92
jmp 0x1265c94
movq 0x880(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1265cef
movq %rax, %rdi
callq 0x678a0
movq 0x878(%rsp), %rax
movq %rax, 0x1aa8(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1ab0(%rsp), %eax
leaq 0x1a10(%rsp), %rdx
movq %rdx, 0x2258(%rsp)
movq %rcx, 0x2250(%rsp)
movl %eax, 0x224c(%rsp)
movq 0x2250(%rsp), %rax
movq %rax, 0x870(%rsp)
movb $0x0, 0x224b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x224c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1a10(%rsp), %r10
movq %r10, 0x34f8(%rsp)
movl %r9d, 0x34f4(%rsp)
movl %r8d, 0x34f0(%rsp)
movl %edi, 0x34ec(%rsp)
movq %rsi, 0x34e0(%rsp)
movq %rdx, 0x34d8(%rsp)
movl %ecx, 0x34d4(%rsp)
movq %rax, 0x34c8(%rsp)
movq 0x34f8(%rsp), %rcx
movq %rcx, 0x868(%rsp)
movq 0x34e0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x34d8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x34d4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x34c8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x34f4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x34f0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x34ec(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c10(%rsp)
movl $0x10, 0x3c0c(%rsp)
movq 0x3c10(%rsp), %rax
movslq 0x3c0c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c0c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x870(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1a38(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1265ebb
movq 0x870(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1a50(%rsp)
movb $0x1, 0x224b(%rsp)
testb $0x1, 0x224b(%rsp)
jne 0x1265ff6
leaq 0x1a10(%rsp), %rax
movq %rax, 0x2490(%rsp)
movq 0x2490(%rsp), %rax
movq %rax, 0x44d0(%rsp)
movq 0x44d0(%rsp), %rax
movq %rax, 0x860(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1265f99
movq 0x860(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x44cc(%rsp) # imm = 0xFFFFFFFF
movl 0x44cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x44c8(%rsp)
cmpl $0x1, 0x44c8(%rsp)
jne 0x1265f99
movq 0x860(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1265f6a
movq 0x860(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1265f68
jmp 0x1265f97
movq 0x860(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4598(%rsp)
cmpq $0x0, 0x4598(%rsp)
je 0x1265f95
movq 0x4598(%rsp), %rdi
callq 0x5f480
jmp 0x1265f97
jmp 0x1265f99
movq 0x860(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1265ff4
movq %rax, %rdi
callq 0x678a0
jmp 0x1265ff6
leaq 0x1a10(%rsp), %rax
movq %rax, 0x2408(%rsp)
movq 0x2408(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x850(%rsp)
leaq 0x1a10(%rsp), %rax
movq %rax, 0x25c8(%rsp)
movq 0x25c8(%rsp), %rax
movq %rax, 0x4260(%rsp)
movq 0x4260(%rsp), %rax
movq %rax, 0x858(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12660e1
movq 0x858(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x425c(%rsp) # imm = 0xFFFFFFFF
movl 0x425c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4258(%rsp)
cmpl $0x1, 0x4258(%rsp)
jne 0x12660e1
movq 0x858(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12660b2
movq 0x858(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12660b0
jmp 0x12660df
movq 0x858(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46d0(%rsp)
cmpq $0x0, 0x46d0(%rsp)
je 0x12660dd
movq 0x46d0(%rsp), %rdi
callq 0x5f480
jmp 0x12660df
jmp 0x12660e1
movq 0x858(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126613c
movq %rax, %rdi
callq 0x678a0
movq 0x850(%rsp), %rax
movq %rax, 0x1a58(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1ab0(%rsp), %eax
leaq 0x19c0(%rsp), %rdx
movq %rdx, 0x2980(%rsp)
movq %rcx, 0x2978(%rsp)
movl %eax, 0x2974(%rsp)
movq 0x2978(%rsp), %rax
movq %rax, 0x848(%rsp)
movb $0x0, 0x2973(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2974(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x19c0(%rsp), %r10
movq %r10, 0x2f10(%rsp)
movl %r9d, 0x2f0c(%rsp)
movl %r8d, 0x2f08(%rsp)
movl %edi, 0x2f04(%rsp)
movq %rsi, 0x2ef8(%rsp)
movq %rdx, 0x2ef0(%rsp)
movl %ecx, 0x2eec(%rsp)
movq %rax, 0x2ee0(%rsp)
movq 0x2f10(%rsp), %rcx
movq %rcx, 0x840(%rsp)
movq 0x2ef8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2ef0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2eec(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ee0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2f0c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f08(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f04(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3dc0(%rsp)
movl $0x10, 0x3dbc(%rsp)
movq 0x3dc0(%rsp), %rax
movslq 0x3dbc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3dbc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x848(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x19e8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1266308
movq 0x848(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1a00(%rsp)
movb $0x1, 0x2973(%rsp)
testb $0x1, 0x2973(%rsp)
jne 0x1266443
leaq 0x19c0(%rsp), %rax
movq %rax, 0x2988(%rsp)
movq 0x2988(%rsp), %rax
movq %rax, 0x3e70(%rsp)
movq 0x3e70(%rsp), %rax
movq %rax, 0x838(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12663e6
movq 0x838(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e6c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e6c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e68(%rsp)
cmpl $0x1, 0x3e68(%rsp)
jne 0x12663e6
movq 0x838(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12663b7
movq 0x838(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12663b5
jmp 0x12663e4
movq 0x838(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48c8(%rsp)
cmpq $0x0, 0x48c8(%rsp)
je 0x12663e2
movq 0x48c8(%rsp), %rdi
callq 0x5f480
jmp 0x12663e4
jmp 0x12663e6
movq 0x838(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1266441
movq %rax, %rdi
callq 0x678a0
jmp 0x1266443
leaq 0x19c0(%rsp), %rax
movq %rax, 0x2ad0(%rsp)
movq 0x2ad0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x828(%rsp)
leaq 0x19c0(%rsp), %rax
movq %rax, 0x25d0(%rsp)
movq 0x25d0(%rsp), %rax
movq %rax, 0x4250(%rsp)
movq 0x4250(%rsp), %rax
movq %rax, 0x830(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126652e
movq 0x830(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x424c(%rsp) # imm = 0xFFFFFFFF
movl 0x424c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4248(%rsp)
cmpl $0x1, 0x4248(%rsp)
jne 0x126652e
movq 0x830(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12664ff
movq 0x830(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12664fd
jmp 0x126652c
movq 0x830(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46d8(%rsp)
cmpq $0x0, 0x46d8(%rsp)
je 0x126652a
movq 0x46d8(%rsp), %rdi
callq 0x5f480
jmp 0x126652c
jmp 0x126652e
movq 0x830(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1266589
movq %rax, %rdi
callq 0x678a0
movq 0x828(%rsp), %rax
movq %rax, 0x1a08(%rsp)
movl $0x0, 0x19bc(%rsp)
movl 0x19bc(%rsp), %eax
cmpl 0x1ed4(%rsp), %eax
jge 0x12666f3
movl $0x0, 0x19b8(%rsp)
movl 0x19b8(%rsp), %eax
cmpl 0x1ed8(%rsp), %eax
jge 0x12666bc
movq 0x1aa8(%rsp), %rax
movslq 0x19b8(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x19b4(%rsp)
movl $0x0, 0x19b0(%rsp)
movl 0x19b0(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x1266664
movq 0x1a58(%rsp), %rdx
movslq 0x19b0(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0x19b4(%rsp), %rsi
callq 0x1278120
movq 0x1a08(%rsp), %rax
movslq 0x19b0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x19b0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x19b0(%rsp)
jmp 0x1266600
movl 0x1edc(%rsp), %ecx
movq 0x1a58(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1a58(%rsp)
movl 0x1edc(%rsp), %ecx
movq 0x1a08(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1a08(%rsp)
movl 0x19b8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x19b8(%rsp)
jmp 0x12665c3
movl 0x1ed8(%rsp), %ecx
movq 0x1aa8(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1aa8(%rsp)
movl 0x19bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x19bc(%rsp)
jmp 0x12665a4
jmp 0x12666f5
movl 0x1ab0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1ab0(%rsp)
jmp 0x126589e
movl $0x0, 0x1f24(%rsp)
jmp 0x1274f25
movq 0x1f10(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x126e3f1
cmpl $0x1, 0x1edc(%rsp)
jne 0x12675ae
cmpl $0x1, 0x1ed8(%rsp)
jne 0x12675ae
movl 0x1ed0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jne 0x12675ae
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1eec(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fd0(%rsp)
movq 0x1fd0(%rsp), %rcx
movq %rcx, 0x818(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x827(%rsp)
je 0x12667f4
movq 0x818(%rsp), %rax
movq %rax, 0x2d18(%rsp)
movq 0x2d18(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x827(%rsp)
movb 0x827(%rsp), %al
testb $0x1, %al
jne 0x1266801
jmp 0x1266811
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1274f25
movl $0x0, 0x19ac(%rsp)
movl 0x19ac(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x126759e
movq 0x1f18(%rsp), %rcx
movl 0x19ac(%rsp), %eax
leaq 0x1958(%rsp), %rdx
movq %rdx, 0x2240(%rsp)
movq %rcx, 0x2238(%rsp)
movl %eax, 0x2234(%rsp)
movq 0x2238(%rsp), %rax
movq %rax, 0x810(%rsp)
movb $0x0, 0x2233(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2234(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1958(%rsp), %r10
movq %r10, 0x3530(%rsp)
movl %r9d, 0x352c(%rsp)
movl %r8d, 0x3528(%rsp)
movl %edi, 0x3524(%rsp)
movq %rsi, 0x3518(%rsp)
movq %rdx, 0x3510(%rsp)
movl %ecx, 0x350c(%rsp)
movq %rax, 0x3500(%rsp)
movq 0x3530(%rsp), %rcx
movq %rcx, 0x808(%rsp)
movq 0x3518(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3510(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x350c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3500(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x352c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3528(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3524(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c00(%rsp)
movl $0x10, 0x3bfc(%rsp)
movq 0x3c00(%rsp), %rax
movslq 0x3bfc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bfc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x810(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1980(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12669ec
movq 0x810(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1998(%rsp)
movb $0x1, 0x2233(%rsp)
testb $0x1, 0x2233(%rsp)
jne 0x1266b27
leaq 0x1958(%rsp), %rax
movq %rax, 0x2498(%rsp)
movq 0x2498(%rsp), %rax
movq %rax, 0x44c0(%rsp)
movq 0x44c0(%rsp), %rax
movq %rax, 0x800(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1266aca
movq 0x800(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x44bc(%rsp) # imm = 0xFFFFFFFF
movl 0x44bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x44b8(%rsp)
cmpl $0x1, 0x44b8(%rsp)
jne 0x1266aca
movq 0x800(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1266a9b
movq 0x800(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1266a99
jmp 0x1266ac8
movq 0x800(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45a0(%rsp)
cmpq $0x0, 0x45a0(%rsp)
je 0x1266ac6
movq 0x45a0(%rsp), %rdi
callq 0x5f480
jmp 0x1266ac8
jmp 0x1266aca
movq 0x800(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1266b25
movq %rax, %rdi
callq 0x678a0
jmp 0x1266b27
leaq 0x1958(%rsp), %rax
movq %rax, 0x2400(%rsp)
movq 0x2400(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7f0(%rsp)
leaq 0x1958(%rsp), %rax
movq %rax, 0x25d8(%rsp)
movq 0x25d8(%rsp), %rax
movq %rax, 0x4240(%rsp)
movq 0x4240(%rsp), %rax
movq %rax, 0x7f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1266c12
movq 0x7f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x423c(%rsp) # imm = 0xFFFFFFFF
movl 0x423c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4238(%rsp)
cmpl $0x1, 0x4238(%rsp)
jne 0x1266c12
movq 0x7f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1266be3
movq 0x7f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1266be1
jmp 0x1266c10
movq 0x7f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46e0(%rsp)
cmpq $0x0, 0x46e0(%rsp)
je 0x1266c0e
movq 0x46e0(%rsp), %rdi
callq 0x5f480
jmp 0x1266c10
jmp 0x1266c12
movq 0x7f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1266c6d
movq %rax, %rdi
callq 0x678a0
movq 0x7f0(%rsp), %rax
movq %rax, 0x19a0(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x19ac(%rsp), %eax
leaq 0x1908(%rsp), %rdx
movq %rdx, 0x2228(%rsp)
movq %rcx, 0x2220(%rsp)
movl %eax, 0x221c(%rsp)
movq 0x2220(%rsp), %rax
movq %rax, 0x7e8(%rsp)
movb $0x0, 0x221b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x221c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1908(%rsp), %r10
movq %r10, 0x3568(%rsp)
movl %r9d, 0x3564(%rsp)
movl %r8d, 0x3560(%rsp)
movl %edi, 0x355c(%rsp)
movq %rsi, 0x3550(%rsp)
movq %rdx, 0x3548(%rsp)
movl %ecx, 0x3544(%rsp)
movq %rax, 0x3538(%rsp)
movq 0x3568(%rsp), %rcx
movq %rcx, 0x7e0(%rsp)
movq 0x3550(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3548(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3544(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3538(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3564(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3560(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x355c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3bf0(%rsp)
movl $0x10, 0x3bec(%rsp)
movq 0x3bf0(%rsp), %rax
movslq 0x3bec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7e8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1930(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1266e39
movq 0x7e8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1948(%rsp)
movb $0x1, 0x221b(%rsp)
testb $0x1, 0x221b(%rsp)
jne 0x1266f74
leaq 0x1908(%rsp), %rax
movq %rax, 0x24a0(%rsp)
movq 0x24a0(%rsp), %rax
movq %rax, 0x44b0(%rsp)
movq 0x44b0(%rsp), %rax
movq %rax, 0x7d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1266f17
movq 0x7d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x44ac(%rsp) # imm = 0xFFFFFFFF
movl 0x44ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x44a8(%rsp)
cmpl $0x1, 0x44a8(%rsp)
jne 0x1266f17
movq 0x7d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1266ee8
movq 0x7d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1266ee6
jmp 0x1266f15
movq 0x7d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45a8(%rsp)
cmpq $0x0, 0x45a8(%rsp)
je 0x1266f13
movq 0x45a8(%rsp), %rdi
callq 0x5f480
jmp 0x1266f15
jmp 0x1266f17
movq 0x7d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1266f72
movq %rax, %rdi
callq 0x678a0
jmp 0x1266f74
leaq 0x1908(%rsp), %rax
movq %rax, 0x23f8(%rsp)
movq 0x23f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7c8(%rsp)
leaq 0x1908(%rsp), %rax
movq %rax, 0x25e0(%rsp)
movq 0x25e0(%rsp), %rax
movq %rax, 0x4230(%rsp)
movq 0x4230(%rsp), %rax
movq %rax, 0x7d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126705f
movq 0x7d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x422c(%rsp) # imm = 0xFFFFFFFF
movl 0x422c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4228(%rsp)
cmpl $0x1, 0x4228(%rsp)
jne 0x126705f
movq 0x7d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1267030
movq 0x7d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126702e
jmp 0x126705d
movq 0x7d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46e8(%rsp)
cmpq $0x0, 0x46e8(%rsp)
je 0x126705b
movq 0x46e8(%rsp), %rdi
callq 0x5f480
jmp 0x126705d
jmp 0x126705f
movq 0x7d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12670ba
movq %rax, %rdi
callq 0x678a0
movq 0x7c8(%rsp), %rax
movq %rax, 0x1950(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x19ac(%rsp), %eax
leaq 0x18b8(%rsp), %rdx
movq %rdx, 0x2960(%rsp)
movq %rcx, 0x2958(%rsp)
movl %eax, 0x2954(%rsp)
movq 0x2958(%rsp), %rax
movq %rax, 0x7c0(%rsp)
movb $0x0, 0x2953(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2954(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x18b8(%rsp), %r10
movq %r10, 0x2f48(%rsp)
movl %r9d, 0x2f44(%rsp)
movl %r8d, 0x2f40(%rsp)
movl %edi, 0x2f3c(%rsp)
movq %rsi, 0x2f30(%rsp)
movq %rdx, 0x2f28(%rsp)
movl %ecx, 0x2f24(%rsp)
movq %rax, 0x2f18(%rsp)
movq 0x2f48(%rsp), %rcx
movq %rcx, 0x7b8(%rsp)
movq 0x2f30(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2f28(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2f24(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2f18(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2f44(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f40(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f3c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3db0(%rsp)
movl $0x10, 0x3dac(%rsp)
movq 0x3db0(%rsp), %rax
movslq 0x3dac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3dac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7c0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x18e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1267286
movq 0x7c0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x18f8(%rsp)
movb $0x1, 0x2953(%rsp)
testb $0x1, 0x2953(%rsp)
jne 0x12673c1
leaq 0x18b8(%rsp), %rax
movq %rax, 0x2968(%rsp)
movq 0x2968(%rsp), %rax
movq %rax, 0x3e80(%rsp)
movq 0x3e80(%rsp), %rax
movq %rax, 0x7b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1267364
movq 0x7b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e7c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e7c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e78(%rsp)
cmpl $0x1, 0x3e78(%rsp)
jne 0x1267364
movq 0x7b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1267335
movq 0x7b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1267333
jmp 0x1267362
movq 0x7b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48c0(%rsp)
cmpq $0x0, 0x48c0(%rsp)
je 0x1267360
movq 0x48c0(%rsp), %rdi
callq 0x5f480
jmp 0x1267362
jmp 0x1267364
movq 0x7b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12673bf
movq %rax, %rdi
callq 0x678a0
jmp 0x12673c1
leaq 0x18b8(%rsp), %rax
movq %rax, 0x2ac8(%rsp)
movq 0x2ac8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7a0(%rsp)
leaq 0x18b8(%rsp), %rax
movq %rax, 0x25e8(%rsp)
movq 0x25e8(%rsp), %rax
movq %rax, 0x4220(%rsp)
movq 0x4220(%rsp), %rax
movq %rax, 0x7a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12674ac
movq 0x7a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x421c(%rsp) # imm = 0xFFFFFFFF
movl 0x421c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4218(%rsp)
cmpl $0x1, 0x4218(%rsp)
jne 0x12674ac
movq 0x7a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126747d
movq 0x7a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126747b
jmp 0x12674aa
movq 0x7a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46f0(%rsp)
cmpq $0x0, 0x46f0(%rsp)
je 0x12674a8
movq 0x46f0(%rsp), %rdi
callq 0x5f480
jmp 0x12674aa
jmp 0x12674ac
movq 0x7a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1267507
movq %rax, %rdi
callq 0x678a0
movq 0x7a0(%rsp), %rax
movq %rax, 0x1900(%rsp)
movl $0x0, 0x18b4(%rsp)
movl 0x18b4(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x1267586
movq 0x19a0(%rsp), %rsi
movslq 0x18b4(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1950(%rsp), %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x1278120
movq 0x1900(%rsp), %rax
movslq 0x18b4(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x18b4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x18b4(%rsp)
jmp 0x1267522
jmp 0x1267588
movl 0x19ac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x19ac(%rsp)
jmp 0x126681c
movl $0x0, 0x1f24(%rsp)
jmp 0x1274f25
movl 0x1edc(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jne 0x126801a
movl 0x1ed8(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jne 0x126801a
cmpl $0x1, 0x1ed0(%rsp)
jne 0x126801a
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1eec(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fc8(%rsp)
movq 0x1fc8(%rsp), %rcx
movq %rcx, 0x790(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x79f(%rsp)
je 0x126767b
movq 0x790(%rsp), %rax
movq %rax, 0x2d20(%rsp)
movq 0x2d20(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x79f(%rsp)
movb 0x79f(%rsp), %al
testb $0x1, %al
jne 0x1267688
jmp 0x1267698
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1274f25
movl $0x0, 0x18b0(%rsp)
movl 0x18b0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x126800a
movq 0x1f18(%rsp), %rcx
movl 0x18b0(%rsp), %eax
leaq 0x1860(%rsp), %rdx
movq %rdx, 0x2210(%rsp)
movq %rcx, 0x2208(%rsp)
movl %eax, 0x2204(%rsp)
movq 0x2208(%rsp), %rax
movq %rax, 0x788(%rsp)
movb $0x0, 0x2203(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2204(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1860(%rsp), %r10
movq %r10, 0x35a0(%rsp)
movl %r9d, 0x359c(%rsp)
movl %r8d, 0x3598(%rsp)
movl %edi, 0x3594(%rsp)
movq %rsi, 0x3588(%rsp)
movq %rdx, 0x3580(%rsp)
movl %ecx, 0x357c(%rsp)
movq %rax, 0x3570(%rsp)
movq 0x35a0(%rsp), %rcx
movq %rcx, 0x780(%rsp)
movq 0x3588(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3580(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x357c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3570(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x359c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3598(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3594(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3be0(%rsp)
movl $0x10, 0x3bdc(%rsp)
movq 0x3be0(%rsp), %rax
movslq 0x3bdc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bdc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x788(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1888(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1267873
movq 0x788(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x18a0(%rsp)
movb $0x1, 0x2203(%rsp)
testb $0x1, 0x2203(%rsp)
jne 0x12679ae
leaq 0x1860(%rsp), %rax
movq %rax, 0x24a8(%rsp)
movq 0x24a8(%rsp), %rax
movq %rax, 0x44a0(%rsp)
movq 0x44a0(%rsp), %rax
movq %rax, 0x778(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1267951
movq 0x778(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x449c(%rsp) # imm = 0xFFFFFFFF
movl 0x449c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4498(%rsp)
cmpl $0x1, 0x4498(%rsp)
jne 0x1267951
movq 0x778(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1267922
movq 0x778(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1267920
jmp 0x126794f
movq 0x778(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45b0(%rsp)
cmpq $0x0, 0x45b0(%rsp)
je 0x126794d
movq 0x45b0(%rsp), %rdi
callq 0x5f480
jmp 0x126794f
jmp 0x1267951
movq 0x778(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12679ac
movq %rax, %rdi
callq 0x678a0
jmp 0x12679ae
leaq 0x1860(%rsp), %rax
movq %rax, 0x23f0(%rsp)
movq 0x23f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x768(%rsp)
leaq 0x1860(%rsp), %rax
movq %rax, 0x25f0(%rsp)
movq 0x25f0(%rsp), %rax
movq %rax, 0x4210(%rsp)
movq 0x4210(%rsp), %rax
movq %rax, 0x770(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1267a99
movq 0x770(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x420c(%rsp) # imm = 0xFFFFFFFF
movl 0x420c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4208(%rsp)
cmpl $0x1, 0x4208(%rsp)
jne 0x1267a99
movq 0x770(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1267a6a
movq 0x770(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1267a68
jmp 0x1267a97
movq 0x770(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x46f8(%rsp)
cmpq $0x0, 0x46f8(%rsp)
je 0x1267a95
movq 0x46f8(%rsp), %rdi
callq 0x5f480
jmp 0x1267a97
jmp 0x1267a99
movq 0x770(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1267af4
movq %rax, %rdi
callq 0x678a0
movq 0x768(%rsp), %rax
movq %rax, 0x18a8(%rsp)
movq 0x1f10(%rsp), %rax
movq %rax, 0x23e8(%rsp)
movq 0x23e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1858(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x18b0(%rsp), %eax
leaq 0x1808(%rsp), %rdx
movq %rdx, 0x2940(%rsp)
movq %rcx, 0x2938(%rsp)
movl %eax, 0x2934(%rsp)
movq 0x2938(%rsp), %rax
movq %rax, 0x760(%rsp)
movb $0x0, 0x2933(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2934(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1808(%rsp), %r10
movq %r10, 0x2f80(%rsp)
movl %r9d, 0x2f7c(%rsp)
movl %r8d, 0x2f78(%rsp)
movl %edi, 0x2f74(%rsp)
movq %rsi, 0x2f68(%rsp)
movq %rdx, 0x2f60(%rsp)
movl %ecx, 0x2f5c(%rsp)
movq %rax, 0x2f50(%rsp)
movq 0x2f80(%rsp), %rcx
movq %rcx, 0x758(%rsp)
movq 0x2f68(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2f60(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2f5c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2f50(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2f7c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f78(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f74(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3da0(%rsp)
movl $0x10, 0x3d9c(%rsp)
movq 0x3da0(%rsp), %rax
movslq 0x3d9c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d9c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x760(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1830(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1267ce3
movq 0x760(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1848(%rsp)
movb $0x1, 0x2933(%rsp)
testb $0x1, 0x2933(%rsp)
jne 0x1267e1e
leaq 0x1808(%rsp), %rax
movq %rax, 0x2948(%rsp)
movq 0x2948(%rsp), %rax
movq %rax, 0x3e90(%rsp)
movq 0x3e90(%rsp), %rax
movq %rax, 0x750(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1267dc1
movq 0x750(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e8c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e8c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e88(%rsp)
cmpl $0x1, 0x3e88(%rsp)
jne 0x1267dc1
movq 0x750(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1267d92
movq 0x750(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1267d90
jmp 0x1267dbf
movq 0x750(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48b8(%rsp)
cmpq $0x0, 0x48b8(%rsp)
je 0x1267dbd
movq 0x48b8(%rsp), %rdi
callq 0x5f480
jmp 0x1267dbf
jmp 0x1267dc1
movq 0x750(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1267e1c
movq %rax, %rdi
callq 0x678a0
jmp 0x1267e1e
leaq 0x1808(%rsp), %rax
movq %rax, 0x2ac0(%rsp)
movq 0x2ac0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x740(%rsp)
leaq 0x1808(%rsp), %rax
movq %rax, 0x25f8(%rsp)
movq 0x25f8(%rsp), %rax
movq %rax, 0x4200(%rsp)
movq 0x4200(%rsp), %rax
movq %rax, 0x748(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1267f09
movq 0x748(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41fc(%rsp) # imm = 0xFFFFFFFF
movl 0x41fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41f8(%rsp)
cmpl $0x1, 0x41f8(%rsp)
jne 0x1267f09
movq 0x748(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1267eda
movq 0x748(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1267ed8
jmp 0x1267f07
movq 0x748(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4700(%rsp)
cmpq $0x0, 0x4700(%rsp)
je 0x1267f05
movq 0x4700(%rsp), %rdi
callq 0x5f480
jmp 0x1267f07
jmp 0x1267f09
movq 0x748(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1267f64
movq %rax, %rdi
callq 0x678a0
movq 0x740(%rsp), %rax
movq %rax, 0x1850(%rsp)
movl $0x0, 0x1804(%rsp)
movl 0x1804(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x1267ff2
movq 0x18a8(%rsp), %rsi
movslq 0x1804(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1858(%rsp), %rdx
movslq 0x1804(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x1278120
movq 0x1850(%rsp), %rax
movslq 0x1804(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1804(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1804(%rsp)
jmp 0x1267f7f
jmp 0x1267ff4
movl 0x18b0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x18b0(%rsp)
jmp 0x12676a3
movl $0x0, 0x1f24(%rsp)
jmp 0x1274f25
cmpl $0x1, 0x1ef8(%rsp)
jne 0x1268e9b
cmpl $0x1, 0x1ef4(%rsp)
jne 0x1268e9b
movl 0x1ed0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jne 0x1268e9b
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed0(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fc0(%rsp)
movq 0x1fc0(%rsp), %rcx
movq %rcx, 0x730(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x73f(%rsp)
je 0x12680e1
movq 0x730(%rsp), %rax
movq %rax, 0x2d28(%rsp)
movq 0x2d28(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x73f(%rsp)
movb 0x73f(%rsp), %al
testb $0x1, %al
jne 0x12680ee
jmp 0x12680fe
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1274f25
movl $0x0, 0x1800(%rsp)
movl 0x1800(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x1268e8b
movq 0x1f18(%rsp), %rcx
movl 0x1800(%rsp), %eax
leaq 0x17b0(%rsp), %rdx
movq %rdx, 0x21f8(%rsp)
movq %rcx, 0x21f0(%rsp)
movl %eax, 0x21ec(%rsp)
movq 0x21f0(%rsp), %rax
movq %rax, 0x728(%rsp)
movb $0x0, 0x21eb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x21ec(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x17b0(%rsp), %r10
movq %r10, 0x35d8(%rsp)
movl %r9d, 0x35d4(%rsp)
movl %r8d, 0x35d0(%rsp)
movl %edi, 0x35cc(%rsp)
movq %rsi, 0x35c0(%rsp)
movq %rdx, 0x35b8(%rsp)
movl %ecx, 0x35b4(%rsp)
movq %rax, 0x35a8(%rsp)
movq 0x35d8(%rsp), %rcx
movq %rcx, 0x720(%rsp)
movq 0x35c0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x35b8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x35b4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x35a8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x35d4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x35d0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x35cc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3bd0(%rsp)
movl $0x10, 0x3bcc(%rsp)
movq 0x3bd0(%rsp), %rax
movslq 0x3bcc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bcc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x728(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x17d8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12682d9
movq 0x728(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x17f0(%rsp)
movb $0x1, 0x21eb(%rsp)
testb $0x1, 0x21eb(%rsp)
jne 0x1268414
leaq 0x17b0(%rsp), %rax
movq %rax, 0x24b0(%rsp)
movq 0x24b0(%rsp), %rax
movq %rax, 0x4490(%rsp)
movq 0x4490(%rsp), %rax
movq %rax, 0x718(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12683b7
movq 0x718(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x448c(%rsp) # imm = 0xFFFFFFFF
movl 0x448c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4488(%rsp)
cmpl $0x1, 0x4488(%rsp)
jne 0x12683b7
movq 0x718(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1268388
movq 0x718(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1268386
jmp 0x12683b5
movq 0x718(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45b8(%rsp)
cmpq $0x0, 0x45b8(%rsp)
je 0x12683b3
movq 0x45b8(%rsp), %rdi
callq 0x5f480
jmp 0x12683b5
jmp 0x12683b7
movq 0x718(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1268412
movq %rax, %rdi
callq 0x678a0
jmp 0x1268414
leaq 0x17b0(%rsp), %rax
movq %rax, 0x23e0(%rsp)
movq 0x23e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x708(%rsp)
leaq 0x17b0(%rsp), %rax
movq %rax, 0x2600(%rsp)
movq 0x2600(%rsp), %rax
movq %rax, 0x41f0(%rsp)
movq 0x41f0(%rsp), %rax
movq %rax, 0x710(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12684ff
movq 0x710(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41ec(%rsp) # imm = 0xFFFFFFFF
movl 0x41ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41e8(%rsp)
cmpl $0x1, 0x41e8(%rsp)
jne 0x12684ff
movq 0x710(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12684d0
movq 0x710(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12684ce
jmp 0x12684fd
movq 0x710(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4708(%rsp)
cmpq $0x0, 0x4708(%rsp)
je 0x12684fb
movq 0x4708(%rsp), %rdi
callq 0x5f480
jmp 0x12684fd
jmp 0x12684ff
movq 0x710(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126855a
movq %rax, %rdi
callq 0x678a0
movq 0x708(%rsp), %rax
movq %rax, 0x17f8(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1800(%rsp), %eax
leaq 0x1760(%rsp), %rdx
movq %rdx, 0x21e0(%rsp)
movq %rcx, 0x21d8(%rsp)
movl %eax, 0x21d4(%rsp)
movq 0x21d8(%rsp), %rax
movq %rax, 0x700(%rsp)
movb $0x0, 0x21d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x21d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1760(%rsp), %r10
movq %r10, 0x3610(%rsp)
movl %r9d, 0x360c(%rsp)
movl %r8d, 0x3608(%rsp)
movl %edi, 0x3604(%rsp)
movq %rsi, 0x35f8(%rsp)
movq %rdx, 0x35f0(%rsp)
movl %ecx, 0x35ec(%rsp)
movq %rax, 0x35e0(%rsp)
movq 0x3610(%rsp), %rcx
movq %rcx, 0x6f8(%rsp)
movq 0x35f8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x35f0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x35ec(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x35e0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x360c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3608(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3604(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3bc0(%rsp)
movl $0x10, 0x3bbc(%rsp)
movq 0x3bc0(%rsp), %rax
movslq 0x3bbc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bbc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x700(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1788(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1268726
movq 0x700(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x17a0(%rsp)
movb $0x1, 0x21d3(%rsp)
testb $0x1, 0x21d3(%rsp)
jne 0x1268861
leaq 0x1760(%rsp), %rax
movq %rax, 0x24b8(%rsp)
movq 0x24b8(%rsp), %rax
movq %rax, 0x4480(%rsp)
movq 0x4480(%rsp), %rax
movq %rax, 0x6f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1268804
movq 0x6f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x447c(%rsp) # imm = 0xFFFFFFFF
movl 0x447c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4478(%rsp)
cmpl $0x1, 0x4478(%rsp)
jne 0x1268804
movq 0x6f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12687d5
movq 0x6f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12687d3
jmp 0x1268802
movq 0x6f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45c0(%rsp)
cmpq $0x0, 0x45c0(%rsp)
je 0x1268800
movq 0x45c0(%rsp), %rdi
callq 0x5f480
jmp 0x1268802
jmp 0x1268804
movq 0x6f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126885f
movq %rax, %rdi
callq 0x678a0
jmp 0x1268861
leaq 0x1760(%rsp), %rax
movq %rax, 0x23d8(%rsp)
movq 0x23d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6e0(%rsp)
leaq 0x1760(%rsp), %rax
movq %rax, 0x2608(%rsp)
movq 0x2608(%rsp), %rax
movq %rax, 0x41e0(%rsp)
movq 0x41e0(%rsp), %rax
movq %rax, 0x6e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126894c
movq 0x6e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41dc(%rsp) # imm = 0xFFFFFFFF
movl 0x41dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41d8(%rsp)
cmpl $0x1, 0x41d8(%rsp)
jne 0x126894c
movq 0x6e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126891d
movq 0x6e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126891b
jmp 0x126894a
movq 0x6e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4710(%rsp)
cmpq $0x0, 0x4710(%rsp)
je 0x1268948
movq 0x4710(%rsp), %rdi
callq 0x5f480
jmp 0x126894a
jmp 0x126894c
movq 0x6e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12689a7
movq %rax, %rdi
callq 0x678a0
movq 0x6e0(%rsp), %rax
movq %rax, 0x17a8(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1800(%rsp), %eax
leaq 0x1710(%rsp), %rdx
movq %rdx, 0x2920(%rsp)
movq %rcx, 0x2918(%rsp)
movl %eax, 0x2914(%rsp)
movq 0x2918(%rsp), %rax
movq %rax, 0x6d8(%rsp)
movb $0x0, 0x2913(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2914(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1710(%rsp), %r10
movq %r10, 0x2fb8(%rsp)
movl %r9d, 0x2fb4(%rsp)
movl %r8d, 0x2fb0(%rsp)
movl %edi, 0x2fac(%rsp)
movq %rsi, 0x2fa0(%rsp)
movq %rdx, 0x2f98(%rsp)
movl %ecx, 0x2f94(%rsp)
movq %rax, 0x2f88(%rsp)
movq 0x2fb8(%rsp), %rcx
movq %rcx, 0x6d0(%rsp)
movq 0x2fa0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2f98(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2f94(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2f88(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2fb4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2fb0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2fac(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d90(%rsp)
movl $0x10, 0x3d8c(%rsp)
movq 0x3d90(%rsp), %rax
movslq 0x3d8c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d8c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6d8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1738(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1268b73
movq 0x6d8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1750(%rsp)
movb $0x1, 0x2913(%rsp)
testb $0x1, 0x2913(%rsp)
jne 0x1268cae
leaq 0x1710(%rsp), %rax
movq %rax, 0x2928(%rsp)
movq 0x2928(%rsp), %rax
movq %rax, 0x3ea0(%rsp)
movq 0x3ea0(%rsp), %rax
movq %rax, 0x6c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1268c51
movq 0x6c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e9c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e9c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e98(%rsp)
cmpl $0x1, 0x3e98(%rsp)
jne 0x1268c51
movq 0x6c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1268c22
movq 0x6c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1268c20
jmp 0x1268c4f
movq 0x6c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48b0(%rsp)
cmpq $0x0, 0x48b0(%rsp)
je 0x1268c4d
movq 0x48b0(%rsp), %rdi
callq 0x5f480
jmp 0x1268c4f
jmp 0x1268c51
movq 0x6c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1268cac
movq %rax, %rdi
callq 0x678a0
jmp 0x1268cae
leaq 0x1710(%rsp), %rax
movq %rax, 0x2ab8(%rsp)
movq 0x2ab8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6b8(%rsp)
leaq 0x1710(%rsp), %rax
movq %rax, 0x2610(%rsp)
movq 0x2610(%rsp), %rax
movq %rax, 0x41d0(%rsp)
movq 0x41d0(%rsp), %rax
movq %rax, 0x6c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1268d99
movq 0x6c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41cc(%rsp) # imm = 0xFFFFFFFF
movl 0x41cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41c8(%rsp)
cmpl $0x1, 0x41c8(%rsp)
jne 0x1268d99
movq 0x6c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1268d6a
movq 0x6c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1268d68
jmp 0x1268d97
movq 0x6c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4718(%rsp)
cmpq $0x0, 0x4718(%rsp)
je 0x1268d95
movq 0x4718(%rsp), %rdi
callq 0x5f480
jmp 0x1268d97
jmp 0x1268d99
movq 0x6c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1268df4
movq %rax, %rdi
callq 0x678a0
movq 0x6b8(%rsp), %rax
movq %rax, 0x1758(%rsp)
movl $0x0, 0x170c(%rsp)
movl 0x170c(%rsp), %eax
cmpl 0x1ecc(%rsp), %eax
jge 0x1268e73
movq 0x17f8(%rsp), %rsi
movq 0x17a8(%rsp), %rdx
movslq 0x170c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x1278120
movq 0x1758(%rsp), %rax
movslq 0x170c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x170c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x170c(%rsp)
jmp 0x1268e0f
jmp 0x1268e75
movl 0x1800(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1800(%rsp)
jmp 0x1268109
movl $0x0, 0x1f24(%rsp)
jmp 0x1274f25
movl 0x1edc(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jne 0x1269907
movl 0x1ed8(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jne 0x1269907
cmpl $0x1, 0x1eec(%rsp)
jne 0x1269907
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed0(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fb8(%rsp)
movq 0x1fb8(%rsp), %rcx
movq %rcx, 0x6a8(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x6b7(%rsp)
je 0x1268f68
movq 0x6a8(%rsp), %rax
movq %rax, 0x2d30(%rsp)
movq 0x2d30(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x6b7(%rsp)
movb 0x6b7(%rsp), %al
testb $0x1, %al
jne 0x1268f75
jmp 0x1268f85
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1274f25
movl $0x0, 0x1708(%rsp)
movl 0x1708(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x12698f7
movq 0x1f18(%rsp), %rax
movq %rax, 0x23d0(%rsp)
movq 0x23d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1700(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1708(%rsp), %eax
leaq 0x16b0(%rsp), %rdx
movq %rdx, 0x21c8(%rsp)
movq %rcx, 0x21c0(%rsp)
movl %eax, 0x21bc(%rsp)
movq 0x21c0(%rsp), %rax
movq %rax, 0x6a0(%rsp)
movb $0x0, 0x21bb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x21bc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x16b0(%rsp), %r10
movq %r10, 0x3648(%rsp)
movl %r9d, 0x3644(%rsp)
movl %r8d, 0x3640(%rsp)
movl %edi, 0x363c(%rsp)
movq %rsi, 0x3630(%rsp)
movq %rdx, 0x3628(%rsp)
movl %ecx, 0x3624(%rsp)
movq %rax, 0x3618(%rsp)
movq 0x3648(%rsp), %rcx
movq %rcx, 0x698(%rsp)
movq 0x3630(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3628(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3624(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3618(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3644(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3640(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x363c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3bb0(%rsp)
movl $0x10, 0x3bac(%rsp)
movq 0x3bb0(%rsp), %rax
movslq 0x3bac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6a0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x16d8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1269183
movq 0x6a0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x16f0(%rsp)
movb $0x1, 0x21bb(%rsp)
testb $0x1, 0x21bb(%rsp)
jne 0x12692be
leaq 0x16b0(%rsp), %rax
movq %rax, 0x24c0(%rsp)
movq 0x24c0(%rsp), %rax
movq %rax, 0x4470(%rsp)
movq 0x4470(%rsp), %rax
movq %rax, 0x690(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1269261
movq 0x690(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x446c(%rsp) # imm = 0xFFFFFFFF
movl 0x446c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4468(%rsp)
cmpl $0x1, 0x4468(%rsp)
jne 0x1269261
movq 0x690(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1269232
movq 0x690(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1269230
jmp 0x126925f
movq 0x690(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45c8(%rsp)
cmpq $0x0, 0x45c8(%rsp)
je 0x126925d
movq 0x45c8(%rsp), %rdi
callq 0x5f480
jmp 0x126925f
jmp 0x1269261
movq 0x690(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12692bc
movq %rax, %rdi
callq 0x678a0
jmp 0x12692be
leaq 0x16b0(%rsp), %rax
movq %rax, 0x23c8(%rsp)
movq 0x23c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x680(%rsp)
leaq 0x16b0(%rsp), %rax
movq %rax, 0x2618(%rsp)
movq 0x2618(%rsp), %rax
movq %rax, 0x41c0(%rsp)
movq 0x41c0(%rsp), %rax
movq %rax, 0x688(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12693a9
movq 0x688(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41bc(%rsp) # imm = 0xFFFFFFFF
movl 0x41bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41b8(%rsp)
cmpl $0x1, 0x41b8(%rsp)
jne 0x12693a9
movq 0x688(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126937a
movq 0x688(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1269378
jmp 0x12693a7
movq 0x688(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4720(%rsp)
cmpq $0x0, 0x4720(%rsp)
je 0x12693a5
movq 0x4720(%rsp), %rdi
callq 0x5f480
jmp 0x12693a7
jmp 0x12693a9
movq 0x688(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1269404
movq %rax, %rdi
callq 0x678a0
movq 0x680(%rsp), %rax
movq %rax, 0x16f8(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1708(%rsp), %eax
leaq 0x1660(%rsp), %rdx
movq %rdx, 0x2900(%rsp)
movq %rcx, 0x28f8(%rsp)
movl %eax, 0x28f4(%rsp)
movq 0x28f8(%rsp), %rax
movq %rax, 0x678(%rsp)
movb $0x0, 0x28f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x28f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1660(%rsp), %r10
movq %r10, 0x2ff0(%rsp)
movl %r9d, 0x2fec(%rsp)
movl %r8d, 0x2fe8(%rsp)
movl %edi, 0x2fe4(%rsp)
movq %rsi, 0x2fd8(%rsp)
movq %rdx, 0x2fd0(%rsp)
movl %ecx, 0x2fcc(%rsp)
movq %rax, 0x2fc0(%rsp)
movq 0x2ff0(%rsp), %rcx
movq %rcx, 0x670(%rsp)
movq 0x2fd8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2fd0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2fcc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2fc0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2fec(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2fe8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2fe4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d80(%rsp)
movl $0x10, 0x3d7c(%rsp)
movq 0x3d80(%rsp), %rax
movslq 0x3d7c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d7c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x678(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1688(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12695d0
movq 0x678(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x16a0(%rsp)
movb $0x1, 0x28f3(%rsp)
testb $0x1, 0x28f3(%rsp)
jne 0x126970b
leaq 0x1660(%rsp), %rax
movq %rax, 0x2908(%rsp)
movq 0x2908(%rsp), %rax
movq %rax, 0x3eb0(%rsp)
movq 0x3eb0(%rsp), %rax
movq %rax, 0x668(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12696ae
movq 0x668(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3eac(%rsp) # imm = 0xFFFFFFFF
movl 0x3eac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ea8(%rsp)
cmpl $0x1, 0x3ea8(%rsp)
jne 0x12696ae
movq 0x668(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126967f
movq 0x668(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126967d
jmp 0x12696ac
movq 0x668(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48a8(%rsp)
cmpq $0x0, 0x48a8(%rsp)
je 0x12696aa
movq 0x48a8(%rsp), %rdi
callq 0x5f480
jmp 0x12696ac
jmp 0x12696ae
movq 0x668(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1269709
movq %rax, %rdi
callq 0x678a0
jmp 0x126970b
leaq 0x1660(%rsp), %rax
movq %rax, 0x2ab0(%rsp)
movq 0x2ab0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x658(%rsp)
leaq 0x1660(%rsp), %rax
movq %rax, 0x2620(%rsp)
movq 0x2620(%rsp), %rax
movq %rax, 0x41b0(%rsp)
movq 0x41b0(%rsp), %rax
movq %rax, 0x660(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12697f6
movq 0x660(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41ac(%rsp) # imm = 0xFFFFFFFF
movl 0x41ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41a8(%rsp)
cmpl $0x1, 0x41a8(%rsp)
jne 0x12697f6
movq 0x660(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12697c7
movq 0x660(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12697c5
jmp 0x12697f4
movq 0x660(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4728(%rsp)
cmpq $0x0, 0x4728(%rsp)
je 0x12697f2
movq 0x4728(%rsp), %rdi
callq 0x5f480
jmp 0x12697f4
jmp 0x12697f6
movq 0x660(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1269851
movq %rax, %rdi
callq 0x678a0
movq 0x658(%rsp), %rax
movq %rax, 0x16a8(%rsp)
movl $0x0, 0x165c(%rsp)
movl 0x165c(%rsp), %eax
cmpl 0x1ecc(%rsp), %eax
jge 0x12698df
movq 0x1700(%rsp), %rsi
movslq 0x165c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x16f8(%rsp), %rdx
movslq 0x165c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x1278120
movq 0x16a8(%rsp), %rax
movslq 0x165c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x165c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x165c(%rsp)
jmp 0x126986c
jmp 0x12698e1
movl 0x1708(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1708(%rsp)
jmp 0x1268f90
movl $0x0, 0x1f24(%rsp)
jmp 0x1274f25
cmpl $0x1, 0x1ef8(%rsp)
je 0x126a831
cmpl $0x1, 0x1edc(%rsp)
jne 0x126a831
movl 0x1ed8(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jne 0x126a831
movl 0x1ed0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jne 0x126a831
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1eec(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fb0(%rsp)
movq 0x1fb0(%rsp), %rcx
movq %rcx, 0x648(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x657(%rsp)
je 0x12699e2
movq 0x648(%rsp), %rax
movq %rax, 0x2d38(%rsp)
movq 0x2d38(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x657(%rsp)
movb 0x657(%rsp), %al
testb $0x1, %al
jne 0x12699ef
jmp 0x12699ff
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1274f25
movl $0x0, 0x1658(%rsp)
movl 0x1658(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x126a821
movq 0x1f18(%rsp), %rcx
movl 0x1658(%rsp), %eax
leaq 0x1608(%rsp), %rdx
movq %rdx, 0x21b0(%rsp)
movq %rcx, 0x21a8(%rsp)
movl %eax, 0x21a4(%rsp)
movq 0x21a8(%rsp), %rax
movq %rax, 0x640(%rsp)
movb $0x0, 0x21a3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x21a4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1608(%rsp), %r10
movq %r10, 0x3680(%rsp)
movl %r9d, 0x367c(%rsp)
movl %r8d, 0x3678(%rsp)
movl %edi, 0x3674(%rsp)
movq %rsi, 0x3668(%rsp)
movq %rdx, 0x3660(%rsp)
movl %ecx, 0x365c(%rsp)
movq %rax, 0x3650(%rsp)
movq 0x3680(%rsp), %rcx
movq %rcx, 0x638(%rsp)
movq 0x3668(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3660(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x365c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3650(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x367c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3678(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3674(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ba0(%rsp)
movl $0x10, 0x3b9c(%rsp)
movq 0x3ba0(%rsp), %rax
movslq 0x3b9c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b9c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x640(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1630(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1269bda
movq 0x640(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1648(%rsp)
movb $0x1, 0x21a3(%rsp)
testb $0x1, 0x21a3(%rsp)
jne 0x1269d15
leaq 0x1608(%rsp), %rax
movq %rax, 0x24c8(%rsp)
movq 0x24c8(%rsp), %rax
movq %rax, 0x4460(%rsp)
movq 0x4460(%rsp), %rax
movq %rax, 0x630(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1269cb8
movq 0x630(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x445c(%rsp) # imm = 0xFFFFFFFF
movl 0x445c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4458(%rsp)
cmpl $0x1, 0x4458(%rsp)
jne 0x1269cb8
movq 0x630(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1269c89
movq 0x630(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1269c87
jmp 0x1269cb6
movq 0x630(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45d0(%rsp)
cmpq $0x0, 0x45d0(%rsp)
je 0x1269cb4
movq 0x45d0(%rsp), %rdi
callq 0x5f480
jmp 0x1269cb6
jmp 0x1269cb8
movq 0x630(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1269d13
movq %rax, %rdi
callq 0x678a0
jmp 0x1269d15
leaq 0x1608(%rsp), %rax
movq %rax, 0x23c0(%rsp)
movq 0x23c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x620(%rsp)
leaq 0x1608(%rsp), %rax
movq %rax, 0x2628(%rsp)
movq 0x2628(%rsp), %rax
movq %rax, 0x41a0(%rsp)
movq 0x41a0(%rsp), %rax
movq %rax, 0x628(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1269e00
movq 0x628(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x419c(%rsp) # imm = 0xFFFFFFFF
movl 0x419c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4198(%rsp)
cmpl $0x1, 0x4198(%rsp)
jne 0x1269e00
movq 0x628(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1269dd1
movq 0x628(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1269dcf
jmp 0x1269dfe
movq 0x628(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4730(%rsp)
cmpq $0x0, 0x4730(%rsp)
je 0x1269dfc
movq 0x4730(%rsp), %rdi
callq 0x5f480
jmp 0x1269dfe
jmp 0x1269e00
movq 0x628(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1269e5b
movq %rax, %rdi
callq 0x678a0
movq 0x620(%rsp), %rax
movq %rax, 0x1650(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1658(%rsp), %eax
leaq 0x15b8(%rsp), %rdx
movq %rdx, 0x2198(%rsp)
movq %rcx, 0x2190(%rsp)
movl %eax, 0x218c(%rsp)
movq 0x2190(%rsp), %rax
movq %rax, 0x618(%rsp)
movb $0x0, 0x218b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x218c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x15b8(%rsp), %r10
movq %r10, 0x36b8(%rsp)
movl %r9d, 0x36b4(%rsp)
movl %r8d, 0x36b0(%rsp)
movl %edi, 0x36ac(%rsp)
movq %rsi, 0x36a0(%rsp)
movq %rdx, 0x3698(%rsp)
movl %ecx, 0x3694(%rsp)
movq %rax, 0x3688(%rsp)
movq 0x36b8(%rsp), %rcx
movq %rcx, 0x610(%rsp)
movq 0x36a0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3698(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3694(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3688(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x36b4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x36b0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x36ac(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b90(%rsp)
movl $0x10, 0x3b8c(%rsp)
movq 0x3b90(%rsp), %rax
movslq 0x3b8c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b8c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x618(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x15e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x126a027
movq 0x618(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x15f8(%rsp)
movb $0x1, 0x218b(%rsp)
testb $0x1, 0x218b(%rsp)
jne 0x126a162
leaq 0x15b8(%rsp), %rax
movq %rax, 0x24d0(%rsp)
movq 0x24d0(%rsp), %rax
movq %rax, 0x4450(%rsp)
movq 0x4450(%rsp), %rax
movq %rax, 0x608(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126a105
movq 0x608(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x444c(%rsp) # imm = 0xFFFFFFFF
movl 0x444c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4448(%rsp)
cmpl $0x1, 0x4448(%rsp)
jne 0x126a105
movq 0x608(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126a0d6
movq 0x608(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126a0d4
jmp 0x126a103
movq 0x608(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45d8(%rsp)
cmpq $0x0, 0x45d8(%rsp)
je 0x126a101
movq 0x45d8(%rsp), %rdi
callq 0x5f480
jmp 0x126a103
jmp 0x126a105
movq 0x608(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126a160
movq %rax, %rdi
callq 0x678a0
jmp 0x126a162
leaq 0x15b8(%rsp), %rax
movq %rax, 0x23b8(%rsp)
movq 0x23b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5f8(%rsp)
leaq 0x15b8(%rsp), %rax
movq %rax, 0x2630(%rsp)
movq 0x2630(%rsp), %rax
movq %rax, 0x4190(%rsp)
movq 0x4190(%rsp), %rax
movq %rax, 0x600(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126a24d
movq 0x600(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x418c(%rsp) # imm = 0xFFFFFFFF
movl 0x418c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4188(%rsp)
cmpl $0x1, 0x4188(%rsp)
jne 0x126a24d
movq 0x600(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126a21e
movq 0x600(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126a21c
jmp 0x126a24b
movq 0x600(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4738(%rsp)
cmpq $0x0, 0x4738(%rsp)
je 0x126a249
movq 0x4738(%rsp), %rdi
callq 0x5f480
jmp 0x126a24b
jmp 0x126a24d
movq 0x600(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126a2a8
movq %rax, %rdi
callq 0x678a0
movq 0x5f8(%rsp), %rax
movq %rax, 0x1600(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1658(%rsp), %eax
leaq 0x1568(%rsp), %rdx
movq %rdx, 0x28e0(%rsp)
movq %rcx, 0x28d8(%rsp)
movl %eax, 0x28d4(%rsp)
movq 0x28d8(%rsp), %rax
movq %rax, 0x5f0(%rsp)
movb $0x0, 0x28d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x28d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1568(%rsp), %r10
movq %r10, 0x3028(%rsp)
movl %r9d, 0x3024(%rsp)
movl %r8d, 0x3020(%rsp)
movl %edi, 0x301c(%rsp)
movq %rsi, 0x3010(%rsp)
movq %rdx, 0x3008(%rsp)
movl %ecx, 0x3004(%rsp)
movq %rax, 0x2ff8(%rsp)
movq 0x3028(%rsp), %rcx
movq %rcx, 0x5e8(%rsp)
movq 0x3010(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3008(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3004(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ff8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3024(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3020(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x301c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d70(%rsp)
movl $0x10, 0x3d6c(%rsp)
movq 0x3d70(%rsp), %rax
movslq 0x3d6c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d6c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5f0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1590(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x126a474
movq 0x5f0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x15a8(%rsp)
movb $0x1, 0x28d3(%rsp)
testb $0x1, 0x28d3(%rsp)
jne 0x126a5af
leaq 0x1568(%rsp), %rax
movq %rax, 0x28e8(%rsp)
movq 0x28e8(%rsp), %rax
movq %rax, 0x3ec0(%rsp)
movq 0x3ec0(%rsp), %rax
movq %rax, 0x5e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126a552
movq 0x5e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ebc(%rsp) # imm = 0xFFFFFFFF
movl 0x3ebc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3eb8(%rsp)
cmpl $0x1, 0x3eb8(%rsp)
jne 0x126a552
movq 0x5e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126a523
movq 0x5e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126a521
jmp 0x126a550
movq 0x5e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x48a0(%rsp)
cmpq $0x0, 0x48a0(%rsp)
je 0x126a54e
movq 0x48a0(%rsp), %rdi
callq 0x5f480
jmp 0x126a550
jmp 0x126a552
movq 0x5e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126a5ad
movq %rax, %rdi
callq 0x678a0
jmp 0x126a5af
leaq 0x1568(%rsp), %rax
movq %rax, 0x2aa8(%rsp)
movq 0x2aa8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5d0(%rsp)
leaq 0x1568(%rsp), %rax
movq %rax, 0x2638(%rsp)
movq 0x2638(%rsp), %rax
movq %rax, 0x4180(%rsp)
movq 0x4180(%rsp), %rax
movq %rax, 0x5d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126a69a
movq 0x5d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x417c(%rsp) # imm = 0xFFFFFFFF
movl 0x417c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4178(%rsp)
cmpl $0x1, 0x4178(%rsp)
jne 0x126a69a
movq 0x5d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126a66b
movq 0x5d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126a669
jmp 0x126a698
movq 0x5d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4740(%rsp)
cmpq $0x0, 0x4740(%rsp)
je 0x126a696
movq 0x4740(%rsp), %rdi
callq 0x5f480
jmp 0x126a698
jmp 0x126a69a
movq 0x5d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126a6f5
movq %rax, %rdi
callq 0x678a0
movq 0x5d0(%rsp), %rax
movq %rax, 0x15b0(%rsp)
movl $0x0, 0x1564(%rsp)
movl 0x1564(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jge 0x126a809
movq 0x1600(%rsp), %rax
movslq 0x1564(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x1560(%rsp)
movl $0x0, 0x155c(%rsp)
movl 0x155c(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x126a7b1
movq 0x1650(%rsp), %rsi
movslq 0x155c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0x1560(%rsp), %rdx
callq 0x1278120
movq 0x15b0(%rsp), %rax
movslq 0x155c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x155c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x155c(%rsp)
jmp 0x126a74d
movl 0x1ef8(%rsp), %ecx
movq 0x1650(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1650(%rsp)
movl 0x1ef8(%rsp), %ecx
movq 0x15b0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x15b0(%rsp)
movl 0x1564(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1564(%rsp)
jmp 0x126a710
jmp 0x126a80b
movl 0x1658(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1658(%rsp)
jmp 0x1269a0a
movl $0x0, 0x1f24(%rsp)
jmp 0x1274f25
movl 0x1edc(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jne 0x126b74c
cmpl $0x1, 0x1ef4(%rsp)
je 0x126b74c
cmpl $0x1, 0x1ed8(%rsp)
jne 0x126b74c
movl 0x1ed0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jne 0x126b74c
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1eec(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fa8(%rsp)
movq 0x1fa8(%rsp), %rcx
movq %rcx, 0x5c0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x5cf(%rsp)
je 0x126a90c
movq 0x5c0(%rsp), %rax
movq %rax, 0x2d40(%rsp)
movq 0x2d40(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x5cf(%rsp)
movb 0x5cf(%rsp), %al
testb $0x1, %al
jne 0x126a919
jmp 0x126a929
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1274f25
movl $0x0, 0x1558(%rsp)
movl 0x1558(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x126b73c
movq 0x1f18(%rsp), %rcx
movl 0x1558(%rsp), %eax
leaq 0x1508(%rsp), %rdx
movq %rdx, 0x2180(%rsp)
movq %rcx, 0x2178(%rsp)
movl %eax, 0x2174(%rsp)
movq 0x2178(%rsp), %rax
movq %rax, 0x5b8(%rsp)
movb $0x0, 0x2173(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2174(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1508(%rsp), %r10
movq %r10, 0x36f0(%rsp)
movl %r9d, 0x36ec(%rsp)
movl %r8d, 0x36e8(%rsp)
movl %edi, 0x36e4(%rsp)
movq %rsi, 0x36d8(%rsp)
movq %rdx, 0x36d0(%rsp)
movl %ecx, 0x36cc(%rsp)
movq %rax, 0x36c0(%rsp)
movq 0x36f0(%rsp), %rcx
movq %rcx, 0x5b0(%rsp)
movq 0x36d8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x36d0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x36cc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x36c0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x36ec(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x36e8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x36e4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b80(%rsp)
movl $0x10, 0x3b7c(%rsp)
movq 0x3b80(%rsp), %rax
movslq 0x3b7c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b7c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5b8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1530(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x126ab04
movq 0x5b8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1548(%rsp)
movb $0x1, 0x2173(%rsp)
testb $0x1, 0x2173(%rsp)
jne 0x126ac3f
leaq 0x1508(%rsp), %rax
movq %rax, 0x24d8(%rsp)
movq 0x24d8(%rsp), %rax
movq %rax, 0x4440(%rsp)
movq 0x4440(%rsp), %rax
movq %rax, 0x5a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126abe2
movq 0x5a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x443c(%rsp) # imm = 0xFFFFFFFF
movl 0x443c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4438(%rsp)
cmpl $0x1, 0x4438(%rsp)
jne 0x126abe2
movq 0x5a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126abb3
movq 0x5a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126abb1
jmp 0x126abe0
movq 0x5a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45e0(%rsp)
cmpq $0x0, 0x45e0(%rsp)
je 0x126abde
movq 0x45e0(%rsp), %rdi
callq 0x5f480
jmp 0x126abe0
jmp 0x126abe2
movq 0x5a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126ac3d
movq %rax, %rdi
callq 0x678a0
jmp 0x126ac3f
leaq 0x1508(%rsp), %rax
movq %rax, 0x23b0(%rsp)
movq 0x23b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x598(%rsp)
leaq 0x1508(%rsp), %rax
movq %rax, 0x2640(%rsp)
movq 0x2640(%rsp), %rax
movq %rax, 0x4170(%rsp)
movq 0x4170(%rsp), %rax
movq %rax, 0x5a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126ad2a
movq 0x5a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x416c(%rsp) # imm = 0xFFFFFFFF
movl 0x416c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4168(%rsp)
cmpl $0x1, 0x4168(%rsp)
jne 0x126ad2a
movq 0x5a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126acfb
movq 0x5a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126acf9
jmp 0x126ad28
movq 0x5a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4748(%rsp)
cmpq $0x0, 0x4748(%rsp)
je 0x126ad26
movq 0x4748(%rsp), %rdi
callq 0x5f480
jmp 0x126ad28
jmp 0x126ad2a
movq 0x5a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126ad85
movq %rax, %rdi
callq 0x678a0
movq 0x598(%rsp), %rax
movq %rax, 0x1550(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1558(%rsp), %eax
leaq 0x14b8(%rsp), %rdx
movq %rdx, 0x2168(%rsp)
movq %rcx, 0x2160(%rsp)
movl %eax, 0x215c(%rsp)
movq 0x2160(%rsp), %rax
movq %rax, 0x590(%rsp)
movb $0x0, 0x215b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x215c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x14b8(%rsp), %r10
movq %r10, 0x3728(%rsp)
movl %r9d, 0x3724(%rsp)
movl %r8d, 0x3720(%rsp)
movl %edi, 0x371c(%rsp)
movq %rsi, 0x3710(%rsp)
movq %rdx, 0x3708(%rsp)
movl %ecx, 0x3704(%rsp)
movq %rax, 0x36f8(%rsp)
movq 0x3728(%rsp), %rcx
movq %rcx, 0x588(%rsp)
movq 0x3710(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3708(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3704(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x36f8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3724(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3720(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x371c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b70(%rsp)
movl $0x10, 0x3b6c(%rsp)
movq 0x3b70(%rsp), %rax
movslq 0x3b6c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b6c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x590(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x14e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x126af51
movq 0x590(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x14f8(%rsp)
movb $0x1, 0x215b(%rsp)
testb $0x1, 0x215b(%rsp)
jne 0x126b08c
leaq 0x14b8(%rsp), %rax
movq %rax, 0x24e0(%rsp)
movq 0x24e0(%rsp), %rax
movq %rax, 0x4430(%rsp)
movq 0x4430(%rsp), %rax
movq %rax, 0x580(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126b02f
movq 0x580(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x442c(%rsp) # imm = 0xFFFFFFFF
movl 0x442c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4428(%rsp)
cmpl $0x1, 0x4428(%rsp)
jne 0x126b02f
movq 0x580(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126b000
movq 0x580(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126affe
jmp 0x126b02d
movq 0x580(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45e8(%rsp)
cmpq $0x0, 0x45e8(%rsp)
je 0x126b02b
movq 0x45e8(%rsp), %rdi
callq 0x5f480
jmp 0x126b02d
jmp 0x126b02f
movq 0x580(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126b08a
movq %rax, %rdi
callq 0x678a0
jmp 0x126b08c
leaq 0x14b8(%rsp), %rax
movq %rax, 0x23a8(%rsp)
movq 0x23a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x570(%rsp)
leaq 0x14b8(%rsp), %rax
movq %rax, 0x2648(%rsp)
movq 0x2648(%rsp), %rax
movq %rax, 0x4160(%rsp)
movq 0x4160(%rsp), %rax
movq %rax, 0x578(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126b177
movq 0x578(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x415c(%rsp) # imm = 0xFFFFFFFF
movl 0x415c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4158(%rsp)
cmpl $0x1, 0x4158(%rsp)
jne 0x126b177
movq 0x578(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126b148
movq 0x578(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126b146
jmp 0x126b175
movq 0x578(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4750(%rsp)
cmpq $0x0, 0x4750(%rsp)
je 0x126b173
movq 0x4750(%rsp), %rdi
callq 0x5f480
jmp 0x126b175
jmp 0x126b177
movq 0x578(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126b1d2
movq %rax, %rdi
callq 0x678a0
movq 0x570(%rsp), %rax
movq %rax, 0x1500(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1558(%rsp), %eax
leaq 0x1468(%rsp), %rdx
movq %rdx, 0x28c0(%rsp)
movq %rcx, 0x28b8(%rsp)
movl %eax, 0x28b4(%rsp)
movq 0x28b8(%rsp), %rax
movq %rax, 0x568(%rsp)
movb $0x0, 0x28b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x28b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1468(%rsp), %r10
movq %r10, 0x3060(%rsp)
movl %r9d, 0x305c(%rsp)
movl %r8d, 0x3058(%rsp)
movl %edi, 0x3054(%rsp)
movq %rsi, 0x3048(%rsp)
movq %rdx, 0x3040(%rsp)
movl %ecx, 0x303c(%rsp)
movq %rax, 0x3030(%rsp)
movq 0x3060(%rsp), %rcx
movq %rcx, 0x560(%rsp)
movq 0x3048(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3040(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x303c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3030(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x305c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3058(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3054(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d60(%rsp)
movl $0x10, 0x3d5c(%rsp)
movq 0x3d60(%rsp), %rax
movslq 0x3d5c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d5c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x568(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1490(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x126b39e
movq 0x568(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x14a8(%rsp)
movb $0x1, 0x28b3(%rsp)
testb $0x1, 0x28b3(%rsp)
jne 0x126b4d9
leaq 0x1468(%rsp), %rax
movq %rax, 0x28c8(%rsp)
movq 0x28c8(%rsp), %rax
movq %rax, 0x3ed0(%rsp)
movq 0x3ed0(%rsp), %rax
movq %rax, 0x558(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126b47c
movq 0x558(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ecc(%rsp) # imm = 0xFFFFFFFF
movl 0x3ecc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ec8(%rsp)
cmpl $0x1, 0x3ec8(%rsp)
jne 0x126b47c
movq 0x558(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126b44d
movq 0x558(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126b44b
jmp 0x126b47a
movq 0x558(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4898(%rsp)
cmpq $0x0, 0x4898(%rsp)
je 0x126b478
movq 0x4898(%rsp), %rdi
callq 0x5f480
jmp 0x126b47a
jmp 0x126b47c
movq 0x558(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126b4d7
movq %rax, %rdi
callq 0x678a0
jmp 0x126b4d9
leaq 0x1468(%rsp), %rax
movq %rax, 0x2aa0(%rsp)
movq 0x2aa0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x548(%rsp)
leaq 0x1468(%rsp), %rax
movq %rax, 0x2650(%rsp)
movq 0x2650(%rsp), %rax
movq %rax, 0x4150(%rsp)
movq 0x4150(%rsp), %rax
movq %rax, 0x550(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126b5c4
movq 0x550(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x414c(%rsp) # imm = 0xFFFFFFFF
movl 0x414c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4148(%rsp)
cmpl $0x1, 0x4148(%rsp)
jne 0x126b5c4
movq 0x550(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126b595
movq 0x550(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126b593
jmp 0x126b5c2
movq 0x550(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4758(%rsp)
cmpq $0x0, 0x4758(%rsp)
je 0x126b5c0
movq 0x4758(%rsp), %rdi
callq 0x5f480
jmp 0x126b5c2
jmp 0x126b5c4
movq 0x550(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126b61f
movq %rax, %rdi
callq 0x678a0
movq 0x548(%rsp), %rax
movq %rax, 0x14b0(%rsp)
movl $0x0, 0x1464(%rsp)
movl 0x1464(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jge 0x126b724
movl $0x0, 0x1460(%rsp)
movl 0x1460(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x126b6cc
movq 0x1550(%rsp), %rsi
movslq 0x1460(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1500(%rsp), %rdx
movslq 0x1460(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x1278120
movq 0x14b0(%rsp), %rax
movslq 0x1460(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1460(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1460(%rsp)
jmp 0x126b659
movl 0x1ef8(%rsp), %ecx
movq 0x1550(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1550(%rsp)
movl 0x1ef8(%rsp), %ecx
movq 0x14b0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x14b0(%rsp)
movl 0x1464(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1464(%rsp)
jmp 0x126b63a
jmp 0x126b726
movl 0x1558(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1558(%rsp)
jmp 0x126a934
movl $0x0, 0x1f24(%rsp)
jmp 0x1274f25
cmpl $0x1, 0x1edc(%rsp)
je 0x126c676
cmpl $0x1, 0x1ef8(%rsp)
jne 0x126c676
movl 0x1ed8(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jne 0x126c676
movl 0x1ed0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jne 0x126c676
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed0(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1fa0(%rsp)
movq 0x1fa0(%rsp), %rcx
movq %rcx, 0x538(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x547(%rsp)
je 0x126b827
movq 0x538(%rsp), %rax
movq %rax, 0x2d48(%rsp)
movq 0x2d48(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x547(%rsp)
movb 0x547(%rsp), %al
testb $0x1, %al
jne 0x126b834
jmp 0x126b844
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1274f25
movl $0x0, 0x145c(%rsp)
movl 0x145c(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x126c666
movq 0x1f18(%rsp), %rcx
movl 0x145c(%rsp), %eax
leaq 0x1408(%rsp), %rdx
movq %rdx, 0x2150(%rsp)
movq %rcx, 0x2148(%rsp)
movl %eax, 0x2144(%rsp)
movq 0x2148(%rsp), %rax
movq %rax, 0x530(%rsp)
movb $0x0, 0x2143(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2144(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1408(%rsp), %r10
movq %r10, 0x3760(%rsp)
movl %r9d, 0x375c(%rsp)
movl %r8d, 0x3758(%rsp)
movl %edi, 0x3754(%rsp)
movq %rsi, 0x3748(%rsp)
movq %rdx, 0x3740(%rsp)
movl %ecx, 0x373c(%rsp)
movq %rax, 0x3730(%rsp)
movq 0x3760(%rsp), %rcx
movq %rcx, 0x528(%rsp)
movq 0x3748(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3740(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x373c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3730(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x375c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3758(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3754(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b60(%rsp)
movl $0x10, 0x3b5c(%rsp)
movq 0x3b60(%rsp), %rax
movslq 0x3b5c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b5c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x530(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1430(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x126ba1f
movq 0x530(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1448(%rsp)
movb $0x1, 0x2143(%rsp)
testb $0x1, 0x2143(%rsp)
jne 0x126bb5a
leaq 0x1408(%rsp), %rax
movq %rax, 0x24e8(%rsp)
movq 0x24e8(%rsp), %rax
movq %rax, 0x4420(%rsp)
movq 0x4420(%rsp), %rax
movq %rax, 0x520(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126bafd
movq 0x520(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x441c(%rsp) # imm = 0xFFFFFFFF
movl 0x441c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4418(%rsp)
cmpl $0x1, 0x4418(%rsp)
jne 0x126bafd
movq 0x520(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126bace
movq 0x520(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126bacc
jmp 0x126bafb
movq 0x520(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45f0(%rsp)
cmpq $0x0, 0x45f0(%rsp)
je 0x126baf9
movq 0x45f0(%rsp), %rdi
callq 0x5f480
jmp 0x126bafb
jmp 0x126bafd
movq 0x520(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126bb58
movq %rax, %rdi
callq 0x678a0
jmp 0x126bb5a
leaq 0x1408(%rsp), %rax
movq %rax, 0x23a0(%rsp)
movq 0x23a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x510(%rsp)
leaq 0x1408(%rsp), %rax
movq %rax, 0x2658(%rsp)
movq 0x2658(%rsp), %rax
movq %rax, 0x4140(%rsp)
movq 0x4140(%rsp), %rax
movq %rax, 0x518(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126bc45
movq 0x518(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x413c(%rsp) # imm = 0xFFFFFFFF
movl 0x413c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4138(%rsp)
cmpl $0x1, 0x4138(%rsp)
jne 0x126bc45
movq 0x518(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126bc16
movq 0x518(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126bc14
jmp 0x126bc43
movq 0x518(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4760(%rsp)
cmpq $0x0, 0x4760(%rsp)
je 0x126bc41
movq 0x4760(%rsp), %rdi
callq 0x5f480
jmp 0x126bc43
jmp 0x126bc45
movq 0x518(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126bca0
movq %rax, %rdi
callq 0x678a0
movq 0x510(%rsp), %rax
movq %rax, 0x1450(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x145c(%rsp), %eax
leaq 0x13b8(%rsp), %rdx
movq %rdx, 0x2138(%rsp)
movq %rcx, 0x2130(%rsp)
movl %eax, 0x212c(%rsp)
movq 0x2130(%rsp), %rax
movq %rax, 0x508(%rsp)
movb $0x0, 0x212b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x212c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x13b8(%rsp), %r10
movq %r10, 0x3798(%rsp)
movl %r9d, 0x3794(%rsp)
movl %r8d, 0x3790(%rsp)
movl %edi, 0x378c(%rsp)
movq %rsi, 0x3780(%rsp)
movq %rdx, 0x3778(%rsp)
movl %ecx, 0x3774(%rsp)
movq %rax, 0x3768(%rsp)
movq 0x3798(%rsp), %rcx
movq %rcx, 0x500(%rsp)
movq 0x3780(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3778(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3774(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3768(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3794(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3790(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x378c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b50(%rsp)
movl $0x10, 0x3b4c(%rsp)
movq 0x3b50(%rsp), %rax
movslq 0x3b4c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b4c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x508(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x13e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x126be6c
movq 0x508(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x13f8(%rsp)
movb $0x1, 0x212b(%rsp)
testb $0x1, 0x212b(%rsp)
jne 0x126bfa7
leaq 0x13b8(%rsp), %rax
movq %rax, 0x24f0(%rsp)
movq 0x24f0(%rsp), %rax
movq %rax, 0x4410(%rsp)
movq 0x4410(%rsp), %rax
movq %rax, 0x4f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126bf4a
movq 0x4f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x440c(%rsp) # imm = 0xFFFFFFFF
movl 0x440c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4408(%rsp)
cmpl $0x1, 0x4408(%rsp)
jne 0x126bf4a
movq 0x4f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126bf1b
movq 0x4f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126bf19
jmp 0x126bf48
movq 0x4f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45f8(%rsp)
cmpq $0x0, 0x45f8(%rsp)
je 0x126bf46
movq 0x45f8(%rsp), %rdi
callq 0x5f480
jmp 0x126bf48
jmp 0x126bf4a
movq 0x4f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126bfa5
movq %rax, %rdi
callq 0x678a0
jmp 0x126bfa7
leaq 0x13b8(%rsp), %rax
movq %rax, 0x2398(%rsp)
movq 0x2398(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4e8(%rsp)
leaq 0x13b8(%rsp), %rax
movq %rax, 0x2660(%rsp)
movq 0x2660(%rsp), %rax
movq %rax, 0x4130(%rsp)
movq 0x4130(%rsp), %rax
movq %rax, 0x4f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126c092
movq 0x4f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x412c(%rsp) # imm = 0xFFFFFFFF
movl 0x412c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4128(%rsp)
cmpl $0x1, 0x4128(%rsp)
jne 0x126c092
movq 0x4f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126c063
movq 0x4f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126c061
jmp 0x126c090
movq 0x4f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4768(%rsp)
cmpq $0x0, 0x4768(%rsp)
je 0x126c08e
movq 0x4768(%rsp), %rdi
callq 0x5f480
jmp 0x126c090
jmp 0x126c092
movq 0x4f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126c0ed
movq %rax, %rdi
callq 0x678a0
movq 0x4e8(%rsp), %rax
movq %rax, 0x1400(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x145c(%rsp), %eax
leaq 0x1368(%rsp), %rdx
movq %rdx, 0x28a0(%rsp)
movq %rcx, 0x2898(%rsp)
movl %eax, 0x2894(%rsp)
movq 0x2898(%rsp), %rax
movq %rax, 0x4e0(%rsp)
movb $0x0, 0x2893(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2894(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1368(%rsp), %r10
movq %r10, 0x3098(%rsp)
movl %r9d, 0x3094(%rsp)
movl %r8d, 0x3090(%rsp)
movl %edi, 0x308c(%rsp)
movq %rsi, 0x3080(%rsp)
movq %rdx, 0x3078(%rsp)
movl %ecx, 0x3074(%rsp)
movq %rax, 0x3068(%rsp)
movq 0x3098(%rsp), %rcx
movq %rcx, 0x4d8(%rsp)
movq 0x3080(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3078(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3074(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3068(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3094(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3090(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x308c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d50(%rsp)
movl $0x10, 0x3d4c(%rsp)
movq 0x3d50(%rsp), %rax
movslq 0x3d4c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d4c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4e0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1390(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x126c2b9
movq 0x4e0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x13a8(%rsp)
movb $0x1, 0x2893(%rsp)
testb $0x1, 0x2893(%rsp)
jne 0x126c3f4
leaq 0x1368(%rsp), %rax
movq %rax, 0x28a8(%rsp)
movq 0x28a8(%rsp), %rax
movq %rax, 0x3ee0(%rsp)
movq 0x3ee0(%rsp), %rax
movq %rax, 0x4d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126c397
movq 0x4d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3edc(%rsp) # imm = 0xFFFFFFFF
movl 0x3edc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ed8(%rsp)
cmpl $0x1, 0x3ed8(%rsp)
jne 0x126c397
movq 0x4d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126c368
movq 0x4d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126c366
jmp 0x126c395
movq 0x4d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4890(%rsp)
cmpq $0x0, 0x4890(%rsp)
je 0x126c393
movq 0x4890(%rsp), %rdi
callq 0x5f480
jmp 0x126c395
jmp 0x126c397
movq 0x4d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126c3f2
movq %rax, %rdi
callq 0x678a0
jmp 0x126c3f4
leaq 0x1368(%rsp), %rax
movq %rax, 0x2a98(%rsp)
movq 0x2a98(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4c0(%rsp)
leaq 0x1368(%rsp), %rax
movq %rax, 0x2668(%rsp)
movq 0x2668(%rsp), %rax
movq %rax, 0x4120(%rsp)
movq 0x4120(%rsp), %rax
movq %rax, 0x4c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126c4df
movq 0x4c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x411c(%rsp) # imm = 0xFFFFFFFF
movl 0x411c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4118(%rsp)
cmpl $0x1, 0x4118(%rsp)
jne 0x126c4df
movq 0x4c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126c4b0
movq 0x4c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126c4ae
jmp 0x126c4dd
movq 0x4c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4770(%rsp)
cmpq $0x0, 0x4770(%rsp)
je 0x126c4db
movq 0x4770(%rsp), %rdi
callq 0x5f480
jmp 0x126c4dd
jmp 0x126c4df
movq 0x4c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126c53a
movq %rax, %rdi
callq 0x678a0
movq 0x4c0(%rsp), %rax
movq %rax, 0x13b0(%rsp)
movl $0x0, 0x1364(%rsp)
movl 0x1364(%rsp), %eax
cmpl 0x1ed8(%rsp), %eax
jge 0x126c64e
movq 0x1450(%rsp), %rax
movslq 0x1364(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x1360(%rsp)
movl $0x0, 0x135c(%rsp)
movl 0x135c(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x126c5f6
movq 0x1400(%rsp), %rdx
movslq 0x135c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0x1360(%rsp), %rsi
callq 0x1278120
movq 0x13b0(%rsp), %rax
movslq 0x135c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x135c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x135c(%rsp)
jmp 0x126c592
movl 0x1edc(%rsp), %ecx
movq 0x1400(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1400(%rsp)
movl 0x1edc(%rsp), %ecx
movq 0x13b0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x13b0(%rsp)
movl 0x1364(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1364(%rsp)
jmp 0x126c555
jmp 0x126c650
movl 0x145c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x145c(%rsp)
jmp 0x126b84f
movl $0x0, 0x1f24(%rsp)
jmp 0x1274f25
movl 0x1edc(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jne 0x126d591
cmpl $0x1, 0x1ed8(%rsp)
je 0x126d591
cmpl $0x1, 0x1ef4(%rsp)
jne 0x126d591
movl 0x1ed0(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jne 0x126d591
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed0(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f98(%rsp)
movq 0x1f98(%rsp), %rcx
movq %rcx, 0x4b0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x4bf(%rsp)
je 0x126c751
movq 0x4b0(%rsp), %rax
movq %rax, 0x2d50(%rsp)
movq 0x2d50(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x4bf(%rsp)
movb 0x4bf(%rsp), %al
testb $0x1, %al
jne 0x126c75e
jmp 0x126c76e
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1274f25
movl $0x0, 0x1358(%rsp)
movl 0x1358(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x126d581
movq 0x1f18(%rsp), %rcx
movl 0x1358(%rsp), %eax
leaq 0x1308(%rsp), %rdx
movq %rdx, 0x2120(%rsp)
movq %rcx, 0x2118(%rsp)
movl %eax, 0x2114(%rsp)
movq 0x2118(%rsp), %rax
movq %rax, 0x4a8(%rsp)
movb $0x0, 0x2113(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2114(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1308(%rsp), %r10
movq %r10, 0x37d0(%rsp)
movl %r9d, 0x37cc(%rsp)
movl %r8d, 0x37c8(%rsp)
movl %edi, 0x37c4(%rsp)
movq %rsi, 0x37b8(%rsp)
movq %rdx, 0x37b0(%rsp)
movl %ecx, 0x37ac(%rsp)
movq %rax, 0x37a0(%rsp)
movq 0x37d0(%rsp), %rcx
movq %rcx, 0x4a0(%rsp)
movq 0x37b8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x37b0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x37ac(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x37a0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x37cc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x37c8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x37c4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b40(%rsp)
movl $0x10, 0x3b3c(%rsp)
movq 0x3b40(%rsp), %rax
movslq 0x3b3c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b3c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4a8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1330(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x126c949
movq 0x4a8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1348(%rsp)
movb $0x1, 0x2113(%rsp)
testb $0x1, 0x2113(%rsp)
jne 0x126ca84
leaq 0x1308(%rsp), %rax
movq %rax, 0x24f8(%rsp)
movq 0x24f8(%rsp), %rax
movq %rax, 0x4400(%rsp)
movq 0x4400(%rsp), %rax
movq %rax, 0x498(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126ca27
movq 0x498(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x43fc(%rsp) # imm = 0xFFFFFFFF
movl 0x43fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x43f8(%rsp)
cmpl $0x1, 0x43f8(%rsp)
jne 0x126ca27
movq 0x498(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126c9f8
movq 0x498(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126c9f6
jmp 0x126ca25
movq 0x498(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4600(%rsp)
cmpq $0x0, 0x4600(%rsp)
je 0x126ca23
movq 0x4600(%rsp), %rdi
callq 0x5f480
jmp 0x126ca25
jmp 0x126ca27
movq 0x498(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126ca82
movq %rax, %rdi
callq 0x678a0
jmp 0x126ca84
leaq 0x1308(%rsp), %rax
movq %rax, 0x2390(%rsp)
movq 0x2390(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x488(%rsp)
leaq 0x1308(%rsp), %rax
movq %rax, 0x2670(%rsp)
movq 0x2670(%rsp), %rax
movq %rax, 0x4110(%rsp)
movq 0x4110(%rsp), %rax
movq %rax, 0x490(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126cb6f
movq 0x490(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x410c(%rsp) # imm = 0xFFFFFFFF
movl 0x410c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4108(%rsp)
cmpl $0x1, 0x4108(%rsp)
jne 0x126cb6f
movq 0x490(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126cb40
movq 0x490(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126cb3e
jmp 0x126cb6d
movq 0x490(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4778(%rsp)
cmpq $0x0, 0x4778(%rsp)
je 0x126cb6b
movq 0x4778(%rsp), %rdi
callq 0x5f480
jmp 0x126cb6d
jmp 0x126cb6f
movq 0x490(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126cbca
movq %rax, %rdi
callq 0x678a0
movq 0x488(%rsp), %rax
movq %rax, 0x1350(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1358(%rsp), %eax
leaq 0x12b8(%rsp), %rdx
movq %rdx, 0x2108(%rsp)
movq %rcx, 0x2100(%rsp)
movl %eax, 0x20fc(%rsp)
movq 0x2100(%rsp), %rax
movq %rax, 0x480(%rsp)
movb $0x0, 0x20fb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x20fc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x12b8(%rsp), %r10
movq %r10, 0x3808(%rsp)
movl %r9d, 0x3804(%rsp)
movl %r8d, 0x3800(%rsp)
movl %edi, 0x37fc(%rsp)
movq %rsi, 0x37f0(%rsp)
movq %rdx, 0x37e8(%rsp)
movl %ecx, 0x37e4(%rsp)
movq %rax, 0x37d8(%rsp)
movq 0x3808(%rsp), %rcx
movq %rcx, 0x478(%rsp)
movq 0x37f0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x37e8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x37e4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x37d8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3804(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3800(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x37fc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b30(%rsp)
movl $0x10, 0x3b2c(%rsp)
movq 0x3b30(%rsp), %rax
movslq 0x3b2c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b2c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x480(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x12e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x126cd96
movq 0x480(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x12f8(%rsp)
movb $0x1, 0x20fb(%rsp)
testb $0x1, 0x20fb(%rsp)
jne 0x126ced1
leaq 0x12b8(%rsp), %rax
movq %rax, 0x2500(%rsp)
movq 0x2500(%rsp), %rax
movq %rax, 0x43f0(%rsp)
movq 0x43f0(%rsp), %rax
movq %rax, 0x470(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126ce74
movq 0x470(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x43ec(%rsp) # imm = 0xFFFFFFFF
movl 0x43ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x43e8(%rsp)
cmpl $0x1, 0x43e8(%rsp)
jne 0x126ce74
movq 0x470(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126ce45
movq 0x470(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126ce43
jmp 0x126ce72
movq 0x470(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4608(%rsp)
cmpq $0x0, 0x4608(%rsp)
je 0x126ce70
movq 0x4608(%rsp), %rdi
callq 0x5f480
jmp 0x126ce72
jmp 0x126ce74
movq 0x470(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126cecf
movq %rax, %rdi
callq 0x678a0
jmp 0x126ced1
leaq 0x12b8(%rsp), %rax
movq %rax, 0x2388(%rsp)
movq 0x2388(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x460(%rsp)
leaq 0x12b8(%rsp), %rax
movq %rax, 0x2678(%rsp)
movq 0x2678(%rsp), %rax
movq %rax, 0x4100(%rsp)
movq 0x4100(%rsp), %rax
movq %rax, 0x468(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126cfbc
movq 0x468(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40fc(%rsp) # imm = 0xFFFFFFFF
movl 0x40fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40f8(%rsp)
cmpl $0x1, 0x40f8(%rsp)
jne 0x126cfbc
movq 0x468(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126cf8d
movq 0x468(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126cf8b
jmp 0x126cfba
movq 0x468(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4780(%rsp)
cmpq $0x0, 0x4780(%rsp)
je 0x126cfb8
movq 0x4780(%rsp), %rdi
callq 0x5f480
jmp 0x126cfba
jmp 0x126cfbc
movq 0x468(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126d017
movq %rax, %rdi
callq 0x678a0
movq 0x460(%rsp), %rax
movq %rax, 0x1300(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1358(%rsp), %eax
leaq 0x1268(%rsp), %rdx
movq %rdx, 0x2880(%rsp)
movq %rcx, 0x2878(%rsp)
movl %eax, 0x2874(%rsp)
movq 0x2878(%rsp), %rax
movq %rax, 0x458(%rsp)
movb $0x0, 0x2873(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2874(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1268(%rsp), %r10
movq %r10, 0x30d0(%rsp)
movl %r9d, 0x30cc(%rsp)
movl %r8d, 0x30c8(%rsp)
movl %edi, 0x30c4(%rsp)
movq %rsi, 0x30b8(%rsp)
movq %rdx, 0x30b0(%rsp)
movl %ecx, 0x30ac(%rsp)
movq %rax, 0x30a0(%rsp)
movq 0x30d0(%rsp), %rcx
movq %rcx, 0x450(%rsp)
movq 0x30b8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x30b0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x30ac(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x30a0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x30cc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x30c8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x30c4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d40(%rsp)
movl $0x10, 0x3d3c(%rsp)
movq 0x3d40(%rsp), %rax
movslq 0x3d3c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d3c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x458(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1290(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x126d1e3
movq 0x458(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x12a8(%rsp)
movb $0x1, 0x2873(%rsp)
testb $0x1, 0x2873(%rsp)
jne 0x126d31e
leaq 0x1268(%rsp), %rax
movq %rax, 0x2888(%rsp)
movq 0x2888(%rsp), %rax
movq %rax, 0x3ef0(%rsp)
movq 0x3ef0(%rsp), %rax
movq %rax, 0x448(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126d2c1
movq 0x448(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3eec(%rsp) # imm = 0xFFFFFFFF
movl 0x3eec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ee8(%rsp)
cmpl $0x1, 0x3ee8(%rsp)
jne 0x126d2c1
movq 0x448(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126d292
movq 0x448(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126d290
jmp 0x126d2bf
movq 0x448(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4888(%rsp)
cmpq $0x0, 0x4888(%rsp)
je 0x126d2bd
movq 0x4888(%rsp), %rdi
callq 0x5f480
jmp 0x126d2bf
jmp 0x126d2c1
movq 0x448(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126d31c
movq %rax, %rdi
callq 0x678a0
jmp 0x126d31e
leaq 0x1268(%rsp), %rax
movq %rax, 0x2a90(%rsp)
movq 0x2a90(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x438(%rsp)
leaq 0x1268(%rsp), %rax
movq %rax, 0x2680(%rsp)
movq 0x2680(%rsp), %rax
movq %rax, 0x40f0(%rsp)
movq 0x40f0(%rsp), %rax
movq %rax, 0x440(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126d409
movq 0x440(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40ec(%rsp) # imm = 0xFFFFFFFF
movl 0x40ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40e8(%rsp)
cmpl $0x1, 0x40e8(%rsp)
jne 0x126d409
movq 0x440(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126d3da
movq 0x440(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126d3d8
jmp 0x126d407
movq 0x440(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4788(%rsp)
cmpq $0x0, 0x4788(%rsp)
je 0x126d405
movq 0x4788(%rsp), %rdi
callq 0x5f480
jmp 0x126d407
jmp 0x126d409
movq 0x440(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126d464
movq %rax, %rdi
callq 0x678a0
movq 0x438(%rsp), %rax
movq %rax, 0x12b0(%rsp)
movl $0x0, 0x1264(%rsp)
movl 0x1264(%rsp), %eax
cmpl 0x1ed8(%rsp), %eax
jge 0x126d569
movl $0x0, 0x1260(%rsp)
movl 0x1260(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x126d511
movq 0x1350(%rsp), %rsi
movslq 0x1260(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1300(%rsp), %rdx
movslq 0x1260(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x1278120
movq 0x12b0(%rsp), %rax
movslq 0x1260(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1260(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1260(%rsp)
jmp 0x126d49e
movl 0x1edc(%rsp), %ecx
movq 0x1300(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1300(%rsp)
movl 0x1edc(%rsp), %ecx
movq 0x12b0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x12b0(%rsp)
movl 0x1264(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1264(%rsp)
jmp 0x126d47f
jmp 0x126d56b
movl 0x1358(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1358(%rsp)
jmp 0x126c779
movl $0x0, 0x1f24(%rsp)
jmp 0x1274f25
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1eec(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f90(%rsp)
movq 0x1f90(%rsp), %rcx
movq %rcx, 0x428(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x437(%rsp)
je 0x126d628
movq 0x428(%rsp), %rax
movq %rax, 0x2d58(%rsp)
movq 0x2d58(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x437(%rsp)
movb 0x437(%rsp), %al
testb $0x1, %al
jne 0x126d635
jmp 0x126d645
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1274f25
movl $0x0, 0x125c(%rsp)
movl 0x125c(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x126e3e1
movq 0x1f18(%rsp), %rcx
movl 0x125c(%rsp), %eax
leaq 0x1208(%rsp), %rdx
movq %rdx, 0x20f0(%rsp)
movq %rcx, 0x20e8(%rsp)
movl %eax, 0x20e4(%rsp)
movq 0x20e8(%rsp), %rax
movq %rax, 0x420(%rsp)
movb $0x0, 0x20e3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x20e4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1208(%rsp), %r10
movq %r10, 0x3840(%rsp)
movl %r9d, 0x383c(%rsp)
movl %r8d, 0x3838(%rsp)
movl %edi, 0x3834(%rsp)
movq %rsi, 0x3828(%rsp)
movq %rdx, 0x3820(%rsp)
movl %ecx, 0x381c(%rsp)
movq %rax, 0x3810(%rsp)
movq 0x3840(%rsp), %rcx
movq %rcx, 0x418(%rsp)
movq 0x3828(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3820(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x381c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3810(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x383c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3838(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3834(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b20(%rsp)
movl $0x10, 0x3b1c(%rsp)
movq 0x3b20(%rsp), %rax
movslq 0x3b1c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b1c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x420(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1230(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x126d820
movq 0x420(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1248(%rsp)
movb $0x1, 0x20e3(%rsp)
testb $0x1, 0x20e3(%rsp)
jne 0x126d95b
leaq 0x1208(%rsp), %rax
movq %rax, 0x2508(%rsp)
movq 0x2508(%rsp), %rax
movq %rax, 0x43e0(%rsp)
movq 0x43e0(%rsp), %rax
movq %rax, 0x410(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126d8fe
movq 0x410(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x43dc(%rsp) # imm = 0xFFFFFFFF
movl 0x43dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x43d8(%rsp)
cmpl $0x1, 0x43d8(%rsp)
jne 0x126d8fe
movq 0x410(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126d8cf
movq 0x410(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126d8cd
jmp 0x126d8fc
movq 0x410(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4610(%rsp)
cmpq $0x0, 0x4610(%rsp)
je 0x126d8fa
movq 0x4610(%rsp), %rdi
callq 0x5f480
jmp 0x126d8fc
jmp 0x126d8fe
movq 0x410(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126d959
movq %rax, %rdi
callq 0x678a0
jmp 0x126d95b
leaq 0x1208(%rsp), %rax
movq %rax, 0x2380(%rsp)
movq 0x2380(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x400(%rsp)
leaq 0x1208(%rsp), %rax
movq %rax, 0x2688(%rsp)
movq 0x2688(%rsp), %rax
movq %rax, 0x40e0(%rsp)
movq 0x40e0(%rsp), %rax
movq %rax, 0x408(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126da46
movq 0x408(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40dc(%rsp) # imm = 0xFFFFFFFF
movl 0x40dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40d8(%rsp)
cmpl $0x1, 0x40d8(%rsp)
jne 0x126da46
movq 0x408(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126da17
movq 0x408(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126da15
jmp 0x126da44
movq 0x408(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4790(%rsp)
cmpq $0x0, 0x4790(%rsp)
je 0x126da42
movq 0x4790(%rsp), %rdi
callq 0x5f480
jmp 0x126da44
jmp 0x126da46
movq 0x408(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126daa1
movq %rax, %rdi
callq 0x678a0
movq 0x400(%rsp), %rax
movq %rax, 0x1250(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x125c(%rsp), %eax
leaq 0x11b8(%rsp), %rdx
movq %rdx, 0x20d8(%rsp)
movq %rcx, 0x20d0(%rsp)
movl %eax, 0x20cc(%rsp)
movq 0x20d0(%rsp), %rax
movq %rax, 0x3f8(%rsp)
movb $0x0, 0x20cb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x20cc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x11b8(%rsp), %r10
movq %r10, 0x3878(%rsp)
movl %r9d, 0x3874(%rsp)
movl %r8d, 0x3870(%rsp)
movl %edi, 0x386c(%rsp)
movq %rsi, 0x3860(%rsp)
movq %rdx, 0x3858(%rsp)
movl %ecx, 0x3854(%rsp)
movq %rax, 0x3848(%rsp)
movq 0x3878(%rsp), %rcx
movq %rcx, 0x3f0(%rsp)
movq 0x3860(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3858(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3854(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3848(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3874(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3870(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x386c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b10(%rsp)
movl $0x10, 0x3b0c(%rsp)
movq 0x3b10(%rsp), %rax
movslq 0x3b0c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b0c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3f8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x11e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x126dc6d
movq 0x3f8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x11f8(%rsp)
movb $0x1, 0x20cb(%rsp)
testb $0x1, 0x20cb(%rsp)
jne 0x126dda8
leaq 0x11b8(%rsp), %rax
movq %rax, 0x2510(%rsp)
movq 0x2510(%rsp), %rax
movq %rax, 0x43d0(%rsp)
movq 0x43d0(%rsp), %rax
movq %rax, 0x3e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126dd4b
movq 0x3e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x43cc(%rsp) # imm = 0xFFFFFFFF
movl 0x43cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x43c8(%rsp)
cmpl $0x1, 0x43c8(%rsp)
jne 0x126dd4b
movq 0x3e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126dd1c
movq 0x3e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126dd1a
jmp 0x126dd49
movq 0x3e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4618(%rsp)
cmpq $0x0, 0x4618(%rsp)
je 0x126dd47
movq 0x4618(%rsp), %rdi
callq 0x5f480
jmp 0x126dd49
jmp 0x126dd4b
movq 0x3e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126dda6
movq %rax, %rdi
callq 0x678a0
jmp 0x126dda8
leaq 0x11b8(%rsp), %rax
movq %rax, 0x2378(%rsp)
movq 0x2378(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d8(%rsp)
leaq 0x11b8(%rsp), %rax
movq %rax, 0x2690(%rsp)
movq 0x2690(%rsp), %rax
movq %rax, 0x40d0(%rsp)
movq 0x40d0(%rsp), %rax
movq %rax, 0x3e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126de93
movq 0x3e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40cc(%rsp) # imm = 0xFFFFFFFF
movl 0x40cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40c8(%rsp)
cmpl $0x1, 0x40c8(%rsp)
jne 0x126de93
movq 0x3e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126de64
movq 0x3e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126de62
jmp 0x126de91
movq 0x3e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4798(%rsp)
cmpq $0x0, 0x4798(%rsp)
je 0x126de8f
movq 0x4798(%rsp), %rdi
callq 0x5f480
jmp 0x126de91
jmp 0x126de93
movq 0x3e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126deee
movq %rax, %rdi
callq 0x678a0
movq 0x3d8(%rsp), %rax
movq %rax, 0x1200(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x125c(%rsp), %eax
leaq 0x1168(%rsp), %rdx
movq %rdx, 0x2860(%rsp)
movq %rcx, 0x2858(%rsp)
movl %eax, 0x2854(%rsp)
movq 0x2858(%rsp), %rax
movq %rax, 0x3d0(%rsp)
movb $0x0, 0x2853(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2854(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1168(%rsp), %r10
movq %r10, 0x3108(%rsp)
movl %r9d, 0x3104(%rsp)
movl %r8d, 0x3100(%rsp)
movl %edi, 0x30fc(%rsp)
movq %rsi, 0x30f0(%rsp)
movq %rdx, 0x30e8(%rsp)
movl %ecx, 0x30e4(%rsp)
movq %rax, 0x30d8(%rsp)
movq 0x3108(%rsp), %rcx
movq %rcx, 0x3c8(%rsp)
movq 0x30f0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x30e8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x30e4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x30d8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3104(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3100(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x30fc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d30(%rsp)
movl $0x10, 0x3d2c(%rsp)
movq 0x3d30(%rsp), %rax
movslq 0x3d2c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d2c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3d0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1190(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x126e0ba
movq 0x3d0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x11a8(%rsp)
movb $0x1, 0x2853(%rsp)
testb $0x1, 0x2853(%rsp)
jne 0x126e1f5
leaq 0x1168(%rsp), %rax
movq %rax, 0x2868(%rsp)
movq 0x2868(%rsp), %rax
movq %rax, 0x3f00(%rsp)
movq 0x3f00(%rsp), %rax
movq %rax, 0x3c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126e198
movq 0x3c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3efc(%rsp) # imm = 0xFFFFFFFF
movl 0x3efc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ef8(%rsp)
cmpl $0x1, 0x3ef8(%rsp)
jne 0x126e198
movq 0x3c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126e169
movq 0x3c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126e167
jmp 0x126e196
movq 0x3c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4880(%rsp)
cmpq $0x0, 0x4880(%rsp)
je 0x126e194
movq 0x4880(%rsp), %rdi
callq 0x5f480
jmp 0x126e196
jmp 0x126e198
movq 0x3c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126e1f3
movq %rax, %rdi
callq 0x678a0
jmp 0x126e1f5
leaq 0x1168(%rsp), %rax
movq %rax, 0x2a88(%rsp)
movq 0x2a88(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3b0(%rsp)
leaq 0x1168(%rsp), %rax
movq %rax, 0x2698(%rsp)
movq 0x2698(%rsp), %rax
movq %rax, 0x40c0(%rsp)
movq 0x40c0(%rsp), %rax
movq %rax, 0x3b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126e2e0
movq 0x3b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40bc(%rsp) # imm = 0xFFFFFFFF
movl 0x40bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40b8(%rsp)
cmpl $0x1, 0x40b8(%rsp)
jne 0x126e2e0
movq 0x3b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126e2b1
movq 0x3b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126e2af
jmp 0x126e2de
movq 0x3b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47a0(%rsp)
cmpq $0x0, 0x47a0(%rsp)
je 0x126e2dc
movq 0x47a0(%rsp), %rdi
callq 0x5f480
jmp 0x126e2de
jmp 0x126e2e0
movq 0x3b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126e33b
movq %rax, %rdi
callq 0x678a0
movq 0x3b0(%rsp), %rax
movq %rax, 0x11b0(%rsp)
movl $0x0, 0x1164(%rsp)
movl 0x1164(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x126e3c9
movq 0x1250(%rsp), %rsi
movslq 0x1164(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1200(%rsp), %rdx
movslq 0x1164(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x1278120
movq 0x11b0(%rsp), %rax
movslq 0x1164(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x1164(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1164(%rsp)
jmp 0x126e356
jmp 0x126e3cb
movl 0x125c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x125c(%rsp)
jmp 0x126d650
movl $0x0, 0x1f24(%rsp)
jmp 0x1274f25
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movl 0x1eec(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f88(%rsp)
movq 0x1f88(%rsp), %rcx
movq %rcx, 0x3a0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x3af(%rsp)
je 0x126e488
movq 0x3a0(%rsp), %rax
movq %rax, 0x2d60(%rsp)
movq 0x2d60(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x3af(%rsp)
movb 0x3af(%rsp), %al
testb $0x1, %al
jne 0x126e495
jmp 0x126e4a5
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1274f25
movq 0x1f10(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x126eee5
movl $0x0, 0x1160(%rsp)
movl 0x1160(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x126eed5
movq 0x1f18(%rsp), %rcx
movl 0x1160(%rsp), %eax
leaq 0x1110(%rsp), %rdx
movq %rdx, 0x20c0(%rsp)
movq %rcx, 0x20b8(%rsp)
movl %eax, 0x20b4(%rsp)
movq 0x20b8(%rsp), %rax
movq %rax, 0x398(%rsp)
movb $0x0, 0x20b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x20b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1110(%rsp), %r10
movq %r10, 0x38b0(%rsp)
movl %r9d, 0x38ac(%rsp)
movl %r8d, 0x38a8(%rsp)
movl %edi, 0x38a4(%rsp)
movq %rsi, 0x3898(%rsp)
movq %rdx, 0x3890(%rsp)
movl %ecx, 0x388c(%rsp)
movq %rax, 0x3880(%rsp)
movq 0x38b0(%rsp), %rcx
movq %rcx, 0x390(%rsp)
movq 0x3898(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3890(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x388c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3880(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x38ac(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x38a8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x38a4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b00(%rsp)
movl $0x10, 0x3afc(%rsp)
movq 0x3b00(%rsp), %rax
movslq 0x3afc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3afc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x398(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1138(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x126e692
movq 0x398(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1150(%rsp)
movb $0x1, 0x20b3(%rsp)
testb $0x1, 0x20b3(%rsp)
jne 0x126e7cd
leaq 0x1110(%rsp), %rax
movq %rax, 0x2518(%rsp)
movq 0x2518(%rsp), %rax
movq %rax, 0x43c0(%rsp)
movq 0x43c0(%rsp), %rax
movq %rax, 0x388(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126e770
movq 0x388(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x43bc(%rsp) # imm = 0xFFFFFFFF
movl 0x43bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x43b8(%rsp)
cmpl $0x1, 0x43b8(%rsp)
jne 0x126e770
movq 0x388(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126e741
movq 0x388(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126e73f
jmp 0x126e76e
movq 0x388(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4620(%rsp)
cmpq $0x0, 0x4620(%rsp)
je 0x126e76c
movq 0x4620(%rsp), %rdi
callq 0x5f480
jmp 0x126e76e
jmp 0x126e770
movq 0x388(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126e7cb
movq %rax, %rdi
callq 0x678a0
jmp 0x126e7cd
leaq 0x1110(%rsp), %rax
movq %rax, 0x2370(%rsp)
movq 0x2370(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x378(%rsp)
leaq 0x1110(%rsp), %rax
movq %rax, 0x26a0(%rsp)
movq 0x26a0(%rsp), %rax
movq %rax, 0x40b0(%rsp)
movq 0x40b0(%rsp), %rax
movq %rax, 0x380(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126e8b8
movq 0x380(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40ac(%rsp) # imm = 0xFFFFFFFF
movl 0x40ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40a8(%rsp)
cmpl $0x1, 0x40a8(%rsp)
jne 0x126e8b8
movq 0x380(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126e889
movq 0x380(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126e887
jmp 0x126e8b6
movq 0x380(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47a8(%rsp)
cmpq $0x0, 0x47a8(%rsp)
je 0x126e8b4
movq 0x47a8(%rsp), %rdi
callq 0x5f480
jmp 0x126e8b6
jmp 0x126e8b8
movq 0x380(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126e913
movq %rax, %rdi
callq 0x678a0
movq 0x378(%rsp), %rax
movq %rax, 0x1158(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0x1160(%rsp), %eax
movq %rcx, 0x2b28(%rsp)
movl %eax, 0x2b24(%rsp)
movq 0x2b28(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2b24(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x1108(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x1160(%rsp), %eax
leaq 0x10b8(%rsp), %rdx
movq %rdx, 0x2840(%rsp)
movq %rcx, 0x2838(%rsp)
movl %eax, 0x2834(%rsp)
movq 0x2838(%rsp), %rax
movq %rax, 0x370(%rsp)
movb $0x0, 0x2833(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2834(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x10b8(%rsp), %r10
movq %r10, 0x3140(%rsp)
movl %r9d, 0x313c(%rsp)
movl %r8d, 0x3138(%rsp)
movl %edi, 0x3134(%rsp)
movq %rsi, 0x3128(%rsp)
movq %rdx, 0x3120(%rsp)
movl %ecx, 0x311c(%rsp)
movq %rax, 0x3110(%rsp)
movq 0x3140(%rsp), %rcx
movq %rcx, 0x368(%rsp)
movq 0x3128(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3120(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x311c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3110(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x313c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3138(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3134(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d20(%rsp)
movl $0x10, 0x3d1c(%rsp)
movq 0x3d20(%rsp), %rax
movslq 0x3d1c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d1c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x370(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x10e0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x126eb28
movq 0x370(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x10f8(%rsp)
movb $0x1, 0x2833(%rsp)
testb $0x1, 0x2833(%rsp)
jne 0x126ec63
leaq 0x10b8(%rsp), %rax
movq %rax, 0x2848(%rsp)
movq 0x2848(%rsp), %rax
movq %rax, 0x3f10(%rsp)
movq 0x3f10(%rsp), %rax
movq %rax, 0x360(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126ec06
movq 0x360(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f0c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f0c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f08(%rsp)
cmpl $0x1, 0x3f08(%rsp)
jne 0x126ec06
movq 0x360(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126ebd7
movq 0x360(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126ebd5
jmp 0x126ec04
movq 0x360(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4878(%rsp)
cmpq $0x0, 0x4878(%rsp)
je 0x126ec02
movq 0x4878(%rsp), %rdi
callq 0x5f480
jmp 0x126ec04
jmp 0x126ec06
movq 0x360(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126ec61
movq %rax, %rdi
callq 0x678a0
jmp 0x126ec63
leaq 0x10b8(%rsp), %rax
movq %rax, 0x2a80(%rsp)
movq 0x2a80(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x350(%rsp)
leaq 0x10b8(%rsp), %rax
movq %rax, 0x26a8(%rsp)
movq 0x26a8(%rsp), %rax
movq %rax, 0x40a0(%rsp)
movq 0x40a0(%rsp), %rax
movq %rax, 0x358(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126ed4e
movq 0x358(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x409c(%rsp) # imm = 0xFFFFFFFF
movl 0x409c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4098(%rsp)
cmpl $0x1, 0x4098(%rsp)
jne 0x126ed4e
movq 0x358(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126ed1f
movq 0x358(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126ed1d
jmp 0x126ed4c
movq 0x358(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47b0(%rsp)
cmpq $0x0, 0x47b0(%rsp)
je 0x126ed4a
movq 0x47b0(%rsp), %rdi
callq 0x5f480
jmp 0x126ed4c
jmp 0x126ed4e
movq 0x358(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126eda9
movq %rax, %rdi
callq 0x678a0
movq 0x350(%rsp), %rax
movq %rax, 0x1100(%rsp)
movl $0x0, 0x10b4(%rsp)
movl 0x10b4(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jge 0x126eebd
movq 0x1108(%rsp), %rax
movslq 0x10b4(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x10b0(%rsp)
movl $0x0, 0x10ac(%rsp)
movl 0x10ac(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x126ee65
movq 0x1158(%rsp), %rsi
movslq 0x10ac(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0x10b0(%rsp), %rdx
callq 0x1278120
movq 0x1100(%rsp), %rax
movslq 0x10ac(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x10ac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x10ac(%rsp)
jmp 0x126ee01
movl 0x1ef8(%rsp), %ecx
movq 0x1158(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1158(%rsp)
movl 0x1ef8(%rsp), %ecx
movq 0x1100(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x1100(%rsp)
movl 0x10b4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x10b4(%rsp)
jmp 0x126edc4
jmp 0x126eebf
movl 0x1160(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1160(%rsp)
jmp 0x126e4c2
movl $0x0, 0x1f24(%rsp)
jmp 0x1274f25
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1270227
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x126f896
movq 0x1f10(%rsp), %rax
movq %rax, 0x2c78(%rsp)
movq $0x0, 0x2c70(%rsp)
movq 0x2c78(%rsp), %rax
movq (%rax), %rax
movq 0x2c70(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x10a8(%rsp)
movl $0x0, 0x10a4(%rsp)
movl 0x10a4(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x126f886
movq 0x1f18(%rsp), %rcx
movl 0x10a4(%rsp), %eax
leaq 0x1050(%rsp), %rdx
movq %rdx, 0x20a8(%rsp)
movq %rcx, 0x20a0(%rsp)
movl %eax, 0x209c(%rsp)
movq 0x20a0(%rsp), %rax
movq %rax, 0x348(%rsp)
movb $0x0, 0x209b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x209c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1050(%rsp), %r10
movq %r10, 0x38e8(%rsp)
movl %r9d, 0x38e4(%rsp)
movl %r8d, 0x38e0(%rsp)
movl %edi, 0x38dc(%rsp)
movq %rsi, 0x38d0(%rsp)
movq %rdx, 0x38c8(%rsp)
movl %ecx, 0x38c4(%rsp)
movq %rax, 0x38b8(%rsp)
movq 0x38e8(%rsp), %rcx
movq %rcx, 0x340(%rsp)
movq 0x38d0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x38c8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x38c4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x38b8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x38e4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x38e0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x38dc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3af0(%rsp)
movl $0x10, 0x3aec(%rsp)
movq 0x3af0(%rsp), %rax
movslq 0x3aec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3aec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x348(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1078(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x126f121
movq 0x348(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1090(%rsp)
movb $0x1, 0x209b(%rsp)
testb $0x1, 0x209b(%rsp)
jne 0x126f25c
leaq 0x1050(%rsp), %rax
movq %rax, 0x2520(%rsp)
movq 0x2520(%rsp), %rax
movq %rax, 0x43b0(%rsp)
movq 0x43b0(%rsp), %rax
movq %rax, 0x338(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126f1ff
movq 0x338(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x43ac(%rsp) # imm = 0xFFFFFFFF
movl 0x43ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x43a8(%rsp)
cmpl $0x1, 0x43a8(%rsp)
jne 0x126f1ff
movq 0x338(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126f1d0
movq 0x338(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126f1ce
jmp 0x126f1fd
movq 0x338(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4628(%rsp)
cmpq $0x0, 0x4628(%rsp)
je 0x126f1fb
movq 0x4628(%rsp), %rdi
callq 0x5f480
jmp 0x126f1fd
jmp 0x126f1ff
movq 0x338(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126f25a
movq %rax, %rdi
callq 0x678a0
jmp 0x126f25c
leaq 0x1050(%rsp), %rax
movq %rax, 0x2368(%rsp)
movq 0x2368(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x328(%rsp)
leaq 0x1050(%rsp), %rax
movq %rax, 0x26b0(%rsp)
movq 0x26b0(%rsp), %rax
movq %rax, 0x4090(%rsp)
movq 0x4090(%rsp), %rax
movq %rax, 0x330(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126f347
movq 0x330(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x408c(%rsp) # imm = 0xFFFFFFFF
movl 0x408c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4088(%rsp)
cmpl $0x1, 0x4088(%rsp)
jne 0x126f347
movq 0x330(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126f318
movq 0x330(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126f316
jmp 0x126f345
movq 0x330(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47b8(%rsp)
cmpq $0x0, 0x47b8(%rsp)
je 0x126f343
movq 0x47b8(%rsp), %rdi
callq 0x5f480
jmp 0x126f345
jmp 0x126f347
movq 0x330(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126f3a2
movq %rax, %rdi
callq 0x678a0
movq 0x328(%rsp), %rax
movq %rax, 0x1098(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0x10a4(%rsp), %eax
leaq 0x1000(%rsp), %rdx
movq %rdx, 0x2820(%rsp)
movq %rcx, 0x2818(%rsp)
movl %eax, 0x2814(%rsp)
movq 0x2818(%rsp), %rax
movq %rax, 0x320(%rsp)
movb $0x0, 0x2813(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2814(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1000(%rsp), %r10
movq %r10, 0x3178(%rsp)
movl %r9d, 0x3174(%rsp)
movl %r8d, 0x3170(%rsp)
movl %edi, 0x316c(%rsp)
movq %rsi, 0x3160(%rsp)
movq %rdx, 0x3158(%rsp)
movl %ecx, 0x3154(%rsp)
movq %rax, 0x3148(%rsp)
movq 0x3178(%rsp), %rcx
movq %rcx, 0x318(%rsp)
movq 0x3160(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3158(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3154(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3148(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3174(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3170(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x316c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d10(%rsp)
movl $0x10, 0x3d0c(%rsp)
movq 0x3d10(%rsp), %rax
movslq 0x3d0c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d0c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x320(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1028(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x126f56e
movq 0x320(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1040(%rsp)
movb $0x1, 0x2813(%rsp)
testb $0x1, 0x2813(%rsp)
jne 0x126f6a9
leaq 0x1000(%rsp), %rax
movq %rax, 0x2828(%rsp)
movq 0x2828(%rsp), %rax
movq %rax, 0x3f20(%rsp)
movq 0x3f20(%rsp), %rax
movq %rax, 0x310(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126f64c
movq 0x310(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f1c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f1c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f18(%rsp)
cmpl $0x1, 0x3f18(%rsp)
jne 0x126f64c
movq 0x310(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126f61d
movq 0x310(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126f61b
jmp 0x126f64a
movq 0x310(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4870(%rsp)
cmpq $0x0, 0x4870(%rsp)
je 0x126f648
movq 0x4870(%rsp), %rdi
callq 0x5f480
jmp 0x126f64a
jmp 0x126f64c
movq 0x310(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126f6a7
movq %rax, %rdi
callq 0x678a0
jmp 0x126f6a9
leaq 0x1000(%rsp), %rax
movq %rax, 0x2a78(%rsp)
movq 0x2a78(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x300(%rsp)
leaq 0x1000(%rsp), %rax
movq %rax, 0x26b8(%rsp)
movq 0x26b8(%rsp), %rax
movq %rax, 0x4080(%rsp)
movq 0x4080(%rsp), %rax
movq %rax, 0x308(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126f794
movq 0x308(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x407c(%rsp) # imm = 0xFFFFFFFF
movl 0x407c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4078(%rsp)
cmpl $0x1, 0x4078(%rsp)
jne 0x126f794
movq 0x308(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126f765
movq 0x308(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126f763
jmp 0x126f792
movq 0x308(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47c0(%rsp)
cmpq $0x0, 0x47c0(%rsp)
je 0x126f790
movq 0x47c0(%rsp), %rdi
callq 0x5f480
jmp 0x126f792
jmp 0x126f794
movq 0x308(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126f7ef
movq %rax, %rdi
callq 0x678a0
movq 0x300(%rsp), %rax
movq %rax, 0x1048(%rsp)
movl $0x0, 0xffc(%rsp)
movl 0xffc(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x126f86e
movq 0x1098(%rsp), %rsi
movslq 0xffc(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0x10a8(%rsp), %rdx
callq 0x1278120
movq 0x1048(%rsp), %rax
movslq 0xffc(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xffc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xffc(%rsp)
jmp 0x126f80a
jmp 0x126f870
movl 0x10a4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x10a4(%rsp)
jmp 0x126ef51
movl $0x0, 0x1f24(%rsp)
jmp 0x1274f25
movl $0x0, 0xff8(%rsp)
movl 0xff8(%rsp), %eax
cmpl 0x1eec(%rsp), %eax
jge 0x1270217
movq 0x1f18(%rsp), %rcx
movl 0xff8(%rsp), %eax
leaq 0xfa8(%rsp), %rdx
movq %rdx, 0x2090(%rsp)
movq %rcx, 0x2088(%rsp)
movl %eax, 0x2084(%rsp)
movq 0x2088(%rsp), %rax
movq %rax, 0x2f8(%rsp)
movb $0x0, 0x2083(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2084(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xfa8(%rsp), %r10
movq %r10, 0x3920(%rsp)
movl %r9d, 0x391c(%rsp)
movl %r8d, 0x3918(%rsp)
movl %edi, 0x3914(%rsp)
movq %rsi, 0x3908(%rsp)
movq %rdx, 0x3900(%rsp)
movl %ecx, 0x38fc(%rsp)
movq %rax, 0x38f0(%rsp)
movq 0x3920(%rsp), %rcx
movq %rcx, 0x2f0(%rsp)
movq 0x3908(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3900(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x38fc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x38f0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x391c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3918(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3914(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ae0(%rsp)
movl $0x10, 0x3adc(%rsp)
movq 0x3ae0(%rsp), %rax
movslq 0x3adc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3adc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2f8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xfd0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x126fa71
movq 0x2f8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xfe8(%rsp)
movb $0x1, 0x2083(%rsp)
testb $0x1, 0x2083(%rsp)
jne 0x126fbac
leaq 0xfa8(%rsp), %rax
movq %rax, 0x2528(%rsp)
movq 0x2528(%rsp), %rax
movq %rax, 0x43a0(%rsp)
movq 0x43a0(%rsp), %rax
movq %rax, 0x2e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126fb4f
movq 0x2e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x439c(%rsp) # imm = 0xFFFFFFFF
movl 0x439c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4398(%rsp)
cmpl $0x1, 0x4398(%rsp)
jne 0x126fb4f
movq 0x2e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126fb20
movq 0x2e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126fb1e
jmp 0x126fb4d
movq 0x2e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4630(%rsp)
cmpq $0x0, 0x4630(%rsp)
je 0x126fb4b
movq 0x4630(%rsp), %rdi
callq 0x5f480
jmp 0x126fb4d
jmp 0x126fb4f
movq 0x2e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126fbaa
movq %rax, %rdi
callq 0x678a0
jmp 0x126fbac
leaq 0xfa8(%rsp), %rax
movq %rax, 0x2360(%rsp)
movq 0x2360(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2d8(%rsp)
leaq 0xfa8(%rsp), %rax
movq %rax, 0x26c0(%rsp)
movq 0x26c0(%rsp), %rax
movq %rax, 0x4070(%rsp)
movq 0x4070(%rsp), %rax
movq %rax, 0x2e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126fc97
movq 0x2e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x406c(%rsp) # imm = 0xFFFFFFFF
movl 0x406c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4068(%rsp)
cmpl $0x1, 0x4068(%rsp)
jne 0x126fc97
movq 0x2e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126fc68
movq 0x2e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126fc66
jmp 0x126fc95
movq 0x2e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47c8(%rsp)
cmpq $0x0, 0x47c8(%rsp)
je 0x126fc93
movq 0x47c8(%rsp), %rdi
callq 0x5f480
jmp 0x126fc95
jmp 0x126fc97
movq 0x2e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x126fcf2
movq %rax, %rdi
callq 0x678a0
movq 0x2d8(%rsp), %rax
movq %rax, 0xff0(%rsp)
movq 0x1f10(%rsp), %rcx
movslq 0xff8(%rsp), %rax
movq %rcx, 0x2c68(%rsp)
movq %rax, 0x2c60(%rsp)
movq 0x2c68(%rsp), %rax
movq (%rax), %rax
movq 0x2c60(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xfa4(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0xff8(%rsp), %eax
leaq 0xf50(%rsp), %rdx
movq %rdx, 0x2800(%rsp)
movq %rcx, 0x27f8(%rsp)
movl %eax, 0x27f4(%rsp)
movq 0x27f8(%rsp), %rax
movq %rax, 0x2d0(%rsp)
movb $0x0, 0x27f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x27f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xf50(%rsp), %r10
movq %r10, 0x31b0(%rsp)
movl %r9d, 0x31ac(%rsp)
movl %r8d, 0x31a8(%rsp)
movl %edi, 0x31a4(%rsp)
movq %rsi, 0x3198(%rsp)
movq %rdx, 0x3190(%rsp)
movl %ecx, 0x318c(%rsp)
movq %rax, 0x3180(%rsp)
movq 0x31b0(%rsp), %rcx
movq %rcx, 0x2c8(%rsp)
movq 0x3198(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3190(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x318c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3180(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x31ac(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x31a8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x31a4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d00(%rsp)
movl $0x10, 0x3cfc(%rsp)
movq 0x3d00(%rsp), %rax
movslq 0x3cfc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cfc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2d0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf78(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x126feff
movq 0x2d0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xf90(%rsp)
movb $0x1, 0x27f3(%rsp)
testb $0x1, 0x27f3(%rsp)
jne 0x127003a
leaq 0xf50(%rsp), %rax
movq %rax, 0x2808(%rsp)
movq 0x2808(%rsp), %rax
movq %rax, 0x3f30(%rsp)
movq 0x3f30(%rsp), %rax
movq %rax, 0x2c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x126ffdd
movq 0x2c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f2c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f2c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f28(%rsp)
cmpl $0x1, 0x3f28(%rsp)
jne 0x126ffdd
movq 0x2c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x126ffae
movq 0x2c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x126ffac
jmp 0x126ffdb
movq 0x2c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4868(%rsp)
cmpq $0x0, 0x4868(%rsp)
je 0x126ffd9
movq 0x4868(%rsp), %rdi
callq 0x5f480
jmp 0x126ffdb
jmp 0x126ffdd
movq 0x2c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1270038
movq %rax, %rdi
callq 0x678a0
jmp 0x127003a
leaq 0xf50(%rsp), %rax
movq %rax, 0x2a70(%rsp)
movq 0x2a70(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2b0(%rsp)
leaq 0xf50(%rsp), %rax
movq %rax, 0x26c8(%rsp)
movq 0x26c8(%rsp), %rax
movq %rax, 0x4060(%rsp)
movq 0x4060(%rsp), %rax
movq %rax, 0x2b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1270125
movq 0x2b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x405c(%rsp) # imm = 0xFFFFFFFF
movl 0x405c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4058(%rsp)
cmpl $0x1, 0x4058(%rsp)
jne 0x1270125
movq 0x2b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12700f6
movq 0x2b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12700f4
jmp 0x1270123
movq 0x2b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47d0(%rsp)
cmpq $0x0, 0x47d0(%rsp)
je 0x1270121
movq 0x47d0(%rsp), %rdi
callq 0x5f480
jmp 0x1270123
jmp 0x1270125
movq 0x2b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1270180
movq %rax, %rdi
callq 0x678a0
movq 0x2b0(%rsp), %rax
movq %rax, 0xf98(%rsp)
movl $0x0, 0xf4c(%rsp)
movl 0xf4c(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x12701ff
movq 0xff0(%rsp), %rsi
movslq 0xf4c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0xfa4(%rsp), %rdx
callq 0x1278120
movq 0xf98(%rsp), %rax
movslq 0xf4c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xf4c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xf4c(%rsp)
jmp 0x127019b
jmp 0x1270201
movl 0xff8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xff8(%rsp)
jmp 0x126f8a1
movl $0x0, 0x1f24(%rsp)
jmp 0x1274f25
jmp 0x1274f18
movq 0x1f18(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1271d82
movq 0x1f10(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1270d75
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed4(%rsp), %ecx
movl 0x1ed0(%rsp), %r8d
movq 0x1ee0(%rsp), %r9
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6fb30
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f80(%rsp)
movq 0x1f80(%rsp), %rcx
movq %rcx, 0x2a0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x2af(%rsp)
je 0x12702f3
movq 0x2a0(%rsp), %rax
movq %rax, 0x2d68(%rsp)
movq 0x2d68(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x2af(%rsp)
movb 0x2af(%rsp), %al
testb $0x1, %al
jne 0x1270300
jmp 0x1270310
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1274f25
movl $0x0, 0xf48(%rsp)
movl 0xf48(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x1270d65
movq 0x1f18(%rsp), %rcx
movl 0xf48(%rsp), %eax
movq %rcx, 0x2b18(%rsp)
movl %eax, 0x2b14(%rsp)
movq 0x2b18(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2b14(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xf40(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0xf48(%rsp), %eax
leaq 0xef0(%rsp), %rdx
movq %rdx, 0x2078(%rsp)
movq %rcx, 0x2070(%rsp)
movl %eax, 0x206c(%rsp)
movq 0x2070(%rsp), %rax
movq %rax, 0x298(%rsp)
movb $0x0, 0x206b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x206c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xef0(%rsp), %r10
movq %r10, 0x3958(%rsp)
movl %r9d, 0x3954(%rsp)
movl %r8d, 0x3950(%rsp)
movl %edi, 0x394c(%rsp)
movq %rsi, 0x3940(%rsp)
movq %rdx, 0x3938(%rsp)
movl %ecx, 0x3934(%rsp)
movq %rax, 0x3928(%rsp)
movq 0x3958(%rsp), %rcx
movq %rcx, 0x290(%rsp)
movq 0x3940(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3938(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3934(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3928(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3954(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3950(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x394c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ad0(%rsp)
movl $0x10, 0x3acc(%rsp)
movq 0x3ad0(%rsp), %rax
movslq 0x3acc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3acc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x298(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf18(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1270534
movq 0x298(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xf30(%rsp)
movb $0x1, 0x206b(%rsp)
testb $0x1, 0x206b(%rsp)
jne 0x127066f
leaq 0xef0(%rsp), %rax
movq %rax, 0x2530(%rsp)
movq 0x2530(%rsp), %rax
movq %rax, 0x4390(%rsp)
movq 0x4390(%rsp), %rax
movq %rax, 0x288(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1270612
movq 0x288(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x438c(%rsp) # imm = 0xFFFFFFFF
movl 0x438c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4388(%rsp)
cmpl $0x1, 0x4388(%rsp)
jne 0x1270612
movq 0x288(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12705e3
movq 0x288(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12705e1
jmp 0x1270610
movq 0x288(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4638(%rsp)
cmpq $0x0, 0x4638(%rsp)
je 0x127060e
movq 0x4638(%rsp), %rdi
callq 0x5f480
jmp 0x1270610
jmp 0x1270612
movq 0x288(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127066d
movq %rax, %rdi
callq 0x678a0
jmp 0x127066f
leaq 0xef0(%rsp), %rax
movq %rax, 0x2358(%rsp)
movq 0x2358(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x278(%rsp)
leaq 0xef0(%rsp), %rax
movq %rax, 0x26d0(%rsp)
movq 0x26d0(%rsp), %rax
movq %rax, 0x4050(%rsp)
movq 0x4050(%rsp), %rax
movq %rax, 0x280(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x127075a
movq 0x280(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x404c(%rsp) # imm = 0xFFFFFFFF
movl 0x404c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4048(%rsp)
cmpl $0x1, 0x4048(%rsp)
jne 0x127075a
movq 0x280(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x127072b
movq 0x280(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1270729
jmp 0x1270758
movq 0x280(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47d8(%rsp)
cmpq $0x0, 0x47d8(%rsp)
je 0x1270756
movq 0x47d8(%rsp), %rdi
callq 0x5f480
jmp 0x1270758
jmp 0x127075a
movq 0x280(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12707b5
movq %rax, %rdi
callq 0x678a0
movq 0x278(%rsp), %rax
movq %rax, 0xf38(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0xf48(%rsp), %eax
leaq 0xea0(%rsp), %rdx
movq %rdx, 0x27e0(%rsp)
movq %rcx, 0x27d8(%rsp)
movl %eax, 0x27d4(%rsp)
movq 0x27d8(%rsp), %rax
movq %rax, 0x270(%rsp)
movb $0x0, 0x27d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x27d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xea0(%rsp), %r10
movq %r10, 0x31e8(%rsp)
movl %r9d, 0x31e4(%rsp)
movl %r8d, 0x31e0(%rsp)
movl %edi, 0x31dc(%rsp)
movq %rsi, 0x31d0(%rsp)
movq %rdx, 0x31c8(%rsp)
movl %ecx, 0x31c4(%rsp)
movq %rax, 0x31b8(%rsp)
movq 0x31e8(%rsp), %rcx
movq %rcx, 0x268(%rsp)
movq 0x31d0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x31c8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x31c4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x31b8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x31e4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x31e0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x31dc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3cf0(%rsp)
movl $0x10, 0x3cec(%rsp)
movq 0x3cf0(%rsp), %rax
movslq 0x3cec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x270(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xec8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1270981
movq 0x270(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xee0(%rsp)
movb $0x1, 0x27d3(%rsp)
testb $0x1, 0x27d3(%rsp)
jne 0x1270abc
leaq 0xea0(%rsp), %rax
movq %rax, 0x27e8(%rsp)
movq 0x27e8(%rsp), %rax
movq %rax, 0x3f40(%rsp)
movq 0x3f40(%rsp), %rax
movq %rax, 0x260(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1270a5f
movq 0x260(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f3c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f3c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f38(%rsp)
cmpl $0x1, 0x3f38(%rsp)
jne 0x1270a5f
movq 0x260(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1270a30
movq 0x260(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1270a2e
jmp 0x1270a5d
movq 0x260(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4860(%rsp)
cmpq $0x0, 0x4860(%rsp)
je 0x1270a5b
movq 0x4860(%rsp), %rdi
callq 0x5f480
jmp 0x1270a5d
jmp 0x1270a5f
movq 0x260(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1270aba
movq %rax, %rdi
callq 0x678a0
jmp 0x1270abc
leaq 0xea0(%rsp), %rax
movq %rax, 0x2a68(%rsp)
movq 0x2a68(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x250(%rsp)
leaq 0xea0(%rsp), %rax
movq %rax, 0x26d8(%rsp)
movq 0x26d8(%rsp), %rax
movq %rax, 0x4040(%rsp)
movq 0x4040(%rsp), %rax
movq %rax, 0x258(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1270ba7
movq 0x258(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x403c(%rsp) # imm = 0xFFFFFFFF
movl 0x403c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4038(%rsp)
cmpl $0x1, 0x4038(%rsp)
jne 0x1270ba7
movq 0x258(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1270b78
movq 0x258(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1270b76
jmp 0x1270ba5
movq 0x258(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47e0(%rsp)
cmpq $0x0, 0x47e0(%rsp)
je 0x1270ba3
movq 0x47e0(%rsp), %rdi
callq 0x5f480
jmp 0x1270ba5
jmp 0x1270ba7
movq 0x258(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1270c02
movq %rax, %rdi
callq 0x678a0
movq 0x250(%rsp), %rax
movq %rax, 0xee8(%rsp)
movl $0x0, 0xe9c(%rsp)
movl 0xe9c(%rsp), %eax
cmpl 0x1ed4(%rsp), %eax
jge 0x1270d4d
movq 0xf40(%rsp), %rax
movslq 0xe9c(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xe98(%rsp)
movl $0x0, 0xe94(%rsp)
movl 0xe94(%rsp), %eax
cmpl 0x1ed8(%rsp), %eax
jge 0x1270d35
movl $0x0, 0xe90(%rsp)
movl 0xe90(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x1270cdd
movq 0xf38(%rsp), %rdx
movslq 0xe90(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xe98(%rsp), %rsi
callq 0x1278120
movq 0xee8(%rsp), %rax
movslq 0xe90(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xe90(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xe90(%rsp)
jmp 0x1270c79
movl 0x1edc(%rsp), %ecx
movq 0xf38(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xf38(%rsp)
movl 0x1edc(%rsp), %ecx
movq 0xee8(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xee8(%rsp)
movl 0xe94(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xe94(%rsp)
jmp 0x1270c5a
jmp 0x1270d37
movl 0xe9c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xe9c(%rsp)
jmp 0x1270c1d
jmp 0x1270d4f
movl 0xf48(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xf48(%rsp)
jmp 0x127031b
movl $0x0, 0x1f24(%rsp)
jmp 0x1274f25
movq 0x1f10(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1271869
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed0(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f78(%rsp)
movq 0x1f78(%rsp), %rcx
movq %rcx, 0x240(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x24f(%rsp)
je 0x1270e1e
movq 0x240(%rsp), %rax
movq %rax, 0x2d70(%rsp)
movq 0x2d70(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x24f(%rsp)
movb 0x24f(%rsp), %al
testb $0x1, %al
jne 0x1270e2b
jmp 0x1270e3b
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1274f25
movl $0x0, 0xe8c(%rsp)
movl 0xe8c(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x1271859
movq 0x1f18(%rsp), %rcx
movl 0xe8c(%rsp), %eax
movq %rcx, 0x2b08(%rsp)
movl %eax, 0x2b04(%rsp)
movq 0x2b08(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2b04(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xe80(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0xe8c(%rsp), %eax
leaq 0xe30(%rsp), %rdx
movq %rdx, 0x2060(%rsp)
movq %rcx, 0x2058(%rsp)
movl %eax, 0x2054(%rsp)
movq 0x2058(%rsp), %rax
movq %rax, 0x238(%rsp)
movb $0x0, 0x2053(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2054(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xe30(%rsp), %r10
movq %r10, 0x3990(%rsp)
movl %r9d, 0x398c(%rsp)
movl %r8d, 0x3988(%rsp)
movl %edi, 0x3984(%rsp)
movq %rsi, 0x3978(%rsp)
movq %rdx, 0x3970(%rsp)
movl %ecx, 0x396c(%rsp)
movq %rax, 0x3960(%rsp)
movq 0x3990(%rsp), %rcx
movq %rcx, 0x230(%rsp)
movq 0x3978(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3970(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x396c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3960(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x398c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3988(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3984(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ac0(%rsp)
movl $0x10, 0x3abc(%rsp)
movq 0x3ac0(%rsp), %rax
movslq 0x3abc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3abc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x238(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xe58(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x127105f
movq 0x238(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xe70(%rsp)
movb $0x1, 0x2053(%rsp)
testb $0x1, 0x2053(%rsp)
jne 0x127119a
leaq 0xe30(%rsp), %rax
movq %rax, 0x2538(%rsp)
movq 0x2538(%rsp), %rax
movq %rax, 0x4380(%rsp)
movq 0x4380(%rsp), %rax
movq %rax, 0x228(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x127113d
movq 0x228(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x437c(%rsp) # imm = 0xFFFFFFFF
movl 0x437c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4378(%rsp)
cmpl $0x1, 0x4378(%rsp)
jne 0x127113d
movq 0x228(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x127110e
movq 0x228(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x127110c
jmp 0x127113b
movq 0x228(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4640(%rsp)
cmpq $0x0, 0x4640(%rsp)
je 0x1271139
movq 0x4640(%rsp), %rdi
callq 0x5f480
jmp 0x127113b
jmp 0x127113d
movq 0x228(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1271198
movq %rax, %rdi
callq 0x678a0
jmp 0x127119a
leaq 0xe30(%rsp), %rax
movq %rax, 0x2350(%rsp)
movq 0x2350(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x218(%rsp)
leaq 0xe30(%rsp), %rax
movq %rax, 0x26e0(%rsp)
movq 0x26e0(%rsp), %rax
movq %rax, 0x4030(%rsp)
movq 0x4030(%rsp), %rax
movq %rax, 0x220(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1271285
movq 0x220(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x402c(%rsp) # imm = 0xFFFFFFFF
movl 0x402c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4028(%rsp)
cmpl $0x1, 0x4028(%rsp)
jne 0x1271285
movq 0x220(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1271256
movq 0x220(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1271254
jmp 0x1271283
movq 0x220(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47e8(%rsp)
cmpq $0x0, 0x47e8(%rsp)
je 0x1271281
movq 0x47e8(%rsp), %rdi
callq 0x5f480
jmp 0x1271283
jmp 0x1271285
movq 0x220(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12712e0
movq %rax, %rdi
callq 0x678a0
movq 0x218(%rsp), %rax
movq %rax, 0xe78(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0xe8c(%rsp), %eax
leaq 0xde0(%rsp), %rdx
movq %rdx, 0x27c0(%rsp)
movq %rcx, 0x27b8(%rsp)
movl %eax, 0x27b4(%rsp)
movq 0x27b8(%rsp), %rax
movq %rax, 0x210(%rsp)
movb $0x0, 0x27b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x27b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xde0(%rsp), %r10
movq %r10, 0x3220(%rsp)
movl %r9d, 0x321c(%rsp)
movl %r8d, 0x3218(%rsp)
movl %edi, 0x3214(%rsp)
movq %rsi, 0x3208(%rsp)
movq %rdx, 0x3200(%rsp)
movl %ecx, 0x31fc(%rsp)
movq %rax, 0x31f0(%rsp)
movq 0x3220(%rsp), %rcx
movq %rcx, 0x208(%rsp)
movq 0x3208(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3200(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x31fc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x31f0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x321c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3218(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3214(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ce0(%rsp)
movl $0x10, 0x3cdc(%rsp)
movq 0x3ce0(%rsp), %rax
movslq 0x3cdc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cdc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x210(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xe08(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12714ac
movq 0x210(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xe20(%rsp)
movb $0x1, 0x27b3(%rsp)
testb $0x1, 0x27b3(%rsp)
jne 0x12715e7
leaq 0xde0(%rsp), %rax
movq %rax, 0x27c8(%rsp)
movq 0x27c8(%rsp), %rax
movq %rax, 0x3f50(%rsp)
movq 0x3f50(%rsp), %rax
movq %rax, 0x200(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x127158a
movq 0x200(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f4c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f4c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f48(%rsp)
cmpl $0x1, 0x3f48(%rsp)
jne 0x127158a
movq 0x200(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x127155b
movq 0x200(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1271559
jmp 0x1271588
movq 0x200(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4858(%rsp)
cmpq $0x0, 0x4858(%rsp)
je 0x1271586
movq 0x4858(%rsp), %rdi
callq 0x5f480
jmp 0x1271588
jmp 0x127158a
movq 0x200(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12715e5
movq %rax, %rdi
callq 0x678a0
jmp 0x12715e7
leaq 0xde0(%rsp), %rax
movq %rax, 0x2a60(%rsp)
movq 0x2a60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1f0(%rsp)
leaq 0xde0(%rsp), %rax
movq %rax, 0x26e8(%rsp)
movq 0x26e8(%rsp), %rax
movq %rax, 0x4020(%rsp)
movq 0x4020(%rsp), %rax
movq %rax, 0x1f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12716d2
movq 0x1f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x401c(%rsp) # imm = 0xFFFFFFFF
movl 0x401c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4018(%rsp)
cmpl $0x1, 0x4018(%rsp)
jne 0x12716d2
movq 0x1f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12716a3
movq 0x1f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12716a1
jmp 0x12716d0
movq 0x1f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47f0(%rsp)
cmpq $0x0, 0x47f0(%rsp)
je 0x12716ce
movq 0x47f0(%rsp), %rdi
callq 0x5f480
jmp 0x12716d0
jmp 0x12716d2
movq 0x1f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127172d
movq %rax, %rdi
callq 0x678a0
movq 0x1f0(%rsp), %rax
movq %rax, 0xe28(%rsp)
movl $0x0, 0xddc(%rsp)
movl 0xddc(%rsp), %eax
cmpl 0x1ed8(%rsp), %eax
jge 0x1271841
movq 0xe80(%rsp), %rax
movslq 0xddc(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xdd8(%rsp)
movl $0x0, 0xdd4(%rsp)
movl 0xdd4(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x12717e9
movq 0xe78(%rsp), %rdx
movslq 0xdd4(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xdd8(%rsp), %rsi
callq 0x1278120
movq 0xe28(%rsp), %rax
movslq 0xdd4(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xdd4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdd4(%rsp)
jmp 0x1271785
movl 0x1edc(%rsp), %ecx
movq 0xe78(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xe78(%rsp)
movl 0x1edc(%rsp), %ecx
movq 0xe28(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xe28(%rsp)
movl 0xddc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xddc(%rsp)
jmp 0x1271748
jmp 0x1271843
movl 0xe8c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xe8c(%rsp)
jmp 0x1270e46
movl $0x0, 0x1f24(%rsp)
jmp 0x1274f25
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movq 0x1ee0(%rsp), %rcx
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6f5a0
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f70(%rsp)
movq 0x1f70(%rsp), %rcx
movq %rcx, 0x1e0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1ef(%rsp)
je 0x12718f9
movq 0x1e0(%rsp), %rax
movq %rax, 0x2d78(%rsp)
movq 0x2d78(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1ef(%rsp)
movb 0x1ef(%rsp), %al
testb $0x1, %al
jne 0x1271906
jmp 0x1271916
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1274f25
movq 0x1f10(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1271a26
movl $0x0, 0xdd0(%rsp)
movl 0xdd0(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x1271a16
movq 0x1f18(%rsp), %rcx
movslq 0xdd0(%rsp), %rax
movq %rcx, 0x2c58(%rsp)
movq %rax, 0x2c50(%rsp)
movq 0x2c58(%rsp), %rax
movq (%rax), %rsi
movq 0x2c50(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1f10(%rsp), %rcx
movslq 0xdd0(%rsp), %rax
movq %rcx, 0x2c48(%rsp)
movq %rax, 0x2c40(%rsp)
movq 0x2c48(%rsp), %rax
movq (%rax), %rdx
movq 0x2c40(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x1278120
movq 0x1f08(%rsp), %rcx
movslq 0xdd0(%rsp), %rax
movq %rcx, 0x2cf8(%rsp)
movq %rax, 0x2cf0(%rsp)
movq 0x2cf8(%rsp), %rax
movq (%rax), %rax
movq 0x2cf0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xdd0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdd0(%rsp)
jmp 0x1271933
movl $0x0, 0x1f24(%rsp)
jmp 0x1274f25
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1271d7d
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movl 0x1ef4(%rsp), %edx
movq 0x1ee0(%rsp), %rcx
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6f5a0
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f68(%rsp)
movq 0x1f68(%rsp), %rcx
movq %rcx, 0x1d0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1df(%rsp)
je 0x1271ac8
movq 0x1d0(%rsp), %rax
movq %rax, 0x2d80(%rsp)
movq 0x2d80(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1df(%rsp)
movb 0x1df(%rsp), %al
testb $0x1, %al
jne 0x1271ad5
jmp 0x1271ae5
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1274f25
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1271c00
movq 0x1f10(%rsp), %rax
movq %rax, 0x2c38(%rsp)
movq $0x0, 0x2c30(%rsp)
movq 0x2c38(%rsp), %rax
movq (%rax), %rax
movq 0x2c30(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xdcc(%rsp)
movl $0x0, 0xdc8(%rsp)
movl 0xdc8(%rsp), %eax
cmpl 0x1ee8(%rsp), %eax
jge 0x1271bf0
movq 0x1f18(%rsp), %rcx
movslq 0xdc8(%rsp), %rax
movq %rcx, 0x2c28(%rsp)
movq %rax, 0x2c20(%rsp)
movq 0x2c28(%rsp), %rax
movq (%rax), %rsi
movq 0x2c20(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0xdcc(%rsp), %rdx
callq 0x1278120
movq 0x1f08(%rsp), %rcx
movslq 0xdc8(%rsp), %rax
movq %rcx, 0x2ce8(%rsp)
movq %rax, 0x2ce0(%rsp)
movq 0x2ce8(%rsp), %rax
movq (%rax), %rax
movq 0x2ce0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xdc8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdc8(%rsp)
jmp 0x1271b3f
movl $0x0, 0x1f24(%rsp)
jmp 0x1274f25
movq 0x1f18(%rsp), %rax
movq %rax, 0x2348(%rsp)
movq 0x2348(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xdc0(%rsp)
movq 0x1f08(%rsp), %rax
movq %rax, 0x2a58(%rsp)
movq 0x2a58(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xdb8(%rsp)
movl $0x0, 0xdb4(%rsp)
movl 0xdb4(%rsp), %eax
cmpl 0x1ef4(%rsp), %eax
jge 0x1271d6d
movq 0x1f10(%rsp), %rcx
movslq 0xdb4(%rsp), %rax
movq %rcx, 0x2c18(%rsp)
movq %rax, 0x2c10(%rsp)
movq 0x2c18(%rsp), %rax
movq (%rax), %rax
movq 0x2c10(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xdb0(%rsp)
movl $0x0, 0xdac(%rsp)
movl 0xdac(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x1271d15
movq 0xdc0(%rsp), %rsi
movslq 0xdac(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0xdb0(%rsp), %rdx
callq 0x1278120
movq 0xdb8(%rsp), %rax
movslq 0xdac(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xdac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdac(%rsp)
jmp 0x1271cb1
movl 0x1ef8(%rsp), %ecx
movq 0xdc0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xdc0(%rsp)
movl 0x1ef8(%rsp), %ecx
movq 0xdb8(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xdb8(%rsp)
movl 0xdb4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdb4(%rsp)
jmp 0x1271c51
movl $0x0, 0x1f24(%rsp)
jmp 0x1274f25
jmp 0x1274f16
movq 0x1f18(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1274f14
movq 0x1f18(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x12735e3
movq 0x1f10(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1272805
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed4(%rsp), %ecx
movl 0x1ed0(%rsp), %r8d
movq 0x1ee0(%rsp), %r9
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6fb30
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f60(%rsp)
movq 0x1f60(%rsp), %rcx
movq %rcx, 0x1c0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1cf(%rsp)
je 0x1271e5b
movq 0x1c0(%rsp), %rax
movq %rax, 0x2d88(%rsp)
movq 0x2d88(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1cf(%rsp)
movb 0x1cf(%rsp), %al
testb $0x1, %al
jne 0x1271e68
jmp 0x1271e78
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1274f25
movq 0x1f18(%rsp), %rax
movq %rax, 0x2c08(%rsp)
movq $0x0, 0x2c00(%rsp)
movq 0x2c08(%rsp), %rax
movq (%rax), %rax
movq 0x2c00(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xda8(%rsp)
movl $0x0, 0xda4(%rsp)
movl 0xda4(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x12727f5
movq 0x1f10(%rsp), %rcx
movl 0xda4(%rsp), %eax
leaq 0xd50(%rsp), %rdx
movq %rdx, 0x2048(%rsp)
movq %rcx, 0x2040(%rsp)
movl %eax, 0x203c(%rsp)
movq 0x2040(%rsp), %rax
movq %rax, 0x1b8(%rsp)
movb $0x0, 0x203b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x203c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xd50(%rsp), %r10
movq %r10, 0x39c8(%rsp)
movl %r9d, 0x39c4(%rsp)
movl %r8d, 0x39c0(%rsp)
movl %edi, 0x39bc(%rsp)
movq %rsi, 0x39b0(%rsp)
movq %rdx, 0x39a8(%rsp)
movl %ecx, 0x39a4(%rsp)
movq %rax, 0x3998(%rsp)
movq 0x39c8(%rsp), %rcx
movq %rcx, 0x1b0(%rsp)
movq 0x39b0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x39a8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x39a4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3998(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x39c4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x39c0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x39bc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ab0(%rsp)
movl $0x10, 0x3aac(%rsp)
movq 0x3ab0(%rsp), %rax
movslq 0x3aac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3aac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x1b8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xd78(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1272090
movq 0x1b8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd90(%rsp)
movb $0x1, 0x203b(%rsp)
testb $0x1, 0x203b(%rsp)
jne 0x12721cb
leaq 0xd50(%rsp), %rax
movq %rax, 0x2540(%rsp)
movq 0x2540(%rsp), %rax
movq %rax, 0x4370(%rsp)
movq 0x4370(%rsp), %rax
movq %rax, 0x1a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x127216e
movq 0x1a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x436c(%rsp) # imm = 0xFFFFFFFF
movl 0x436c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4368(%rsp)
cmpl $0x1, 0x4368(%rsp)
jne 0x127216e
movq 0x1a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x127213f
movq 0x1a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x127213d
jmp 0x127216c
movq 0x1a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4648(%rsp)
cmpq $0x0, 0x4648(%rsp)
je 0x127216a
movq 0x4648(%rsp), %rdi
callq 0x5f480
jmp 0x127216c
jmp 0x127216e
movq 0x1a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12721c9
movq %rax, %rdi
callq 0x678a0
jmp 0x12721cb
leaq 0xd50(%rsp), %rax
movq %rax, 0x2340(%rsp)
movq 0x2340(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x198(%rsp)
leaq 0xd50(%rsp), %rax
movq %rax, 0x26f0(%rsp)
movq 0x26f0(%rsp), %rax
movq %rax, 0x4010(%rsp)
movq 0x4010(%rsp), %rax
movq %rax, 0x1a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12722b6
movq 0x1a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x400c(%rsp) # imm = 0xFFFFFFFF
movl 0x400c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4008(%rsp)
cmpl $0x1, 0x4008(%rsp)
jne 0x12722b6
movq 0x1a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1272287
movq 0x1a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1272285
jmp 0x12722b4
movq 0x1a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x47f8(%rsp)
cmpq $0x0, 0x47f8(%rsp)
je 0x12722b2
movq 0x47f8(%rsp), %rdi
callq 0x5f480
jmp 0x12722b4
jmp 0x12722b6
movq 0x1a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1272311
movq %rax, %rdi
callq 0x678a0
movq 0x198(%rsp), %rax
movq %rax, 0xd98(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0xda4(%rsp), %eax
leaq 0xd00(%rsp), %rdx
movq %rdx, 0x27a0(%rsp)
movq %rcx, 0x2798(%rsp)
movl %eax, 0x2794(%rsp)
movq 0x2798(%rsp), %rax
movq %rax, 0x190(%rsp)
movb $0x0, 0x2793(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2794(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xd00(%rsp), %r10
movq %r10, 0x3258(%rsp)
movl %r9d, 0x3254(%rsp)
movl %r8d, 0x3250(%rsp)
movl %edi, 0x324c(%rsp)
movq %rsi, 0x3240(%rsp)
movq %rdx, 0x3238(%rsp)
movl %ecx, 0x3234(%rsp)
movq %rax, 0x3228(%rsp)
movq 0x3258(%rsp), %rcx
movq %rcx, 0x188(%rsp)
movq 0x3240(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3238(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3234(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3228(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3254(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3250(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x324c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3cd0(%rsp)
movl $0x10, 0x3ccc(%rsp)
movq 0x3cd0(%rsp), %rax
movslq 0x3ccc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3ccc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x190(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xd28(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12724dd
movq 0x190(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd40(%rsp)
movb $0x1, 0x2793(%rsp)
testb $0x1, 0x2793(%rsp)
jne 0x1272618
leaq 0xd00(%rsp), %rax
movq %rax, 0x27a8(%rsp)
movq 0x27a8(%rsp), %rax
movq %rax, 0x3f60(%rsp)
movq 0x3f60(%rsp), %rax
movq %rax, 0x180(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12725bb
movq 0x180(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f5c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f5c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f58(%rsp)
cmpl $0x1, 0x3f58(%rsp)
jne 0x12725bb
movq 0x180(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x127258c
movq 0x180(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x127258a
jmp 0x12725b9
movq 0x180(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4850(%rsp)
cmpq $0x0, 0x4850(%rsp)
je 0x12725b7
movq 0x4850(%rsp), %rdi
callq 0x5f480
jmp 0x12725b9
jmp 0x12725bb
movq 0x180(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1272616
movq %rax, %rdi
callq 0x678a0
jmp 0x1272618
leaq 0xd00(%rsp), %rax
movq %rax, 0x2a50(%rsp)
movq 0x2a50(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x170(%rsp)
leaq 0xd00(%rsp), %rax
movq %rax, 0x26f8(%rsp)
movq 0x26f8(%rsp), %rax
movq %rax, 0x4000(%rsp)
movq 0x4000(%rsp), %rax
movq %rax, 0x178(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1272703
movq 0x178(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ffc(%rsp) # imm = 0xFFFFFFFF
movl 0x3ffc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ff8(%rsp)
cmpl $0x1, 0x3ff8(%rsp)
jne 0x1272703
movq 0x178(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12726d4
movq 0x178(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12726d2
jmp 0x1272701
movq 0x178(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4800(%rsp)
cmpq $0x0, 0x4800(%rsp)
je 0x12726ff
movq 0x4800(%rsp), %rdi
callq 0x5f480
jmp 0x1272701
jmp 0x1272703
movq 0x178(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127275e
movq %rax, %rdi
callq 0x678a0
movq 0x170(%rsp), %rax
movq %rax, 0xd48(%rsp)
movl $0x0, 0xcfc(%rsp)
movl 0xcfc(%rsp), %eax
cmpl 0x1ecc(%rsp), %eax
jge 0x12727dd
movq 0xd98(%rsp), %rdx
movslq 0xcfc(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xda8(%rsp), %rsi
callq 0x1278120
movq 0xd48(%rsp), %rax
movslq 0xcfc(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xcfc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xcfc(%rsp)
jmp 0x1272779
jmp 0x12727df
movl 0xda4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xda4(%rsp)
jmp 0x1271ec0
movl $0x0, 0x1f24(%rsp)
jmp 0x1274f25
movq 0x1f10(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1273258
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed0(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f58(%rsp)
movq 0x1f58(%rsp), %rcx
movq %rcx, 0x160(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x16f(%rsp)
je 0x12728ae
movq 0x160(%rsp), %rax
movq %rax, 0x2d90(%rsp)
movq 0x2d90(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x16f(%rsp)
movb 0x16f(%rsp), %al
testb $0x1, %al
jne 0x12728bb
jmp 0x12728cb
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1274f25
movq 0x1f18(%rsp), %rax
movq %rax, 0x2bf8(%rsp)
movq $0x0, 0x2bf0(%rsp)
movq 0x2bf8(%rsp), %rax
movq (%rax), %rax
movq 0x2bf0(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xcf8(%rsp)
movl $0x0, 0xcf4(%rsp)
movl 0xcf4(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x1273248
movq 0x1f10(%rsp), %rcx
movl 0xcf4(%rsp), %eax
leaq 0xca0(%rsp), %rdx
movq %rdx, 0x2030(%rsp)
movq %rcx, 0x2028(%rsp)
movl %eax, 0x2024(%rsp)
movq 0x2028(%rsp), %rax
movq %rax, 0x158(%rsp)
movb $0x0, 0x2023(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2024(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xca0(%rsp), %r10
movq %r10, 0x3a00(%rsp)
movl %r9d, 0x39fc(%rsp)
movl %r8d, 0x39f8(%rsp)
movl %edi, 0x39f4(%rsp)
movq %rsi, 0x39e8(%rsp)
movq %rdx, 0x39e0(%rsp)
movl %ecx, 0x39dc(%rsp)
movq %rax, 0x39d0(%rsp)
movq 0x3a00(%rsp), %rcx
movq %rcx, 0x150(%rsp)
movq 0x39e8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x39e0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x39dc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x39d0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x39fc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x39f8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x39f4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3aa0(%rsp)
movl $0x10, 0x3a9c(%rsp)
movq 0x3aa0(%rsp), %rax
movslq 0x3a9c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3a9c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x158(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xcc8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1272ae3
movq 0x158(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xce0(%rsp)
movb $0x1, 0x2023(%rsp)
testb $0x1, 0x2023(%rsp)
jne 0x1272c1e
leaq 0xca0(%rsp), %rax
movq %rax, 0x2548(%rsp)
movq 0x2548(%rsp), %rax
movq %rax, 0x4360(%rsp)
movq 0x4360(%rsp), %rax
movq %rax, 0x148(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1272bc1
movq 0x148(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x435c(%rsp) # imm = 0xFFFFFFFF
movl 0x435c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4358(%rsp)
cmpl $0x1, 0x4358(%rsp)
jne 0x1272bc1
movq 0x148(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1272b92
movq 0x148(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1272b90
jmp 0x1272bbf
movq 0x148(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4650(%rsp)
cmpq $0x0, 0x4650(%rsp)
je 0x1272bbd
movq 0x4650(%rsp), %rdi
callq 0x5f480
jmp 0x1272bbf
jmp 0x1272bc1
movq 0x148(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1272c1c
movq %rax, %rdi
callq 0x678a0
jmp 0x1272c1e
leaq 0xca0(%rsp), %rax
movq %rax, 0x2338(%rsp)
movq 0x2338(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x138(%rsp)
leaq 0xca0(%rsp), %rax
movq %rax, 0x2700(%rsp)
movq 0x2700(%rsp), %rax
movq %rax, 0x3ff0(%rsp)
movq 0x3ff0(%rsp), %rax
movq %rax, 0x140(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1272d09
movq 0x140(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fec(%rsp) # imm = 0xFFFFFFFF
movl 0x3fec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fe8(%rsp)
cmpl $0x1, 0x3fe8(%rsp)
jne 0x1272d09
movq 0x140(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1272cda
movq 0x140(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1272cd8
jmp 0x1272d07
movq 0x140(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4808(%rsp)
cmpq $0x0, 0x4808(%rsp)
je 0x1272d05
movq 0x4808(%rsp), %rdi
callq 0x5f480
jmp 0x1272d07
jmp 0x1272d09
movq 0x140(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1272d64
movq %rax, %rdi
callq 0x678a0
movq 0x138(%rsp), %rax
movq %rax, 0xce8(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0xcf4(%rsp), %eax
leaq 0xc50(%rsp), %rdx
movq %rdx, 0x2780(%rsp)
movq %rcx, 0x2778(%rsp)
movl %eax, 0x2774(%rsp)
movq 0x2778(%rsp), %rax
movq %rax, 0x130(%rsp)
movb $0x0, 0x2773(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2774(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xc50(%rsp), %r10
movq %r10, 0x3290(%rsp)
movl %r9d, 0x328c(%rsp)
movl %r8d, 0x3288(%rsp)
movl %edi, 0x3284(%rsp)
movq %rsi, 0x3278(%rsp)
movq %rdx, 0x3270(%rsp)
movl %ecx, 0x326c(%rsp)
movq %rax, 0x3260(%rsp)
movq 0x3290(%rsp), %rcx
movq %rcx, 0x128(%rsp)
movq 0x3278(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3270(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x326c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3260(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x328c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3288(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3284(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3cc0(%rsp)
movl $0x10, 0x3cbc(%rsp)
movq 0x3cc0(%rsp), %rax
movslq 0x3cbc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cbc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x130(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc78(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1272f30
movq 0x130(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xc90(%rsp)
movb $0x1, 0x2773(%rsp)
testb $0x1, 0x2773(%rsp)
jne 0x127306b
leaq 0xc50(%rsp), %rax
movq %rax, 0x2788(%rsp)
movq 0x2788(%rsp), %rax
movq %rax, 0x3f70(%rsp)
movq 0x3f70(%rsp), %rax
movq %rax, 0x120(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x127300e
movq 0x120(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f6c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f6c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f68(%rsp)
cmpl $0x1, 0x3f68(%rsp)
jne 0x127300e
movq 0x120(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1272fdf
movq 0x120(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1272fdd
jmp 0x127300c
movq 0x120(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4848(%rsp)
cmpq $0x0, 0x4848(%rsp)
je 0x127300a
movq 0x4848(%rsp), %rdi
callq 0x5f480
jmp 0x127300c
jmp 0x127300e
movq 0x120(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1273069
movq %rax, %rdi
callq 0x678a0
jmp 0x127306b
leaq 0xc50(%rsp), %rax
movq %rax, 0x2a48(%rsp)
movq 0x2a48(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x110(%rsp)
leaq 0xc50(%rsp), %rax
movq %rax, 0x2708(%rsp)
movq 0x2708(%rsp), %rax
movq %rax, 0x3fe0(%rsp)
movq 0x3fe0(%rsp), %rax
movq %rax, 0x118(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1273156
movq 0x118(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fdc(%rsp) # imm = 0xFFFFFFFF
movl 0x3fdc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fd8(%rsp)
cmpl $0x1, 0x3fd8(%rsp)
jne 0x1273156
movq 0x118(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1273127
movq 0x118(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1273125
jmp 0x1273154
movq 0x118(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4810(%rsp)
cmpq $0x0, 0x4810(%rsp)
je 0x1273152
movq 0x4810(%rsp), %rdi
callq 0x5f480
jmp 0x1273154
jmp 0x1273156
movq 0x118(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12731b1
movq %rax, %rdi
callq 0x678a0
movq 0x110(%rsp), %rax
movq %rax, 0xc98(%rsp)
movl $0x0, 0xc4c(%rsp)
movl 0xc4c(%rsp), %eax
cmpl 0x1ecc(%rsp), %eax
jge 0x1273230
movq 0xce8(%rsp), %rdx
movslq 0xc4c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xcf8(%rsp), %rsi
callq 0x1278120
movq 0xc98(%rsp), %rax
movslq 0xc4c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xc4c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xc4c(%rsp)
jmp 0x12731cc
jmp 0x1273232
movl 0xcf4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xcf4(%rsp)
jmp 0x1272913
movl $0x0, 0x1f24(%rsp)
jmp 0x1274f25
movq 0x1f10(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1273420
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movq 0x1ee0(%rsp), %rcx
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6f5a0
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f50(%rsp)
movq 0x1f50(%rsp), %rcx
movq %rcx, 0x100(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x10f(%rsp)
je 0x12732fa
movq 0x100(%rsp), %rax
movq %rax, 0x2d98(%rsp)
movq 0x2d98(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x10f(%rsp)
movb 0x10f(%rsp), %al
testb $0x1, %al
jne 0x1273307
jmp 0x1273317
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1274f25
movq 0x1f18(%rsp), %rax
movq %rax, 0x2be8(%rsp)
movq $0x0, 0x2be0(%rsp)
movq 0x2be8(%rsp), %rax
movq (%rax), %rax
movq 0x2be0(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xc48(%rsp)
movl $0x0, 0xc44(%rsp)
movl 0xc44(%rsp), %eax
cmpl 0x1ecc(%rsp), %eax
jge 0x1273410
movq 0x1f10(%rsp), %rcx
movslq 0xc44(%rsp), %rax
movq %rcx, 0x2bd8(%rsp)
movq %rax, 0x2bd0(%rsp)
movq 0x2bd8(%rsp), %rax
movq (%rax), %rdx
movq 0x2bd0(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xc48(%rsp), %rsi
callq 0x1278120
movq 0x1f08(%rsp), %rcx
movslq 0xc44(%rsp), %rax
movq %rcx, 0x2cd8(%rsp)
movq %rax, 0x2cd0(%rsp)
movq 0x2cd8(%rsp), %rax
movq (%rax), %rax
movq 0x2cd0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xc44(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xc44(%rsp)
jmp 0x127335f
movl $0x0, 0x1f24(%rsp)
jmp 0x1274f25
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x12735e1
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movq 0x1ee0(%rsp), %rdx
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rcx
callq 0x6f320
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f48(%rsp)
movq 0x1f48(%rsp), %rcx
movq %rcx, 0xf0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xff(%rsp)
je 0x12734bb
movq 0xf0(%rsp), %rax
movq %rax, 0x2da0(%rsp)
movq 0x2da0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xff(%rsp)
movb 0xff(%rsp), %al
testb $0x1, %al
jne 0x12734c8
jmp 0x12734d8
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1274f25
movq 0x1f18(%rsp), %rax
movq %rax, 0x2bc8(%rsp)
movq $0x0, 0x2bc0(%rsp)
movq 0x2bc8(%rsp), %rax
movq (%rax), %rax
movq 0x2bc0(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xc40(%rsp)
movl $0x0, 0xc3c(%rsp)
movl 0xc3c(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x12735d1
movq 0x1f10(%rsp), %rcx
movslq 0xc3c(%rsp), %rax
movq %rcx, 0x2bb8(%rsp)
movq %rax, 0x2bb0(%rsp)
movq 0x2bb8(%rsp), %rax
movq (%rax), %rdx
movq 0x2bb0(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xc40(%rsp), %rsi
callq 0x1278120
movq 0x1f08(%rsp), %rcx
movslq 0xc3c(%rsp), %rax
movq %rcx, 0x2cc8(%rsp)
movq %rax, 0x2cc0(%rsp)
movq 0x2cc8(%rsp), %rax
movq (%rax), %rax
movq 0x2cc0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xc3c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xc3c(%rsp)
jmp 0x1273520
movl $0x0, 0x1f24(%rsp)
jmp 0x1274f25
jmp 0x12735e3
movq 0x1f10(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1274046
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed4(%rsp), %ecx
movl 0x1ed0(%rsp), %r8d
movq 0x1ee0(%rsp), %r9
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6fb30
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f40(%rsp)
movq 0x1f40(%rsp), %rcx
movq %rcx, 0xe0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xef(%rsp)
je 0x1273698
movq 0xe0(%rsp), %rax
movq %rax, 0x2da8(%rsp)
movq 0x2da8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xef(%rsp)
movb 0xef(%rsp), %al
testb $0x1, %al
jne 0x12736a5
jmp 0x12736b5
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1274f25
movl $0x0, 0xc38(%rsp)
movl 0xc38(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x1274036
movq 0x1f18(%rsp), %rcx
movslq 0xc38(%rsp), %rax
movq %rcx, 0x2ba8(%rsp)
movq %rax, 0x2ba0(%rsp)
movq 0x2ba8(%rsp), %rax
movq (%rax), %rax
movq 0x2ba0(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xc34(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0xc38(%rsp), %eax
leaq 0xbe0(%rsp), %rdx
movq %rdx, 0x2018(%rsp)
movq %rcx, 0x2010(%rsp)
movl %eax, 0x200c(%rsp)
movq 0x2010(%rsp), %rax
movq %rax, 0xd8(%rsp)
movb $0x0, 0x200b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x200c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xbe0(%rsp), %r10
movq %r10, 0x3a38(%rsp)
movl %r9d, 0x3a34(%rsp)
movl %r8d, 0x3a30(%rsp)
movl %edi, 0x3a2c(%rsp)
movq %rsi, 0x3a20(%rsp)
movq %rdx, 0x3a18(%rsp)
movl %ecx, 0x3a14(%rsp)
movq %rax, 0x3a08(%rsp)
movq 0x3a38(%rsp), %rcx
movq %rcx, 0xd0(%rsp)
movq 0x3a20(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3a18(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3a14(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3a08(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3a34(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3a30(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3a2c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3a90(%rsp)
movl $0x10, 0x3a8c(%rsp)
movq 0x3a90(%rsp), %rax
movslq 0x3a8c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3a8c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xd8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc08(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12738d1
movq 0xd8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xc20(%rsp)
movb $0x1, 0x200b(%rsp)
testb $0x1, 0x200b(%rsp)
jne 0x1273a0c
leaq 0xbe0(%rsp), %rax
movq %rax, 0x2550(%rsp)
movq 0x2550(%rsp), %rax
movq %rax, 0x4350(%rsp)
movq 0x4350(%rsp), %rax
movq %rax, 0xc8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12739af
movq 0xc8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x434c(%rsp) # imm = 0xFFFFFFFF
movl 0x434c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4348(%rsp)
cmpl $0x1, 0x4348(%rsp)
jne 0x12739af
movq 0xc8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1273980
movq 0xc8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x127397e
jmp 0x12739ad
movq 0xc8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4658(%rsp)
cmpq $0x0, 0x4658(%rsp)
je 0x12739ab
movq 0x4658(%rsp), %rdi
callq 0x5f480
jmp 0x12739ad
jmp 0x12739af
movq 0xc8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1273a0a
movq %rax, %rdi
callq 0x678a0
jmp 0x1273a0c
leaq 0xbe0(%rsp), %rax
movq %rax, 0x2330(%rsp)
movq 0x2330(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xb8(%rsp)
leaq 0xbe0(%rsp), %rax
movq %rax, 0x2710(%rsp)
movq 0x2710(%rsp), %rax
movq %rax, 0x3fd0(%rsp)
movq 0x3fd0(%rsp), %rax
movq %rax, 0xc0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1273af7
movq 0xc0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fcc(%rsp) # imm = 0xFFFFFFFF
movl 0x3fcc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fc8(%rsp)
cmpl $0x1, 0x3fc8(%rsp)
jne 0x1273af7
movq 0xc0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1273ac8
movq 0xc0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1273ac6
jmp 0x1273af5
movq 0xc0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4818(%rsp)
cmpq $0x0, 0x4818(%rsp)
je 0x1273af3
movq 0x4818(%rsp), %rdi
callq 0x5f480
jmp 0x1273af5
jmp 0x1273af7
movq 0xc0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1273b52
movq %rax, %rdi
callq 0x678a0
movq 0xb8(%rsp), %rax
movq %rax, 0xc28(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0xc38(%rsp), %eax
leaq 0xb90(%rsp), %rdx
movq %rdx, 0x2760(%rsp)
movq %rcx, 0x2758(%rsp)
movl %eax, 0x2754(%rsp)
movq 0x2758(%rsp), %rax
movq %rax, 0xb0(%rsp)
movb $0x0, 0x2753(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2754(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xb90(%rsp), %r10
movq %r10, 0x32c8(%rsp)
movl %r9d, 0x32c4(%rsp)
movl %r8d, 0x32c0(%rsp)
movl %edi, 0x32bc(%rsp)
movq %rsi, 0x32b0(%rsp)
movq %rdx, 0x32a8(%rsp)
movl %ecx, 0x32a4(%rsp)
movq %rax, 0x3298(%rsp)
movq 0x32c8(%rsp), %rcx
movq %rcx, 0xa8(%rsp)
movq 0x32b0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x32a8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x32a4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3298(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x32c4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x32c0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x32bc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3cb0(%rsp)
movl $0x10, 0x3cac(%rsp)
movq 0x3cb0(%rsp), %rax
movslq 0x3cac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xb0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xbb8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1273d1e
movq 0xb0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xbd0(%rsp)
movb $0x1, 0x2753(%rsp)
testb $0x1, 0x2753(%rsp)
jne 0x1273e59
leaq 0xb90(%rsp), %rax
movq %rax, 0x2768(%rsp)
movq 0x2768(%rsp), %rax
movq %rax, 0x3f80(%rsp)
movq 0x3f80(%rsp), %rax
movq %rax, 0xa0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1273dfc
movq 0xa0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f7c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f7c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f78(%rsp)
cmpl $0x1, 0x3f78(%rsp)
jne 0x1273dfc
movq 0xa0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1273dcd
movq 0xa0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1273dcb
jmp 0x1273dfa
movq 0xa0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4840(%rsp)
cmpq $0x0, 0x4840(%rsp)
je 0x1273df8
movq 0x4840(%rsp), %rdi
callq 0x5f480
jmp 0x1273dfa
jmp 0x1273dfc
movq 0xa0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1273e57
movq %rax, %rdi
callq 0x678a0
jmp 0x1273e59
leaq 0xb90(%rsp), %rax
movq %rax, 0x2a40(%rsp)
movq 0x2a40(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x90(%rsp)
leaq 0xb90(%rsp), %rax
movq %rax, 0x2718(%rsp)
movq 0x2718(%rsp), %rax
movq %rax, 0x3fc0(%rsp)
movq 0x3fc0(%rsp), %rax
movq %rax, 0x98(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1273f44
movq 0x98(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fbc(%rsp) # imm = 0xFFFFFFFF
movl 0x3fbc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fb8(%rsp)
cmpl $0x1, 0x3fb8(%rsp)
jne 0x1273f44
movq 0x98(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1273f15
movq 0x98(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1273f13
jmp 0x1273f42
movq 0x98(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4820(%rsp)
cmpq $0x0, 0x4820(%rsp)
je 0x1273f40
movq 0x4820(%rsp), %rdi
callq 0x5f480
jmp 0x1273f42
jmp 0x1273f44
movq 0x98(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1273f9f
movq %rax, %rdi
callq 0x678a0
movq 0x90(%rsp), %rax
movq %rax, 0xbd8(%rsp)
movl $0x0, 0xb8c(%rsp)
movl 0xb8c(%rsp), %eax
cmpl 0x1ecc(%rsp), %eax
jge 0x127401e
movq 0xc28(%rsp), %rdx
movslq 0xb8c(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xc34(%rsp), %rsi
callq 0x1278120
movq 0xbd8(%rsp), %rax
movslq 0xb8c(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xb8c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xb8c(%rsp)
jmp 0x1273fba
jmp 0x1274020
movl 0xc38(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xc38(%rsp)
jmp 0x12736c0
movl $0x0, 0x1f24(%rsp)
jmp 0x1274f25
movq 0x1f10(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1274a31
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movl 0x1ed0(%rsp), %ecx
movq 0x1ee0(%rsp), %r8
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6f830
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f38(%rsp)
movq 0x1f38(%rsp), %rcx
movq %rcx, 0x80(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x8f(%rsp)
je 0x12740ef
movq 0x80(%rsp), %rax
movq %rax, 0x2db0(%rsp)
movq 0x2db0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x8f(%rsp)
movb 0x8f(%rsp), %al
testb $0x1, %al
jne 0x12740fc
jmp 0x127410c
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1274f25
movl $0x0, 0xb88(%rsp)
movl 0xb88(%rsp), %eax
cmpl 0x1ed0(%rsp), %eax
jge 0x1274a21
movq 0x1f18(%rsp), %rcx
movslq 0xb88(%rsp), %rax
movq %rcx, 0x2b98(%rsp)
movq %rax, 0x2b90(%rsp)
movq 0x2b98(%rsp), %rax
movq (%rax), %rax
movq 0x2b90(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xb84(%rsp)
movq 0x1f10(%rsp), %rcx
movl 0xb88(%rsp), %eax
leaq 0xb30(%rsp), %rdx
movq %rdx, 0x2000(%rsp)
movq %rcx, 0x1ff8(%rsp)
movl %eax, 0x1ff4(%rsp)
movq 0x1ff8(%rsp), %rax
movq %rax, 0x78(%rsp)
movb $0x0, 0x1ff3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1ff4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xb30(%rsp), %r10
movq %r10, 0x3a70(%rsp)
movl %r9d, 0x3a6c(%rsp)
movl %r8d, 0x3a68(%rsp)
movl %edi, 0x3a64(%rsp)
movq %rsi, 0x3a58(%rsp)
movq %rdx, 0x3a50(%rsp)
movl %ecx, 0x3a4c(%rsp)
movq %rax, 0x3a40(%rsp)
movq 0x3a70(%rsp), %rcx
movq %rcx, 0x70(%rsp)
movq 0x3a58(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3a50(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3a4c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3a40(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3a6c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3a68(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3a64(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3a80(%rsp)
movl $0x10, 0x3a7c(%rsp)
movq 0x3a80(%rsp), %rax
movslq 0x3a7c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3a7c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x78(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xb58(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x127431c
movq 0x78(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xb70(%rsp)
movb $0x1, 0x1ff3(%rsp)
testb $0x1, 0x1ff3(%rsp)
jne 0x1274445
leaq 0xb30(%rsp), %rax
movq %rax, 0x2558(%rsp)
movq 0x2558(%rsp), %rax
movq %rax, 0x4340(%rsp)
movq 0x4340(%rsp), %rax
movq %rax, 0x68(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12743eb
movq 0x68(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x433c(%rsp) # imm = 0xFFFFFFFF
movl 0x433c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4338(%rsp)
cmpl $0x1, 0x4338(%rsp)
jne 0x12743eb
movq 0x68(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12743bf
movq 0x68(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12743bd
jmp 0x12743e9
movq 0x68(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4660(%rsp)
cmpq $0x0, 0x4660(%rsp)
je 0x12743e7
movq 0x4660(%rsp), %rdi
callq 0x5f480
jmp 0x12743e9
jmp 0x12743eb
movq 0x68(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1274443
movq %rax, %rdi
callq 0x678a0
jmp 0x1274445
leaq 0xb30(%rsp), %rax
movq %rax, 0x2328(%rsp)
movq 0x2328(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x58(%rsp)
leaq 0xb30(%rsp), %rax
movq %rax, 0x2720(%rsp)
movq 0x2720(%rsp), %rax
movq %rax, 0x3fb0(%rsp)
movq 0x3fb0(%rsp), %rax
movq %rax, 0x60(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x127451e
movq 0x60(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fac(%rsp) # imm = 0xFFFFFFFF
movl 0x3fac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fa8(%rsp)
cmpl $0x1, 0x3fa8(%rsp)
jne 0x127451e
movq 0x60(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12744f2
movq 0x60(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12744f0
jmp 0x127451c
movq 0x60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4828(%rsp)
cmpq $0x0, 0x4828(%rsp)
je 0x127451a
movq 0x4828(%rsp), %rdi
callq 0x5f480
jmp 0x127451c
jmp 0x127451e
movq 0x60(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1274576
movq %rax, %rdi
callq 0x678a0
movq 0x58(%rsp), %rax
movq %rax, 0xb78(%rsp)
movq 0x1f08(%rsp), %rcx
movl 0xb88(%rsp), %eax
leaq 0xae0(%rsp), %rdx
movq %rdx, 0x2740(%rsp)
movq %rcx, 0x2738(%rsp)
movl %eax, 0x2734(%rsp)
movq 0x2738(%rsp), %rax
movq %rax, 0x50(%rsp)
movb $0x0, 0x2733(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2734(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xae0(%rsp), %r10
movq %r10, 0x3300(%rsp)
movl %r9d, 0x32fc(%rsp)
movl %r8d, 0x32f8(%rsp)
movl %edi, 0x32f4(%rsp)
movq %rsi, 0x32e8(%rsp)
movq %rdx, 0x32e0(%rsp)
movl %ecx, 0x32dc(%rsp)
movq %rax, 0x32d0(%rsp)
movq 0x3300(%rsp), %rcx
movq %rcx, 0x48(%rsp)
movq 0x32e8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x32e0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x32dc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x32d0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x32fc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x32f8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x32f4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ca0(%rsp)
movl $0x10, 0x3c9c(%rsp)
movq 0x3ca0(%rsp), %rax
movslq 0x3c9c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c9c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x50(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xb08(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1274733
movq 0x50(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xb20(%rsp)
movb $0x1, 0x2733(%rsp)
testb $0x1, 0x2733(%rsp)
jne 0x127485c
leaq 0xae0(%rsp), %rax
movq %rax, 0x2748(%rsp)
movq 0x2748(%rsp), %rax
movq %rax, 0x3f90(%rsp)
movq 0x3f90(%rsp), %rax
movq %rax, 0x40(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1274802
movq 0x40(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f8c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f8c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f88(%rsp)
cmpl $0x1, 0x3f88(%rsp)
jne 0x1274802
movq 0x40(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12747d6
movq 0x40(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12747d4
jmp 0x1274800
movq 0x40(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4838(%rsp)
cmpq $0x0, 0x4838(%rsp)
je 0x12747fe
movq 0x4838(%rsp), %rdi
callq 0x5f480
jmp 0x1274800
jmp 0x1274802
movq 0x40(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127485a
movq %rax, %rdi
callq 0x678a0
jmp 0x127485c
leaq 0xae0(%rsp), %rax
movq %rax, 0x2a38(%rsp)
movq 0x2a38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x30(%rsp)
leaq 0xae0(%rsp), %rax
movq %rax, 0x2728(%rsp)
movq 0x2728(%rsp), %rax
movq %rax, 0x3fa0(%rsp)
movq 0x3fa0(%rsp), %rax
movq %rax, 0x38(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1274935
movq 0x38(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f9c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f9c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f98(%rsp)
cmpl $0x1, 0x3f98(%rsp)
jne 0x1274935
movq 0x38(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1274909
movq 0x38(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1274907
jmp 0x1274933
movq 0x38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4830(%rsp)
cmpq $0x0, 0x4830(%rsp)
je 0x1274931
movq 0x4830(%rsp), %rdi
callq 0x5f480
jmp 0x1274933
jmp 0x1274935
movq 0x38(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127498d
movq %rax, %rdi
callq 0x678a0
movq 0x30(%rsp), %rax
movq %rax, 0xb28(%rsp)
movl $0x0, 0xadc(%rsp)
movl 0xadc(%rsp), %eax
cmpl 0x1ecc(%rsp), %eax
jge 0x1274a09
movq 0xb78(%rsp), %rdx
movslq 0xadc(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xb84(%rsp), %rsi
callq 0x1278120
movq 0xb28(%rsp), %rax
movslq 0xadc(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xadc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xadc(%rsp)
jmp 0x12749a5
jmp 0x1274a0b
movl 0xb88(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xb88(%rsp)
jmp 0x1274117
movl $0x0, 0x1f24(%rsp)
jmp 0x1274f25
movq 0x1f10(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1274c5e
movq 0x1f08(%rsp), %rdi
movl 0x1edc(%rsp), %esi
movl 0x1ed8(%rsp), %edx
movq 0x1ee0(%rsp), %rcx
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6f5a0
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f30(%rsp)
movq 0x1f30(%rsp), %rcx
movq %rcx, 0x20(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x2f(%rsp)
je 0x1274ac7
movq 0x20(%rsp), %rax
movq %rax, 0x2db8(%rsp)
movq 0x2db8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x2f(%rsp)
movb 0x2f(%rsp), %al
testb $0x1, %al
jne 0x1274ad1
jmp 0x1274ae1
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1274f25
movq 0x1f10(%rsp), %rax
movq %rax, 0x2320(%rsp)
movq 0x2320(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xad0(%rsp)
movq 0x1f08(%rsp), %rax
movq %rax, 0x2a30(%rsp)
movq 0x2a30(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xac8(%rsp)
movl $0x0, 0xac4(%rsp)
movl 0xac4(%rsp), %eax
cmpl 0x1ed8(%rsp), %eax
jge 0x1274c4e
movq 0x1f18(%rsp), %rcx
movslq 0xac4(%rsp), %rax
movq %rcx, 0x2b88(%rsp)
movq %rax, 0x2b80(%rsp)
movq 0x2b88(%rsp), %rax
movq (%rax), %rax
movq 0x2b80(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xac0(%rsp)
movl $0x0, 0xabc(%rsp)
movl 0xabc(%rsp), %eax
cmpl 0x1edc(%rsp), %eax
jge 0x1274bf6
movq 0xad0(%rsp), %rdx
movslq 0xabc(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
leaq 0xac0(%rsp), %rsi
callq 0x1278120
movq 0xac8(%rsp), %rax
movslq 0xabc(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xabc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xabc(%rsp)
jmp 0x1274b92
movl 0x1edc(%rsp), %ecx
movq 0xad0(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xad0(%rsp)
movl 0x1edc(%rsp), %ecx
movq 0xac8(%rsp), %rax
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0xac8(%rsp)
movl 0xac4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xac4(%rsp)
jmp 0x1274b32
movl $0x0, 0x1f24(%rsp)
jmp 0x1274f25
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1274f12
movq 0x1f08(%rsp), %rdi
movl 0x1ef8(%rsp), %esi
movq 0x1ee0(%rsp), %rdx
movq 0x1f00(%rsp), %rax
movq 0x8(%rax), %rcx
callq 0x6f320
movq 0x1f08(%rsp), %rax
movq %rax, 0x1f28(%rsp)
movq 0x1f28(%rsp), %rcx
movq %rcx, 0x10(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1f(%rsp)
je 0x1274ced
movq 0x10(%rsp), %rax
movq %rax, 0x2dc0(%rsp)
movq 0x2dc0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1f(%rsp)
movb 0x1f(%rsp), %al
testb $0x1, %al
jne 0x1274cf7
jmp 0x1274d07
movl $0xffffff9c, 0x1f24(%rsp) # imm = 0xFFFFFF9C
jmp 0x1274f25
movq 0x1f10(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1274e22
movq 0x1f10(%rsp), %rax
movq %rax, 0x2b78(%rsp)
movq $0x0, 0x2b70(%rsp)
movq 0x2b78(%rsp), %rax
movq (%rax), %rax
movq 0x2b70(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xab8(%rsp)
movl $0x0, 0xab4(%rsp)
movl 0xab4(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x1274e12
movq 0x1f18(%rsp), %rcx
movslq 0xab4(%rsp), %rax
movq %rcx, 0x2b68(%rsp)
movq %rax, 0x2b60(%rsp)
movq 0x2b68(%rsp), %rax
movq (%rax), %rsi
movq 0x2b60(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0x1eff(%rsp), %rdi
leaq 0xab8(%rsp), %rdx
callq 0x1278120
movq 0x1f08(%rsp), %rcx
movslq 0xab4(%rsp), %rax
movq %rcx, 0x2cb8(%rsp)
movq %rax, 0x2cb0(%rsp)
movq 0x2cb8(%rsp), %rax
movq (%rax), %rax
movq 0x2cb0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xab4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xab4(%rsp)
jmp 0x1274d61
movl $0x0, 0x1f24(%rsp)
jmp 0x1274f25
movl $0x0, 0xab0(%rsp)
movl 0xab0(%rsp), %eax
cmpl 0x1ef8(%rsp), %eax
jge 0x1274f10
movq 0x1f18(%rsp), %rcx
movslq 0xab0(%rsp), %rax
movq %rcx, 0x2b58(%rsp)
movq %rax, 0x2b50(%rsp)
movq 0x2b58(%rsp), %rax
movq (%rax), %rsi
movq 0x2b50(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
movq 0x1f10(%rsp), %rcx
movslq 0xab0(%rsp), %rax
movq %rcx, 0x2b48(%rsp)
movq %rax, 0x2b40(%rsp)
movq 0x2b48(%rsp), %rax
movq (%rax), %rdx
movq 0x2b40(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rdx
leaq 0x1eff(%rsp), %rdi
callq 0x1278120
movq 0x1f08(%rsp), %rcx
movslq 0xab0(%rsp), %rax
movq %rcx, 0x2ca8(%rsp)
movq %rax, 0x2ca0(%rsp)
movq 0x2ca8(%rsp), %rax
movq (%rax), %rax
movq 0x2ca0(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0xab0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xab0(%rsp)
jmp 0x1274e2d
jmp 0x1274f12
jmp 0x1274f14
jmp 0x1274f16
jmp 0x1274f18
jmp 0x1274f1a
movl $0x0, 0x1f24(%rsp)
movl 0x1f24(%rsp), %eax
addq $0x48f8, %rsp # imm = 0x48F8
retq
nopw %cs:(%rax,%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/binaryop.cpp
|
2,112,807
|
ncnn::BinaryOp::forward_inplace(ncnn::Mat&, ncnn::Option const&) const
|
int BinaryOp::forward_inplace(Mat& bottom_top_blob, const Option& opt) const
{
if (op_type == Operation_ADD)
return binary_op_scalar_inplace<binary_op_add>(bottom_top_blob, b, opt);
if (op_type == Operation_SUB)
return binary_op_scalar_inplace<binary_op_sub>(bottom_top_blob, b, opt);
if (op_type == Operation_MUL)
return binary_op_scalar_inplace<binary_op_mul>(bottom_top_blob, b, opt);
if (op_type == Operation_DIV)
return binary_op_scalar_inplace<binary_op_div>(bottom_top_blob, b, opt);
if (op_type == Operation_MAX)
return binary_op_scalar_inplace<binary_op_max>(bottom_top_blob, b, opt);
if (op_type == Operation_MIN)
return binary_op_scalar_inplace<binary_op_min>(bottom_top_blob, b, opt);
if (op_type == Operation_POW)
return binary_op_scalar_inplace<binary_op_pow>(bottom_top_blob, b, opt);
if (op_type == Operation_RSUB)
return binary_op_scalar_inplace<binary_op_rsub>(bottom_top_blob, b, opt);
if (op_type == Operation_RDIV)
return binary_op_scalar_inplace<binary_op_rdiv>(bottom_top_blob, b, opt);
return 0;
}
|
subq $0x28, %rsp
movq %rdi, 0x18(%rsp)
movq %rsi, 0x10(%rsp)
movq %rdx, 0x8(%rsp)
movq 0x18(%rsp), %rax
movq %rax, (%rsp)
cmpl $0x0, 0xd0(%rax)
jne 0x1274f89
movq (%rsp), %rax
movq 0x10(%rsp), %rdi
movss 0xd8(%rax), %xmm0
movq 0x8(%rsp), %rsi
callq 0x1275120
movl %eax, 0x24(%rsp)
jmp 0x1275110
movq (%rsp), %rax
cmpl $0x1, 0xd0(%rax)
jne 0x1274fba
movq (%rsp), %rax
movq 0x10(%rsp), %rdi
movss 0xd8(%rax), %xmm0
movq 0x8(%rsp), %rsi
callq 0x1275650
movl %eax, 0x24(%rsp)
jmp 0x1275110
movq (%rsp), %rax
cmpl $0x2, 0xd0(%rax)
jne 0x1274feb
movq (%rsp), %rax
movq 0x10(%rsp), %rdi
movss 0xd8(%rax), %xmm0
movq 0x8(%rsp), %rsi
callq 0x1275b80
movl %eax, 0x24(%rsp)
jmp 0x1275110
movq (%rsp), %rax
cmpl $0x3, 0xd0(%rax)
jne 0x127501c
movq (%rsp), %rax
movq 0x10(%rsp), %rdi
movss 0xd8(%rax), %xmm0
movq 0x8(%rsp), %rsi
callq 0x12760b0
movl %eax, 0x24(%rsp)
jmp 0x1275110
movq (%rsp), %rax
cmpl $0x4, 0xd0(%rax)
jne 0x127504d
movq (%rsp), %rax
movq 0x10(%rsp), %rdi
movss 0xd8(%rax), %xmm0
movq 0x8(%rsp), %rsi
callq 0x12765e0
movl %eax, 0x24(%rsp)
jmp 0x1275110
movq (%rsp), %rax
cmpl $0x5, 0xd0(%rax)
jne 0x127507e
movq (%rsp), %rax
movq 0x10(%rsp), %rdi
movss 0xd8(%rax), %xmm0
movq 0x8(%rsp), %rsi
callq 0x1276b10
movl %eax, 0x24(%rsp)
jmp 0x1275110
movq (%rsp), %rax
cmpl $0x6, 0xd0(%rax)
jne 0x12750ac
movq (%rsp), %rax
movq 0x10(%rsp), %rdi
movss 0xd8(%rax), %xmm0
movq 0x8(%rsp), %rsi
callq 0x1277040
movl %eax, 0x24(%rsp)
jmp 0x1275110
movq (%rsp), %rax
cmpl $0x7, 0xd0(%rax)
jne 0x12750da
movq (%rsp), %rax
movq 0x10(%rsp), %rdi
movss 0xd8(%rax), %xmm0
movq 0x8(%rsp), %rsi
callq 0x1277570
movl %eax, 0x24(%rsp)
jmp 0x1275110
movq (%rsp), %rax
cmpl $0x8, 0xd0(%rax)
jne 0x1275108
movq (%rsp), %rax
movq 0x10(%rsp), %rdi
movss 0xd8(%rax), %xmm0
movq 0x8(%rsp), %rsi
callq 0x1277aa0
movl %eax, 0x24(%rsp)
jmp 0x1275110
movl $0x0, 0x24(%rsp)
movl 0x24(%rsp), %eax
addq $0x28, %rsp
retq
nopl (%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/binaryop.cpp
|
2,112,808
|
int ncnn::binary_op_scalar_inplace<ncnn::binary_op_add>(ncnn::Mat&, float, ncnn::Option const&)
|
static int binary_op_scalar_inplace(Mat& a, float b, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int size = w * h * d;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
float* ptr = a.channel(q);
for (int i = 0; i < size; i++)
{
ptr[i] = op(ptr[i], b);
}
}
return 0;
}
|
subq $0x168, %rsp # imm = 0x168
movq %rdi, 0xb8(%rsp)
movss %xmm0, 0xb4(%rsp)
movq %rsi, 0xa8(%rsp)
movq 0xb8(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0xa0(%rsp)
movq 0xb8(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x9c(%rsp)
movq 0xb8(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x98(%rsp)
movq 0xb8(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x94(%rsp)
movl 0xa0(%rsp), %eax
imull 0x9c(%rsp), %eax
imull 0x98(%rsp), %eax
movl %eax, 0x90(%rsp)
movl $0x0, 0x8c(%rsp)
movl 0x8c(%rsp), %eax
cmpl 0x94(%rsp), %eax
jge 0x127563c
movq 0xb8(%rsp), %rcx
movl 0x8c(%rsp), %eax
leaq 0x38(%rsp), %rdx
movq %rdx, 0xd8(%rsp)
movq %rcx, 0xd0(%rsp)
movl %eax, 0xcc(%rsp)
movq 0xd0(%rsp), %rax
movq %rax, 0x28(%rsp)
movb $0x0, 0xcb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0xcc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x38(%rsp), %r10
movq %r10, 0x120(%rsp)
movl %r9d, 0x11c(%rsp)
movl %r8d, 0x118(%rsp)
movl %edi, 0x114(%rsp)
movq %rsi, 0x108(%rsp)
movq %rdx, 0x100(%rsp)
movl %ecx, 0xfc(%rsp)
movq %rax, 0xf0(%rsp)
movq 0x120(%rsp), %rcx
movq %rcx, 0x20(%rsp)
movq 0x108(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x100(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0xfc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0xf0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x11c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x118(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x114(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x130(%rsp)
movl $0x10, 0x12c(%rsp)
movq 0x130(%rsp), %rax
movslq 0x12c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x12c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x28(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x60(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1275369
movq 0x28(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x78(%rsp)
movb $0x1, 0xcb(%rsp)
testb $0x1, 0xcb(%rsp)
jne 0x127548f
leaq 0x38(%rsp), %rax
movq %rax, 0xe0(%rsp)
movq 0xe0(%rsp), %rax
movq %rax, 0x140(%rsp)
movq 0x140(%rsp), %rax
movq %rax, 0x18(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1275435
movq 0x18(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x13c(%rsp) # imm = 0xFFFFFFFF
movl 0x13c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x138(%rsp)
cmpl $0x1, 0x138(%rsp)
jne 0x1275435
movq 0x18(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1275409
movq 0x18(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1275407
jmp 0x1275433
movq 0x18(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x160(%rsp)
cmpq $0x0, 0x160(%rsp)
je 0x1275431
movq 0x160(%rsp), %rdi
callq 0x5f480
jmp 0x1275433
jmp 0x1275435
movq 0x18(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127548d
movq %rax, %rdi
callq 0x678a0
jmp 0x127548f
leaq 0x38(%rsp), %rax
movq %rax, 0xe8(%rsp)
movq 0xe8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8(%rsp)
leaq 0x38(%rsp), %rax
movq %rax, 0xc0(%rsp)
movq 0xc0(%rsp), %rax
movq %rax, 0x150(%rsp)
movq 0x150(%rsp), %rax
movq %rax, 0x10(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1275562
movq 0x10(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x14c(%rsp) # imm = 0xFFFFFFFF
movl 0x14c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x148(%rsp)
cmpl $0x1, 0x148(%rsp)
jne 0x1275562
movq 0x10(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1275536
movq 0x10(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1275534
jmp 0x1275560
movq 0x10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x158(%rsp)
cmpq $0x0, 0x158(%rsp)
je 0x127555e
movq 0x158(%rsp), %rdi
callq 0x5f480
jmp 0x1275560
jmp 0x1275562
movq 0x10(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12755ba
movq %rax, %rdi
callq 0x678a0
movq 0x8(%rsp), %rax
movq %rax, 0x80(%rsp)
movl $0x0, 0x34(%rsp)
movl 0x34(%rsp), %eax
cmpl 0x90(%rsp), %eax
jge 0x1275624
movq 0x80(%rsp), %rsi
movslq 0x34(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0xa7(%rsp), %rdi
leaq 0xb4(%rsp), %rdx
callq 0x1278000
movq 0x80(%rsp), %rax
movslq 0x34(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x34(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x34(%rsp)
jmp 0x12755cf
jmp 0x1275626
movl 0x8c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x8c(%rsp)
jmp 0x12751b1
xorl %eax, %eax
addq $0x168, %rsp # imm = 0x168
retq
nopw %cs:(%rax,%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/binaryop.cpp
|
2,112,809
|
int ncnn::binary_op_scalar_inplace<ncnn::binary_op_sub>(ncnn::Mat&, float, ncnn::Option const&)
|
static int binary_op_scalar_inplace(Mat& a, float b, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int size = w * h * d;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
float* ptr = a.channel(q);
for (int i = 0; i < size; i++)
{
ptr[i] = op(ptr[i], b);
}
}
return 0;
}
|
subq $0x168, %rsp # imm = 0x168
movq %rdi, 0xb8(%rsp)
movss %xmm0, 0xb4(%rsp)
movq %rsi, 0xa8(%rsp)
movq 0xb8(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0xa0(%rsp)
movq 0xb8(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x9c(%rsp)
movq 0xb8(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x98(%rsp)
movq 0xb8(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x94(%rsp)
movl 0xa0(%rsp), %eax
imull 0x9c(%rsp), %eax
imull 0x98(%rsp), %eax
movl %eax, 0x90(%rsp)
movl $0x0, 0x8c(%rsp)
movl 0x8c(%rsp), %eax
cmpl 0x94(%rsp), %eax
jge 0x1275b6c
movq 0xb8(%rsp), %rcx
movl 0x8c(%rsp), %eax
leaq 0x38(%rsp), %rdx
movq %rdx, 0xd8(%rsp)
movq %rcx, 0xd0(%rsp)
movl %eax, 0xcc(%rsp)
movq 0xd0(%rsp), %rax
movq %rax, 0x28(%rsp)
movb $0x0, 0xcb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0xcc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x38(%rsp), %r10
movq %r10, 0x120(%rsp)
movl %r9d, 0x11c(%rsp)
movl %r8d, 0x118(%rsp)
movl %edi, 0x114(%rsp)
movq %rsi, 0x108(%rsp)
movq %rdx, 0x100(%rsp)
movl %ecx, 0xfc(%rsp)
movq %rax, 0xf0(%rsp)
movq 0x120(%rsp), %rcx
movq %rcx, 0x20(%rsp)
movq 0x108(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x100(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0xfc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0xf0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x11c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x118(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x114(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x130(%rsp)
movl $0x10, 0x12c(%rsp)
movq 0x130(%rsp), %rax
movslq 0x12c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x12c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x28(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x60(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1275899
movq 0x28(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x78(%rsp)
movb $0x1, 0xcb(%rsp)
testb $0x1, 0xcb(%rsp)
jne 0x12759bf
leaq 0x38(%rsp), %rax
movq %rax, 0xe0(%rsp)
movq 0xe0(%rsp), %rax
movq %rax, 0x140(%rsp)
movq 0x140(%rsp), %rax
movq %rax, 0x18(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1275965
movq 0x18(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x13c(%rsp) # imm = 0xFFFFFFFF
movl 0x13c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x138(%rsp)
cmpl $0x1, 0x138(%rsp)
jne 0x1275965
movq 0x18(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1275939
movq 0x18(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1275937
jmp 0x1275963
movq 0x18(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x160(%rsp)
cmpq $0x0, 0x160(%rsp)
je 0x1275961
movq 0x160(%rsp), %rdi
callq 0x5f480
jmp 0x1275963
jmp 0x1275965
movq 0x18(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12759bd
movq %rax, %rdi
callq 0x678a0
jmp 0x12759bf
leaq 0x38(%rsp), %rax
movq %rax, 0xe8(%rsp)
movq 0xe8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8(%rsp)
leaq 0x38(%rsp), %rax
movq %rax, 0xc0(%rsp)
movq 0xc0(%rsp), %rax
movq %rax, 0x150(%rsp)
movq 0x150(%rsp), %rax
movq %rax, 0x10(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1275a92
movq 0x10(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x14c(%rsp) # imm = 0xFFFFFFFF
movl 0x14c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x148(%rsp)
cmpl $0x1, 0x148(%rsp)
jne 0x1275a92
movq 0x10(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1275a66
movq 0x10(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1275a64
jmp 0x1275a90
movq 0x10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x158(%rsp)
cmpq $0x0, 0x158(%rsp)
je 0x1275a8e
movq 0x158(%rsp), %rdi
callq 0x5f480
jmp 0x1275a90
jmp 0x1275a92
movq 0x10(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1275aea
movq %rax, %rdi
callq 0x678a0
movq 0x8(%rsp), %rax
movq %rax, 0x80(%rsp)
movl $0x0, 0x34(%rsp)
movl 0x34(%rsp), %eax
cmpl 0x90(%rsp), %eax
jge 0x1275b54
movq 0x80(%rsp), %rsi
movslq 0x34(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0xa7(%rsp), %rdi
leaq 0xb4(%rsp), %rdx
callq 0x1278030
movq 0x80(%rsp), %rax
movslq 0x34(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x34(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x34(%rsp)
jmp 0x1275aff
jmp 0x1275b56
movl 0x8c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x8c(%rsp)
jmp 0x12756e1
xorl %eax, %eax
addq $0x168, %rsp # imm = 0x168
retq
nopw %cs:(%rax,%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/binaryop.cpp
|
2,112,810
|
int ncnn::binary_op_scalar_inplace<ncnn::binary_op_mul>(ncnn::Mat&, float, ncnn::Option const&)
|
static int binary_op_scalar_inplace(Mat& a, float b, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int size = w * h * d;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
float* ptr = a.channel(q);
for (int i = 0; i < size; i++)
{
ptr[i] = op(ptr[i], b);
}
}
return 0;
}
|
subq $0x168, %rsp # imm = 0x168
movq %rdi, 0xb8(%rsp)
movss %xmm0, 0xb4(%rsp)
movq %rsi, 0xa8(%rsp)
movq 0xb8(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0xa0(%rsp)
movq 0xb8(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x9c(%rsp)
movq 0xb8(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x98(%rsp)
movq 0xb8(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x94(%rsp)
movl 0xa0(%rsp), %eax
imull 0x9c(%rsp), %eax
imull 0x98(%rsp), %eax
movl %eax, 0x90(%rsp)
movl $0x0, 0x8c(%rsp)
movl 0x8c(%rsp), %eax
cmpl 0x94(%rsp), %eax
jge 0x127609c
movq 0xb8(%rsp), %rcx
movl 0x8c(%rsp), %eax
leaq 0x38(%rsp), %rdx
movq %rdx, 0xd8(%rsp)
movq %rcx, 0xd0(%rsp)
movl %eax, 0xcc(%rsp)
movq 0xd0(%rsp), %rax
movq %rax, 0x28(%rsp)
movb $0x0, 0xcb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0xcc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x38(%rsp), %r10
movq %r10, 0x120(%rsp)
movl %r9d, 0x11c(%rsp)
movl %r8d, 0x118(%rsp)
movl %edi, 0x114(%rsp)
movq %rsi, 0x108(%rsp)
movq %rdx, 0x100(%rsp)
movl %ecx, 0xfc(%rsp)
movq %rax, 0xf0(%rsp)
movq 0x120(%rsp), %rcx
movq %rcx, 0x20(%rsp)
movq 0x108(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x100(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0xfc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0xf0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x11c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x118(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x114(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x130(%rsp)
movl $0x10, 0x12c(%rsp)
movq 0x130(%rsp), %rax
movslq 0x12c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x12c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x28(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x60(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1275dc9
movq 0x28(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x78(%rsp)
movb $0x1, 0xcb(%rsp)
testb $0x1, 0xcb(%rsp)
jne 0x1275eef
leaq 0x38(%rsp), %rax
movq %rax, 0xe0(%rsp)
movq 0xe0(%rsp), %rax
movq %rax, 0x140(%rsp)
movq 0x140(%rsp), %rax
movq %rax, 0x18(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1275e95
movq 0x18(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x13c(%rsp) # imm = 0xFFFFFFFF
movl 0x13c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x138(%rsp)
cmpl $0x1, 0x138(%rsp)
jne 0x1275e95
movq 0x18(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1275e69
movq 0x18(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1275e67
jmp 0x1275e93
movq 0x18(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x160(%rsp)
cmpq $0x0, 0x160(%rsp)
je 0x1275e91
movq 0x160(%rsp), %rdi
callq 0x5f480
jmp 0x1275e93
jmp 0x1275e95
movq 0x18(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1275eed
movq %rax, %rdi
callq 0x678a0
jmp 0x1275eef
leaq 0x38(%rsp), %rax
movq %rax, 0xe8(%rsp)
movq 0xe8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8(%rsp)
leaq 0x38(%rsp), %rax
movq %rax, 0xc0(%rsp)
movq 0xc0(%rsp), %rax
movq %rax, 0x150(%rsp)
movq 0x150(%rsp), %rax
movq %rax, 0x10(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1275fc2
movq 0x10(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x14c(%rsp) # imm = 0xFFFFFFFF
movl 0x14c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x148(%rsp)
cmpl $0x1, 0x148(%rsp)
jne 0x1275fc2
movq 0x10(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1275f96
movq 0x10(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1275f94
jmp 0x1275fc0
movq 0x10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x158(%rsp)
cmpq $0x0, 0x158(%rsp)
je 0x1275fbe
movq 0x158(%rsp), %rdi
callq 0x5f480
jmp 0x1275fc0
jmp 0x1275fc2
movq 0x10(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127601a
movq %rax, %rdi
callq 0x678a0
movq 0x8(%rsp), %rax
movq %rax, 0x80(%rsp)
movl $0x0, 0x34(%rsp)
movl 0x34(%rsp), %eax
cmpl 0x90(%rsp), %eax
jge 0x1276084
movq 0x80(%rsp), %rsi
movslq 0x34(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0xa7(%rsp), %rdi
leaq 0xb4(%rsp), %rdx
callq 0x1278060
movq 0x80(%rsp), %rax
movslq 0x34(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x34(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x34(%rsp)
jmp 0x127602f
jmp 0x1276086
movl 0x8c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x8c(%rsp)
jmp 0x1275c11
xorl %eax, %eax
addq $0x168, %rsp # imm = 0x168
retq
nopw %cs:(%rax,%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/binaryop.cpp
|
2,112,811
|
int ncnn::binary_op_scalar_inplace<ncnn::binary_op_div>(ncnn::Mat&, float, ncnn::Option const&)
|
static int binary_op_scalar_inplace(Mat& a, float b, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int size = w * h * d;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
float* ptr = a.channel(q);
for (int i = 0; i < size; i++)
{
ptr[i] = op(ptr[i], b);
}
}
return 0;
}
|
subq $0x168, %rsp # imm = 0x168
movq %rdi, 0xb8(%rsp)
movss %xmm0, 0xb4(%rsp)
movq %rsi, 0xa8(%rsp)
movq 0xb8(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0xa0(%rsp)
movq 0xb8(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x9c(%rsp)
movq 0xb8(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x98(%rsp)
movq 0xb8(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x94(%rsp)
movl 0xa0(%rsp), %eax
imull 0x9c(%rsp), %eax
imull 0x98(%rsp), %eax
movl %eax, 0x90(%rsp)
movl $0x0, 0x8c(%rsp)
movl 0x8c(%rsp), %eax
cmpl 0x94(%rsp), %eax
jge 0x12765cc
movq 0xb8(%rsp), %rcx
movl 0x8c(%rsp), %eax
leaq 0x38(%rsp), %rdx
movq %rdx, 0xd8(%rsp)
movq %rcx, 0xd0(%rsp)
movl %eax, 0xcc(%rsp)
movq 0xd0(%rsp), %rax
movq %rax, 0x28(%rsp)
movb $0x0, 0xcb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0xcc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x38(%rsp), %r10
movq %r10, 0x120(%rsp)
movl %r9d, 0x11c(%rsp)
movl %r8d, 0x118(%rsp)
movl %edi, 0x114(%rsp)
movq %rsi, 0x108(%rsp)
movq %rdx, 0x100(%rsp)
movl %ecx, 0xfc(%rsp)
movq %rax, 0xf0(%rsp)
movq 0x120(%rsp), %rcx
movq %rcx, 0x20(%rsp)
movq 0x108(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x100(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0xfc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0xf0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x11c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x118(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x114(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x130(%rsp)
movl $0x10, 0x12c(%rsp)
movq 0x130(%rsp), %rax
movslq 0x12c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x12c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x28(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x60(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12762f9
movq 0x28(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x78(%rsp)
movb $0x1, 0xcb(%rsp)
testb $0x1, 0xcb(%rsp)
jne 0x127641f
leaq 0x38(%rsp), %rax
movq %rax, 0xe0(%rsp)
movq 0xe0(%rsp), %rax
movq %rax, 0x140(%rsp)
movq 0x140(%rsp), %rax
movq %rax, 0x18(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12763c5
movq 0x18(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x13c(%rsp) # imm = 0xFFFFFFFF
movl 0x13c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x138(%rsp)
cmpl $0x1, 0x138(%rsp)
jne 0x12763c5
movq 0x18(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1276399
movq 0x18(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1276397
jmp 0x12763c3
movq 0x18(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x160(%rsp)
cmpq $0x0, 0x160(%rsp)
je 0x12763c1
movq 0x160(%rsp), %rdi
callq 0x5f480
jmp 0x12763c3
jmp 0x12763c5
movq 0x18(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127641d
movq %rax, %rdi
callq 0x678a0
jmp 0x127641f
leaq 0x38(%rsp), %rax
movq %rax, 0xe8(%rsp)
movq 0xe8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8(%rsp)
leaq 0x38(%rsp), %rax
movq %rax, 0xc0(%rsp)
movq 0xc0(%rsp), %rax
movq %rax, 0x150(%rsp)
movq 0x150(%rsp), %rax
movq %rax, 0x10(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12764f2
movq 0x10(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x14c(%rsp) # imm = 0xFFFFFFFF
movl 0x14c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x148(%rsp)
cmpl $0x1, 0x148(%rsp)
jne 0x12764f2
movq 0x10(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12764c6
movq 0x10(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12764c4
jmp 0x12764f0
movq 0x10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x158(%rsp)
cmpq $0x0, 0x158(%rsp)
je 0x12764ee
movq 0x158(%rsp), %rdi
callq 0x5f480
jmp 0x12764f0
jmp 0x12764f2
movq 0x10(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127654a
movq %rax, %rdi
callq 0x678a0
movq 0x8(%rsp), %rax
movq %rax, 0x80(%rsp)
movl $0x0, 0x34(%rsp)
movl 0x34(%rsp), %eax
cmpl 0x90(%rsp), %eax
jge 0x12765b4
movq 0x80(%rsp), %rsi
movslq 0x34(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0xa7(%rsp), %rdi
leaq 0xb4(%rsp), %rdx
callq 0x1278090
movq 0x80(%rsp), %rax
movslq 0x34(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x34(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x34(%rsp)
jmp 0x127655f
jmp 0x12765b6
movl 0x8c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x8c(%rsp)
jmp 0x1276141
xorl %eax, %eax
addq $0x168, %rsp # imm = 0x168
retq
nopw %cs:(%rax,%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/binaryop.cpp
|
2,112,812
|
int ncnn::binary_op_scalar_inplace<ncnn::binary_op_max>(ncnn::Mat&, float, ncnn::Option const&)
|
static int binary_op_scalar_inplace(Mat& a, float b, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int size = w * h * d;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
float* ptr = a.channel(q);
for (int i = 0; i < size; i++)
{
ptr[i] = op(ptr[i], b);
}
}
return 0;
}
|
subq $0x168, %rsp # imm = 0x168
movq %rdi, 0xb8(%rsp)
movss %xmm0, 0xb4(%rsp)
movq %rsi, 0xa8(%rsp)
movq 0xb8(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0xa0(%rsp)
movq 0xb8(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x9c(%rsp)
movq 0xb8(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x98(%rsp)
movq 0xb8(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x94(%rsp)
movl 0xa0(%rsp), %eax
imull 0x9c(%rsp), %eax
imull 0x98(%rsp), %eax
movl %eax, 0x90(%rsp)
movl $0x0, 0x8c(%rsp)
movl 0x8c(%rsp), %eax
cmpl 0x94(%rsp), %eax
jge 0x1276afc
movq 0xb8(%rsp), %rcx
movl 0x8c(%rsp), %eax
leaq 0x38(%rsp), %rdx
movq %rdx, 0xd8(%rsp)
movq %rcx, 0xd0(%rsp)
movl %eax, 0xcc(%rsp)
movq 0xd0(%rsp), %rax
movq %rax, 0x28(%rsp)
movb $0x0, 0xcb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0xcc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x38(%rsp), %r10
movq %r10, 0x120(%rsp)
movl %r9d, 0x11c(%rsp)
movl %r8d, 0x118(%rsp)
movl %edi, 0x114(%rsp)
movq %rsi, 0x108(%rsp)
movq %rdx, 0x100(%rsp)
movl %ecx, 0xfc(%rsp)
movq %rax, 0xf0(%rsp)
movq 0x120(%rsp), %rcx
movq %rcx, 0x20(%rsp)
movq 0x108(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x100(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0xfc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0xf0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x11c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x118(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x114(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x130(%rsp)
movl $0x10, 0x12c(%rsp)
movq 0x130(%rsp), %rax
movslq 0x12c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x12c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x28(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x60(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1276829
movq 0x28(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x78(%rsp)
movb $0x1, 0xcb(%rsp)
testb $0x1, 0xcb(%rsp)
jne 0x127694f
leaq 0x38(%rsp), %rax
movq %rax, 0xe0(%rsp)
movq 0xe0(%rsp), %rax
movq %rax, 0x140(%rsp)
movq 0x140(%rsp), %rax
movq %rax, 0x18(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12768f5
movq 0x18(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x13c(%rsp) # imm = 0xFFFFFFFF
movl 0x13c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x138(%rsp)
cmpl $0x1, 0x138(%rsp)
jne 0x12768f5
movq 0x18(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12768c9
movq 0x18(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12768c7
jmp 0x12768f3
movq 0x18(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x160(%rsp)
cmpq $0x0, 0x160(%rsp)
je 0x12768f1
movq 0x160(%rsp), %rdi
callq 0x5f480
jmp 0x12768f3
jmp 0x12768f5
movq 0x18(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127694d
movq %rax, %rdi
callq 0x678a0
jmp 0x127694f
leaq 0x38(%rsp), %rax
movq %rax, 0xe8(%rsp)
movq 0xe8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8(%rsp)
leaq 0x38(%rsp), %rax
movq %rax, 0xc0(%rsp)
movq 0xc0(%rsp), %rax
movq %rax, 0x150(%rsp)
movq 0x150(%rsp), %rax
movq %rax, 0x10(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1276a22
movq 0x10(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x14c(%rsp) # imm = 0xFFFFFFFF
movl 0x14c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x148(%rsp)
cmpl $0x1, 0x148(%rsp)
jne 0x1276a22
movq 0x10(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12769f6
movq 0x10(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12769f4
jmp 0x1276a20
movq 0x10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x158(%rsp)
cmpq $0x0, 0x158(%rsp)
je 0x1276a1e
movq 0x158(%rsp), %rdi
callq 0x5f480
jmp 0x1276a20
jmp 0x1276a22
movq 0x10(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1276a7a
movq %rax, %rdi
callq 0x678a0
movq 0x8(%rsp), %rax
movq %rax, 0x80(%rsp)
movl $0x0, 0x34(%rsp)
movl 0x34(%rsp), %eax
cmpl 0x90(%rsp), %eax
jge 0x1276ae4
movq 0x80(%rsp), %rsi
movslq 0x34(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0xa7(%rsp), %rdi
leaq 0xb4(%rsp), %rdx
callq 0x12780c0
movq 0x80(%rsp), %rax
movslq 0x34(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x34(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x34(%rsp)
jmp 0x1276a8f
jmp 0x1276ae6
movl 0x8c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x8c(%rsp)
jmp 0x1276671
xorl %eax, %eax
addq $0x168, %rsp # imm = 0x168
retq
nopw %cs:(%rax,%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/binaryop.cpp
|
2,112,813
|
int ncnn::binary_op_scalar_inplace<ncnn::binary_op_min>(ncnn::Mat&, float, ncnn::Option const&)
|
static int binary_op_scalar_inplace(Mat& a, float b, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int size = w * h * d;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
float* ptr = a.channel(q);
for (int i = 0; i < size; i++)
{
ptr[i] = op(ptr[i], b);
}
}
return 0;
}
|
subq $0x168, %rsp # imm = 0x168
movq %rdi, 0xb8(%rsp)
movss %xmm0, 0xb4(%rsp)
movq %rsi, 0xa8(%rsp)
movq 0xb8(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0xa0(%rsp)
movq 0xb8(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x9c(%rsp)
movq 0xb8(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x98(%rsp)
movq 0xb8(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x94(%rsp)
movl 0xa0(%rsp), %eax
imull 0x9c(%rsp), %eax
imull 0x98(%rsp), %eax
movl %eax, 0x90(%rsp)
movl $0x0, 0x8c(%rsp)
movl 0x8c(%rsp), %eax
cmpl 0x94(%rsp), %eax
jge 0x127702c
movq 0xb8(%rsp), %rcx
movl 0x8c(%rsp), %eax
leaq 0x38(%rsp), %rdx
movq %rdx, 0xd8(%rsp)
movq %rcx, 0xd0(%rsp)
movl %eax, 0xcc(%rsp)
movq 0xd0(%rsp), %rax
movq %rax, 0x28(%rsp)
movb $0x0, 0xcb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0xcc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x38(%rsp), %r10
movq %r10, 0x120(%rsp)
movl %r9d, 0x11c(%rsp)
movl %r8d, 0x118(%rsp)
movl %edi, 0x114(%rsp)
movq %rsi, 0x108(%rsp)
movq %rdx, 0x100(%rsp)
movl %ecx, 0xfc(%rsp)
movq %rax, 0xf0(%rsp)
movq 0x120(%rsp), %rcx
movq %rcx, 0x20(%rsp)
movq 0x108(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x100(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0xfc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0xf0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x11c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x118(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x114(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x130(%rsp)
movl $0x10, 0x12c(%rsp)
movq 0x130(%rsp), %rax
movslq 0x12c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x12c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x28(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x60(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1276d59
movq 0x28(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x78(%rsp)
movb $0x1, 0xcb(%rsp)
testb $0x1, 0xcb(%rsp)
jne 0x1276e7f
leaq 0x38(%rsp), %rax
movq %rax, 0xe0(%rsp)
movq 0xe0(%rsp), %rax
movq %rax, 0x140(%rsp)
movq 0x140(%rsp), %rax
movq %rax, 0x18(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1276e25
movq 0x18(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x13c(%rsp) # imm = 0xFFFFFFFF
movl 0x13c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x138(%rsp)
cmpl $0x1, 0x138(%rsp)
jne 0x1276e25
movq 0x18(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1276df9
movq 0x18(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1276df7
jmp 0x1276e23
movq 0x18(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x160(%rsp)
cmpq $0x0, 0x160(%rsp)
je 0x1276e21
movq 0x160(%rsp), %rdi
callq 0x5f480
jmp 0x1276e23
jmp 0x1276e25
movq 0x18(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1276e7d
movq %rax, %rdi
callq 0x678a0
jmp 0x1276e7f
leaq 0x38(%rsp), %rax
movq %rax, 0xe8(%rsp)
movq 0xe8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8(%rsp)
leaq 0x38(%rsp), %rax
movq %rax, 0xc0(%rsp)
movq 0xc0(%rsp), %rax
movq %rax, 0x150(%rsp)
movq 0x150(%rsp), %rax
movq %rax, 0x10(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1276f52
movq 0x10(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x14c(%rsp) # imm = 0xFFFFFFFF
movl 0x14c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x148(%rsp)
cmpl $0x1, 0x148(%rsp)
jne 0x1276f52
movq 0x10(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1276f26
movq 0x10(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1276f24
jmp 0x1276f50
movq 0x10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x158(%rsp)
cmpq $0x0, 0x158(%rsp)
je 0x1276f4e
movq 0x158(%rsp), %rdi
callq 0x5f480
jmp 0x1276f50
jmp 0x1276f52
movq 0x10(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1276faa
movq %rax, %rdi
callq 0x678a0
movq 0x8(%rsp), %rax
movq %rax, 0x80(%rsp)
movl $0x0, 0x34(%rsp)
movl 0x34(%rsp), %eax
cmpl 0x90(%rsp), %eax
jge 0x1277014
movq 0x80(%rsp), %rsi
movslq 0x34(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0xa7(%rsp), %rdi
leaq 0xb4(%rsp), %rdx
callq 0x12780f0
movq 0x80(%rsp), %rax
movslq 0x34(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x34(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x34(%rsp)
jmp 0x1276fbf
jmp 0x1277016
movl 0x8c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x8c(%rsp)
jmp 0x1276ba1
xorl %eax, %eax
addq $0x168, %rsp # imm = 0x168
retq
nopw %cs:(%rax,%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/binaryop.cpp
|
2,112,814
|
int ncnn::binary_op_scalar_inplace<ncnn::binary_op_pow>(ncnn::Mat&, float, ncnn::Option const&)
|
static int binary_op_scalar_inplace(Mat& a, float b, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int size = w * h * d;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
float* ptr = a.channel(q);
for (int i = 0; i < size; i++)
{
ptr[i] = op(ptr[i], b);
}
}
return 0;
}
|
subq $0x168, %rsp # imm = 0x168
movq %rdi, 0xb8(%rsp)
movss %xmm0, 0xb4(%rsp)
movq %rsi, 0xa8(%rsp)
movq 0xb8(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0xa0(%rsp)
movq 0xb8(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x9c(%rsp)
movq 0xb8(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x98(%rsp)
movq 0xb8(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x94(%rsp)
movl 0xa0(%rsp), %eax
imull 0x9c(%rsp), %eax
imull 0x98(%rsp), %eax
movl %eax, 0x90(%rsp)
movl $0x0, 0x8c(%rsp)
movl 0x8c(%rsp), %eax
cmpl 0x94(%rsp), %eax
jge 0x127755c
movq 0xb8(%rsp), %rcx
movl 0x8c(%rsp), %eax
leaq 0x38(%rsp), %rdx
movq %rdx, 0xd8(%rsp)
movq %rcx, 0xd0(%rsp)
movl %eax, 0xcc(%rsp)
movq 0xd0(%rsp), %rax
movq %rax, 0x28(%rsp)
movb $0x0, 0xcb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0xcc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x38(%rsp), %r10
movq %r10, 0x120(%rsp)
movl %r9d, 0x11c(%rsp)
movl %r8d, 0x118(%rsp)
movl %edi, 0x114(%rsp)
movq %rsi, 0x108(%rsp)
movq %rdx, 0x100(%rsp)
movl %ecx, 0xfc(%rsp)
movq %rax, 0xf0(%rsp)
movq 0x120(%rsp), %rcx
movq %rcx, 0x20(%rsp)
movq 0x108(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x100(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0xfc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0xf0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x11c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x118(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x114(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x130(%rsp)
movl $0x10, 0x12c(%rsp)
movq 0x130(%rsp), %rax
movslq 0x12c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x12c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x28(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x60(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1277289
movq 0x28(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x78(%rsp)
movb $0x1, 0xcb(%rsp)
testb $0x1, 0xcb(%rsp)
jne 0x12773af
leaq 0x38(%rsp), %rax
movq %rax, 0xe0(%rsp)
movq 0xe0(%rsp), %rax
movq %rax, 0x140(%rsp)
movq 0x140(%rsp), %rax
movq %rax, 0x18(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1277355
movq 0x18(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x13c(%rsp) # imm = 0xFFFFFFFF
movl 0x13c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x138(%rsp)
cmpl $0x1, 0x138(%rsp)
jne 0x1277355
movq 0x18(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1277329
movq 0x18(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1277327
jmp 0x1277353
movq 0x18(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x160(%rsp)
cmpq $0x0, 0x160(%rsp)
je 0x1277351
movq 0x160(%rsp), %rdi
callq 0x5f480
jmp 0x1277353
jmp 0x1277355
movq 0x18(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12773ad
movq %rax, %rdi
callq 0x678a0
jmp 0x12773af
leaq 0x38(%rsp), %rax
movq %rax, 0xe8(%rsp)
movq 0xe8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8(%rsp)
leaq 0x38(%rsp), %rax
movq %rax, 0xc0(%rsp)
movq 0xc0(%rsp), %rax
movq %rax, 0x150(%rsp)
movq 0x150(%rsp), %rax
movq %rax, 0x10(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1277482
movq 0x10(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x14c(%rsp) # imm = 0xFFFFFFFF
movl 0x14c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x148(%rsp)
cmpl $0x1, 0x148(%rsp)
jne 0x1277482
movq 0x10(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1277456
movq 0x10(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1277454
jmp 0x1277480
movq 0x10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x158(%rsp)
cmpq $0x0, 0x158(%rsp)
je 0x127747e
movq 0x158(%rsp), %rdi
callq 0x5f480
jmp 0x1277480
jmp 0x1277482
movq 0x10(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12774da
movq %rax, %rdi
callq 0x678a0
movq 0x8(%rsp), %rax
movq %rax, 0x80(%rsp)
movl $0x0, 0x34(%rsp)
movl 0x34(%rsp), %eax
cmpl 0x90(%rsp), %eax
jge 0x1277544
movq 0x80(%rsp), %rsi
movslq 0x34(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0xa7(%rsp), %rdi
leaq 0xb4(%rsp), %rdx
callq 0x1278120
movq 0x80(%rsp), %rax
movslq 0x34(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x34(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x34(%rsp)
jmp 0x12774ef
jmp 0x1277546
movl 0x8c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x8c(%rsp)
jmp 0x12770d1
xorl %eax, %eax
addq $0x168, %rsp # imm = 0x168
retq
nopw %cs:(%rax,%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/binaryop.cpp
|
2,112,815
|
int ncnn::binary_op_scalar_inplace<ncnn::binary_op_rsub>(ncnn::Mat&, float, ncnn::Option const&)
|
static int binary_op_scalar_inplace(Mat& a, float b, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int size = w * h * d;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
float* ptr = a.channel(q);
for (int i = 0; i < size; i++)
{
ptr[i] = op(ptr[i], b);
}
}
return 0;
}
|
subq $0x168, %rsp # imm = 0x168
movq %rdi, 0xb8(%rsp)
movss %xmm0, 0xb4(%rsp)
movq %rsi, 0xa8(%rsp)
movq 0xb8(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0xa0(%rsp)
movq 0xb8(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x9c(%rsp)
movq 0xb8(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x98(%rsp)
movq 0xb8(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x94(%rsp)
movl 0xa0(%rsp), %eax
imull 0x9c(%rsp), %eax
imull 0x98(%rsp), %eax
movl %eax, 0x90(%rsp)
movl $0x0, 0x8c(%rsp)
movl 0x8c(%rsp), %eax
cmpl 0x94(%rsp), %eax
jge 0x1277a8c
movq 0xb8(%rsp), %rcx
movl 0x8c(%rsp), %eax
leaq 0x38(%rsp), %rdx
movq %rdx, 0xd8(%rsp)
movq %rcx, 0xd0(%rsp)
movl %eax, 0xcc(%rsp)
movq 0xd0(%rsp), %rax
movq %rax, 0x28(%rsp)
movb $0x0, 0xcb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0xcc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x38(%rsp), %r10
movq %r10, 0x120(%rsp)
movl %r9d, 0x11c(%rsp)
movl %r8d, 0x118(%rsp)
movl %edi, 0x114(%rsp)
movq %rsi, 0x108(%rsp)
movq %rdx, 0x100(%rsp)
movl %ecx, 0xfc(%rsp)
movq %rax, 0xf0(%rsp)
movq 0x120(%rsp), %rcx
movq %rcx, 0x20(%rsp)
movq 0x108(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x100(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0xfc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0xf0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x11c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x118(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x114(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x130(%rsp)
movl $0x10, 0x12c(%rsp)
movq 0x130(%rsp), %rax
movslq 0x12c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x12c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x28(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x60(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12777b9
movq 0x28(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x78(%rsp)
movb $0x1, 0xcb(%rsp)
testb $0x1, 0xcb(%rsp)
jne 0x12778df
leaq 0x38(%rsp), %rax
movq %rax, 0xe0(%rsp)
movq 0xe0(%rsp), %rax
movq %rax, 0x140(%rsp)
movq 0x140(%rsp), %rax
movq %rax, 0x18(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1277885
movq 0x18(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x13c(%rsp) # imm = 0xFFFFFFFF
movl 0x13c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x138(%rsp)
cmpl $0x1, 0x138(%rsp)
jne 0x1277885
movq 0x18(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1277859
movq 0x18(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1277857
jmp 0x1277883
movq 0x18(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x160(%rsp)
cmpq $0x0, 0x160(%rsp)
je 0x1277881
movq 0x160(%rsp), %rdi
callq 0x5f480
jmp 0x1277883
jmp 0x1277885
movq 0x18(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12778dd
movq %rax, %rdi
callq 0x678a0
jmp 0x12778df
leaq 0x38(%rsp), %rax
movq %rax, 0xe8(%rsp)
movq 0xe8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8(%rsp)
leaq 0x38(%rsp), %rax
movq %rax, 0xc0(%rsp)
movq 0xc0(%rsp), %rax
movq %rax, 0x150(%rsp)
movq 0x150(%rsp), %rax
movq %rax, 0x10(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12779b2
movq 0x10(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x14c(%rsp) # imm = 0xFFFFFFFF
movl 0x14c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x148(%rsp)
cmpl $0x1, 0x148(%rsp)
jne 0x12779b2
movq 0x10(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1277986
movq 0x10(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1277984
jmp 0x12779b0
movq 0x10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x158(%rsp)
cmpq $0x0, 0x158(%rsp)
je 0x12779ae
movq 0x158(%rsp), %rdi
callq 0x5f480
jmp 0x12779b0
jmp 0x12779b2
movq 0x10(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1277a0a
movq %rax, %rdi
callq 0x678a0
movq 0x8(%rsp), %rax
movq %rax, 0x80(%rsp)
movl $0x0, 0x34(%rsp)
movl 0x34(%rsp), %eax
cmpl 0x90(%rsp), %eax
jge 0x1277a74
movq 0x80(%rsp), %rsi
movslq 0x34(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0xa7(%rsp), %rdi
leaq 0xb4(%rsp), %rdx
callq 0x1278150
movq 0x80(%rsp), %rax
movslq 0x34(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x34(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x34(%rsp)
jmp 0x1277a1f
jmp 0x1277a76
movl 0x8c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x8c(%rsp)
jmp 0x1277601
xorl %eax, %eax
addq $0x168, %rsp # imm = 0x168
retq
nopw %cs:(%rax,%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/binaryop.cpp
|
2,112,816
|
int ncnn::binary_op_scalar_inplace<ncnn::binary_op_rdiv>(ncnn::Mat&, float, ncnn::Option const&)
|
static int binary_op_scalar_inplace(Mat& a, float b, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int size = w * h * d;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
float* ptr = a.channel(q);
for (int i = 0; i < size; i++)
{
ptr[i] = op(ptr[i], b);
}
}
return 0;
}
|
subq $0x168, %rsp # imm = 0x168
movq %rdi, 0xb8(%rsp)
movss %xmm0, 0xb4(%rsp)
movq %rsi, 0xa8(%rsp)
movq 0xb8(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0xa0(%rsp)
movq 0xb8(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x9c(%rsp)
movq 0xb8(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x98(%rsp)
movq 0xb8(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x94(%rsp)
movl 0xa0(%rsp), %eax
imull 0x9c(%rsp), %eax
imull 0x98(%rsp), %eax
movl %eax, 0x90(%rsp)
movl $0x0, 0x8c(%rsp)
movl 0x8c(%rsp), %eax
cmpl 0x94(%rsp), %eax
jge 0x1277fbc
movq 0xb8(%rsp), %rcx
movl 0x8c(%rsp), %eax
leaq 0x38(%rsp), %rdx
movq %rdx, 0xd8(%rsp)
movq %rcx, 0xd0(%rsp)
movl %eax, 0xcc(%rsp)
movq 0xd0(%rsp), %rax
movq %rax, 0x28(%rsp)
movb $0x0, 0xcb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0xcc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x38(%rsp), %r10
movq %r10, 0x120(%rsp)
movl %r9d, 0x11c(%rsp)
movl %r8d, 0x118(%rsp)
movl %edi, 0x114(%rsp)
movq %rsi, 0x108(%rsp)
movq %rdx, 0x100(%rsp)
movl %ecx, 0xfc(%rsp)
movq %rax, 0xf0(%rsp)
movq 0x120(%rsp), %rcx
movq %rcx, 0x20(%rsp)
movq 0x108(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x100(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0xfc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0xf0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x11c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x118(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x114(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x130(%rsp)
movl $0x10, 0x12c(%rsp)
movq 0x130(%rsp), %rax
movslq 0x12c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x12c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x28(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x60(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1277ce9
movq 0x28(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x78(%rsp)
movb $0x1, 0xcb(%rsp)
testb $0x1, 0xcb(%rsp)
jne 0x1277e0f
leaq 0x38(%rsp), %rax
movq %rax, 0xe0(%rsp)
movq 0xe0(%rsp), %rax
movq %rax, 0x140(%rsp)
movq 0x140(%rsp), %rax
movq %rax, 0x18(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1277db5
movq 0x18(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x13c(%rsp) # imm = 0xFFFFFFFF
movl 0x13c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x138(%rsp)
cmpl $0x1, 0x138(%rsp)
jne 0x1277db5
movq 0x18(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1277d89
movq 0x18(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1277d87
jmp 0x1277db3
movq 0x18(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x160(%rsp)
cmpq $0x0, 0x160(%rsp)
je 0x1277db1
movq 0x160(%rsp), %rdi
callq 0x5f480
jmp 0x1277db3
jmp 0x1277db5
movq 0x18(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1277e0d
movq %rax, %rdi
callq 0x678a0
jmp 0x1277e0f
leaq 0x38(%rsp), %rax
movq %rax, 0xe8(%rsp)
movq 0xe8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8(%rsp)
leaq 0x38(%rsp), %rax
movq %rax, 0xc0(%rsp)
movq 0xc0(%rsp), %rax
movq %rax, 0x150(%rsp)
movq 0x150(%rsp), %rax
movq %rax, 0x10(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1277ee2
movq 0x10(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x14c(%rsp) # imm = 0xFFFFFFFF
movl 0x14c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x148(%rsp)
cmpl $0x1, 0x148(%rsp)
jne 0x1277ee2
movq 0x10(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1277eb6
movq 0x10(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1277eb4
jmp 0x1277ee0
movq 0x10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x158(%rsp)
cmpq $0x0, 0x158(%rsp)
je 0x1277ede
movq 0x158(%rsp), %rdi
callq 0x5f480
jmp 0x1277ee0
jmp 0x1277ee2
movq 0x10(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1277f3a
movq %rax, %rdi
callq 0x678a0
movq 0x8(%rsp), %rax
movq %rax, 0x80(%rsp)
movl $0x0, 0x34(%rsp)
movl 0x34(%rsp), %eax
cmpl 0x90(%rsp), %eax
jge 0x1277fa4
movq 0x80(%rsp), %rsi
movslq 0x34(%rsp), %rax
shlq $0x2, %rax
addq %rax, %rsi
leaq 0xa7(%rsp), %rdi
leaq 0xb4(%rsp), %rdx
callq 0x1278180
movq 0x80(%rsp), %rax
movslq 0x34(%rsp), %rcx
movss %xmm0, (%rax,%rcx,4)
movl 0x34(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x34(%rsp)
jmp 0x1277f4f
jmp 0x1277fa6
movl 0x8c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x8c(%rsp)
jmp 0x1277b31
xorl %eax, %eax
addq $0x168, %rsp # imm = 0x168
retq
nopw %cs:(%rax,%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/binaryop.cpp
|
2,112,817
|
ncnn::binary_op_add::operator()(float const&, float const&) const
|
float operator()(const float& x, const float& y) const
{
return x + y;
}
|
movq %rdi, -0x8(%rsp)
movq %rsi, -0x10(%rsp)
movq %rdx, -0x18(%rsp)
movq -0x10(%rsp), %rax
movss (%rax), %xmm0
movq -0x18(%rsp), %rax
addss (%rax), %xmm0
retq
nopw %cs:(%rax,%rax)
nopl (%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/binaryop.cpp
|
2,112,818
|
ncnn::binary_op_sub::operator()(float const&, float const&) const
|
float operator()(const float& x, const float& y) const
{
return x - y;
}
|
movq %rdi, -0x8(%rsp)
movq %rsi, -0x10(%rsp)
movq %rdx, -0x18(%rsp)
movq -0x10(%rsp), %rax
movss (%rax), %xmm0
movq -0x18(%rsp), %rax
subss (%rax), %xmm0
retq
nopw %cs:(%rax,%rax)
nopl (%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/binaryop.cpp
|
2,112,819
|
ncnn::binary_op_mul::operator()(float const&, float const&) const
|
float operator()(const float& x, const float& y) const
{
return x * y;
}
|
movq %rdi, -0x8(%rsp)
movq %rsi, -0x10(%rsp)
movq %rdx, -0x18(%rsp)
movq -0x10(%rsp), %rax
movss (%rax), %xmm0
movq -0x18(%rsp), %rax
mulss (%rax), %xmm0
retq
nopw %cs:(%rax,%rax)
nopl (%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/binaryop.cpp
|
2,112,820
|
ncnn::binary_op_div::operator()(float const&, float const&) const
|
float operator()(const float& x, const float& y) const
{
return x / y;
}
|
movq %rdi, -0x8(%rsp)
movq %rsi, -0x10(%rsp)
movq %rdx, -0x18(%rsp)
movq -0x10(%rsp), %rax
movss (%rax), %xmm0
movq -0x18(%rsp), %rax
divss (%rax), %xmm0
retq
nopw %cs:(%rax,%rax)
nopl (%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/binaryop.cpp
|
2,112,821
|
ncnn::binary_op_max::operator()(float const&, float const&) const
|
float operator()(const float& x, const float& y) const
{
return std::max(x, y);
}
|
subq $0x18, %rsp
movq %rdi, 0x10(%rsp)
movq %rsi, 0x8(%rsp)
movq %rdx, (%rsp)
movq 0x8(%rsp), %rdi
movq (%rsp), %rsi
callq 0x670b0
movss (%rax), %xmm0
addq $0x18, %rsp
retq
nopl (%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/binaryop.cpp
|
2,112,822
|
ncnn::binary_op_min::operator()(float const&, float const&) const
|
float operator()(const float& x, const float& y) const
{
return std::min(x, y);
}
|
subq $0x18, %rsp
movq %rdi, 0x10(%rsp)
movq %rsi, 0x8(%rsp)
movq %rdx, (%rsp)
movq 0x8(%rsp), %rdi
movq (%rsp), %rsi
callq 0x670f0
movss (%rax), %xmm0
addq $0x18, %rsp
retq
nopl (%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/binaryop.cpp
|
2,112,823
|
ncnn::binary_op_pow::operator()(float const&, float const&) const
|
float operator()(const float& x, const float& y) const
{
return (float)pow(x, y);
}
|
subq $0x18, %rsp
movq %rdi, 0x10(%rsp)
movq %rsi, 0x8(%rsp)
movq %rdx, (%rsp)
movq 0x8(%rsp), %rax
movss (%rax), %xmm0
movq (%rsp), %rax
movss (%rax), %xmm1
callq 0xa14a10
addq $0x18, %rsp
retq
nopl (%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/binaryop.cpp
|
2,112,824
|
ncnn::binary_op_rsub::operator()(float const&, float const&) const
|
float operator()(const float& x, const float& y) const
{
return y - x;
}
|
movq %rdi, -0x8(%rsp)
movq %rsi, -0x10(%rsp)
movq %rdx, -0x18(%rsp)
movq -0x18(%rsp), %rax
movss (%rax), %xmm0
movq -0x10(%rsp), %rax
subss (%rax), %xmm0
retq
nopw %cs:(%rax,%rax)
nopl (%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/binaryop.cpp
|
2,112,825
|
ncnn::binary_op_rdiv::operator()(float const&, float const&) const
|
float operator()(const float& x, const float& y) const
{
return y / x;
}
|
movq %rdi, -0x8(%rsp)
movq %rsi, -0x10(%rsp)
movq %rdx, -0x18(%rsp)
movq -0x18(%rsp), %rax
movss (%rax), %xmm0
movq -0x10(%rsp), %rax
divss (%rax), %xmm0
retq
nopw %cs:(%rax,%rax)
nopl (%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/binaryop.cpp
|
2,112,826
|
ncnn::BinaryOp_x86::BinaryOp_x86()
|
BinaryOp_x86::BinaryOp_x86()
{
#if __SSE2__
support_packing = true;
#endif // __SSE2__
}
|
movq %rdi, -0x8(%rsp)
movq %rsi, -0x10(%rsp)
movq -0x8(%rsp), %rax
movq -0x10(%rsp), %rcx
movq (%rcx), %rdx
movq %rdx, (%rax)
movq 0x8(%rcx), %rdx
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
movq %rdx, (%rax,%rcx)
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
movb $0x1, 0xb(%rax,%rcx)
retq
nopw %cs:(%rax,%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,827
|
ncnn::BinaryOp_x86::BinaryOp_x86()
|
BinaryOp_x86::BinaryOp_x86()
{
#if __SSE2__
support_packing = true;
#endif // __SSE2__
}
|
subq $0x18, %rsp
movq %rdi, 0x10(%rsp)
movq 0x10(%rsp), %rdi
movq %rdi, 0x8(%rsp)
addq $0x8, %rdi
callq 0x11edea0
movq 0x8(%rsp), %rax
leaq 0xc59378(%rip), %rcx # 0x1ed1590
addq $0x18, %rcx
movq %rcx, (%rax)
leaq 0xc5936a(%rip), %rcx # 0x1ed1590
addq $0x90, %rcx
movq %rcx, 0x8(%rax)
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
movb $0x1, 0xb(%rax,%rcx)
addq $0x18, %rsp
retq
nopw %cs:(%rax,%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,828
|
ncnn::BinaryOp_x86::forward(std::vector<ncnn::Mat, std::allocator<ncnn::Mat>> const&, std::vector<ncnn::Mat, std::allocator<ncnn::Mat>>&, ncnn::Option const&) const
|
int BinaryOp_x86::forward(const std::vector<Mat>& bottom_blobs, std::vector<Mat>& top_blobs, const Option& opt) const
{
#if __SSE2__
using namespace BinaryOp_x86_functor;
const Mat& bottom_blob = bottom_blobs[0];
const Mat& bottom_blob1 = bottom_blobs[1];
Mat& top_blob = top_blobs[0];
int elempack = bottom_blob.elempack;
int elempack1 = bottom_blob1.elempack;
#if __AVX__
#if __AVX512F__
if (elempack == 16 || elempack1 == 16)
{
if (op_type == Operation_ADD)
return binary_op_pack16<binary_op_add>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_SUB)
return binary_op_pack16<binary_op_sub>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_MUL)
return binary_op_pack16<binary_op_mul>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_DIV)
return binary_op_pack16<binary_op_div>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_MAX)
return binary_op_pack16<binary_op_max>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_MIN)
return binary_op_pack16<binary_op_min>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_POW)
return binary_op_pack16<binary_op_pow>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_RSUB)
return binary_op_pack16<binary_op_sub>(bottom_blob1, bottom_blob, top_blob, opt);
if (op_type == Operation_RDIV)
return binary_op_pack16<binary_op_div>(bottom_blob1, bottom_blob, top_blob, opt);
}
#endif // __AVX512F__
if (elempack == 8 || elempack1 == 8)
{
if (op_type == Operation_ADD)
return binary_op_pack8<binary_op_add>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_SUB)
return binary_op_pack8<binary_op_sub>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_MUL)
return binary_op_pack8<binary_op_mul>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_DIV)
return binary_op_pack8<binary_op_div>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_MAX)
return binary_op_pack8<binary_op_max>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_MIN)
return binary_op_pack8<binary_op_min>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_POW)
return binary_op_pack8<binary_op_pow>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_RSUB)
return binary_op_pack8<binary_op_sub>(bottom_blob1, bottom_blob, top_blob, opt);
if (op_type == Operation_RDIV)
return binary_op_pack8<binary_op_div>(bottom_blob1, bottom_blob, top_blob, opt);
}
#endif // __AVX__
if (elempack == 4 || elempack1 == 4)
{
if (op_type == Operation_ADD)
return binary_op_pack4<binary_op_add>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_SUB)
return binary_op_pack4<binary_op_sub>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_MUL)
return binary_op_pack4<binary_op_mul>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_DIV)
return binary_op_pack4<binary_op_div>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_MAX)
return binary_op_pack4<binary_op_max>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_MIN)
return binary_op_pack4<binary_op_min>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_POW)
return binary_op_pack4<binary_op_pow>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_RSUB)
return binary_op_pack4<binary_op_sub>(bottom_blob1, bottom_blob, top_blob, opt);
if (op_type == Operation_RDIV)
return binary_op_pack4<binary_op_div>(bottom_blob1, bottom_blob, top_blob, opt);
}
#endif // __SSE2__
return BinaryOp::forward(bottom_blobs, top_blobs, opt);
}
|
subq $0x58, %rsp
movq %rdi, 0x48(%rsp)
movq %rsi, 0x40(%rsp)
movq %rdx, 0x38(%rsp)
movq %rcx, 0x30(%rsp)
movq 0x48(%rsp), %rax
movq %rax, 0x8(%rsp)
movq 0x40(%rsp), %rdi
xorl %eax, %eax
movl %eax, %esi
callq 0xbf050
movq %rax, 0x28(%rsp)
movq 0x40(%rsp), %rdi
movl $0x1, %esi
callq 0xbf050
movq %rax, 0x20(%rsp)
movq 0x38(%rsp), %rdi
xorl %eax, %eax
movl %eax, %esi
callq 0xa2b00
movq %rax, 0x18(%rsp)
movq 0x28(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x14(%rsp)
movq 0x20(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x10(%rsp)
cmpl $0x4, 0x14(%rsp)
je 0x12782d6
cmpl $0x4, 0x10(%rsp)
jne 0x12784ca
movq 0x8(%rsp), %rax
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x0, 0xd0(%rax,%rcx)
jne 0x127830e
movq 0x28(%rsp), %rdi
movq 0x20(%rsp), %rsi
movq 0x18(%rsp), %rdx
movq 0x30(%rsp), %rcx
callq 0x1278500
movl %eax, 0x54(%rsp)
jmp 0x12784ee
movq 0x8(%rsp), %rax
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x1, 0xd0(%rax,%rcx)
jne 0x1278346
movq 0x28(%rsp), %rdi
movq 0x20(%rsp), %rsi
movq 0x18(%rsp), %rdx
movq 0x30(%rsp), %rcx
callq 0x1287710
movl %eax, 0x54(%rsp)
jmp 0x12784ee
movq 0x8(%rsp), %rax
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x2, 0xd0(%rax,%rcx)
jne 0x127837e
movq 0x28(%rsp), %rdi
movq 0x20(%rsp), %rsi
movq 0x18(%rsp), %rdx
movq 0x30(%rsp), %rcx
callq 0x1296920
movl %eax, 0x54(%rsp)
jmp 0x12784ee
movq 0x8(%rsp), %rax
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x3, 0xd0(%rax,%rcx)
jne 0x12783b6
movq 0x28(%rsp), %rdi
movq 0x20(%rsp), %rsi
movq 0x18(%rsp), %rdx
movq 0x30(%rsp), %rcx
callq 0x12a5b30
movl %eax, 0x54(%rsp)
jmp 0x12784ee
movq 0x8(%rsp), %rax
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x4, 0xd0(%rax,%rcx)
jne 0x12783ee
movq 0x28(%rsp), %rdi
movq 0x20(%rsp), %rsi
movq 0x18(%rsp), %rdx
movq 0x30(%rsp), %rcx
callq 0x12b4d40
movl %eax, 0x54(%rsp)
jmp 0x12784ee
movq 0x8(%rsp), %rax
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x5, 0xd0(%rax,%rcx)
jne 0x1278426
movq 0x28(%rsp), %rdi
movq 0x20(%rsp), %rsi
movq 0x18(%rsp), %rdx
movq 0x30(%rsp), %rcx
callq 0x12c3f50
movl %eax, 0x54(%rsp)
jmp 0x12784ee
movq 0x8(%rsp), %rax
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x6, 0xd0(%rax,%rcx)
jne 0x127845e
movq 0x28(%rsp), %rdi
movq 0x20(%rsp), %rsi
movq 0x18(%rsp), %rdx
movq 0x30(%rsp), %rcx
callq 0x12d3160
movl %eax, 0x54(%rsp)
jmp 0x12784ee
movq 0x8(%rsp), %rax
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x7, 0xd0(%rax,%rcx)
jne 0x1278493
movq 0x20(%rsp), %rdi
movq 0x28(%rsp), %rsi
movq 0x18(%rsp), %rdx
movq 0x30(%rsp), %rcx
callq 0x1287710
movl %eax, 0x54(%rsp)
jmp 0x12784ee
movq 0x8(%rsp), %rax
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x8, 0xd0(%rax,%rcx)
jne 0x12784c8
movq 0x20(%rsp), %rdi
movq 0x28(%rsp), %rsi
movq 0x18(%rsp), %rdx
movq 0x30(%rsp), %rcx
callq 0x12a5b30
movl %eax, 0x54(%rsp)
jmp 0x12784ee
jmp 0x12784ca
movq 0x8(%rsp), %rdi
movq (%rdi), %rax
addq -0x18(%rax), %rdi
movq 0x40(%rsp), %rsi
movq 0x38(%rsp), %rdx
movq 0x30(%rsp), %rcx
callq 0x11edf70
movl %eax, 0x54(%rsp)
movl 0x54(%rsp), %eax
addq $0x58, %rsp
retq
nopw (%rax,%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,829
|
int ncnn::binary_op_pack4<ncnn::BinaryOp_x86_functor::binary_op_add>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op_pack4(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int size = w * h * d;
size_t elemsize = a.elemsize;
int elempack = a.elempack;
int w1 = b.w;
int h1 = b.h;
int d1 = b.d;
int channels1 = b.c;
int size1 = w1 * h1 * d1;
size_t elemsize1 = b.elemsize;
int elempack1 = b.elempack;
if (a.dims == 4)
{
if (b.dims == 4)
{
// type 29
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
c.create(w, h, d, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 3)
{
// type 28
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
for (int y = 0; y < h; y++)
{
__m128 _b0 = _mm_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
ptr1 += 4;
}
}
}
return 0;
}
if (b.dims == 2)
{
// type 27
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
__m128 _b0 = _mm_loadu_ps(ptr1);
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
}
ptr1 += 4;
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1 && elempack1 == 1)
{
// type 25
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 26
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
__m128 _b0 = _mm_loadu_ps((const float*)b + q * 4);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
}
return 0;
}
}
else if (a.dims == 3)
{
if (b.dims == 4)
{
// type 23
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
for (int y = 0; y < h1; y++)
{
__m128 _a0 = _mm_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m128 _p = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
ptr += 4;
}
}
}
return 0;
}
if (b.dims == 3)
{
if (w1 == 1 && h1 == 1 && channels1 == channels)
{
// special type 1
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
float* outptr = c.channel(q);
const float* b0 = b.channel(q);
__m128 _b0 = _mm_loadu_ps(b0);
for (int i = 0; i < size; i++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
}
return 0;
}
if (w1 == w && h1 == h && channels1 == 1 && elempack1 == 1)
{
// special type 2
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b;
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _p1 = _mm_set1_ps(*ptr1);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
ptr1 += 1;
outptr += 4;
}
}
return 0;
}
if (w == 1 && h == 1 && channels1 == channels)
{
// special type 3
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* a0 = a.channel(q);
float* outptr = c.channel(q);
const float* ptr1 = b.channel(q);
__m128 _a0 = _mm_loadu_ps(a0);
for (int i = 0; i < size1; i++)
{
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
}
return 0;
}
if (w1 == w && h1 == h && channels == 1 && elempack == 1)
{
// special type 4
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a;
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m128 _p = _mm_set1_ps(*ptr);
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_storeu_ps(outptr, _outp);
ptr += 1;
ptr1 += 4;
outptr += 4;
}
}
return 0;
}
if (w != 1 && w1 == 1 && h1 == h && channels1 == channels)
{
// special type 5
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
__m128 _p1 = _mm_loadu_ps(ptr1 + y * 4);
for (int x = 0; x < w; x++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
}
}
return 0;
}
if (w1 == w && h != 1 && h1 == 1 && channels1 == channels)
{
// special type 6
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _p1 = _mm_loadu_ps(ptr1 + x * 4);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
}
}
return 0;
}
if (w1 != 1 && w == 1 && h1 == h && channels1 == channels)
{
// special type 7
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
__m128 _p = _mm_loadu_ps(ptr + y * 4);
for (int x = 0; x < w1; x++)
{
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
}
}
return 0;
}
if (w1 == w && h1 != 1 && h == 1 && channels1 == channels)
{
// special type 8
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
__m128 _p = _mm_loadu_ps(ptr + x * 4);
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
}
}
return 0;
}
// type 19
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 18
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row<const float>(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
__m128 _b0 = _mm_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
ptr1 += 4;
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1 && elempack1 == 1)
{
// type 16
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 17
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
__m128 _b0 = _mm_loadu_ps((const float*)b + q * 4);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
}
return 0;
}
}
else if (a.dims == 2)
{
if (b.dims == 4)
{
// type 22
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
__m128 _a0 = _mm_loadu_ps(ptr);
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
__m128 _p = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
}
ptr += 4;
}
}
return 0;
}
if (b.dims == 3)
{
// type 14
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row<const float>(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
__m128 _a0 = _mm_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
ptr += 4;
}
}
return 0;
}
c.create(w, h, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 13
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
if (b.dims == 1)
{
c.create(w, h, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1 && elempack1 == 1)
{
// type 11
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 12
const float* ptr = a;
const float* ptr1 = b;
float* outptr = c;
for (int y = 0; y < h; y++)
{
__m128 _b0 = _mm_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
ptr1 += 4;
}
return 0;
}
}
else if (a.dims == 1)
{
if (a.w == 1 && elempack == 1)
{
// type 2 3 4 20
return binary_op_2_3_4_20<Op>(a, b, c, opt);
}
if (b.dims == 4)
{
// type 21
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
__m128 _a0 = _mm_loadu_ps((const float*)a + q * 4);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
}
return 0;
}
if (b.dims == 3)
{
// type 9
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
__m128 _a0 = _mm_loadu_ps((const float*)a + q * 4);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
}
return 0;
}
if (b.dims == 2)
{
// type 8
c.create(w1, h1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
const float* ptr = a;
const float* ptr1 = b;
float* outptr = c;
for (int y = 0; y < h1; y++)
{
__m128 _a0 = _mm_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
ptr += 4;
}
return 0;
}
if (b.dims == 1)
{
c.create(w, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1 && elempack1 == 1)
{
// type 6
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 7
binary_op_7_13_19_29<Op>(a, b, c, opt);
}
}
return 0;
}
|
subq $0x44e8, %rsp # imm = 0x44E8
movq %rdi, 0x1cc8(%rsp)
movq %rsi, 0x1cc0(%rsp)
movq %rdx, 0x1cb8(%rsp)
movq %rcx, 0x1cb0(%rsp)
movq 0x1cc8(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x1ca8(%rsp)
movq 0x1cc8(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x1ca4(%rsp)
movq 0x1cc8(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x1ca0(%rsp)
movq 0x1cc8(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x1c9c(%rsp)
movl 0x1ca8(%rsp), %eax
imull 0x1ca4(%rsp), %eax
imull 0x1ca0(%rsp), %eax
movl %eax, 0x1c98(%rsp)
movq 0x1cc8(%rsp), %rax
movq 0x10(%rax), %rax
movq %rax, 0x1c90(%rsp)
movq 0x1cc8(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x1c8c(%rsp)
movq 0x1cc0(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x1c88(%rsp)
movq 0x1cc0(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x1c84(%rsp)
movq 0x1cc0(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x1c80(%rsp)
movq 0x1cc0(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x1c7c(%rsp)
movl 0x1c88(%rsp), %eax
imull 0x1c84(%rsp), %eax
imull 0x1c80(%rsp), %eax
movl %eax, 0x1c78(%rsp)
movq 0x1cc0(%rsp), %rax
movq 0x10(%rax), %rax
movq %rax, 0x1c70(%rsp)
movq 0x1cc0(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x1c6c(%rsp)
movq 0x1cc8(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x127ab32
movq 0x1cc0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1278690
movq 0x1cc8(%rsp), %rdi
movq 0x1cc0(%rsp), %rsi
movq 0x1cb8(%rsp), %rdx
movq 0x1cb0(%rsp), %rcx
callq 0x12e5e00
movl %eax, 0x1cd4(%rsp)
jmp 0x1287700
movq 0x1cb8(%rsp), %rdi
movl 0x1ca8(%rsp), %esi
movl 0x1ca4(%rsp), %edx
movl 0x1ca0(%rsp), %ecx
movl 0x1c9c(%rsp), %r8d
movq 0x1c90(%rsp), %r9
movl 0x1c8c(%rsp), %r10d
movq 0x1cb0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x1cb8(%rsp), %rax
movq %rax, 0x1d68(%rsp)
movq 0x1d68(%rsp), %rcx
movq %rcx, 0x810(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x81f(%rsp)
je 0x1278740
movq 0x810(%rsp), %rax
movq %rax, 0x2b90(%rsp)
movq 0x2b90(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x81f(%rsp)
movb 0x81f(%rsp), %al
testb $0x1, %al
jne 0x127874d
jmp 0x127875d
movl $0xffffff9c, 0x1cd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1287700
movq 0x1cc0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1279618
movl $0x0, 0x1c68(%rsp)
movl 0x1c68(%rsp), %eax
cmpl 0x1c9c(%rsp), %eax
jge 0x1279608
movq 0x1cc8(%rsp), %rcx
movl 0x1c68(%rsp), %eax
leaq 0x1c18(%rsp), %rdx
movq %rdx, 0x1fd8(%rsp)
movq %rcx, 0x1fd0(%rsp)
movl %eax, 0x1fcc(%rsp)
movq 0x1fd0(%rsp), %rax
movq %rax, 0x808(%rsp)
movb $0x0, 0x1fcb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1fcc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1c18(%rsp), %r10
movq %r10, 0x3048(%rsp)
movl %r9d, 0x3044(%rsp)
movl %r8d, 0x3040(%rsp)
movl %edi, 0x303c(%rsp)
movq %rsi, 0x3030(%rsp)
movq %rdx, 0x3028(%rsp)
movl %ecx, 0x3024(%rsp)
movq %rax, 0x3018(%rsp)
movq 0x3048(%rsp), %rcx
movq %rcx, 0x800(%rsp)
movq 0x3030(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3028(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3024(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3018(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3044(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3040(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x303c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3760(%rsp)
movl $0x10, 0x375c(%rsp)
movq 0x3760(%rsp), %rax
movslq 0x375c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x375c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x808(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1c40(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x127894a
movq 0x808(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1c58(%rsp)
movb $0x1, 0x1fcb(%rsp)
testb $0x1, 0x1fcb(%rsp)
jne 0x1278a85
leaq 0x1c18(%rsp), %rax
movq %rax, 0x2100(%rsp)
movq 0x2100(%rsp), %rax
movq %rax, 0x40c0(%rsp)
movq 0x40c0(%rsp), %rax
movq %rax, 0x7f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1278a28
movq 0x7f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40bc(%rsp) # imm = 0xFFFFFFFF
movl 0x40bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40b8(%rsp)
cmpl $0x1, 0x40b8(%rsp)
jne 0x1278a28
movq 0x7f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12789f9
movq 0x7f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12789f7
jmp 0x1278a26
movq 0x7f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x40c8(%rsp)
cmpq $0x0, 0x40c8(%rsp)
je 0x1278a24
movq 0x40c8(%rsp), %rdi
callq 0x5f480
jmp 0x1278a26
jmp 0x1278a28
movq 0x7f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1278a83
movq %rax, %rdi
callq 0x678a0
jmp 0x1278a85
leaq 0x1c18(%rsp), %rax
movq %rax, 0x20f8(%rsp)
movq 0x20f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7f0(%rsp)
leaq 0x1c18(%rsp), %rax
movq %rax, 0x21d0(%rsp)
movq 0x21d0(%rsp), %rax
movq %rax, 0x3f20(%rsp)
movq 0x3f20(%rsp), %rax
movq %rax, 0x7e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1278b70
movq 0x7e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f1c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f1c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f18(%rsp)
cmpl $0x1, 0x3f18(%rsp)
jne 0x1278b70
movq 0x7e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1278b41
movq 0x7e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1278b3f
jmp 0x1278b6e
movq 0x7e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4198(%rsp)
cmpq $0x0, 0x4198(%rsp)
je 0x1278b6c
movq 0x4198(%rsp), %rdi
callq 0x5f480
jmp 0x1278b6e
jmp 0x1278b70
movq 0x7e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1278bcb
movq %rax, %rdi
callq 0x678a0
movq 0x7f0(%rsp), %rax
movq %rax, 0x1c60(%rsp)
movq 0x1cc0(%rsp), %rcx
movl 0x1c68(%rsp), %eax
leaq 0x1bb8(%rsp), %rdx
movq %rdx, 0x1fc0(%rsp)
movq %rcx, 0x1fb8(%rsp)
movl %eax, 0x1fb4(%rsp)
movq 0x1fb8(%rsp), %rax
movq %rax, 0x7e0(%rsp)
movb $0x0, 0x1fb3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1fb4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1bb8(%rsp), %r10
movq %r10, 0x3080(%rsp)
movl %r9d, 0x307c(%rsp)
movl %r8d, 0x3078(%rsp)
movl %edi, 0x3074(%rsp)
movq %rsi, 0x3068(%rsp)
movq %rdx, 0x3060(%rsp)
movl %ecx, 0x305c(%rsp)
movq %rax, 0x3050(%rsp)
movq 0x3080(%rsp), %rcx
movq %rcx, 0x7d8(%rsp)
movq 0x3068(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3060(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x305c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3050(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x307c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3078(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3074(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3750(%rsp)
movl $0x10, 0x374c(%rsp)
movq 0x3750(%rsp), %rax
movslq 0x374c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x374c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7e0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1be0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1278d97
movq 0x7e0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1bf8(%rsp)
movb $0x1, 0x1fb3(%rsp)
testb $0x1, 0x1fb3(%rsp)
jne 0x1278ed2
leaq 0x1bb8(%rsp), %rax
movq %rax, 0x2108(%rsp)
movq 0x2108(%rsp), %rax
movq %rax, 0x40b0(%rsp)
movq 0x40b0(%rsp), %rax
movq %rax, 0x7d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1278e75
movq 0x7d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40ac(%rsp) # imm = 0xFFFFFFFF
movl 0x40ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40a8(%rsp)
cmpl $0x1, 0x40a8(%rsp)
jne 0x1278e75
movq 0x7d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1278e46
movq 0x7d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1278e44
jmp 0x1278e73
movq 0x7d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x40d0(%rsp)
cmpq $0x0, 0x40d0(%rsp)
je 0x1278e71
movq 0x40d0(%rsp), %rdi
callq 0x5f480
jmp 0x1278e73
jmp 0x1278e75
movq 0x7d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1278ed0
movq %rax, %rdi
callq 0x678a0
jmp 0x1278ed2
leaq 0x1bb8(%rsp), %rax
movq %rax, 0x20f0(%rsp)
movq 0x20f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7c8(%rsp)
leaq 0x1bb8(%rsp), %rax
movq %rax, 0x21e0(%rsp)
movq 0x21e0(%rsp), %rax
movq %rax, 0x3f00(%rsp)
movq 0x3f00(%rsp), %rax
movq %rax, 0x7c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1278fbd
movq 0x7c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3efc(%rsp) # imm = 0xFFFFFFFF
movl 0x3efc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ef8(%rsp)
cmpl $0x1, 0x3ef8(%rsp)
jne 0x1278fbd
movq 0x7c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1278f8e
movq 0x7c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1278f8c
jmp 0x1278fbb
movq 0x7c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x41a8(%rsp)
cmpq $0x0, 0x41a8(%rsp)
je 0x1278fb9
movq 0x41a8(%rsp), %rdi
callq 0x5f480
jmp 0x1278fbb
jmp 0x1278fbd
movq 0x7c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1279018
movq %rax, %rdi
callq 0x678a0
movq 0x7c8(%rsp), %rax
movq %rax, 0x1c00(%rsp)
movq 0x1cb8(%rsp), %rcx
movl 0x1c68(%rsp), %eax
leaq 0x1b68(%rsp), %rdx
movq %rdx, 0x26c0(%rsp)
movq %rcx, 0x26b8(%rsp)
movl %eax, 0x26b4(%rsp)
movq 0x26b8(%rsp), %rax
movq %rax, 0x7b8(%rsp)
movb $0x0, 0x26b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x26b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1b68(%rsp), %r10
movq %r10, 0x2c58(%rsp)
movl %r9d, 0x2c54(%rsp)
movl %r8d, 0x2c50(%rsp)
movl %edi, 0x2c4c(%rsp)
movq %rsi, 0x2c40(%rsp)
movq %rdx, 0x2c38(%rsp)
movl %ecx, 0x2c34(%rsp)
movq %rax, 0x2c28(%rsp)
movq 0x2c58(%rsp), %rcx
movq %rcx, 0x7b0(%rsp)
movq 0x2c40(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2c38(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2c34(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2c28(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2c54(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2c50(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2c4c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3880(%rsp)
movl $0x10, 0x387c(%rsp)
movq 0x3880(%rsp), %rax
movslq 0x387c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x387c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7b8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1b90(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12791e4
movq 0x7b8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1ba8(%rsp)
movb $0x1, 0x26b3(%rsp)
testb $0x1, 0x26b3(%rsp)
jne 0x127931f
leaq 0x1b68(%rsp), %rax
movq %rax, 0x26c8(%rsp)
movq 0x26c8(%rsp), %rax
movq %rax, 0x3890(%rsp)
movq 0x3890(%rsp), %rax
movq %rax, 0x7a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12792c2
movq 0x7a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x388c(%rsp) # imm = 0xFFFFFFFF
movl 0x388c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3888(%rsp)
cmpl $0x1, 0x3888(%rsp)
jne 0x12792c2
movq 0x7a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1279293
movq 0x7a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1279291
jmp 0x12792c0
movq 0x7a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44e0(%rsp)
cmpq $0x0, 0x44e0(%rsp)
je 0x12792be
movq 0x44e0(%rsp), %rdi
callq 0x5f480
jmp 0x12792c0
jmp 0x12792c2
movq 0x7a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127931d
movq %rax, %rdi
callq 0x678a0
jmp 0x127931f
leaq 0x1b68(%rsp), %rax
movq %rax, 0x2768(%rsp)
movq 0x2768(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7a0(%rsp)
leaq 0x1b68(%rsp), %rax
movq %rax, 0x21f0(%rsp)
movq 0x21f0(%rsp), %rax
movq %rax, 0x3ee0(%rsp)
movq 0x3ee0(%rsp), %rax
movq %rax, 0x798(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x127940a
movq 0x798(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3edc(%rsp) # imm = 0xFFFFFFFF
movl 0x3edc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ed8(%rsp)
cmpl $0x1, 0x3ed8(%rsp)
jne 0x127940a
movq 0x798(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12793db
movq 0x798(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12793d9
jmp 0x1279408
movq 0x798(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x41b8(%rsp)
cmpq $0x0, 0x41b8(%rsp)
je 0x1279406
movq 0x41b8(%rsp), %rdi
callq 0x5f480
jmp 0x1279408
jmp 0x127940a
movq 0x798(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1279465
movq %rax, %rdi
callq 0x678a0
movq 0x7a0(%rsp), %rax
movq %rax, 0x1bb0(%rsp)
movl $0x0, 0x1b64(%rsp)
movl 0x1b64(%rsp), %eax
cmpl 0x1ca0(%rsp), %eax
jge 0x12795f0
movl $0x0, 0x1b60(%rsp)
movl 0x1b60(%rsp), %eax
cmpl 0x1ca4(%rsp), %eax
jge 0x12795d8
movq 0x1c00(%rsp), %rax
movq %rax, 0x2898(%rsp)
movq 0x2898(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1b50(%rsp)
movl $0x0, 0x1b4c(%rsp)
movl 0x1b4c(%rsp), %eax
cmpl 0x1ca8(%rsp), %eax
jge 0x12795ae
movq 0x1c60(%rsp), %rax
movq %rax, 0x2890(%rsp)
movq 0x2890(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1b30(%rsp)
leaq 0x1caf(%rsp), %rdi
leaq 0x1b30(%rsp), %rsi
leaq 0x1b50(%rsp), %rdx
callq 0x12f6aa0
movaps %xmm0, 0x1b20(%rsp)
movq 0x1bb0(%rsp), %rax
movaps 0x1b20(%rsp), %xmm0
movq %rax, 0x2b18(%rsp)
movaps %xmm0, 0x2b00(%rsp)
movaps 0x2b00(%rsp), %xmm0
movq 0x2b18(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1c60(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1c60(%rsp)
movq 0x1bb0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1bb0(%rsp)
movl 0x1b4c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b4c(%rsp)
jmp 0x12794e1
movq 0x1c00(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1c00(%rsp)
movl 0x1b60(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b60(%rsp)
jmp 0x127949f
jmp 0x12795da
movl 0x1b64(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b64(%rsp)
jmp 0x1279480
jmp 0x12795f2
movl 0x1c68(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c68(%rsp)
jmp 0x127877a
movl $0x0, 0x1cd4(%rsp)
jmp 0x1287700
movq 0x1cc0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x127a0cf
movl $0x0, 0x1b1c(%rsp)
movl 0x1b1c(%rsp), %eax
cmpl 0x1c9c(%rsp), %eax
jge 0x127a0bf
movq 0x1cc8(%rsp), %rcx
movl 0x1b1c(%rsp), %eax
leaq 0x1ac8(%rsp), %rdx
movq %rdx, 0x1fa8(%rsp)
movq %rcx, 0x1fa0(%rsp)
movl %eax, 0x1f9c(%rsp)
movq 0x1fa0(%rsp), %rax
movq %rax, 0x790(%rsp)
movb $0x0, 0x1f9b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1f9c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1ac8(%rsp), %r10
movq %r10, 0x30b8(%rsp)
movl %r9d, 0x30b4(%rsp)
movl %r8d, 0x30b0(%rsp)
movl %edi, 0x30ac(%rsp)
movq %rsi, 0x30a0(%rsp)
movq %rdx, 0x3098(%rsp)
movl %ecx, 0x3094(%rsp)
movq %rax, 0x3088(%rsp)
movq 0x30b8(%rsp), %rcx
movq %rcx, 0x788(%rsp)
movq 0x30a0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3098(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3094(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3088(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x30b4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x30b0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x30ac(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3740(%rsp)
movl $0x10, 0x373c(%rsp)
movq 0x3740(%rsp), %rax
movslq 0x373c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x373c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x790(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1af0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1279805
movq 0x790(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1b08(%rsp)
movb $0x1, 0x1f9b(%rsp)
testb $0x1, 0x1f9b(%rsp)
jne 0x1279940
leaq 0x1ac8(%rsp), %rax
movq %rax, 0x2110(%rsp)
movq 0x2110(%rsp), %rax
movq %rax, 0x40a0(%rsp)
movq 0x40a0(%rsp), %rax
movq %rax, 0x780(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12798e3
movq 0x780(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x409c(%rsp) # imm = 0xFFFFFFFF
movl 0x409c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4098(%rsp)
cmpl $0x1, 0x4098(%rsp)
jne 0x12798e3
movq 0x780(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12798b4
movq 0x780(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12798b2
jmp 0x12798e1
movq 0x780(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x40d8(%rsp)
cmpq $0x0, 0x40d8(%rsp)
je 0x12798df
movq 0x40d8(%rsp), %rdi
callq 0x5f480
jmp 0x12798e1
jmp 0x12798e3
movq 0x780(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127993e
movq %rax, %rdi
callq 0x678a0
jmp 0x1279940
leaq 0x1ac8(%rsp), %rax
movq %rax, 0x20e8(%rsp)
movq 0x20e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x778(%rsp)
leaq 0x1ac8(%rsp), %rax
movq %rax, 0x2200(%rsp)
movq 0x2200(%rsp), %rax
movq %rax, 0x3ec0(%rsp)
movq 0x3ec0(%rsp), %rax
movq %rax, 0x770(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1279a2b
movq 0x770(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ebc(%rsp) # imm = 0xFFFFFFFF
movl 0x3ebc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3eb8(%rsp)
cmpl $0x1, 0x3eb8(%rsp)
jne 0x1279a2b
movq 0x770(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12799fc
movq 0x770(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12799fa
jmp 0x1279a29
movq 0x770(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x41c8(%rsp)
cmpq $0x0, 0x41c8(%rsp)
je 0x1279a27
movq 0x41c8(%rsp), %rdi
callq 0x5f480
jmp 0x1279a29
jmp 0x1279a2b
movq 0x770(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1279a86
movq %rax, %rdi
callq 0x678a0
movq 0x778(%rsp), %rax
movq %rax, 0x1b10(%rsp)
movq 0x1cc0(%rsp), %rcx
movl 0x1b1c(%rsp), %eax
movq %rcx, 0x2b38(%rsp)
movl %eax, 0x2b34(%rsp)
movq 0x2b38(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2b34(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x1ac0(%rsp)
movq 0x1cb8(%rsp), %rcx
movl 0x1b1c(%rsp), %eax
leaq 0x1a70(%rsp), %rdx
movq %rdx, 0x26a0(%rsp)
movq %rcx, 0x2698(%rsp)
movl %eax, 0x2694(%rsp)
movq 0x2698(%rsp), %rax
movq %rax, 0x768(%rsp)
movb $0x0, 0x2693(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2694(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1a70(%rsp), %r10
movq %r10, 0x2c90(%rsp)
movl %r9d, 0x2c8c(%rsp)
movl %r8d, 0x2c88(%rsp)
movl %edi, 0x2c84(%rsp)
movq %rsi, 0x2c78(%rsp)
movq %rdx, 0x2c70(%rsp)
movl %ecx, 0x2c6c(%rsp)
movq %rax, 0x2c60(%rsp)
movq 0x2c90(%rsp), %rcx
movq %rcx, 0x760(%rsp)
movq 0x2c78(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2c70(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2c6c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2c60(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2c8c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2c88(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2c84(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3870(%rsp)
movl $0x10, 0x386c(%rsp)
movq 0x3870(%rsp), %rax
movslq 0x386c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x386c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x768(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1a98(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1279c9b
movq 0x768(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1ab0(%rsp)
movb $0x1, 0x2693(%rsp)
testb $0x1, 0x2693(%rsp)
jne 0x1279dd6
leaq 0x1a70(%rsp), %rax
movq %rax, 0x26a8(%rsp)
movq 0x26a8(%rsp), %rax
movq %rax, 0x38a0(%rsp)
movq 0x38a0(%rsp), %rax
movq %rax, 0x758(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1279d79
movq 0x758(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x389c(%rsp) # imm = 0xFFFFFFFF
movl 0x389c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3898(%rsp)
cmpl $0x1, 0x3898(%rsp)
jne 0x1279d79
movq 0x758(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1279d4a
movq 0x758(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1279d48
jmp 0x1279d77
movq 0x758(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44d8(%rsp)
cmpq $0x0, 0x44d8(%rsp)
je 0x1279d75
movq 0x44d8(%rsp), %rdi
callq 0x5f480
jmp 0x1279d77
jmp 0x1279d79
movq 0x758(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1279dd4
movq %rax, %rdi
callq 0x678a0
jmp 0x1279dd6
leaq 0x1a70(%rsp), %rax
movq %rax, 0x2760(%rsp)
movq 0x2760(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x750(%rsp)
leaq 0x1a70(%rsp), %rax
movq %rax, 0x2210(%rsp)
movq 0x2210(%rsp), %rax
movq %rax, 0x3ea0(%rsp)
movq 0x3ea0(%rsp), %rax
movq %rax, 0x748(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1279ec1
movq 0x748(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e9c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e9c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e98(%rsp)
cmpl $0x1, 0x3e98(%rsp)
jne 0x1279ec1
movq 0x748(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1279e92
movq 0x748(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1279e90
jmp 0x1279ebf
movq 0x748(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x41d8(%rsp)
cmpq $0x0, 0x41d8(%rsp)
je 0x1279ebd
movq 0x41d8(%rsp), %rdi
callq 0x5f480
jmp 0x1279ebf
jmp 0x1279ec1
movq 0x748(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1279f1c
movq %rax, %rdi
callq 0x678a0
movq 0x750(%rsp), %rax
movq %rax, 0x1ab8(%rsp)
movl $0x0, 0x1a6c(%rsp)
movl 0x1a6c(%rsp), %eax
cmpl 0x1ca0(%rsp), %eax
jge 0x127a0a7
movq 0x1ac0(%rsp), %rax
movq %rax, 0x2888(%rsp)
movq 0x2888(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1a50(%rsp)
movl $0x0, 0x1a4c(%rsp)
movl 0x1a4c(%rsp), %eax
cmpl 0x1ca4(%rsp), %eax
jge 0x127a07d
movl $0x0, 0x1a48(%rsp)
movl 0x1a48(%rsp), %eax
cmpl 0x1ca8(%rsp), %eax
jge 0x127a065
movq 0x1b10(%rsp), %rax
movq %rax, 0x2880(%rsp)
movq 0x2880(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1a30(%rsp)
leaq 0x1caf(%rsp), %rdi
leaq 0x1a30(%rsp), %rsi
leaq 0x1a50(%rsp), %rdx
callq 0x12f6aa0
movaps %xmm0, 0x1a20(%rsp)
movq 0x1ab8(%rsp), %rax
movaps 0x1a20(%rsp), %xmm0
movq %rax, 0x2af8(%rsp)
movaps %xmm0, 0x2ae0(%rsp)
movaps 0x2ae0(%rsp), %xmm0
movq 0x2af8(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1b10(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1b10(%rsp)
movq 0x1ab8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1ab8(%rsp)
movl 0x1a48(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1a48(%rsp)
jmp 0x1279f98
jmp 0x127a067
movl 0x1a4c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1a4c(%rsp)
jmp 0x1279f79
movq 0x1ac0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1ac0(%rsp)
movl 0x1a6c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1a6c(%rsp)
jmp 0x1279f37
jmp 0x127a0a9
movl 0x1b1c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b1c(%rsp)
jmp 0x1279635
movl $0x0, 0x1cd4(%rsp)
jmp 0x1287700
movq 0x1cc0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x127ab2d
movq 0x1cc0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x127a12a
cmpl $0x1, 0x1c6c(%rsp)
jne 0x127a12a
movq 0x1cc8(%rsp), %rdi
movq 0x1cc0(%rsp), %rsi
movq 0x1cb8(%rsp), %rdx
movq 0x1cb0(%rsp), %rcx
callq 0x12e6d80
movl %eax, 0x1cd4(%rsp)
jmp 0x1287700
movl $0x0, 0x1a1c(%rsp)
movl 0x1a1c(%rsp), %eax
cmpl 0x1c9c(%rsp), %eax
jge 0x127ab1d
movq 0x1cc8(%rsp), %rcx
movl 0x1a1c(%rsp), %eax
leaq 0x19c8(%rsp), %rdx
movq %rdx, 0x1f90(%rsp)
movq %rcx, 0x1f88(%rsp)
movl %eax, 0x1f84(%rsp)
movq 0x1f88(%rsp), %rax
movq %rax, 0x740(%rsp)
movb $0x0, 0x1f83(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1f84(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x19c8(%rsp), %r10
movq %r10, 0x30f0(%rsp)
movl %r9d, 0x30ec(%rsp)
movl %r8d, 0x30e8(%rsp)
movl %edi, 0x30e4(%rsp)
movq %rsi, 0x30d8(%rsp)
movq %rdx, 0x30d0(%rsp)
movl %ecx, 0x30cc(%rsp)
movq %rax, 0x30c0(%rsp)
movq 0x30f0(%rsp), %rcx
movq %rcx, 0x738(%rsp)
movq 0x30d8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x30d0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x30cc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x30c0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x30ec(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x30e8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x30e4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3730(%rsp)
movl $0x10, 0x372c(%rsp)
movq 0x3730(%rsp), %rax
movslq 0x372c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x372c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x740(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x19f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x127a305
movq 0x740(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1a08(%rsp)
movb $0x1, 0x1f83(%rsp)
testb $0x1, 0x1f83(%rsp)
jne 0x127a440
leaq 0x19c8(%rsp), %rax
movq %rax, 0x2118(%rsp)
movq 0x2118(%rsp), %rax
movq %rax, 0x4090(%rsp)
movq 0x4090(%rsp), %rax
movq %rax, 0x730(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x127a3e3
movq 0x730(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x408c(%rsp) # imm = 0xFFFFFFFF
movl 0x408c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4088(%rsp)
cmpl $0x1, 0x4088(%rsp)
jne 0x127a3e3
movq 0x730(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x127a3b4
movq 0x730(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x127a3b2
jmp 0x127a3e1
movq 0x730(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x40e0(%rsp)
cmpq $0x0, 0x40e0(%rsp)
je 0x127a3df
movq 0x40e0(%rsp), %rdi
callq 0x5f480
jmp 0x127a3e1
jmp 0x127a3e3
movq 0x730(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127a43e
movq %rax, %rdi
callq 0x678a0
jmp 0x127a440
leaq 0x19c8(%rsp), %rax
movq %rax, 0x20e0(%rsp)
movq 0x20e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x728(%rsp)
leaq 0x19c8(%rsp), %rax
movq %rax, 0x2220(%rsp)
movq 0x2220(%rsp), %rax
movq %rax, 0x3e80(%rsp)
movq 0x3e80(%rsp), %rax
movq %rax, 0x720(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x127a52b
movq 0x720(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e7c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e7c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e78(%rsp)
cmpl $0x1, 0x3e78(%rsp)
jne 0x127a52b
movq 0x720(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x127a4fc
movq 0x720(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x127a4fa
jmp 0x127a529
movq 0x720(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x41e8(%rsp)
cmpq $0x0, 0x41e8(%rsp)
je 0x127a527
movq 0x41e8(%rsp), %rdi
callq 0x5f480
jmp 0x127a529
jmp 0x127a52b
movq 0x720(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127a586
movq %rax, %rdi
callq 0x678a0
movq 0x728(%rsp), %rax
movq %rax, 0x1a10(%rsp)
movq 0x1cc0(%rsp), %rax
movq %rax, 0x20d8(%rsp)
movq 0x20d8(%rsp), %rax
movq (%rax), %rax
movl 0x1a1c(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2878(%rsp)
movq 0x2878(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x19b0(%rsp)
movq 0x1cb8(%rsp), %rcx
movl 0x1a1c(%rsp), %eax
leaq 0x1960(%rsp), %rdx
movq %rdx, 0x2680(%rsp)
movq %rcx, 0x2678(%rsp)
movl %eax, 0x2674(%rsp)
movq 0x2678(%rsp), %rax
movq %rax, 0x718(%rsp)
movb $0x0, 0x2673(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2674(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1960(%rsp), %r10
movq %r10, 0x2cc8(%rsp)
movl %r9d, 0x2cc4(%rsp)
movl %r8d, 0x2cc0(%rsp)
movl %edi, 0x2cbc(%rsp)
movq %rsi, 0x2cb0(%rsp)
movq %rdx, 0x2ca8(%rsp)
movl %ecx, 0x2ca4(%rsp)
movq %rax, 0x2c98(%rsp)
movq 0x2cc8(%rsp), %rcx
movq %rcx, 0x710(%rsp)
movq 0x2cb0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2ca8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2ca4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2c98(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2cc4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2cc0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2cbc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3860(%rsp)
movl $0x10, 0x385c(%rsp)
movq 0x3860(%rsp), %rax
movslq 0x385c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x385c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x718(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1988(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x127a79c
movq 0x718(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x19a0(%rsp)
movb $0x1, 0x2673(%rsp)
testb $0x1, 0x2673(%rsp)
jne 0x127a8d7
leaq 0x1960(%rsp), %rax
movq %rax, 0x2688(%rsp)
movq 0x2688(%rsp), %rax
movq %rax, 0x38b0(%rsp)
movq 0x38b0(%rsp), %rax
movq %rax, 0x708(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x127a87a
movq 0x708(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x38ac(%rsp) # imm = 0xFFFFFFFF
movl 0x38ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x38a8(%rsp)
cmpl $0x1, 0x38a8(%rsp)
jne 0x127a87a
movq 0x708(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x127a84b
movq 0x708(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x127a849
jmp 0x127a878
movq 0x708(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44d0(%rsp)
cmpq $0x0, 0x44d0(%rsp)
je 0x127a876
movq 0x44d0(%rsp), %rdi
callq 0x5f480
jmp 0x127a878
jmp 0x127a87a
movq 0x708(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127a8d5
movq %rax, %rdi
callq 0x678a0
jmp 0x127a8d7
leaq 0x1960(%rsp), %rax
movq %rax, 0x2758(%rsp)
movq 0x2758(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x700(%rsp)
leaq 0x1960(%rsp), %rax
movq %rax, 0x2230(%rsp)
movq 0x2230(%rsp), %rax
movq %rax, 0x3e60(%rsp)
movq 0x3e60(%rsp), %rax
movq %rax, 0x6f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x127a9c2
movq 0x6f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e5c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e5c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e58(%rsp)
cmpl $0x1, 0x3e58(%rsp)
jne 0x127a9c2
movq 0x6f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x127a993
movq 0x6f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x127a991
jmp 0x127a9c0
movq 0x6f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x41f8(%rsp)
cmpq $0x0, 0x41f8(%rsp)
je 0x127a9be
movq 0x41f8(%rsp), %rdi
callq 0x5f480
jmp 0x127a9c0
jmp 0x127a9c2
movq 0x6f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127aa1d
movq %rax, %rdi
callq 0x678a0
movq 0x700(%rsp), %rax
movq %rax, 0x19a8(%rsp)
movl $0x0, 0x195c(%rsp)
movl 0x195c(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jge 0x127ab05
movq 0x1a10(%rsp), %rax
movq %rax, 0x2870(%rsp)
movq 0x2870(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1940(%rsp)
leaq 0x1caf(%rsp), %rdi
leaq 0x1940(%rsp), %rsi
leaq 0x19b0(%rsp), %rdx
callq 0x12f6aa0
movaps %xmm0, 0x1930(%rsp)
movq 0x19a8(%rsp), %rax
movaps 0x1930(%rsp), %xmm0
movq %rax, 0x2ad8(%rsp)
movaps %xmm0, 0x2ac0(%rsp)
movaps 0x2ac0(%rsp), %xmm0
movq 0x2ad8(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1a10(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1a10(%rsp)
movq 0x19a8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x19a8(%rsp)
movl 0x195c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x195c(%rsp)
jmp 0x127aa38
jmp 0x127ab07
movl 0x1a1c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1a1c(%rsp)
jmp 0x127a135
movl $0x0, 0x1cd4(%rsp)
jmp 0x1287700
jmp 0x12876f5
movq 0x1cc8(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x128431e
movq 0x1cc0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x127bacc
movq 0x1cb8(%rsp), %rdi
movl 0x1c88(%rsp), %esi
movl 0x1c84(%rsp), %edx
movl 0x1c80(%rsp), %ecx
movl 0x1c7c(%rsp), %r8d
movq 0x1c70(%rsp), %r9
movl 0x1c6c(%rsp), %r10d
movq 0x1cb0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x1cb8(%rsp), %rax
movq %rax, 0x1d60(%rsp)
movq 0x1d60(%rsp), %rcx
movq %rcx, 0x6e8(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x6f7(%rsp)
je 0x127ac06
movq 0x6e8(%rsp), %rax
movq %rax, 0x2b98(%rsp)
movq 0x2b98(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x6f7(%rsp)
movb 0x6f7(%rsp), %al
testb $0x1, %al
jne 0x127ac13
jmp 0x127ac23
movl $0xffffff9c, 0x1cd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1287700
movl $0x0, 0x192c(%rsp)
movl 0x192c(%rsp), %eax
cmpl 0x1c7c(%rsp), %eax
jge 0x127babc
movq 0x1cc8(%rsp), %rcx
movl 0x192c(%rsp), %eax
leaq 0x18d8(%rsp), %rdx
movq %rdx, 0x1f78(%rsp)
movq %rcx, 0x1f70(%rsp)
movl %eax, 0x1f6c(%rsp)
movq 0x1f70(%rsp), %rax
movq %rax, 0x6e0(%rsp)
movb $0x0, 0x1f6b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1f6c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x18d8(%rsp), %r10
movq %r10, 0x3128(%rsp)
movl %r9d, 0x3124(%rsp)
movl %r8d, 0x3120(%rsp)
movl %edi, 0x311c(%rsp)
movq %rsi, 0x3110(%rsp)
movq %rdx, 0x3108(%rsp)
movl %ecx, 0x3104(%rsp)
movq %rax, 0x30f8(%rsp)
movq 0x3128(%rsp), %rcx
movq %rcx, 0x6d8(%rsp)
movq 0x3110(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3108(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3104(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x30f8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3124(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3120(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x311c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3720(%rsp)
movl $0x10, 0x371c(%rsp)
movq 0x3720(%rsp), %rax
movslq 0x371c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x371c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6e0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1900(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x127adfe
movq 0x6e0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1918(%rsp)
movb $0x1, 0x1f6b(%rsp)
testb $0x1, 0x1f6b(%rsp)
jne 0x127af39
leaq 0x18d8(%rsp), %rax
movq %rax, 0x2120(%rsp)
movq 0x2120(%rsp), %rax
movq %rax, 0x4080(%rsp)
movq 0x4080(%rsp), %rax
movq %rax, 0x6d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x127aedc
movq 0x6d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x407c(%rsp) # imm = 0xFFFFFFFF
movl 0x407c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4078(%rsp)
cmpl $0x1, 0x4078(%rsp)
jne 0x127aedc
movq 0x6d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x127aead
movq 0x6d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x127aeab
jmp 0x127aeda
movq 0x6d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x40e8(%rsp)
cmpq $0x0, 0x40e8(%rsp)
je 0x127aed8
movq 0x40e8(%rsp), %rdi
callq 0x5f480
jmp 0x127aeda
jmp 0x127aedc
movq 0x6d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127af37
movq %rax, %rdi
callq 0x678a0
jmp 0x127af39
leaq 0x18d8(%rsp), %rax
movq %rax, 0x20d0(%rsp)
movq 0x20d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6c8(%rsp)
leaq 0x18d8(%rsp), %rax
movq %rax, 0x2240(%rsp)
movq 0x2240(%rsp), %rax
movq %rax, 0x3e40(%rsp)
movq 0x3e40(%rsp), %rax
movq %rax, 0x6c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x127b024
movq 0x6c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e3c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e3c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e38(%rsp)
cmpl $0x1, 0x3e38(%rsp)
jne 0x127b024
movq 0x6c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x127aff5
movq 0x6c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x127aff3
jmp 0x127b022
movq 0x6c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4208(%rsp)
cmpq $0x0, 0x4208(%rsp)
je 0x127b020
movq 0x4208(%rsp), %rdi
callq 0x5f480
jmp 0x127b022
jmp 0x127b024
movq 0x6c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127b07f
movq %rax, %rdi
callq 0x678a0
movq 0x6c8(%rsp), %rax
movq %rax, 0x1920(%rsp)
movq 0x1cc0(%rsp), %rcx
movl 0x192c(%rsp), %eax
leaq 0x1888(%rsp), %rdx
movq %rdx, 0x1f60(%rsp)
movq %rcx, 0x1f58(%rsp)
movl %eax, 0x1f54(%rsp)
movq 0x1f58(%rsp), %rax
movq %rax, 0x6b8(%rsp)
movb $0x0, 0x1f53(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1f54(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1888(%rsp), %r10
movq %r10, 0x3160(%rsp)
movl %r9d, 0x315c(%rsp)
movl %r8d, 0x3158(%rsp)
movl %edi, 0x3154(%rsp)
movq %rsi, 0x3148(%rsp)
movq %rdx, 0x3140(%rsp)
movl %ecx, 0x313c(%rsp)
movq %rax, 0x3130(%rsp)
movq 0x3160(%rsp), %rcx
movq %rcx, 0x6b0(%rsp)
movq 0x3148(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3140(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x313c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3130(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x315c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3158(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3154(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3710(%rsp)
movl $0x10, 0x370c(%rsp)
movq 0x3710(%rsp), %rax
movslq 0x370c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x370c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6b8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x18b0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x127b24b
movq 0x6b8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x18c8(%rsp)
movb $0x1, 0x1f53(%rsp)
testb $0x1, 0x1f53(%rsp)
jne 0x127b386
leaq 0x1888(%rsp), %rax
movq %rax, 0x2128(%rsp)
movq 0x2128(%rsp), %rax
movq %rax, 0x4070(%rsp)
movq 0x4070(%rsp), %rax
movq %rax, 0x6a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x127b329
movq 0x6a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x406c(%rsp) # imm = 0xFFFFFFFF
movl 0x406c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4068(%rsp)
cmpl $0x1, 0x4068(%rsp)
jne 0x127b329
movq 0x6a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x127b2fa
movq 0x6a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x127b2f8
jmp 0x127b327
movq 0x6a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x40f0(%rsp)
cmpq $0x0, 0x40f0(%rsp)
je 0x127b325
movq 0x40f0(%rsp), %rdi
callq 0x5f480
jmp 0x127b327
jmp 0x127b329
movq 0x6a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127b384
movq %rax, %rdi
callq 0x678a0
jmp 0x127b386
leaq 0x1888(%rsp), %rax
movq %rax, 0x20c8(%rsp)
movq 0x20c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6a0(%rsp)
leaq 0x1888(%rsp), %rax
movq %rax, 0x2250(%rsp)
movq 0x2250(%rsp), %rax
movq %rax, 0x3e20(%rsp)
movq 0x3e20(%rsp), %rax
movq %rax, 0x698(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x127b471
movq 0x698(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e1c(%rsp) # imm = 0xFFFFFFFF
movl 0x3e1c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e18(%rsp)
cmpl $0x1, 0x3e18(%rsp)
jne 0x127b471
movq 0x698(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x127b442
movq 0x698(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x127b440
jmp 0x127b46f
movq 0x698(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4218(%rsp)
cmpq $0x0, 0x4218(%rsp)
je 0x127b46d
movq 0x4218(%rsp), %rdi
callq 0x5f480
jmp 0x127b46f
jmp 0x127b471
movq 0x698(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127b4cc
movq %rax, %rdi
callq 0x678a0
movq 0x6a0(%rsp), %rax
movq %rax, 0x18d0(%rsp)
movq 0x1cb8(%rsp), %rcx
movl 0x192c(%rsp), %eax
leaq 0x1838(%rsp), %rdx
movq %rdx, 0x2660(%rsp)
movq %rcx, 0x2658(%rsp)
movl %eax, 0x2654(%rsp)
movq 0x2658(%rsp), %rax
movq %rax, 0x690(%rsp)
movb $0x0, 0x2653(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2654(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1838(%rsp), %r10
movq %r10, 0x2d00(%rsp)
movl %r9d, 0x2cfc(%rsp)
movl %r8d, 0x2cf8(%rsp)
movl %edi, 0x2cf4(%rsp)
movq %rsi, 0x2ce8(%rsp)
movq %rdx, 0x2ce0(%rsp)
movl %ecx, 0x2cdc(%rsp)
movq %rax, 0x2cd0(%rsp)
movq 0x2d00(%rsp), %rcx
movq %rcx, 0x688(%rsp)
movq 0x2ce8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2ce0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2cdc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2cd0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2cfc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2cf8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2cf4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3850(%rsp)
movl $0x10, 0x384c(%rsp)
movq 0x3850(%rsp), %rax
movslq 0x384c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x384c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x690(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1860(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x127b698
movq 0x690(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1878(%rsp)
movb $0x1, 0x2653(%rsp)
testb $0x1, 0x2653(%rsp)
jne 0x127b7d3
leaq 0x1838(%rsp), %rax
movq %rax, 0x2668(%rsp)
movq 0x2668(%rsp), %rax
movq %rax, 0x38c0(%rsp)
movq 0x38c0(%rsp), %rax
movq %rax, 0x680(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x127b776
movq 0x680(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x38bc(%rsp) # imm = 0xFFFFFFFF
movl 0x38bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x38b8(%rsp)
cmpl $0x1, 0x38b8(%rsp)
jne 0x127b776
movq 0x680(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x127b747
movq 0x680(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x127b745
jmp 0x127b774
movq 0x680(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44c8(%rsp)
cmpq $0x0, 0x44c8(%rsp)
je 0x127b772
movq 0x44c8(%rsp), %rdi
callq 0x5f480
jmp 0x127b774
jmp 0x127b776
movq 0x680(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127b7d1
movq %rax, %rdi
callq 0x678a0
jmp 0x127b7d3
leaq 0x1838(%rsp), %rax
movq %rax, 0x2750(%rsp)
movq 0x2750(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x678(%rsp)
leaq 0x1838(%rsp), %rax
movq %rax, 0x2260(%rsp)
movq 0x2260(%rsp), %rax
movq %rax, 0x3e00(%rsp)
movq 0x3e00(%rsp), %rax
movq %rax, 0x670(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x127b8be
movq 0x670(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3dfc(%rsp) # imm = 0xFFFFFFFF
movl 0x3dfc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3df8(%rsp)
cmpl $0x1, 0x3df8(%rsp)
jne 0x127b8be
movq 0x670(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x127b88f
movq 0x670(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x127b88d
jmp 0x127b8bc
movq 0x670(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4228(%rsp)
cmpq $0x0, 0x4228(%rsp)
je 0x127b8ba
movq 0x4228(%rsp), %rdi
callq 0x5f480
jmp 0x127b8bc
jmp 0x127b8be
movq 0x670(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127b919
movq %rax, %rdi
callq 0x678a0
movq 0x678(%rsp), %rax
movq %rax, 0x1880(%rsp)
movl $0x0, 0x1834(%rsp)
movl 0x1834(%rsp), %eax
cmpl 0x1c80(%rsp), %eax
jge 0x127baa4
movl $0x0, 0x1830(%rsp)
movl 0x1830(%rsp), %eax
cmpl 0x1c84(%rsp), %eax
jge 0x127ba8c
movq 0x1920(%rsp), %rax
movq %rax, 0x2868(%rsp)
movq 0x2868(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1820(%rsp)
movl $0x0, 0x181c(%rsp)
movl 0x181c(%rsp), %eax
cmpl 0x1c88(%rsp), %eax
jge 0x127ba62
movq 0x18d0(%rsp), %rax
movq %rax, 0x2860(%rsp)
movq 0x2860(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1800(%rsp)
leaq 0x1caf(%rsp), %rdi
leaq 0x1820(%rsp), %rsi
leaq 0x1800(%rsp), %rdx
callq 0x12f6aa0
movaps %xmm0, 0x17f0(%rsp)
movq 0x1880(%rsp), %rax
movaps 0x17f0(%rsp), %xmm0
movq %rax, 0x2ab8(%rsp)
movaps %xmm0, 0x2aa0(%rsp)
movaps 0x2aa0(%rsp), %xmm0
movq 0x2ab8(%rsp), %rax
movups %xmm0, (%rax)
movq 0x18d0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x18d0(%rsp)
movq 0x1880(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1880(%rsp)
movl 0x181c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x181c(%rsp)
jmp 0x127b995
movq 0x1920(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1920(%rsp)
movl 0x1830(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1830(%rsp)
jmp 0x127b953
jmp 0x127ba8e
movl 0x1834(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1834(%rsp)
jmp 0x127b934
jmp 0x127baa6
movl 0x192c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x192c(%rsp)
jmp 0x127ac2e
movl $0x0, 0x1cd4(%rsp)
jmp 0x1287700
movq 0x1cc0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1282d7b
cmpl $0x1, 0x1c88(%rsp)
jne 0x127c9f7
cmpl $0x1, 0x1c84(%rsp)
jne 0x127c9f7
movl 0x1c7c(%rsp), %eax
cmpl 0x1c9c(%rsp), %eax
jne 0x127c9f7
movq 0x1cb8(%rsp), %rdi
movl 0x1ca8(%rsp), %esi
movl 0x1ca4(%rsp), %edx
movl 0x1c9c(%rsp), %ecx
movq 0x1c90(%rsp), %r8
movl 0x1c8c(%rsp), %r9d
movq 0x1cb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1cb8(%rsp), %rax
movq %rax, 0x1d58(%rsp)
movq 0x1d58(%rsp), %rcx
movq %rcx, 0x660(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x66f(%rsp)
je 0x127bbb1
movq 0x660(%rsp), %rax
movq %rax, 0x2ba0(%rsp)
movq 0x2ba0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x66f(%rsp)
movb 0x66f(%rsp), %al
testb $0x1, %al
jne 0x127bbbe
jmp 0x127bbce
movl $0xffffff9c, 0x1cd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1287700
movl $0x0, 0x17ec(%rsp)
movl 0x17ec(%rsp), %eax
cmpl 0x1c9c(%rsp), %eax
jge 0x127c9e7
movq 0x1cc8(%rsp), %rcx
movl 0x17ec(%rsp), %eax
leaq 0x1798(%rsp), %rdx
movq %rdx, 0x1f48(%rsp)
movq %rcx, 0x1f40(%rsp)
movl %eax, 0x1f3c(%rsp)
movq 0x1f40(%rsp), %rax
movq %rax, 0x658(%rsp)
movb $0x0, 0x1f3b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1f3c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1798(%rsp), %r10
movq %r10, 0x3198(%rsp)
movl %r9d, 0x3194(%rsp)
movl %r8d, 0x3190(%rsp)
movl %edi, 0x318c(%rsp)
movq %rsi, 0x3180(%rsp)
movq %rdx, 0x3178(%rsp)
movl %ecx, 0x3174(%rsp)
movq %rax, 0x3168(%rsp)
movq 0x3198(%rsp), %rcx
movq %rcx, 0x650(%rsp)
movq 0x3180(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3178(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3174(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3168(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3194(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3190(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x318c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3700(%rsp)
movl $0x10, 0x36fc(%rsp)
movq 0x3700(%rsp), %rax
movslq 0x36fc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x36fc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x658(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x17c0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x127bda9
movq 0x658(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x17d8(%rsp)
movb $0x1, 0x1f3b(%rsp)
testb $0x1, 0x1f3b(%rsp)
jne 0x127bee4
leaq 0x1798(%rsp), %rax
movq %rax, 0x2130(%rsp)
movq 0x2130(%rsp), %rax
movq %rax, 0x4060(%rsp)
movq 0x4060(%rsp), %rax
movq %rax, 0x648(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x127be87
movq 0x648(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x405c(%rsp) # imm = 0xFFFFFFFF
movl 0x405c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4058(%rsp)
cmpl $0x1, 0x4058(%rsp)
jne 0x127be87
movq 0x648(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x127be58
movq 0x648(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x127be56
jmp 0x127be85
movq 0x648(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x40f8(%rsp)
cmpq $0x0, 0x40f8(%rsp)
je 0x127be83
movq 0x40f8(%rsp), %rdi
callq 0x5f480
jmp 0x127be85
jmp 0x127be87
movq 0x648(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127bee2
movq %rax, %rdi
callq 0x678a0
jmp 0x127bee4
leaq 0x1798(%rsp), %rax
movq %rax, 0x20c0(%rsp)
movq 0x20c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x640(%rsp)
leaq 0x1798(%rsp), %rax
movq %rax, 0x2270(%rsp)
movq 0x2270(%rsp), %rax
movq %rax, 0x3de0(%rsp)
movq 0x3de0(%rsp), %rax
movq %rax, 0x638(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x127bfcf
movq 0x638(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ddc(%rsp) # imm = 0xFFFFFFFF
movl 0x3ddc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3dd8(%rsp)
cmpl $0x1, 0x3dd8(%rsp)
jne 0x127bfcf
movq 0x638(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x127bfa0
movq 0x638(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x127bf9e
jmp 0x127bfcd
movq 0x638(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4238(%rsp)
cmpq $0x0, 0x4238(%rsp)
je 0x127bfcb
movq 0x4238(%rsp), %rdi
callq 0x5f480
jmp 0x127bfcd
jmp 0x127bfcf
movq 0x638(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127c02a
movq %rax, %rdi
callq 0x678a0
movq 0x640(%rsp), %rax
movq %rax, 0x17e0(%rsp)
movq 0x1cb8(%rsp), %rcx
movl 0x17ec(%rsp), %eax
leaq 0x1748(%rsp), %rdx
movq %rdx, 0x2640(%rsp)
movq %rcx, 0x2638(%rsp)
movl %eax, 0x2634(%rsp)
movq 0x2638(%rsp), %rax
movq %rax, 0x630(%rsp)
movb $0x0, 0x2633(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2634(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1748(%rsp), %r10
movq %r10, 0x2d38(%rsp)
movl %r9d, 0x2d34(%rsp)
movl %r8d, 0x2d30(%rsp)
movl %edi, 0x2d2c(%rsp)
movq %rsi, 0x2d20(%rsp)
movq %rdx, 0x2d18(%rsp)
movl %ecx, 0x2d14(%rsp)
movq %rax, 0x2d08(%rsp)
movq 0x2d38(%rsp), %rcx
movq %rcx, 0x628(%rsp)
movq 0x2d20(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2d18(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2d14(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2d08(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2d34(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2d30(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2d2c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3840(%rsp)
movl $0x10, 0x383c(%rsp)
movq 0x3840(%rsp), %rax
movslq 0x383c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x383c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x630(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1770(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x127c1f6
movq 0x630(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1788(%rsp)
movb $0x1, 0x2633(%rsp)
testb $0x1, 0x2633(%rsp)
jne 0x127c331
leaq 0x1748(%rsp), %rax
movq %rax, 0x2648(%rsp)
movq 0x2648(%rsp), %rax
movq %rax, 0x38d0(%rsp)
movq 0x38d0(%rsp), %rax
movq %rax, 0x620(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x127c2d4
movq 0x620(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x38cc(%rsp) # imm = 0xFFFFFFFF
movl 0x38cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x38c8(%rsp)
cmpl $0x1, 0x38c8(%rsp)
jne 0x127c2d4
movq 0x620(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x127c2a5
movq 0x620(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x127c2a3
jmp 0x127c2d2
movq 0x620(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44c0(%rsp)
cmpq $0x0, 0x44c0(%rsp)
je 0x127c2d0
movq 0x44c0(%rsp), %rdi
callq 0x5f480
jmp 0x127c2d2
jmp 0x127c2d4
movq 0x620(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127c32f
movq %rax, %rdi
callq 0x678a0
jmp 0x127c331
leaq 0x1748(%rsp), %rax
movq %rax, 0x2748(%rsp)
movq 0x2748(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x618(%rsp)
leaq 0x1748(%rsp), %rax
movq %rax, 0x2280(%rsp)
movq 0x2280(%rsp), %rax
movq %rax, 0x3dc0(%rsp)
movq 0x3dc0(%rsp), %rax
movq %rax, 0x610(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x127c41c
movq 0x610(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3dbc(%rsp) # imm = 0xFFFFFFFF
movl 0x3dbc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3db8(%rsp)
cmpl $0x1, 0x3db8(%rsp)
jne 0x127c41c
movq 0x610(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x127c3ed
movq 0x610(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x127c3eb
jmp 0x127c41a
movq 0x610(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4248(%rsp)
cmpq $0x0, 0x4248(%rsp)
je 0x127c418
movq 0x4248(%rsp), %rdi
callq 0x5f480
jmp 0x127c41a
jmp 0x127c41c
movq 0x610(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127c477
movq %rax, %rdi
callq 0x678a0
movq 0x618(%rsp), %rax
movq %rax, 0x1790(%rsp)
movq 0x1cc0(%rsp), %rcx
movl 0x17ec(%rsp), %eax
leaq 0x16f8(%rsp), %rdx
movq %rdx, 0x1f30(%rsp)
movq %rcx, 0x1f28(%rsp)
movl %eax, 0x1f24(%rsp)
movq 0x1f28(%rsp), %rax
movq %rax, 0x608(%rsp)
movb $0x0, 0x1f23(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1f24(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x16f8(%rsp), %r10
movq %r10, 0x31d0(%rsp)
movl %r9d, 0x31cc(%rsp)
movl %r8d, 0x31c8(%rsp)
movl %edi, 0x31c4(%rsp)
movq %rsi, 0x31b8(%rsp)
movq %rdx, 0x31b0(%rsp)
movl %ecx, 0x31ac(%rsp)
movq %rax, 0x31a0(%rsp)
movq 0x31d0(%rsp), %rcx
movq %rcx, 0x600(%rsp)
movq 0x31b8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x31b0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x31ac(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x31a0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x31cc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x31c8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x31c4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x36f0(%rsp)
movl $0x10, 0x36ec(%rsp)
movq 0x36f0(%rsp), %rax
movslq 0x36ec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x36ec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x608(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1720(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x127c643
movq 0x608(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1738(%rsp)
movb $0x1, 0x1f23(%rsp)
testb $0x1, 0x1f23(%rsp)
jne 0x127c77e
leaq 0x16f8(%rsp), %rax
movq %rax, 0x2138(%rsp)
movq 0x2138(%rsp), %rax
movq %rax, 0x4050(%rsp)
movq 0x4050(%rsp), %rax
movq %rax, 0x5f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x127c721
movq 0x5f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x404c(%rsp) # imm = 0xFFFFFFFF
movl 0x404c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4048(%rsp)
cmpl $0x1, 0x4048(%rsp)
jne 0x127c721
movq 0x5f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x127c6f2
movq 0x5f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x127c6f0
jmp 0x127c71f
movq 0x5f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4100(%rsp)
cmpq $0x0, 0x4100(%rsp)
je 0x127c71d
movq 0x4100(%rsp), %rdi
callq 0x5f480
jmp 0x127c71f
jmp 0x127c721
movq 0x5f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127c77c
movq %rax, %rdi
callq 0x678a0
jmp 0x127c77e
leaq 0x16f8(%rsp), %rax
movq %rax, 0x20b8(%rsp)
movq 0x20b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5f0(%rsp)
leaq 0x16f8(%rsp), %rax
movq %rax, 0x2290(%rsp)
movq 0x2290(%rsp), %rax
movq %rax, 0x3da0(%rsp)
movq 0x3da0(%rsp), %rax
movq %rax, 0x5e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x127c869
movq 0x5e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3d9c(%rsp) # imm = 0xFFFFFFFF
movl 0x3d9c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3d98(%rsp)
cmpl $0x1, 0x3d98(%rsp)
jne 0x127c869
movq 0x5e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x127c83a
movq 0x5e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x127c838
jmp 0x127c867
movq 0x5e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4258(%rsp)
cmpq $0x0, 0x4258(%rsp)
je 0x127c865
movq 0x4258(%rsp), %rdi
callq 0x5f480
jmp 0x127c867
jmp 0x127c869
movq 0x5e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127c8c4
movq %rax, %rdi
callq 0x678a0
movq 0x5f0(%rsp), %rax
movq %rax, 0x1740(%rsp)
movq 0x1740(%rsp), %rax
movq %rax, 0x2858(%rsp)
movq 0x2858(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x16e0(%rsp)
movl $0x0, 0x16dc(%rsp)
movl 0x16dc(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jge 0x127c9cf
movq 0x17e0(%rsp), %rax
movq %rax, 0x2850(%rsp)
movq 0x2850(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x16c0(%rsp)
leaq 0x1caf(%rsp), %rdi
leaq 0x16c0(%rsp), %rsi
leaq 0x16e0(%rsp), %rdx
callq 0x12f6aa0
movaps %xmm0, 0x16b0(%rsp)
movq 0x1790(%rsp), %rax
movaps 0x16b0(%rsp), %xmm0
movq %rax, 0x2a98(%rsp)
movaps %xmm0, 0x2a80(%rsp)
movaps 0x2a80(%rsp), %xmm0
movq 0x2a98(%rsp), %rax
movups %xmm0, (%rax)
movq 0x17e0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x17e0(%rsp)
movq 0x1790(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1790(%rsp)
movl 0x16dc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x16dc(%rsp)
jmp 0x127c902
jmp 0x127c9d1
movl 0x17ec(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x17ec(%rsp)
jmp 0x127bbd9
movl $0x0, 0x1cd4(%rsp)
jmp 0x1287700
movl 0x1c88(%rsp), %eax
cmpl 0x1ca8(%rsp), %eax
jne 0x127d524
movl 0x1c84(%rsp), %eax
cmpl 0x1ca4(%rsp), %eax
jne 0x127d524
cmpl $0x1, 0x1c7c(%rsp)
jne 0x127d524
cmpl $0x1, 0x1c6c(%rsp)
jne 0x127d524
movq 0x1cb8(%rsp), %rdi
movl 0x1ca8(%rsp), %esi
movl 0x1ca4(%rsp), %edx
movl 0x1c9c(%rsp), %ecx
movq 0x1c90(%rsp), %r8
movl 0x1c8c(%rsp), %r9d
movq 0x1cb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1cb8(%rsp), %rax
movq %rax, 0x1d50(%rsp)
movq 0x1d50(%rsp), %rcx
movq %rcx, 0x5d8(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x5e7(%rsp)
je 0x127cade
movq 0x5d8(%rsp), %rax
movq %rax, 0x2ba8(%rsp)
movq 0x2ba8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x5e7(%rsp)
movb 0x5e7(%rsp), %al
testb $0x1, %al
jne 0x127caeb
jmp 0x127cafb
movl $0xffffff9c, 0x1cd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1287700
movl $0x0, 0x16ac(%rsp)
movl 0x16ac(%rsp), %eax
cmpl 0x1c9c(%rsp), %eax
jge 0x127d514
movq 0x1cc8(%rsp), %rcx
movl 0x16ac(%rsp), %eax
leaq 0x1658(%rsp), %rdx
movq %rdx, 0x1f18(%rsp)
movq %rcx, 0x1f10(%rsp)
movl %eax, 0x1f0c(%rsp)
movq 0x1f10(%rsp), %rax
movq %rax, 0x5d0(%rsp)
movb $0x0, 0x1f0b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1f0c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1658(%rsp), %r10
movq %r10, 0x3208(%rsp)
movl %r9d, 0x3204(%rsp)
movl %r8d, 0x3200(%rsp)
movl %edi, 0x31fc(%rsp)
movq %rsi, 0x31f0(%rsp)
movq %rdx, 0x31e8(%rsp)
movl %ecx, 0x31e4(%rsp)
movq %rax, 0x31d8(%rsp)
movq 0x3208(%rsp), %rcx
movq %rcx, 0x5c8(%rsp)
movq 0x31f0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x31e8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x31e4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x31d8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3204(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3200(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x31fc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x36e0(%rsp)
movl $0x10, 0x36dc(%rsp)
movq 0x36e0(%rsp), %rax
movslq 0x36dc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x36dc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5d0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1680(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x127ccd6
movq 0x5d0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1698(%rsp)
movb $0x1, 0x1f0b(%rsp)
testb $0x1, 0x1f0b(%rsp)
jne 0x127ce11
leaq 0x1658(%rsp), %rax
movq %rax, 0x2140(%rsp)
movq 0x2140(%rsp), %rax
movq %rax, 0x4040(%rsp)
movq 0x4040(%rsp), %rax
movq %rax, 0x5c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x127cdb4
movq 0x5c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x403c(%rsp) # imm = 0xFFFFFFFF
movl 0x403c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4038(%rsp)
cmpl $0x1, 0x4038(%rsp)
jne 0x127cdb4
movq 0x5c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x127cd85
movq 0x5c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x127cd83
jmp 0x127cdb2
movq 0x5c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4108(%rsp)
cmpq $0x0, 0x4108(%rsp)
je 0x127cdb0
movq 0x4108(%rsp), %rdi
callq 0x5f480
jmp 0x127cdb2
jmp 0x127cdb4
movq 0x5c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127ce0f
movq %rax, %rdi
callq 0x678a0
jmp 0x127ce11
leaq 0x1658(%rsp), %rax
movq %rax, 0x20b0(%rsp)
movq 0x20b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5b8(%rsp)
leaq 0x1658(%rsp), %rax
movq %rax, 0x22a0(%rsp)
movq 0x22a0(%rsp), %rax
movq %rax, 0x3d80(%rsp)
movq 0x3d80(%rsp), %rax
movq %rax, 0x5b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x127cefc
movq 0x5b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3d7c(%rsp) # imm = 0xFFFFFFFF
movl 0x3d7c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3d78(%rsp)
cmpl $0x1, 0x3d78(%rsp)
jne 0x127cefc
movq 0x5b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x127cecd
movq 0x5b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x127cecb
jmp 0x127cefa
movq 0x5b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4268(%rsp)
cmpq $0x0, 0x4268(%rsp)
je 0x127cef8
movq 0x4268(%rsp), %rdi
callq 0x5f480
jmp 0x127cefa
jmp 0x127cefc
movq 0x5b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127cf57
movq %rax, %rdi
callq 0x678a0
movq 0x5b8(%rsp), %rax
movq %rax, 0x16a0(%rsp)
movq 0x1cc0(%rsp), %rax
movq %rax, 0x20a8(%rsp)
movq 0x20a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1650(%rsp)
movq 0x1cb8(%rsp), %rcx
movl 0x16ac(%rsp), %eax
leaq 0x1600(%rsp), %rdx
movq %rdx, 0x2620(%rsp)
movq %rcx, 0x2618(%rsp)
movl %eax, 0x2614(%rsp)
movq 0x2618(%rsp), %rax
movq %rax, 0x5a8(%rsp)
movb $0x0, 0x2613(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2614(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1600(%rsp), %r10
movq %r10, 0x2d70(%rsp)
movl %r9d, 0x2d6c(%rsp)
movl %r8d, 0x2d68(%rsp)
movl %edi, 0x2d64(%rsp)
movq %rsi, 0x2d58(%rsp)
movq %rdx, 0x2d50(%rsp)
movl %ecx, 0x2d4c(%rsp)
movq %rax, 0x2d40(%rsp)
movq 0x2d70(%rsp), %rcx
movq %rcx, 0x5a0(%rsp)
movq 0x2d58(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2d50(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2d4c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2d40(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2d6c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2d68(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2d64(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3830(%rsp)
movl $0x10, 0x382c(%rsp)
movq 0x3830(%rsp), %rax
movslq 0x382c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x382c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5a8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1628(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x127d146
movq 0x5a8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1640(%rsp)
movb $0x1, 0x2613(%rsp)
testb $0x1, 0x2613(%rsp)
jne 0x127d281
leaq 0x1600(%rsp), %rax
movq %rax, 0x2628(%rsp)
movq 0x2628(%rsp), %rax
movq %rax, 0x38e0(%rsp)
movq 0x38e0(%rsp), %rax
movq %rax, 0x598(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x127d224
movq 0x598(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x38dc(%rsp) # imm = 0xFFFFFFFF
movl 0x38dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x38d8(%rsp)
cmpl $0x1, 0x38d8(%rsp)
jne 0x127d224
movq 0x598(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x127d1f5
movq 0x598(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x127d1f3
jmp 0x127d222
movq 0x598(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44b8(%rsp)
cmpq $0x0, 0x44b8(%rsp)
je 0x127d220
movq 0x44b8(%rsp), %rdi
callq 0x5f480
jmp 0x127d222
jmp 0x127d224
movq 0x598(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127d27f
movq %rax, %rdi
callq 0x678a0
jmp 0x127d281
leaq 0x1600(%rsp), %rax
movq %rax, 0x2740(%rsp)
movq 0x2740(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x590(%rsp)
leaq 0x1600(%rsp), %rax
movq %rax, 0x22b0(%rsp)
movq 0x22b0(%rsp), %rax
movq %rax, 0x3d60(%rsp)
movq 0x3d60(%rsp), %rax
movq %rax, 0x588(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x127d36c
movq 0x588(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3d5c(%rsp) # imm = 0xFFFFFFFF
movl 0x3d5c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3d58(%rsp)
cmpl $0x1, 0x3d58(%rsp)
jne 0x127d36c
movq 0x588(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x127d33d
movq 0x588(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x127d33b
jmp 0x127d36a
movq 0x588(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4278(%rsp)
cmpq $0x0, 0x4278(%rsp)
je 0x127d368
movq 0x4278(%rsp), %rdi
callq 0x5f480
jmp 0x127d36a
jmp 0x127d36c
movq 0x588(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127d3c7
movq %rax, %rdi
callq 0x678a0
movq 0x590(%rsp), %rax
movq %rax, 0x1648(%rsp)
movl $0x0, 0x15fc(%rsp)
movl 0x15fc(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jge 0x127d4fc
movq 0x16a0(%rsp), %rax
movq %rax, 0x2848(%rsp)
movq 0x2848(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x15e0(%rsp)
movq 0x1650(%rsp), %rax
movss (%rax), %xmm0
movss %xmm0, 0x2b70(%rsp)
movaps 0x2b70(%rsp), %xmm0
shufps $0x0, %xmm0, %xmm0 # xmm0 = xmm0[0,0,0,0]
movaps %xmm0, 0x2b60(%rsp)
movaps 0x2b60(%rsp), %xmm0
movaps %xmm0, 0x15d0(%rsp)
leaq 0x1caf(%rsp), %rdi
leaq 0x15e0(%rsp), %rsi
leaq 0x15d0(%rsp), %rdx
callq 0x12f6aa0
movaps %xmm0, 0x15c0(%rsp)
movq 0x1648(%rsp), %rax
movaps 0x15c0(%rsp), %xmm0
movq %rax, 0x2a78(%rsp)
movaps %xmm0, 0x2a60(%rsp)
movaps 0x2a60(%rsp), %xmm0
movq 0x2a78(%rsp), %rax
movups %xmm0, (%rax)
movq 0x16a0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x16a0(%rsp)
movq 0x1650(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x1650(%rsp)
movq 0x1648(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1648(%rsp)
movl 0x15fc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x15fc(%rsp)
jmp 0x127d3e2
jmp 0x127d4fe
movl 0x16ac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x16ac(%rsp)
jmp 0x127cb06
movl $0x0, 0x1cd4(%rsp)
jmp 0x1287700
cmpl $0x1, 0x1ca8(%rsp)
jne 0x127e43d
cmpl $0x1, 0x1ca4(%rsp)
jne 0x127e43d
movl 0x1c7c(%rsp), %eax
cmpl 0x1c9c(%rsp), %eax
jne 0x127e43d
movq 0x1cb8(%rsp), %rdi
movl 0x1c88(%rsp), %esi
movl 0x1c84(%rsp), %edx
movl 0x1c7c(%rsp), %ecx
movq 0x1c70(%rsp), %r8
movl 0x1c6c(%rsp), %r9d
movq 0x1cb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1cb8(%rsp), %rax
movq %rax, 0x1d48(%rsp)
movq 0x1d48(%rsp), %rcx
movq %rcx, 0x578(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x587(%rsp)
je 0x127d5f7
movq 0x578(%rsp), %rax
movq %rax, 0x2bb0(%rsp)
movq 0x2bb0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x587(%rsp)
movb 0x587(%rsp), %al
testb $0x1, %al
jne 0x127d604
jmp 0x127d614
movl $0xffffff9c, 0x1cd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1287700
movl $0x0, 0x15bc(%rsp)
movl 0x15bc(%rsp), %eax
cmpl 0x1c7c(%rsp), %eax
jge 0x127e42d
movq 0x1cc8(%rsp), %rcx
movl 0x15bc(%rsp), %eax
leaq 0x1568(%rsp), %rdx
movq %rdx, 0x1f00(%rsp)
movq %rcx, 0x1ef8(%rsp)
movl %eax, 0x1ef4(%rsp)
movq 0x1ef8(%rsp), %rax
movq %rax, 0x570(%rsp)
movb $0x0, 0x1ef3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1ef4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1568(%rsp), %r10
movq %r10, 0x3240(%rsp)
movl %r9d, 0x323c(%rsp)
movl %r8d, 0x3238(%rsp)
movl %edi, 0x3234(%rsp)
movq %rsi, 0x3228(%rsp)
movq %rdx, 0x3220(%rsp)
movl %ecx, 0x321c(%rsp)
movq %rax, 0x3210(%rsp)
movq 0x3240(%rsp), %rcx
movq %rcx, 0x568(%rsp)
movq 0x3228(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3220(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x321c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3210(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x323c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3238(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3234(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x36d0(%rsp)
movl $0x10, 0x36cc(%rsp)
movq 0x36d0(%rsp), %rax
movslq 0x36cc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x36cc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x570(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1590(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x127d7ef
movq 0x570(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x15a8(%rsp)
movb $0x1, 0x1ef3(%rsp)
testb $0x1, 0x1ef3(%rsp)
jne 0x127d92a
leaq 0x1568(%rsp), %rax
movq %rax, 0x2148(%rsp)
movq 0x2148(%rsp), %rax
movq %rax, 0x4030(%rsp)
movq 0x4030(%rsp), %rax
movq %rax, 0x560(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x127d8cd
movq 0x560(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x402c(%rsp) # imm = 0xFFFFFFFF
movl 0x402c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4028(%rsp)
cmpl $0x1, 0x4028(%rsp)
jne 0x127d8cd
movq 0x560(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x127d89e
movq 0x560(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x127d89c
jmp 0x127d8cb
movq 0x560(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4110(%rsp)
cmpq $0x0, 0x4110(%rsp)
je 0x127d8c9
movq 0x4110(%rsp), %rdi
callq 0x5f480
jmp 0x127d8cb
jmp 0x127d8cd
movq 0x560(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127d928
movq %rax, %rdi
callq 0x678a0
jmp 0x127d92a
leaq 0x1568(%rsp), %rax
movq %rax, 0x20a0(%rsp)
movq 0x20a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x558(%rsp)
leaq 0x1568(%rsp), %rax
movq %rax, 0x22c0(%rsp)
movq 0x22c0(%rsp), %rax
movq %rax, 0x3d40(%rsp)
movq 0x3d40(%rsp), %rax
movq %rax, 0x550(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x127da15
movq 0x550(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3d3c(%rsp) # imm = 0xFFFFFFFF
movl 0x3d3c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3d38(%rsp)
cmpl $0x1, 0x3d38(%rsp)
jne 0x127da15
movq 0x550(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x127d9e6
movq 0x550(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x127d9e4
jmp 0x127da13
movq 0x550(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4288(%rsp)
cmpq $0x0, 0x4288(%rsp)
je 0x127da11
movq 0x4288(%rsp), %rdi
callq 0x5f480
jmp 0x127da13
jmp 0x127da15
movq 0x550(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127da70
movq %rax, %rdi
callq 0x678a0
movq 0x558(%rsp), %rax
movq %rax, 0x15b0(%rsp)
movq 0x1cb8(%rsp), %rcx
movl 0x15bc(%rsp), %eax
leaq 0x1518(%rsp), %rdx
movq %rdx, 0x2600(%rsp)
movq %rcx, 0x25f8(%rsp)
movl %eax, 0x25f4(%rsp)
movq 0x25f8(%rsp), %rax
movq %rax, 0x548(%rsp)
movb $0x0, 0x25f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x25f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1518(%rsp), %r10
movq %r10, 0x2da8(%rsp)
movl %r9d, 0x2da4(%rsp)
movl %r8d, 0x2da0(%rsp)
movl %edi, 0x2d9c(%rsp)
movq %rsi, 0x2d90(%rsp)
movq %rdx, 0x2d88(%rsp)
movl %ecx, 0x2d84(%rsp)
movq %rax, 0x2d78(%rsp)
movq 0x2da8(%rsp), %rcx
movq %rcx, 0x540(%rsp)
movq 0x2d90(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2d88(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2d84(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2d78(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2da4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2da0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2d9c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3820(%rsp)
movl $0x10, 0x381c(%rsp)
movq 0x3820(%rsp), %rax
movslq 0x381c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x381c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x548(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1540(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x127dc3c
movq 0x548(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1558(%rsp)
movb $0x1, 0x25f3(%rsp)
testb $0x1, 0x25f3(%rsp)
jne 0x127dd77
leaq 0x1518(%rsp), %rax
movq %rax, 0x2608(%rsp)
movq 0x2608(%rsp), %rax
movq %rax, 0x38f0(%rsp)
movq 0x38f0(%rsp), %rax
movq %rax, 0x538(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x127dd1a
movq 0x538(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x38ec(%rsp) # imm = 0xFFFFFFFF
movl 0x38ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x38e8(%rsp)
cmpl $0x1, 0x38e8(%rsp)
jne 0x127dd1a
movq 0x538(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x127dceb
movq 0x538(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x127dce9
jmp 0x127dd18
movq 0x538(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44b0(%rsp)
cmpq $0x0, 0x44b0(%rsp)
je 0x127dd16
movq 0x44b0(%rsp), %rdi
callq 0x5f480
jmp 0x127dd18
jmp 0x127dd1a
movq 0x538(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127dd75
movq %rax, %rdi
callq 0x678a0
jmp 0x127dd77
leaq 0x1518(%rsp), %rax
movq %rax, 0x2738(%rsp)
movq 0x2738(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x530(%rsp)
leaq 0x1518(%rsp), %rax
movq %rax, 0x22d0(%rsp)
movq 0x22d0(%rsp), %rax
movq %rax, 0x3d20(%rsp)
movq 0x3d20(%rsp), %rax
movq %rax, 0x528(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x127de62
movq 0x528(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3d1c(%rsp) # imm = 0xFFFFFFFF
movl 0x3d1c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3d18(%rsp)
cmpl $0x1, 0x3d18(%rsp)
jne 0x127de62
movq 0x528(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x127de33
movq 0x528(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x127de31
jmp 0x127de60
movq 0x528(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4298(%rsp)
cmpq $0x0, 0x4298(%rsp)
je 0x127de5e
movq 0x4298(%rsp), %rdi
callq 0x5f480
jmp 0x127de60
jmp 0x127de62
movq 0x528(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127debd
movq %rax, %rdi
callq 0x678a0
movq 0x530(%rsp), %rax
movq %rax, 0x1560(%rsp)
movq 0x1cc0(%rsp), %rcx
movl 0x15bc(%rsp), %eax
leaq 0x14c8(%rsp), %rdx
movq %rdx, 0x1ee8(%rsp)
movq %rcx, 0x1ee0(%rsp)
movl %eax, 0x1edc(%rsp)
movq 0x1ee0(%rsp), %rax
movq %rax, 0x520(%rsp)
movb $0x0, 0x1edb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1edc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x14c8(%rsp), %r10
movq %r10, 0x3278(%rsp)
movl %r9d, 0x3274(%rsp)
movl %r8d, 0x3270(%rsp)
movl %edi, 0x326c(%rsp)
movq %rsi, 0x3260(%rsp)
movq %rdx, 0x3258(%rsp)
movl %ecx, 0x3254(%rsp)
movq %rax, 0x3248(%rsp)
movq 0x3278(%rsp), %rcx
movq %rcx, 0x518(%rsp)
movq 0x3260(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3258(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3254(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3248(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3274(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3270(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x326c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x36c0(%rsp)
movl $0x10, 0x36bc(%rsp)
movq 0x36c0(%rsp), %rax
movslq 0x36bc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x36bc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x520(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x14f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x127e089
movq 0x520(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1508(%rsp)
movb $0x1, 0x1edb(%rsp)
testb $0x1, 0x1edb(%rsp)
jne 0x127e1c4
leaq 0x14c8(%rsp), %rax
movq %rax, 0x2150(%rsp)
movq 0x2150(%rsp), %rax
movq %rax, 0x4020(%rsp)
movq 0x4020(%rsp), %rax
movq %rax, 0x510(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x127e167
movq 0x510(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x401c(%rsp) # imm = 0xFFFFFFFF
movl 0x401c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4018(%rsp)
cmpl $0x1, 0x4018(%rsp)
jne 0x127e167
movq 0x510(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x127e138
movq 0x510(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x127e136
jmp 0x127e165
movq 0x510(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4118(%rsp)
cmpq $0x0, 0x4118(%rsp)
je 0x127e163
movq 0x4118(%rsp), %rdi
callq 0x5f480
jmp 0x127e165
jmp 0x127e167
movq 0x510(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127e1c2
movq %rax, %rdi
callq 0x678a0
jmp 0x127e1c4
leaq 0x14c8(%rsp), %rax
movq %rax, 0x2098(%rsp)
movq 0x2098(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x508(%rsp)
leaq 0x14c8(%rsp), %rax
movq %rax, 0x22e0(%rsp)
movq 0x22e0(%rsp), %rax
movq %rax, 0x3d00(%rsp)
movq 0x3d00(%rsp), %rax
movq %rax, 0x500(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x127e2af
movq 0x500(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3cfc(%rsp) # imm = 0xFFFFFFFF
movl 0x3cfc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3cf8(%rsp)
cmpl $0x1, 0x3cf8(%rsp)
jne 0x127e2af
movq 0x500(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x127e280
movq 0x500(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x127e27e
jmp 0x127e2ad
movq 0x500(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x42a8(%rsp)
cmpq $0x0, 0x42a8(%rsp)
je 0x127e2ab
movq 0x42a8(%rsp), %rdi
callq 0x5f480
jmp 0x127e2ad
jmp 0x127e2af
movq 0x500(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127e30a
movq %rax, %rdi
callq 0x678a0
movq 0x508(%rsp), %rax
movq %rax, 0x1510(%rsp)
movq 0x15b0(%rsp), %rax
movq %rax, 0x2840(%rsp)
movq 0x2840(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x14b0(%rsp)
movl $0x0, 0x14ac(%rsp)
movl 0x14ac(%rsp), %eax
cmpl 0x1c78(%rsp), %eax
jge 0x127e415
movq 0x1510(%rsp), %rax
movq %rax, 0x2838(%rsp)
movq 0x2838(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1490(%rsp)
leaq 0x1caf(%rsp), %rdi
leaq 0x14b0(%rsp), %rsi
leaq 0x1490(%rsp), %rdx
callq 0x12f6aa0
movaps %xmm0, 0x1480(%rsp)
movq 0x1560(%rsp), %rax
movaps 0x1480(%rsp), %xmm0
movq %rax, 0x2a58(%rsp)
movaps %xmm0, 0x2a40(%rsp)
movaps 0x2a40(%rsp), %xmm0
movq 0x2a58(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1510(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1510(%rsp)
movq 0x1560(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1560(%rsp)
movl 0x14ac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x14ac(%rsp)
jmp 0x127e348
jmp 0x127e417
movl 0x15bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x15bc(%rsp)
jmp 0x127d61f
movl $0x0, 0x1cd4(%rsp)
jmp 0x1287700
movl 0x1c88(%rsp), %eax
cmpl 0x1ca8(%rsp), %eax
jne 0x127ef6a
movl 0x1c84(%rsp), %eax
cmpl 0x1ca4(%rsp), %eax
jne 0x127ef6a
cmpl $0x1, 0x1c9c(%rsp)
jne 0x127ef6a
cmpl $0x1, 0x1c8c(%rsp)
jne 0x127ef6a
movq 0x1cb8(%rsp), %rdi
movl 0x1c88(%rsp), %esi
movl 0x1c84(%rsp), %edx
movl 0x1c7c(%rsp), %ecx
movq 0x1c70(%rsp), %r8
movl 0x1c6c(%rsp), %r9d
movq 0x1cb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1cb8(%rsp), %rax
movq %rax, 0x1d40(%rsp)
movq 0x1d40(%rsp), %rcx
movq %rcx, 0x4f0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x4ff(%rsp)
je 0x127e524
movq 0x4f0(%rsp), %rax
movq %rax, 0x2bb8(%rsp)
movq 0x2bb8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x4ff(%rsp)
movb 0x4ff(%rsp), %al
testb $0x1, %al
jne 0x127e531
jmp 0x127e541
movl $0xffffff9c, 0x1cd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1287700
movl $0x0, 0x147c(%rsp)
movl 0x147c(%rsp), %eax
cmpl 0x1c7c(%rsp), %eax
jge 0x127ef5a
movq 0x1cc8(%rsp), %rax
movq %rax, 0x2090(%rsp)
movq 0x2090(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1470(%rsp)
movq 0x1cc0(%rsp), %rcx
movl 0x147c(%rsp), %eax
leaq 0x1420(%rsp), %rdx
movq %rdx, 0x1ed0(%rsp)
movq %rcx, 0x1ec8(%rsp)
movl %eax, 0x1ec4(%rsp)
movq 0x1ec8(%rsp), %rax
movq %rax, 0x4e8(%rsp)
movb $0x0, 0x1ec3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1ec4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1420(%rsp), %r10
movq %r10, 0x32b0(%rsp)
movl %r9d, 0x32ac(%rsp)
movl %r8d, 0x32a8(%rsp)
movl %edi, 0x32a4(%rsp)
movq %rsi, 0x3298(%rsp)
movq %rdx, 0x3290(%rsp)
movl %ecx, 0x328c(%rsp)
movq %rax, 0x3280(%rsp)
movq 0x32b0(%rsp), %rcx
movq %rcx, 0x4e0(%rsp)
movq 0x3298(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3290(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x328c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3280(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x32ac(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x32a8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x32a4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x36b0(%rsp)
movl $0x10, 0x36ac(%rsp)
movq 0x36b0(%rsp), %rax
movslq 0x36ac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x36ac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4e8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1448(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x127e73f
movq 0x4e8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1460(%rsp)
movb $0x1, 0x1ec3(%rsp)
testb $0x1, 0x1ec3(%rsp)
jne 0x127e87a
leaq 0x1420(%rsp), %rax
movq %rax, 0x2158(%rsp)
movq 0x2158(%rsp), %rax
movq %rax, 0x4010(%rsp)
movq 0x4010(%rsp), %rax
movq %rax, 0x4d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x127e81d
movq 0x4d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x400c(%rsp) # imm = 0xFFFFFFFF
movl 0x400c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4008(%rsp)
cmpl $0x1, 0x4008(%rsp)
jne 0x127e81d
movq 0x4d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x127e7ee
movq 0x4d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x127e7ec
jmp 0x127e81b
movq 0x4d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4120(%rsp)
cmpq $0x0, 0x4120(%rsp)
je 0x127e819
movq 0x4120(%rsp), %rdi
callq 0x5f480
jmp 0x127e81b
jmp 0x127e81d
movq 0x4d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127e878
movq %rax, %rdi
callq 0x678a0
jmp 0x127e87a
leaq 0x1420(%rsp), %rax
movq %rax, 0x2088(%rsp)
movq 0x2088(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4d0(%rsp)
leaq 0x1420(%rsp), %rax
movq %rax, 0x22f0(%rsp)
movq 0x22f0(%rsp), %rax
movq %rax, 0x3ce0(%rsp)
movq 0x3ce0(%rsp), %rax
movq %rax, 0x4c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x127e965
movq 0x4c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3cdc(%rsp) # imm = 0xFFFFFFFF
movl 0x3cdc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3cd8(%rsp)
cmpl $0x1, 0x3cd8(%rsp)
jne 0x127e965
movq 0x4c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x127e936
movq 0x4c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x127e934
jmp 0x127e963
movq 0x4c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x42b8(%rsp)
cmpq $0x0, 0x42b8(%rsp)
je 0x127e961
movq 0x42b8(%rsp), %rdi
callq 0x5f480
jmp 0x127e963
jmp 0x127e965
movq 0x4c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127e9c0
movq %rax, %rdi
callq 0x678a0
movq 0x4d0(%rsp), %rax
movq %rax, 0x1468(%rsp)
movq 0x1cb8(%rsp), %rcx
movl 0x147c(%rsp), %eax
leaq 0x13d0(%rsp), %rdx
movq %rdx, 0x25e0(%rsp)
movq %rcx, 0x25d8(%rsp)
movl %eax, 0x25d4(%rsp)
movq 0x25d8(%rsp), %rax
movq %rax, 0x4c0(%rsp)
movb $0x0, 0x25d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x25d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x13d0(%rsp), %r10
movq %r10, 0x2de0(%rsp)
movl %r9d, 0x2ddc(%rsp)
movl %r8d, 0x2dd8(%rsp)
movl %edi, 0x2dd4(%rsp)
movq %rsi, 0x2dc8(%rsp)
movq %rdx, 0x2dc0(%rsp)
movl %ecx, 0x2dbc(%rsp)
movq %rax, 0x2db0(%rsp)
movq 0x2de0(%rsp), %rcx
movq %rcx, 0x4b8(%rsp)
movq 0x2dc8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2dc0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2dbc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2db0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2ddc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2dd8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2dd4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3810(%rsp)
movl $0x10, 0x380c(%rsp)
movq 0x3810(%rsp), %rax
movslq 0x380c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x380c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4c0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x13f8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x127eb8c
movq 0x4c0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1410(%rsp)
movb $0x1, 0x25d3(%rsp)
testb $0x1, 0x25d3(%rsp)
jne 0x127ecc7
leaq 0x13d0(%rsp), %rax
movq %rax, 0x25e8(%rsp)
movq 0x25e8(%rsp), %rax
movq %rax, 0x3900(%rsp)
movq 0x3900(%rsp), %rax
movq %rax, 0x4b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x127ec6a
movq 0x4b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x38fc(%rsp) # imm = 0xFFFFFFFF
movl 0x38fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x38f8(%rsp)
cmpl $0x1, 0x38f8(%rsp)
jne 0x127ec6a
movq 0x4b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x127ec3b
movq 0x4b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x127ec39
jmp 0x127ec68
movq 0x4b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44a8(%rsp)
cmpq $0x0, 0x44a8(%rsp)
je 0x127ec66
movq 0x44a8(%rsp), %rdi
callq 0x5f480
jmp 0x127ec68
jmp 0x127ec6a
movq 0x4b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127ecc5
movq %rax, %rdi
callq 0x678a0
jmp 0x127ecc7
leaq 0x13d0(%rsp), %rax
movq %rax, 0x2730(%rsp)
movq 0x2730(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4a8(%rsp)
leaq 0x13d0(%rsp), %rax
movq %rax, 0x2300(%rsp)
movq 0x2300(%rsp), %rax
movq %rax, 0x3cc0(%rsp)
movq 0x3cc0(%rsp), %rax
movq %rax, 0x4a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x127edb2
movq 0x4a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3cbc(%rsp) # imm = 0xFFFFFFFF
movl 0x3cbc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3cb8(%rsp)
cmpl $0x1, 0x3cb8(%rsp)
jne 0x127edb2
movq 0x4a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x127ed83
movq 0x4a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x127ed81
jmp 0x127edb0
movq 0x4a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x42c8(%rsp)
cmpq $0x0, 0x42c8(%rsp)
je 0x127edae
movq 0x42c8(%rsp), %rdi
callq 0x5f480
jmp 0x127edb0
jmp 0x127edb2
movq 0x4a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127ee0d
movq %rax, %rdi
callq 0x678a0
movq 0x4a8(%rsp), %rax
movq %rax, 0x1418(%rsp)
movl $0x0, 0x13cc(%rsp)
movl 0x13cc(%rsp), %eax
cmpl 0x1c78(%rsp), %eax
jge 0x127ef42
movq 0x1470(%rsp), %rax
movss (%rax), %xmm0
movss %xmm0, 0x2b50(%rsp)
movaps 0x2b50(%rsp), %xmm0
shufps $0x0, %xmm0, %xmm0 # xmm0 = xmm0[0,0,0,0]
movaps %xmm0, 0x2b40(%rsp)
movaps 0x2b40(%rsp), %xmm0
movaps %xmm0, 0x13b0(%rsp)
movq 0x1468(%rsp), %rax
movq %rax, 0x2830(%rsp)
movq 0x2830(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x13a0(%rsp)
leaq 0x1caf(%rsp), %rdi
leaq 0x13b0(%rsp), %rsi
leaq 0x13a0(%rsp), %rdx
callq 0x12f6aa0
movaps %xmm0, 0x1390(%rsp)
movq 0x1418(%rsp), %rax
movaps 0x1390(%rsp), %xmm0
movq %rax, 0x2a38(%rsp)
movaps %xmm0, 0x2a20(%rsp)
movaps 0x2a20(%rsp), %xmm0
movq 0x2a38(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1470(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x1470(%rsp)
movq 0x1468(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1468(%rsp)
movq 0x1418(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1418(%rsp)
movl 0x13cc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x13cc(%rsp)
jmp 0x127ee28
jmp 0x127ef44
movl 0x147c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x147c(%rsp)
jmp 0x127e54c
movl $0x0, 0x1cd4(%rsp)
jmp 0x1287700
cmpl $0x1, 0x1ca8(%rsp)
je 0x127fee2
cmpl $0x1, 0x1c88(%rsp)
jne 0x127fee2
movl 0x1c84(%rsp), %eax
cmpl 0x1ca4(%rsp), %eax
jne 0x127fee2
movl 0x1c7c(%rsp), %eax
cmpl 0x1c9c(%rsp), %eax
jne 0x127fee2
movq 0x1cb8(%rsp), %rdi
movl 0x1ca8(%rsp), %esi
movl 0x1ca4(%rsp), %edx
movl 0x1c9c(%rsp), %ecx
movq 0x1c90(%rsp), %r8
movl 0x1c8c(%rsp), %r9d
movq 0x1cb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1cb8(%rsp), %rax
movq %rax, 0x1d38(%rsp)
movq 0x1d38(%rsp), %rcx
movq %rcx, 0x490(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x49f(%rsp)
je 0x127f051
movq 0x490(%rsp), %rax
movq %rax, 0x2bc0(%rsp)
movq 0x2bc0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x49f(%rsp)
movb 0x49f(%rsp), %al
testb $0x1, %al
jne 0x127f05e
jmp 0x127f06e
movl $0xffffff9c, 0x1cd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1287700
movl $0x0, 0x138c(%rsp)
movl 0x138c(%rsp), %eax
cmpl 0x1c7c(%rsp), %eax
jge 0x127fed2
movq 0x1cc8(%rsp), %rcx
movl 0x138c(%rsp), %eax
leaq 0x1338(%rsp), %rdx
movq %rdx, 0x1eb8(%rsp)
movq %rcx, 0x1eb0(%rsp)
movl %eax, 0x1eac(%rsp)
movq 0x1eb0(%rsp), %rax
movq %rax, 0x488(%rsp)
movb $0x0, 0x1eab(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1eac(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1338(%rsp), %r10
movq %r10, 0x32e8(%rsp)
movl %r9d, 0x32e4(%rsp)
movl %r8d, 0x32e0(%rsp)
movl %edi, 0x32dc(%rsp)
movq %rsi, 0x32d0(%rsp)
movq %rdx, 0x32c8(%rsp)
movl %ecx, 0x32c4(%rsp)
movq %rax, 0x32b8(%rsp)
movq 0x32e8(%rsp), %rcx
movq %rcx, 0x480(%rsp)
movq 0x32d0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x32c8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x32c4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x32b8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x32e4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x32e0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x32dc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x36a0(%rsp)
movl $0x10, 0x369c(%rsp)
movq 0x36a0(%rsp), %rax
movslq 0x369c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x369c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x488(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1360(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x127f249
movq 0x488(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1378(%rsp)
movb $0x1, 0x1eab(%rsp)
testb $0x1, 0x1eab(%rsp)
jne 0x127f384
leaq 0x1338(%rsp), %rax
movq %rax, 0x2160(%rsp)
movq 0x2160(%rsp), %rax
movq %rax, 0x4000(%rsp)
movq 0x4000(%rsp), %rax
movq %rax, 0x478(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x127f327
movq 0x478(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ffc(%rsp) # imm = 0xFFFFFFFF
movl 0x3ffc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ff8(%rsp)
cmpl $0x1, 0x3ff8(%rsp)
jne 0x127f327
movq 0x478(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x127f2f8
movq 0x478(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x127f2f6
jmp 0x127f325
movq 0x478(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4128(%rsp)
cmpq $0x0, 0x4128(%rsp)
je 0x127f323
movq 0x4128(%rsp), %rdi
callq 0x5f480
jmp 0x127f325
jmp 0x127f327
movq 0x478(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127f382
movq %rax, %rdi
callq 0x678a0
jmp 0x127f384
leaq 0x1338(%rsp), %rax
movq %rax, 0x2080(%rsp)
movq 0x2080(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x470(%rsp)
leaq 0x1338(%rsp), %rax
movq %rax, 0x2310(%rsp)
movq 0x2310(%rsp), %rax
movq %rax, 0x3ca0(%rsp)
movq 0x3ca0(%rsp), %rax
movq %rax, 0x468(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x127f46f
movq 0x468(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c9c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c9c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c98(%rsp)
cmpl $0x1, 0x3c98(%rsp)
jne 0x127f46f
movq 0x468(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x127f440
movq 0x468(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x127f43e
jmp 0x127f46d
movq 0x468(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x42d8(%rsp)
cmpq $0x0, 0x42d8(%rsp)
je 0x127f46b
movq 0x42d8(%rsp), %rdi
callq 0x5f480
jmp 0x127f46d
jmp 0x127f46f
movq 0x468(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127f4ca
movq %rax, %rdi
callq 0x678a0
movq 0x470(%rsp), %rax
movq %rax, 0x1380(%rsp)
movq 0x1cc0(%rsp), %rcx
movl 0x138c(%rsp), %eax
leaq 0x12e8(%rsp), %rdx
movq %rdx, 0x1ea0(%rsp)
movq %rcx, 0x1e98(%rsp)
movl %eax, 0x1e94(%rsp)
movq 0x1e98(%rsp), %rax
movq %rax, 0x460(%rsp)
movb $0x0, 0x1e93(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e94(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x12e8(%rsp), %r10
movq %r10, 0x3320(%rsp)
movl %r9d, 0x331c(%rsp)
movl %r8d, 0x3318(%rsp)
movl %edi, 0x3314(%rsp)
movq %rsi, 0x3308(%rsp)
movq %rdx, 0x3300(%rsp)
movl %ecx, 0x32fc(%rsp)
movq %rax, 0x32f0(%rsp)
movq 0x3320(%rsp), %rcx
movq %rcx, 0x458(%rsp)
movq 0x3308(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3300(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x32fc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x32f0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x331c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3318(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3314(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3690(%rsp)
movl $0x10, 0x368c(%rsp)
movq 0x3690(%rsp), %rax
movslq 0x368c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x368c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x460(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1310(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x127f696
movq 0x460(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1328(%rsp)
movb $0x1, 0x1e93(%rsp)
testb $0x1, 0x1e93(%rsp)
jne 0x127f7d1
leaq 0x12e8(%rsp), %rax
movq %rax, 0x2168(%rsp)
movq 0x2168(%rsp), %rax
movq %rax, 0x3ff0(%rsp)
movq 0x3ff0(%rsp), %rax
movq %rax, 0x450(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x127f774
movq 0x450(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fec(%rsp) # imm = 0xFFFFFFFF
movl 0x3fec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fe8(%rsp)
cmpl $0x1, 0x3fe8(%rsp)
jne 0x127f774
movq 0x450(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x127f745
movq 0x450(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x127f743
jmp 0x127f772
movq 0x450(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4130(%rsp)
cmpq $0x0, 0x4130(%rsp)
je 0x127f770
movq 0x4130(%rsp), %rdi
callq 0x5f480
jmp 0x127f772
jmp 0x127f774
movq 0x450(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127f7cf
movq %rax, %rdi
callq 0x678a0
jmp 0x127f7d1
leaq 0x12e8(%rsp), %rax
movq %rax, 0x2078(%rsp)
movq 0x2078(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x448(%rsp)
leaq 0x12e8(%rsp), %rax
movq %rax, 0x2320(%rsp)
movq 0x2320(%rsp), %rax
movq %rax, 0x3c80(%rsp)
movq 0x3c80(%rsp), %rax
movq %rax, 0x440(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x127f8bc
movq 0x440(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c7c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c7c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c78(%rsp)
cmpl $0x1, 0x3c78(%rsp)
jne 0x127f8bc
movq 0x440(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x127f88d
movq 0x440(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x127f88b
jmp 0x127f8ba
movq 0x440(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x42e8(%rsp)
cmpq $0x0, 0x42e8(%rsp)
je 0x127f8b8
movq 0x42e8(%rsp), %rdi
callq 0x5f480
jmp 0x127f8ba
jmp 0x127f8bc
movq 0x440(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127f917
movq %rax, %rdi
callq 0x678a0
movq 0x448(%rsp), %rax
movq %rax, 0x1330(%rsp)
movq 0x1cb8(%rsp), %rcx
movl 0x138c(%rsp), %eax
leaq 0x1298(%rsp), %rdx
movq %rdx, 0x25c0(%rsp)
movq %rcx, 0x25b8(%rsp)
movl %eax, 0x25b4(%rsp)
movq 0x25b8(%rsp), %rax
movq %rax, 0x438(%rsp)
movb $0x0, 0x25b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x25b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1298(%rsp), %r10
movq %r10, 0x2e18(%rsp)
movl %r9d, 0x2e14(%rsp)
movl %r8d, 0x2e10(%rsp)
movl %edi, 0x2e0c(%rsp)
movq %rsi, 0x2e00(%rsp)
movq %rdx, 0x2df8(%rsp)
movl %ecx, 0x2df4(%rsp)
movq %rax, 0x2de8(%rsp)
movq 0x2e18(%rsp), %rcx
movq %rcx, 0x430(%rsp)
movq 0x2e00(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2df8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2df4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2de8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2e14(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2e10(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2e0c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3800(%rsp)
movl $0x10, 0x37fc(%rsp)
movq 0x3800(%rsp), %rax
movslq 0x37fc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x37fc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x438(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x12c0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x127fae3
movq 0x438(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x12d8(%rsp)
movb $0x1, 0x25b3(%rsp)
testb $0x1, 0x25b3(%rsp)
jne 0x127fc1e
leaq 0x1298(%rsp), %rax
movq %rax, 0x25c8(%rsp)
movq 0x25c8(%rsp), %rax
movq %rax, 0x3910(%rsp)
movq 0x3910(%rsp), %rax
movq %rax, 0x428(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x127fbc1
movq 0x428(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x390c(%rsp) # imm = 0xFFFFFFFF
movl 0x390c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3908(%rsp)
cmpl $0x1, 0x3908(%rsp)
jne 0x127fbc1
movq 0x428(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x127fb92
movq 0x428(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x127fb90
jmp 0x127fbbf
movq 0x428(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44a0(%rsp)
cmpq $0x0, 0x44a0(%rsp)
je 0x127fbbd
movq 0x44a0(%rsp), %rdi
callq 0x5f480
jmp 0x127fbbf
jmp 0x127fbc1
movq 0x428(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127fc1c
movq %rax, %rdi
callq 0x678a0
jmp 0x127fc1e
leaq 0x1298(%rsp), %rax
movq %rax, 0x2728(%rsp)
movq 0x2728(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x420(%rsp)
leaq 0x1298(%rsp), %rax
movq %rax, 0x2330(%rsp)
movq 0x2330(%rsp), %rax
movq %rax, 0x3c60(%rsp)
movq 0x3c60(%rsp), %rax
movq %rax, 0x418(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x127fd09
movq 0x418(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c5c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c5c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c58(%rsp)
cmpl $0x1, 0x3c58(%rsp)
jne 0x127fd09
movq 0x418(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x127fcda
movq 0x418(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x127fcd8
jmp 0x127fd07
movq 0x418(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x42f8(%rsp)
cmpq $0x0, 0x42f8(%rsp)
je 0x127fd05
movq 0x42f8(%rsp), %rdi
callq 0x5f480
jmp 0x127fd07
jmp 0x127fd09
movq 0x418(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x127fd64
movq %rax, %rdi
callq 0x678a0
movq 0x420(%rsp), %rax
movq %rax, 0x12e0(%rsp)
movl $0x0, 0x1294(%rsp)
movl 0x1294(%rsp), %eax
cmpl 0x1ca4(%rsp), %eax
jge 0x127feba
movq 0x1330(%rsp), %rax
movl 0x1294(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2828(%rsp)
movq 0x2828(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1280(%rsp)
movl $0x0, 0x127c(%rsp)
movl 0x127c(%rsp), %eax
cmpl 0x1ca8(%rsp), %eax
jge 0x127fea2
movq 0x1380(%rsp), %rax
movq %rax, 0x2820(%rsp)
movq 0x2820(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1260(%rsp)
leaq 0x1caf(%rsp), %rdi
leaq 0x1260(%rsp), %rsi
leaq 0x1280(%rsp), %rdx
callq 0x12f6aa0
movaps %xmm0, 0x1250(%rsp)
movq 0x12e0(%rsp), %rax
movaps 0x1250(%rsp), %xmm0
movq %rax, 0x2a18(%rsp)
movaps %xmm0, 0x2a00(%rsp)
movaps 0x2a00(%rsp), %xmm0
movq 0x2a18(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1380(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1380(%rsp)
movq 0x12e0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x12e0(%rsp)
movl 0x127c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x127c(%rsp)
jmp 0x127fdd5
jmp 0x127fea4
movl 0x1294(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1294(%rsp)
jmp 0x127fd7f
jmp 0x127febc
movl 0x138c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x138c(%rsp)
jmp 0x127f079
movl $0x0, 0x1cd4(%rsp)
jmp 0x1287700
movl 0x1c88(%rsp), %eax
cmpl 0x1ca8(%rsp), %eax
jne 0x1280e5a
cmpl $0x1, 0x1ca4(%rsp)
je 0x1280e5a
cmpl $0x1, 0x1c84(%rsp)
jne 0x1280e5a
movl 0x1c7c(%rsp), %eax
cmpl 0x1c9c(%rsp), %eax
jne 0x1280e5a
movq 0x1cb8(%rsp), %rdi
movl 0x1ca8(%rsp), %esi
movl 0x1ca4(%rsp), %edx
movl 0x1c9c(%rsp), %ecx
movq 0x1c90(%rsp), %r8
movl 0x1c8c(%rsp), %r9d
movq 0x1cb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1cb8(%rsp), %rax
movq %rax, 0x1d30(%rsp)
movq 0x1d30(%rsp), %rcx
movq %rcx, 0x408(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x417(%rsp)
je 0x127ffc9
movq 0x408(%rsp), %rax
movq %rax, 0x2bc8(%rsp)
movq 0x2bc8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x417(%rsp)
movb 0x417(%rsp), %al
testb $0x1, %al
jne 0x127ffd6
jmp 0x127ffe6
movl $0xffffff9c, 0x1cd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1287700
movl $0x0, 0x124c(%rsp)
movl 0x124c(%rsp), %eax
cmpl 0x1c7c(%rsp), %eax
jge 0x1280e4a
movq 0x1cc8(%rsp), %rcx
movl 0x124c(%rsp), %eax
leaq 0x11f8(%rsp), %rdx
movq %rdx, 0x1e88(%rsp)
movq %rcx, 0x1e80(%rsp)
movl %eax, 0x1e7c(%rsp)
movq 0x1e80(%rsp), %rax
movq %rax, 0x400(%rsp)
movb $0x0, 0x1e7b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e7c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x11f8(%rsp), %r10
movq %r10, 0x3358(%rsp)
movl %r9d, 0x3354(%rsp)
movl %r8d, 0x3350(%rsp)
movl %edi, 0x334c(%rsp)
movq %rsi, 0x3340(%rsp)
movq %rdx, 0x3338(%rsp)
movl %ecx, 0x3334(%rsp)
movq %rax, 0x3328(%rsp)
movq 0x3358(%rsp), %rcx
movq %rcx, 0x3f8(%rsp)
movq 0x3340(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3338(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3334(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3328(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3354(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3350(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x334c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3680(%rsp)
movl $0x10, 0x367c(%rsp)
movq 0x3680(%rsp), %rax
movslq 0x367c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x367c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x400(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1220(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12801c1
movq 0x400(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1238(%rsp)
movb $0x1, 0x1e7b(%rsp)
testb $0x1, 0x1e7b(%rsp)
jne 0x12802fc
leaq 0x11f8(%rsp), %rax
movq %rax, 0x2170(%rsp)
movq 0x2170(%rsp), %rax
movq %rax, 0x3fe0(%rsp)
movq 0x3fe0(%rsp), %rax
movq %rax, 0x3f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128029f
movq 0x3f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fdc(%rsp) # imm = 0xFFFFFFFF
movl 0x3fdc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fd8(%rsp)
cmpl $0x1, 0x3fd8(%rsp)
jne 0x128029f
movq 0x3f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1280270
movq 0x3f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128026e
jmp 0x128029d
movq 0x3f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4138(%rsp)
cmpq $0x0, 0x4138(%rsp)
je 0x128029b
movq 0x4138(%rsp), %rdi
callq 0x5f480
jmp 0x128029d
jmp 0x128029f
movq 0x3f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12802fa
movq %rax, %rdi
callq 0x678a0
jmp 0x12802fc
leaq 0x11f8(%rsp), %rax
movq %rax, 0x2070(%rsp)
movq 0x2070(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e8(%rsp)
leaq 0x11f8(%rsp), %rax
movq %rax, 0x2340(%rsp)
movq 0x2340(%rsp), %rax
movq %rax, 0x3c40(%rsp)
movq 0x3c40(%rsp), %rax
movq %rax, 0x3e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12803e7
movq 0x3e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c3c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c3c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c38(%rsp)
cmpl $0x1, 0x3c38(%rsp)
jne 0x12803e7
movq 0x3e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12803b8
movq 0x3e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12803b6
jmp 0x12803e5
movq 0x3e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4308(%rsp)
cmpq $0x0, 0x4308(%rsp)
je 0x12803e3
movq 0x4308(%rsp), %rdi
callq 0x5f480
jmp 0x12803e5
jmp 0x12803e7
movq 0x3e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1280442
movq %rax, %rdi
callq 0x678a0
movq 0x3e8(%rsp), %rax
movq %rax, 0x1240(%rsp)
movq 0x1cc0(%rsp), %rcx
movl 0x124c(%rsp), %eax
leaq 0x11a8(%rsp), %rdx
movq %rdx, 0x1e70(%rsp)
movq %rcx, 0x1e68(%rsp)
movl %eax, 0x1e64(%rsp)
movq 0x1e68(%rsp), %rax
movq %rax, 0x3d8(%rsp)
movb $0x0, 0x1e63(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e64(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x11a8(%rsp), %r10
movq %r10, 0x3390(%rsp)
movl %r9d, 0x338c(%rsp)
movl %r8d, 0x3388(%rsp)
movl %edi, 0x3384(%rsp)
movq %rsi, 0x3378(%rsp)
movq %rdx, 0x3370(%rsp)
movl %ecx, 0x336c(%rsp)
movq %rax, 0x3360(%rsp)
movq 0x3390(%rsp), %rcx
movq %rcx, 0x3d0(%rsp)
movq 0x3378(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3370(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x336c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3360(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x338c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3388(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3384(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3670(%rsp)
movl $0x10, 0x366c(%rsp)
movq 0x3670(%rsp), %rax
movslq 0x366c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x366c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3d8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x11d0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x128060e
movq 0x3d8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x11e8(%rsp)
movb $0x1, 0x1e63(%rsp)
testb $0x1, 0x1e63(%rsp)
jne 0x1280749
leaq 0x11a8(%rsp), %rax
movq %rax, 0x2178(%rsp)
movq 0x2178(%rsp), %rax
movq %rax, 0x3fd0(%rsp)
movq 0x3fd0(%rsp), %rax
movq %rax, 0x3c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12806ec
movq 0x3c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fcc(%rsp) # imm = 0xFFFFFFFF
movl 0x3fcc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fc8(%rsp)
cmpl $0x1, 0x3fc8(%rsp)
jne 0x12806ec
movq 0x3c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12806bd
movq 0x3c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12806bb
jmp 0x12806ea
movq 0x3c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4140(%rsp)
cmpq $0x0, 0x4140(%rsp)
je 0x12806e8
movq 0x4140(%rsp), %rdi
callq 0x5f480
jmp 0x12806ea
jmp 0x12806ec
movq 0x3c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1280747
movq %rax, %rdi
callq 0x678a0
jmp 0x1280749
leaq 0x11a8(%rsp), %rax
movq %rax, 0x2068(%rsp)
movq 0x2068(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3c0(%rsp)
leaq 0x11a8(%rsp), %rax
movq %rax, 0x2350(%rsp)
movq 0x2350(%rsp), %rax
movq %rax, 0x3c20(%rsp)
movq 0x3c20(%rsp), %rax
movq %rax, 0x3b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1280834
movq 0x3b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c1c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c1c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c18(%rsp)
cmpl $0x1, 0x3c18(%rsp)
jne 0x1280834
movq 0x3b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1280805
movq 0x3b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1280803
jmp 0x1280832
movq 0x3b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4318(%rsp)
cmpq $0x0, 0x4318(%rsp)
je 0x1280830
movq 0x4318(%rsp), %rdi
callq 0x5f480
jmp 0x1280832
jmp 0x1280834
movq 0x3b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128088f
movq %rax, %rdi
callq 0x678a0
movq 0x3c0(%rsp), %rax
movq %rax, 0x11f0(%rsp)
movq 0x1cb8(%rsp), %rcx
movl 0x124c(%rsp), %eax
leaq 0x1158(%rsp), %rdx
movq %rdx, 0x25a0(%rsp)
movq %rcx, 0x2598(%rsp)
movl %eax, 0x2594(%rsp)
movq 0x2598(%rsp), %rax
movq %rax, 0x3b0(%rsp)
movb $0x0, 0x2593(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2594(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1158(%rsp), %r10
movq %r10, 0x2e50(%rsp)
movl %r9d, 0x2e4c(%rsp)
movl %r8d, 0x2e48(%rsp)
movl %edi, 0x2e44(%rsp)
movq %rsi, 0x2e38(%rsp)
movq %rdx, 0x2e30(%rsp)
movl %ecx, 0x2e2c(%rsp)
movq %rax, 0x2e20(%rsp)
movq 0x2e50(%rsp), %rcx
movq %rcx, 0x3a8(%rsp)
movq 0x2e38(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2e30(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2e2c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2e20(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2e4c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2e48(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2e44(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x37f0(%rsp)
movl $0x10, 0x37ec(%rsp)
movq 0x37f0(%rsp), %rax
movslq 0x37ec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x37ec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3b0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1180(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1280a5b
movq 0x3b0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1198(%rsp)
movb $0x1, 0x2593(%rsp)
testb $0x1, 0x2593(%rsp)
jne 0x1280b96
leaq 0x1158(%rsp), %rax
movq %rax, 0x25a8(%rsp)
movq 0x25a8(%rsp), %rax
movq %rax, 0x3920(%rsp)
movq 0x3920(%rsp), %rax
movq %rax, 0x3a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1280b39
movq 0x3a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x391c(%rsp) # imm = 0xFFFFFFFF
movl 0x391c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3918(%rsp)
cmpl $0x1, 0x3918(%rsp)
jne 0x1280b39
movq 0x3a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1280b0a
movq 0x3a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1280b08
jmp 0x1280b37
movq 0x3a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4498(%rsp)
cmpq $0x0, 0x4498(%rsp)
je 0x1280b35
movq 0x4498(%rsp), %rdi
callq 0x5f480
jmp 0x1280b37
jmp 0x1280b39
movq 0x3a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1280b94
movq %rax, %rdi
callq 0x678a0
jmp 0x1280b96
leaq 0x1158(%rsp), %rax
movq %rax, 0x2720(%rsp)
movq 0x2720(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x398(%rsp)
leaq 0x1158(%rsp), %rax
movq %rax, 0x2360(%rsp)
movq 0x2360(%rsp), %rax
movq %rax, 0x3c00(%rsp)
movq 0x3c00(%rsp), %rax
movq %rax, 0x390(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1280c81
movq 0x390(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bfc(%rsp) # imm = 0xFFFFFFFF
movl 0x3bfc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3bf8(%rsp)
cmpl $0x1, 0x3bf8(%rsp)
jne 0x1280c81
movq 0x390(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1280c52
movq 0x390(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1280c50
jmp 0x1280c7f
movq 0x390(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4328(%rsp)
cmpq $0x0, 0x4328(%rsp)
je 0x1280c7d
movq 0x4328(%rsp), %rdi
callq 0x5f480
jmp 0x1280c7f
jmp 0x1280c81
movq 0x390(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1280cdc
movq %rax, %rdi
callq 0x678a0
movq 0x398(%rsp), %rax
movq %rax, 0x11a0(%rsp)
movl $0x0, 0x1154(%rsp)
movl 0x1154(%rsp), %eax
cmpl 0x1ca4(%rsp), %eax
jge 0x1280e32
movl $0x0, 0x1150(%rsp)
movl 0x1150(%rsp), %eax
cmpl 0x1ca8(%rsp), %eax
jge 0x1280e1a
movq 0x1240(%rsp), %rax
movq %rax, 0x2818(%rsp)
movq 0x2818(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1140(%rsp)
movq 0x11f0(%rsp), %rax
movl 0x1150(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2810(%rsp)
movq 0x2810(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1130(%rsp)
leaq 0x1caf(%rsp), %rdi
leaq 0x1140(%rsp), %rsi
leaq 0x1130(%rsp), %rdx
callq 0x12f6aa0
movaps %xmm0, 0x1120(%rsp)
movq 0x11a0(%rsp), %rax
movaps 0x1120(%rsp), %xmm0
movq %rax, 0x29f8(%rsp)
movaps %xmm0, 0x29e0(%rsp)
movaps 0x29e0(%rsp), %xmm0
movq 0x29f8(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1240(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1240(%rsp)
movq 0x11a0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x11a0(%rsp)
movl 0x1150(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1150(%rsp)
jmp 0x1280d16
jmp 0x1280e1c
movl 0x1154(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1154(%rsp)
jmp 0x1280cf7
jmp 0x1280e34
movl 0x124c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x124c(%rsp)
jmp 0x127fff1
movl $0x0, 0x1cd4(%rsp)
jmp 0x1287700
cmpl $0x1, 0x1c88(%rsp)
je 0x1281dd2
cmpl $0x1, 0x1ca8(%rsp)
jne 0x1281dd2
movl 0x1c84(%rsp), %eax
cmpl 0x1ca4(%rsp), %eax
jne 0x1281dd2
movl 0x1c7c(%rsp), %eax
cmpl 0x1c9c(%rsp), %eax
jne 0x1281dd2
movq 0x1cb8(%rsp), %rdi
movl 0x1c88(%rsp), %esi
movl 0x1c84(%rsp), %edx
movl 0x1c7c(%rsp), %ecx
movq 0x1c70(%rsp), %r8
movl 0x1c6c(%rsp), %r9d
movq 0x1cb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1cb8(%rsp), %rax
movq %rax, 0x1d28(%rsp)
movq 0x1d28(%rsp), %rcx
movq %rcx, 0x380(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x38f(%rsp)
je 0x1280f41
movq 0x380(%rsp), %rax
movq %rax, 0x2bd0(%rsp)
movq 0x2bd0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x38f(%rsp)
movb 0x38f(%rsp), %al
testb $0x1, %al
jne 0x1280f4e
jmp 0x1280f5e
movl $0xffffff9c, 0x1cd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1287700
movl $0x0, 0x111c(%rsp)
movl 0x111c(%rsp), %eax
cmpl 0x1c7c(%rsp), %eax
jge 0x1281dc2
movq 0x1cc8(%rsp), %rcx
movl 0x111c(%rsp), %eax
leaq 0x10c8(%rsp), %rdx
movq %rdx, 0x1e58(%rsp)
movq %rcx, 0x1e50(%rsp)
movl %eax, 0x1e4c(%rsp)
movq 0x1e50(%rsp), %rax
movq %rax, 0x378(%rsp)
movb $0x0, 0x1e4b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e4c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x10c8(%rsp), %r10
movq %r10, 0x33c8(%rsp)
movl %r9d, 0x33c4(%rsp)
movl %r8d, 0x33c0(%rsp)
movl %edi, 0x33bc(%rsp)
movq %rsi, 0x33b0(%rsp)
movq %rdx, 0x33a8(%rsp)
movl %ecx, 0x33a4(%rsp)
movq %rax, 0x3398(%rsp)
movq 0x33c8(%rsp), %rcx
movq %rcx, 0x370(%rsp)
movq 0x33b0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x33a8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x33a4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3398(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x33c4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x33c0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x33bc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3660(%rsp)
movl $0x10, 0x365c(%rsp)
movq 0x3660(%rsp), %rax
movslq 0x365c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x365c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x378(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x10f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1281139
movq 0x378(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1108(%rsp)
movb $0x1, 0x1e4b(%rsp)
testb $0x1, 0x1e4b(%rsp)
jne 0x1281274
leaq 0x10c8(%rsp), %rax
movq %rax, 0x2180(%rsp)
movq 0x2180(%rsp), %rax
movq %rax, 0x3fc0(%rsp)
movq 0x3fc0(%rsp), %rax
movq %rax, 0x368(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1281217
movq 0x368(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fbc(%rsp) # imm = 0xFFFFFFFF
movl 0x3fbc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fb8(%rsp)
cmpl $0x1, 0x3fb8(%rsp)
jne 0x1281217
movq 0x368(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12811e8
movq 0x368(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12811e6
jmp 0x1281215
movq 0x368(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4148(%rsp)
cmpq $0x0, 0x4148(%rsp)
je 0x1281213
movq 0x4148(%rsp), %rdi
callq 0x5f480
jmp 0x1281215
jmp 0x1281217
movq 0x368(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1281272
movq %rax, %rdi
callq 0x678a0
jmp 0x1281274
leaq 0x10c8(%rsp), %rax
movq %rax, 0x2060(%rsp)
movq 0x2060(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x360(%rsp)
leaq 0x10c8(%rsp), %rax
movq %rax, 0x2370(%rsp)
movq 0x2370(%rsp), %rax
movq %rax, 0x3be0(%rsp)
movq 0x3be0(%rsp), %rax
movq %rax, 0x358(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128135f
movq 0x358(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bdc(%rsp) # imm = 0xFFFFFFFF
movl 0x3bdc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3bd8(%rsp)
cmpl $0x1, 0x3bd8(%rsp)
jne 0x128135f
movq 0x358(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1281330
movq 0x358(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128132e
jmp 0x128135d
movq 0x358(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4338(%rsp)
cmpq $0x0, 0x4338(%rsp)
je 0x128135b
movq 0x4338(%rsp), %rdi
callq 0x5f480
jmp 0x128135d
jmp 0x128135f
movq 0x358(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12813ba
movq %rax, %rdi
callq 0x678a0
movq 0x360(%rsp), %rax
movq %rax, 0x1110(%rsp)
movq 0x1cc0(%rsp), %rcx
movl 0x111c(%rsp), %eax
leaq 0x1078(%rsp), %rdx
movq %rdx, 0x1e40(%rsp)
movq %rcx, 0x1e38(%rsp)
movl %eax, 0x1e34(%rsp)
movq 0x1e38(%rsp), %rax
movq %rax, 0x350(%rsp)
movb $0x0, 0x1e33(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e34(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1078(%rsp), %r10
movq %r10, 0x3400(%rsp)
movl %r9d, 0x33fc(%rsp)
movl %r8d, 0x33f8(%rsp)
movl %edi, 0x33f4(%rsp)
movq %rsi, 0x33e8(%rsp)
movq %rdx, 0x33e0(%rsp)
movl %ecx, 0x33dc(%rsp)
movq %rax, 0x33d0(%rsp)
movq 0x3400(%rsp), %rcx
movq %rcx, 0x348(%rsp)
movq 0x33e8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x33e0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x33dc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x33d0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x33fc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x33f8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x33f4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3650(%rsp)
movl $0x10, 0x364c(%rsp)
movq 0x3650(%rsp), %rax
movslq 0x364c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x364c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x350(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x10a0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1281586
movq 0x350(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x10b8(%rsp)
movb $0x1, 0x1e33(%rsp)
testb $0x1, 0x1e33(%rsp)
jne 0x12816c1
leaq 0x1078(%rsp), %rax
movq %rax, 0x2188(%rsp)
movq 0x2188(%rsp), %rax
movq %rax, 0x3fb0(%rsp)
movq 0x3fb0(%rsp), %rax
movq %rax, 0x340(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1281664
movq 0x340(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fac(%rsp) # imm = 0xFFFFFFFF
movl 0x3fac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fa8(%rsp)
cmpl $0x1, 0x3fa8(%rsp)
jne 0x1281664
movq 0x340(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1281635
movq 0x340(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1281633
jmp 0x1281662
movq 0x340(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4150(%rsp)
cmpq $0x0, 0x4150(%rsp)
je 0x1281660
movq 0x4150(%rsp), %rdi
callq 0x5f480
jmp 0x1281662
jmp 0x1281664
movq 0x340(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12816bf
movq %rax, %rdi
callq 0x678a0
jmp 0x12816c1
leaq 0x1078(%rsp), %rax
movq %rax, 0x2058(%rsp)
movq 0x2058(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x338(%rsp)
leaq 0x1078(%rsp), %rax
movq %rax, 0x2380(%rsp)
movq 0x2380(%rsp), %rax
movq %rax, 0x3bc0(%rsp)
movq 0x3bc0(%rsp), %rax
movq %rax, 0x330(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12817ac
movq 0x330(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bbc(%rsp) # imm = 0xFFFFFFFF
movl 0x3bbc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3bb8(%rsp)
cmpl $0x1, 0x3bb8(%rsp)
jne 0x12817ac
movq 0x330(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128177d
movq 0x330(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128177b
jmp 0x12817aa
movq 0x330(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4348(%rsp)
cmpq $0x0, 0x4348(%rsp)
je 0x12817a8
movq 0x4348(%rsp), %rdi
callq 0x5f480
jmp 0x12817aa
jmp 0x12817ac
movq 0x330(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1281807
movq %rax, %rdi
callq 0x678a0
movq 0x338(%rsp), %rax
movq %rax, 0x10c0(%rsp)
movq 0x1cb8(%rsp), %rcx
movl 0x111c(%rsp), %eax
leaq 0x1028(%rsp), %rdx
movq %rdx, 0x2580(%rsp)
movq %rcx, 0x2578(%rsp)
movl %eax, 0x2574(%rsp)
movq 0x2578(%rsp), %rax
movq %rax, 0x328(%rsp)
movb $0x0, 0x2573(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2574(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1028(%rsp), %r10
movq %r10, 0x2e88(%rsp)
movl %r9d, 0x2e84(%rsp)
movl %r8d, 0x2e80(%rsp)
movl %edi, 0x2e7c(%rsp)
movq %rsi, 0x2e70(%rsp)
movq %rdx, 0x2e68(%rsp)
movl %ecx, 0x2e64(%rsp)
movq %rax, 0x2e58(%rsp)
movq 0x2e88(%rsp), %rcx
movq %rcx, 0x320(%rsp)
movq 0x2e70(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2e68(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2e64(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2e58(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2e84(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2e80(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2e7c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x37e0(%rsp)
movl $0x10, 0x37dc(%rsp)
movq 0x37e0(%rsp), %rax
movslq 0x37dc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x37dc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x328(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1050(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12819d3
movq 0x328(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1068(%rsp)
movb $0x1, 0x2573(%rsp)
testb $0x1, 0x2573(%rsp)
jne 0x1281b0e
leaq 0x1028(%rsp), %rax
movq %rax, 0x2588(%rsp)
movq 0x2588(%rsp), %rax
movq %rax, 0x3930(%rsp)
movq 0x3930(%rsp), %rax
movq %rax, 0x318(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1281ab1
movq 0x318(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x392c(%rsp) # imm = 0xFFFFFFFF
movl 0x392c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3928(%rsp)
cmpl $0x1, 0x3928(%rsp)
jne 0x1281ab1
movq 0x318(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1281a82
movq 0x318(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1281a80
jmp 0x1281aaf
movq 0x318(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4490(%rsp)
cmpq $0x0, 0x4490(%rsp)
je 0x1281aad
movq 0x4490(%rsp), %rdi
callq 0x5f480
jmp 0x1281aaf
jmp 0x1281ab1
movq 0x318(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1281b0c
movq %rax, %rdi
callq 0x678a0
jmp 0x1281b0e
leaq 0x1028(%rsp), %rax
movq %rax, 0x2718(%rsp)
movq 0x2718(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x310(%rsp)
leaq 0x1028(%rsp), %rax
movq %rax, 0x2390(%rsp)
movq 0x2390(%rsp), %rax
movq %rax, 0x3ba0(%rsp)
movq 0x3ba0(%rsp), %rax
movq %rax, 0x308(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1281bf9
movq 0x308(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b9c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b9c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b98(%rsp)
cmpl $0x1, 0x3b98(%rsp)
jne 0x1281bf9
movq 0x308(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1281bca
movq 0x308(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1281bc8
jmp 0x1281bf7
movq 0x308(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4358(%rsp)
cmpq $0x0, 0x4358(%rsp)
je 0x1281bf5
movq 0x4358(%rsp), %rdi
callq 0x5f480
jmp 0x1281bf7
jmp 0x1281bf9
movq 0x308(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1281c54
movq %rax, %rdi
callq 0x678a0
movq 0x310(%rsp), %rax
movq %rax, 0x1070(%rsp)
movl $0x0, 0x1024(%rsp)
movl 0x1024(%rsp), %eax
cmpl 0x1c84(%rsp), %eax
jge 0x1281daa
movq 0x1110(%rsp), %rax
movl 0x1024(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2808(%rsp)
movq 0x2808(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1010(%rsp)
movl $0x0, 0x100c(%rsp)
movl 0x100c(%rsp), %eax
cmpl 0x1c88(%rsp), %eax
jge 0x1281d92
movq 0x10c0(%rsp), %rax
movq %rax, 0x2800(%rsp)
movq 0x2800(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xff0(%rsp)
leaq 0x1caf(%rsp), %rdi
leaq 0x1010(%rsp), %rsi
leaq 0xff0(%rsp), %rdx
callq 0x12f6aa0
movaps %xmm0, 0xfe0(%rsp)
movq 0x1070(%rsp), %rax
movaps 0xfe0(%rsp), %xmm0
movq %rax, 0x29d8(%rsp)
movaps %xmm0, 0x29c0(%rsp)
movaps 0x29c0(%rsp), %xmm0
movq 0x29d8(%rsp), %rax
movups %xmm0, (%rax)
movq 0x10c0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x10c0(%rsp)
movq 0x1070(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1070(%rsp)
movl 0x100c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x100c(%rsp)
jmp 0x1281cc5
jmp 0x1281d94
movl 0x1024(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1024(%rsp)
jmp 0x1281c6f
jmp 0x1281dac
movl 0x111c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x111c(%rsp)
jmp 0x1280f69
movl $0x0, 0x1cd4(%rsp)
jmp 0x1287700
movl 0x1c88(%rsp), %eax
cmpl 0x1ca8(%rsp), %eax
jne 0x1282d4a
cmpl $0x1, 0x1c84(%rsp)
je 0x1282d4a
cmpl $0x1, 0x1ca4(%rsp)
jne 0x1282d4a
movl 0x1c7c(%rsp), %eax
cmpl 0x1c9c(%rsp), %eax
jne 0x1282d4a
movq 0x1cb8(%rsp), %rdi
movl 0x1c88(%rsp), %esi
movl 0x1c84(%rsp), %edx
movl 0x1c7c(%rsp), %ecx
movq 0x1c70(%rsp), %r8
movl 0x1c6c(%rsp), %r9d
movq 0x1cb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1cb8(%rsp), %rax
movq %rax, 0x1d20(%rsp)
movq 0x1d20(%rsp), %rcx
movq %rcx, 0x2f8(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x307(%rsp)
je 0x1281eb9
movq 0x2f8(%rsp), %rax
movq %rax, 0x2bd8(%rsp)
movq 0x2bd8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x307(%rsp)
movb 0x307(%rsp), %al
testb $0x1, %al
jne 0x1281ec6
jmp 0x1281ed6
movl $0xffffff9c, 0x1cd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1287700
movl $0x0, 0xfdc(%rsp)
movl 0xfdc(%rsp), %eax
cmpl 0x1c7c(%rsp), %eax
jge 0x1282d3a
movq 0x1cc8(%rsp), %rcx
movl 0xfdc(%rsp), %eax
leaq 0xf88(%rsp), %rdx
movq %rdx, 0x1e28(%rsp)
movq %rcx, 0x1e20(%rsp)
movl %eax, 0x1e1c(%rsp)
movq 0x1e20(%rsp), %rax
movq %rax, 0x2f0(%rsp)
movb $0x0, 0x1e1b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e1c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xf88(%rsp), %r10
movq %r10, 0x3438(%rsp)
movl %r9d, 0x3434(%rsp)
movl %r8d, 0x3430(%rsp)
movl %edi, 0x342c(%rsp)
movq %rsi, 0x3420(%rsp)
movq %rdx, 0x3418(%rsp)
movl %ecx, 0x3414(%rsp)
movq %rax, 0x3408(%rsp)
movq 0x3438(%rsp), %rcx
movq %rcx, 0x2e8(%rsp)
movq 0x3420(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3418(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3414(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3408(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3434(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3430(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x342c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3640(%rsp)
movl $0x10, 0x363c(%rsp)
movq 0x3640(%rsp), %rax
movslq 0x363c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x363c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2f0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xfb0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12820b1
movq 0x2f0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xfc8(%rsp)
movb $0x1, 0x1e1b(%rsp)
testb $0x1, 0x1e1b(%rsp)
jne 0x12821ec
leaq 0xf88(%rsp), %rax
movq %rax, 0x2190(%rsp)
movq 0x2190(%rsp), %rax
movq %rax, 0x3fa0(%rsp)
movq 0x3fa0(%rsp), %rax
movq %rax, 0x2e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128218f
movq 0x2e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f9c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f9c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f98(%rsp)
cmpl $0x1, 0x3f98(%rsp)
jne 0x128218f
movq 0x2e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1282160
movq 0x2e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128215e
jmp 0x128218d
movq 0x2e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4158(%rsp)
cmpq $0x0, 0x4158(%rsp)
je 0x128218b
movq 0x4158(%rsp), %rdi
callq 0x5f480
jmp 0x128218d
jmp 0x128218f
movq 0x2e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12821ea
movq %rax, %rdi
callq 0x678a0
jmp 0x12821ec
leaq 0xf88(%rsp), %rax
movq %rax, 0x2050(%rsp)
movq 0x2050(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2d8(%rsp)
leaq 0xf88(%rsp), %rax
movq %rax, 0x23a0(%rsp)
movq 0x23a0(%rsp), %rax
movq %rax, 0x3b80(%rsp)
movq 0x3b80(%rsp), %rax
movq %rax, 0x2d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12822d7
movq 0x2d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b7c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b7c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b78(%rsp)
cmpl $0x1, 0x3b78(%rsp)
jne 0x12822d7
movq 0x2d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12822a8
movq 0x2d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12822a6
jmp 0x12822d5
movq 0x2d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4368(%rsp)
cmpq $0x0, 0x4368(%rsp)
je 0x12822d3
movq 0x4368(%rsp), %rdi
callq 0x5f480
jmp 0x12822d5
jmp 0x12822d7
movq 0x2d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1282332
movq %rax, %rdi
callq 0x678a0
movq 0x2d8(%rsp), %rax
movq %rax, 0xfd0(%rsp)
movq 0x1cc0(%rsp), %rcx
movl 0xfdc(%rsp), %eax
leaq 0xf38(%rsp), %rdx
movq %rdx, 0x1e10(%rsp)
movq %rcx, 0x1e08(%rsp)
movl %eax, 0x1e04(%rsp)
movq 0x1e08(%rsp), %rax
movq %rax, 0x2c8(%rsp)
movb $0x0, 0x1e03(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e04(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xf38(%rsp), %r10
movq %r10, 0x3470(%rsp)
movl %r9d, 0x346c(%rsp)
movl %r8d, 0x3468(%rsp)
movl %edi, 0x3464(%rsp)
movq %rsi, 0x3458(%rsp)
movq %rdx, 0x3450(%rsp)
movl %ecx, 0x344c(%rsp)
movq %rax, 0x3440(%rsp)
movq 0x3470(%rsp), %rcx
movq %rcx, 0x2c0(%rsp)
movq 0x3458(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3450(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x344c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3440(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x346c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3468(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3464(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3630(%rsp)
movl $0x10, 0x362c(%rsp)
movq 0x3630(%rsp), %rax
movslq 0x362c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x362c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2c8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf60(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12824fe
movq 0x2c8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xf78(%rsp)
movb $0x1, 0x1e03(%rsp)
testb $0x1, 0x1e03(%rsp)
jne 0x1282639
leaq 0xf38(%rsp), %rax
movq %rax, 0x2198(%rsp)
movq 0x2198(%rsp), %rax
movq %rax, 0x3f90(%rsp)
movq 0x3f90(%rsp), %rax
movq %rax, 0x2b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12825dc
movq 0x2b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f8c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f8c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f88(%rsp)
cmpl $0x1, 0x3f88(%rsp)
jne 0x12825dc
movq 0x2b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12825ad
movq 0x2b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12825ab
jmp 0x12825da
movq 0x2b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4160(%rsp)
cmpq $0x0, 0x4160(%rsp)
je 0x12825d8
movq 0x4160(%rsp), %rdi
callq 0x5f480
jmp 0x12825da
jmp 0x12825dc
movq 0x2b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1282637
movq %rax, %rdi
callq 0x678a0
jmp 0x1282639
leaq 0xf38(%rsp), %rax
movq %rax, 0x2048(%rsp)
movq 0x2048(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2b0(%rsp)
leaq 0xf38(%rsp), %rax
movq %rax, 0x23b0(%rsp)
movq 0x23b0(%rsp), %rax
movq %rax, 0x3b60(%rsp)
movq 0x3b60(%rsp), %rax
movq %rax, 0x2a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1282724
movq 0x2a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b5c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b5c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b58(%rsp)
cmpl $0x1, 0x3b58(%rsp)
jne 0x1282724
movq 0x2a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12826f5
movq 0x2a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12826f3
jmp 0x1282722
movq 0x2a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4378(%rsp)
cmpq $0x0, 0x4378(%rsp)
je 0x1282720
movq 0x4378(%rsp), %rdi
callq 0x5f480
jmp 0x1282722
jmp 0x1282724
movq 0x2a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128277f
movq %rax, %rdi
callq 0x678a0
movq 0x2b0(%rsp), %rax
movq %rax, 0xf80(%rsp)
movq 0x1cb8(%rsp), %rcx
movl 0xfdc(%rsp), %eax
leaq 0xee8(%rsp), %rdx
movq %rdx, 0x2560(%rsp)
movq %rcx, 0x2558(%rsp)
movl %eax, 0x2554(%rsp)
movq 0x2558(%rsp), %rax
movq %rax, 0x2a0(%rsp)
movb $0x0, 0x2553(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2554(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xee8(%rsp), %r10
movq %r10, 0x2ec0(%rsp)
movl %r9d, 0x2ebc(%rsp)
movl %r8d, 0x2eb8(%rsp)
movl %edi, 0x2eb4(%rsp)
movq %rsi, 0x2ea8(%rsp)
movq %rdx, 0x2ea0(%rsp)
movl %ecx, 0x2e9c(%rsp)
movq %rax, 0x2e90(%rsp)
movq 0x2ec0(%rsp), %rcx
movq %rcx, 0x298(%rsp)
movq 0x2ea8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2ea0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2e9c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2e90(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2ebc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2eb8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2eb4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x37d0(%rsp)
movl $0x10, 0x37cc(%rsp)
movq 0x37d0(%rsp), %rax
movslq 0x37cc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x37cc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2a0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf10(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x128294b
movq 0x2a0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xf28(%rsp)
movb $0x1, 0x2553(%rsp)
testb $0x1, 0x2553(%rsp)
jne 0x1282a86
leaq 0xee8(%rsp), %rax
movq %rax, 0x2568(%rsp)
movq 0x2568(%rsp), %rax
movq %rax, 0x3940(%rsp)
movq 0x3940(%rsp), %rax
movq %rax, 0x290(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1282a29
movq 0x290(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x393c(%rsp) # imm = 0xFFFFFFFF
movl 0x393c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3938(%rsp)
cmpl $0x1, 0x3938(%rsp)
jne 0x1282a29
movq 0x290(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12829fa
movq 0x290(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12829f8
jmp 0x1282a27
movq 0x290(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4488(%rsp)
cmpq $0x0, 0x4488(%rsp)
je 0x1282a25
movq 0x4488(%rsp), %rdi
callq 0x5f480
jmp 0x1282a27
jmp 0x1282a29
movq 0x290(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1282a84
movq %rax, %rdi
callq 0x678a0
jmp 0x1282a86
leaq 0xee8(%rsp), %rax
movq %rax, 0x2710(%rsp)
movq 0x2710(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x288(%rsp)
leaq 0xee8(%rsp), %rax
movq %rax, 0x23c0(%rsp)
movq 0x23c0(%rsp), %rax
movq %rax, 0x3b40(%rsp)
movq 0x3b40(%rsp), %rax
movq %rax, 0x280(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1282b71
movq 0x280(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b3c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b3c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b38(%rsp)
cmpl $0x1, 0x3b38(%rsp)
jne 0x1282b71
movq 0x280(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1282b42
movq 0x280(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1282b40
jmp 0x1282b6f
movq 0x280(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4388(%rsp)
cmpq $0x0, 0x4388(%rsp)
je 0x1282b6d
movq 0x4388(%rsp), %rdi
callq 0x5f480
jmp 0x1282b6f
jmp 0x1282b71
movq 0x280(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1282bcc
movq %rax, %rdi
callq 0x678a0
movq 0x288(%rsp), %rax
movq %rax, 0xf30(%rsp)
movl $0x0, 0xee4(%rsp)
movl 0xee4(%rsp), %eax
cmpl 0x1c84(%rsp), %eax
jge 0x1282d22
movl $0x0, 0xee0(%rsp)
movl 0xee0(%rsp), %eax
cmpl 0x1c88(%rsp), %eax
jge 0x1282d0a
movq 0xfd0(%rsp), %rax
movl 0xee0(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x27f8(%rsp)
movq 0x27f8(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xed0(%rsp)
movq 0xf80(%rsp), %rax
movq %rax, 0x27f0(%rsp)
movq 0x27f0(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xec0(%rsp)
leaq 0x1caf(%rsp), %rdi
leaq 0xed0(%rsp), %rsi
leaq 0xec0(%rsp), %rdx
callq 0x12f6aa0
movaps %xmm0, 0xeb0(%rsp)
movq 0xf30(%rsp), %rax
movaps 0xeb0(%rsp), %xmm0
movq %rax, 0x29b8(%rsp)
movaps %xmm0, 0x29a0(%rsp)
movaps 0x29a0(%rsp), %xmm0
movq 0x29b8(%rsp), %rax
movups %xmm0, (%rax)
movq 0xf80(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xf80(%rsp)
movq 0xf30(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xf30(%rsp)
movl 0xee0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xee0(%rsp)
jmp 0x1282c06
jmp 0x1282d0c
movl 0xee4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xee4(%rsp)
jmp 0x1282be7
jmp 0x1282d24
movl 0xfdc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xfdc(%rsp)
jmp 0x1281ee1
movl $0x0, 0x1cd4(%rsp)
jmp 0x1287700
movq 0x1cc8(%rsp), %rdi
movq 0x1cc0(%rsp), %rsi
movq 0x1cb8(%rsp), %rdx
movq 0x1cb0(%rsp), %rcx
callq 0x12e5e00
movl %eax, 0x1cd4(%rsp)
jmp 0x1287700
movq 0x1cb8(%rsp), %rdi
movl 0x1ca8(%rsp), %esi
movl 0x1ca4(%rsp), %edx
movl 0x1c9c(%rsp), %ecx
movq 0x1c90(%rsp), %r8
movl 0x1c8c(%rsp), %r9d
movq 0x1cb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1cb8(%rsp), %rax
movq %rax, 0x1d18(%rsp)
movq 0x1d18(%rsp), %rcx
movq %rcx, 0x270(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x27f(%rsp)
je 0x1282e1e
movq 0x270(%rsp), %rax
movq %rax, 0x2be0(%rsp)
movq 0x2be0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x27f(%rsp)
movb 0x27f(%rsp), %al
testb $0x1, %al
jne 0x1282e2b
jmp 0x1282e3b
movl $0xffffff9c, 0x1cd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1287700
movq 0x1cc0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x12838bb
movl $0x0, 0xeac(%rsp)
movl 0xeac(%rsp), %eax
cmpl 0x1c9c(%rsp), %eax
jge 0x12838ab
movq 0x1cc8(%rsp), %rcx
movl 0xeac(%rsp), %eax
leaq 0xe58(%rsp), %rdx
movq %rdx, 0x1df8(%rsp)
movq %rcx, 0x1df0(%rsp)
movl %eax, 0x1dec(%rsp)
movq 0x1df0(%rsp), %rax
movq %rax, 0x268(%rsp)
movb $0x0, 0x1deb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1dec(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xe58(%rsp), %r10
movq %r10, 0x34a8(%rsp)
movl %r9d, 0x34a4(%rsp)
movl %r8d, 0x34a0(%rsp)
movl %edi, 0x349c(%rsp)
movq %rsi, 0x3490(%rsp)
movq %rdx, 0x3488(%rsp)
movl %ecx, 0x3484(%rsp)
movq %rax, 0x3478(%rsp)
movq 0x34a8(%rsp), %rcx
movq %rcx, 0x260(%rsp)
movq 0x3490(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3488(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3484(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3478(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x34a4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x34a0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x349c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3620(%rsp)
movl $0x10, 0x361c(%rsp)
movq 0x3620(%rsp), %rax
movslq 0x361c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x361c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x268(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xe80(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1283028
movq 0x268(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xe98(%rsp)
movb $0x1, 0x1deb(%rsp)
testb $0x1, 0x1deb(%rsp)
jne 0x1283163
leaq 0xe58(%rsp), %rax
movq %rax, 0x21a0(%rsp)
movq 0x21a0(%rsp), %rax
movq %rax, 0x3f80(%rsp)
movq 0x3f80(%rsp), %rax
movq %rax, 0x258(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1283106
movq 0x258(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f7c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f7c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f78(%rsp)
cmpl $0x1, 0x3f78(%rsp)
jne 0x1283106
movq 0x258(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12830d7
movq 0x258(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12830d5
jmp 0x1283104
movq 0x258(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4168(%rsp)
cmpq $0x0, 0x4168(%rsp)
je 0x1283102
movq 0x4168(%rsp), %rdi
callq 0x5f480
jmp 0x1283104
jmp 0x1283106
movq 0x258(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1283161
movq %rax, %rdi
callq 0x678a0
jmp 0x1283163
leaq 0xe58(%rsp), %rax
movq %rax, 0x2040(%rsp)
movq 0x2040(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x250(%rsp)
leaq 0xe58(%rsp), %rax
movq %rax, 0x23d0(%rsp)
movq 0x23d0(%rsp), %rax
movq %rax, 0x3b20(%rsp)
movq 0x3b20(%rsp), %rax
movq %rax, 0x248(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128324e
movq 0x248(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b1c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b1c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b18(%rsp)
cmpl $0x1, 0x3b18(%rsp)
jne 0x128324e
movq 0x248(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128321f
movq 0x248(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128321d
jmp 0x128324c
movq 0x248(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4398(%rsp)
cmpq $0x0, 0x4398(%rsp)
je 0x128324a
movq 0x4398(%rsp), %rdi
callq 0x5f480
jmp 0x128324c
jmp 0x128324e
movq 0x248(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12832a9
movq %rax, %rdi
callq 0x678a0
movq 0x250(%rsp), %rax
movq %rax, 0xea0(%rsp)
movq 0x1cc0(%rsp), %rcx
movl 0xeac(%rsp), %eax
movq %rcx, 0x2b88(%rsp)
movl %eax, 0x2b84(%rsp)
movq 0x2b88(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2b84(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xe50(%rsp)
movq 0x1cb8(%rsp), %rcx
movl 0xeac(%rsp), %eax
leaq 0xe00(%rsp), %rdx
movq %rdx, 0x2540(%rsp)
movq %rcx, 0x2538(%rsp)
movl %eax, 0x2534(%rsp)
movq 0x2538(%rsp), %rax
movq %rax, 0x240(%rsp)
movb $0x0, 0x2533(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2534(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xe00(%rsp), %r10
movq %r10, 0x2ef8(%rsp)
movl %r9d, 0x2ef4(%rsp)
movl %r8d, 0x2ef0(%rsp)
movl %edi, 0x2eec(%rsp)
movq %rsi, 0x2ee0(%rsp)
movq %rdx, 0x2ed8(%rsp)
movl %ecx, 0x2ed4(%rsp)
movq %rax, 0x2ec8(%rsp)
movq 0x2ef8(%rsp), %rcx
movq %rcx, 0x238(%rsp)
movq 0x2ee0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2ed8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2ed4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ec8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2ef4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2ef0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2eec(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x37c0(%rsp)
movl $0x10, 0x37bc(%rsp)
movq 0x37c0(%rsp), %rax
movslq 0x37bc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x37bc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x240(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xe28(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12834be
movq 0x240(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xe40(%rsp)
movb $0x1, 0x2533(%rsp)
testb $0x1, 0x2533(%rsp)
jne 0x12835f9
leaq 0xe00(%rsp), %rax
movq %rax, 0x2548(%rsp)
movq 0x2548(%rsp), %rax
movq %rax, 0x3950(%rsp)
movq 0x3950(%rsp), %rax
movq %rax, 0x230(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128359c
movq 0x230(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x394c(%rsp) # imm = 0xFFFFFFFF
movl 0x394c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3948(%rsp)
cmpl $0x1, 0x3948(%rsp)
jne 0x128359c
movq 0x230(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128356d
movq 0x230(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128356b
jmp 0x128359a
movq 0x230(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4480(%rsp)
cmpq $0x0, 0x4480(%rsp)
je 0x1283598
movq 0x4480(%rsp), %rdi
callq 0x5f480
jmp 0x128359a
jmp 0x128359c
movq 0x230(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12835f7
movq %rax, %rdi
callq 0x678a0
jmp 0x12835f9
leaq 0xe00(%rsp), %rax
movq %rax, 0x2708(%rsp)
movq 0x2708(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x228(%rsp)
leaq 0xe00(%rsp), %rax
movq %rax, 0x23e0(%rsp)
movq 0x23e0(%rsp), %rax
movq %rax, 0x3b00(%rsp)
movq 0x3b00(%rsp), %rax
movq %rax, 0x220(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12836e4
movq 0x220(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3afc(%rsp) # imm = 0xFFFFFFFF
movl 0x3afc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3af8(%rsp)
cmpl $0x1, 0x3af8(%rsp)
jne 0x12836e4
movq 0x220(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12836b5
movq 0x220(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12836b3
jmp 0x12836e2
movq 0x220(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x43a8(%rsp)
cmpq $0x0, 0x43a8(%rsp)
je 0x12836e0
movq 0x43a8(%rsp), %rdi
callq 0x5f480
jmp 0x12836e2
jmp 0x12836e4
movq 0x220(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128373f
movq %rax, %rdi
callq 0x678a0
movq 0x228(%rsp), %rax
movq %rax, 0xe48(%rsp)
movl $0x0, 0xdfc(%rsp)
movl 0xdfc(%rsp), %eax
cmpl 0x1ca4(%rsp), %eax
jge 0x1283893
movq 0xe50(%rsp), %rax
movq %rax, 0x27e8(%rsp)
movq 0x27e8(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xde0(%rsp)
movl $0x0, 0xddc(%rsp)
movl 0xddc(%rsp), %eax
cmpl 0x1ca8(%rsp), %eax
jge 0x1283869
movq 0xea0(%rsp), %rax
movq %rax, 0x27e0(%rsp)
movq 0x27e0(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xdc0(%rsp)
leaq 0x1caf(%rsp), %rdi
leaq 0xdc0(%rsp), %rsi
leaq 0xde0(%rsp), %rdx
callq 0x12f6aa0
movaps %xmm0, 0xdb0(%rsp)
movq 0xe48(%rsp), %rax
movaps 0xdb0(%rsp), %xmm0
movq %rax, 0x2998(%rsp)
movaps %xmm0, 0x2980(%rsp)
movaps 0x2980(%rsp), %xmm0
movq 0x2998(%rsp), %rax
movups %xmm0, (%rax)
movq 0xea0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xea0(%rsp)
movq 0xe48(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xe48(%rsp)
movl 0xddc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xddc(%rsp)
jmp 0x128379c
movq 0xe50(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xe50(%rsp)
movl 0xdfc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdfc(%rsp)
jmp 0x128375a
jmp 0x1283895
movl 0xeac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xeac(%rsp)
jmp 0x1282e58
movl $0x0, 0x1cd4(%rsp)
jmp 0x1287700
movq 0x1cc0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1284319
movq 0x1cc0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1283916
cmpl $0x1, 0x1c6c(%rsp)
jne 0x1283916
movq 0x1cc8(%rsp), %rdi
movq 0x1cc0(%rsp), %rsi
movq 0x1cb8(%rsp), %rdx
movq 0x1cb0(%rsp), %rcx
callq 0x12e6d80
movl %eax, 0x1cd4(%rsp)
jmp 0x1287700
movl $0x0, 0xdac(%rsp)
movl 0xdac(%rsp), %eax
cmpl 0x1c9c(%rsp), %eax
jge 0x1284309
movq 0x1cc8(%rsp), %rcx
movl 0xdac(%rsp), %eax
leaq 0xd58(%rsp), %rdx
movq %rdx, 0x1de0(%rsp)
movq %rcx, 0x1dd8(%rsp)
movl %eax, 0x1dd4(%rsp)
movq 0x1dd8(%rsp), %rax
movq %rax, 0x218(%rsp)
movb $0x0, 0x1dd3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1dd4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xd58(%rsp), %r10
movq %r10, 0x34e0(%rsp)
movl %r9d, 0x34dc(%rsp)
movl %r8d, 0x34d8(%rsp)
movl %edi, 0x34d4(%rsp)
movq %rsi, 0x34c8(%rsp)
movq %rdx, 0x34c0(%rsp)
movl %ecx, 0x34bc(%rsp)
movq %rax, 0x34b0(%rsp)
movq 0x34e0(%rsp), %rcx
movq %rcx, 0x210(%rsp)
movq 0x34c8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x34c0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x34bc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x34b0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x34dc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x34d8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x34d4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3610(%rsp)
movl $0x10, 0x360c(%rsp)
movq 0x3610(%rsp), %rax
movslq 0x360c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x360c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x218(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xd80(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1283af1
movq 0x218(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd98(%rsp)
movb $0x1, 0x1dd3(%rsp)
testb $0x1, 0x1dd3(%rsp)
jne 0x1283c2c
leaq 0xd58(%rsp), %rax
movq %rax, 0x21a8(%rsp)
movq 0x21a8(%rsp), %rax
movq %rax, 0x3f70(%rsp)
movq 0x3f70(%rsp), %rax
movq %rax, 0x208(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1283bcf
movq 0x208(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f6c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f6c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f68(%rsp)
cmpl $0x1, 0x3f68(%rsp)
jne 0x1283bcf
movq 0x208(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1283ba0
movq 0x208(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1283b9e
jmp 0x1283bcd
movq 0x208(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4170(%rsp)
cmpq $0x0, 0x4170(%rsp)
je 0x1283bcb
movq 0x4170(%rsp), %rdi
callq 0x5f480
jmp 0x1283bcd
jmp 0x1283bcf
movq 0x208(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1283c2a
movq %rax, %rdi
callq 0x678a0
jmp 0x1283c2c
leaq 0xd58(%rsp), %rax
movq %rax, 0x2038(%rsp)
movq 0x2038(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x200(%rsp)
leaq 0xd58(%rsp), %rax
movq %rax, 0x23f0(%rsp)
movq 0x23f0(%rsp), %rax
movq %rax, 0x3ae0(%rsp)
movq 0x3ae0(%rsp), %rax
movq %rax, 0x1f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1283d17
movq 0x1f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3adc(%rsp) # imm = 0xFFFFFFFF
movl 0x3adc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ad8(%rsp)
cmpl $0x1, 0x3ad8(%rsp)
jne 0x1283d17
movq 0x1f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1283ce8
movq 0x1f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1283ce6
jmp 0x1283d15
movq 0x1f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x43b8(%rsp)
cmpq $0x0, 0x43b8(%rsp)
je 0x1283d13
movq 0x43b8(%rsp), %rdi
callq 0x5f480
jmp 0x1283d15
jmp 0x1283d17
movq 0x1f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1283d72
movq %rax, %rdi
callq 0x678a0
movq 0x200(%rsp), %rax
movq %rax, 0xda0(%rsp)
movq 0x1cc0(%rsp), %rax
movq %rax, 0x2030(%rsp)
movq 0x2030(%rsp), %rax
movq (%rax), %rax
movl 0xdac(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x27d8(%rsp)
movq 0x27d8(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xd40(%rsp)
movq 0x1cb8(%rsp), %rcx
movl 0xdac(%rsp), %eax
leaq 0xcf0(%rsp), %rdx
movq %rdx, 0x2520(%rsp)
movq %rcx, 0x2518(%rsp)
movl %eax, 0x2514(%rsp)
movq 0x2518(%rsp), %rax
movq %rax, 0x1f0(%rsp)
movb $0x0, 0x2513(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2514(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xcf0(%rsp), %r10
movq %r10, 0x2f30(%rsp)
movl %r9d, 0x2f2c(%rsp)
movl %r8d, 0x2f28(%rsp)
movl %edi, 0x2f24(%rsp)
movq %rsi, 0x2f18(%rsp)
movq %rdx, 0x2f10(%rsp)
movl %ecx, 0x2f0c(%rsp)
movq %rax, 0x2f00(%rsp)
movq 0x2f30(%rsp), %rcx
movq %rcx, 0x1e8(%rsp)
movq 0x2f18(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2f10(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2f0c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2f00(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2f2c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f28(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f24(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x37b0(%rsp)
movl $0x10, 0x37ac(%rsp)
movq 0x37b0(%rsp), %rax
movslq 0x37ac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x37ac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x1f0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xd18(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1283f88
movq 0x1f0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd30(%rsp)
movb $0x1, 0x2513(%rsp)
testb $0x1, 0x2513(%rsp)
jne 0x12840c3
leaq 0xcf0(%rsp), %rax
movq %rax, 0x2528(%rsp)
movq 0x2528(%rsp), %rax
movq %rax, 0x3960(%rsp)
movq 0x3960(%rsp), %rax
movq %rax, 0x1e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1284066
movq 0x1e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x395c(%rsp) # imm = 0xFFFFFFFF
movl 0x395c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3958(%rsp)
cmpl $0x1, 0x3958(%rsp)
jne 0x1284066
movq 0x1e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1284037
movq 0x1e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1284035
jmp 0x1284064
movq 0x1e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4478(%rsp)
cmpq $0x0, 0x4478(%rsp)
je 0x1284062
movq 0x4478(%rsp), %rdi
callq 0x5f480
jmp 0x1284064
jmp 0x1284066
movq 0x1e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12840c1
movq %rax, %rdi
callq 0x678a0
jmp 0x12840c3
leaq 0xcf0(%rsp), %rax
movq %rax, 0x2700(%rsp)
movq 0x2700(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1d8(%rsp)
leaq 0xcf0(%rsp), %rax
movq %rax, 0x2400(%rsp)
movq 0x2400(%rsp), %rax
movq %rax, 0x3ac0(%rsp)
movq 0x3ac0(%rsp), %rax
movq %rax, 0x1d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12841ae
movq 0x1d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3abc(%rsp) # imm = 0xFFFFFFFF
movl 0x3abc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ab8(%rsp)
cmpl $0x1, 0x3ab8(%rsp)
jne 0x12841ae
movq 0x1d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128417f
movq 0x1d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128417d
jmp 0x12841ac
movq 0x1d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x43c8(%rsp)
cmpq $0x0, 0x43c8(%rsp)
je 0x12841aa
movq 0x43c8(%rsp), %rdi
callq 0x5f480
jmp 0x12841ac
jmp 0x12841ae
movq 0x1d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1284209
movq %rax, %rdi
callq 0x678a0
movq 0x1d8(%rsp), %rax
movq %rax, 0xd38(%rsp)
movl $0x0, 0xcec(%rsp)
movl 0xcec(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jge 0x12842f1
movq 0xda0(%rsp), %rax
movq %rax, 0x27d0(%rsp)
movq 0x27d0(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xcd0(%rsp)
leaq 0x1caf(%rsp), %rdi
leaq 0xcd0(%rsp), %rsi
leaq 0xd40(%rsp), %rdx
callq 0x12f6aa0
movaps %xmm0, 0xcc0(%rsp)
movq 0xd38(%rsp), %rax
movaps 0xcc0(%rsp), %xmm0
movq %rax, 0x2978(%rsp)
movaps %xmm0, 0x2960(%rsp)
movaps 0x2960(%rsp), %xmm0
movq 0x2978(%rsp), %rax
movups %xmm0, (%rax)
movq 0xda0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xda0(%rsp)
movq 0xd38(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xd38(%rsp)
movl 0xcec(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xcec(%rsp)
jmp 0x1284224
jmp 0x12842f3
movl 0xdac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdac(%rsp)
jmp 0x1283921
movl $0x0, 0x1cd4(%rsp)
jmp 0x1287700
jmp 0x12876f3
movq 0x1cc8(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1285dba
movq 0x1cc0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1284eb4
movq 0x1cb8(%rsp), %rdi
movl 0x1c88(%rsp), %esi
movl 0x1c84(%rsp), %edx
movl 0x1c80(%rsp), %ecx
movl 0x1c7c(%rsp), %r8d
movq 0x1c70(%rsp), %r9
movl 0x1c6c(%rsp), %r10d
movq 0x1cb0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x1cb8(%rsp), %rax
movq %rax, 0x1d10(%rsp)
movq 0x1d10(%rsp), %rcx
movq %rcx, 0x1c0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1cf(%rsp)
je 0x12843f2
movq 0x1c0(%rsp), %rax
movq %rax, 0x2be8(%rsp)
movq 0x2be8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1cf(%rsp)
movb 0x1cf(%rsp), %al
testb $0x1, %al
jne 0x12843ff
jmp 0x128440f
movl $0xffffff9c, 0x1cd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1287700
movl $0x0, 0xcbc(%rsp)
movl 0xcbc(%rsp), %eax
cmpl 0x1c7c(%rsp), %eax
jge 0x1284ea4
movq 0x1cc8(%rsp), %rcx
movl 0xcbc(%rsp), %eax
movq %rcx, 0x2b28(%rsp)
movl %eax, 0x2b24(%rsp)
movq 0x2b28(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2b24(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xcb0(%rsp)
movq 0x1cc0(%rsp), %rcx
movl 0xcbc(%rsp), %eax
leaq 0xc60(%rsp), %rdx
movq %rdx, 0x1dc8(%rsp)
movq %rcx, 0x1dc0(%rsp)
movl %eax, 0x1dbc(%rsp)
movq 0x1dc0(%rsp), %rax
movq %rax, 0x1b8(%rsp)
movb $0x0, 0x1dbb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1dbc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xc60(%rsp), %r10
movq %r10, 0x3518(%rsp)
movl %r9d, 0x3514(%rsp)
movl %r8d, 0x3510(%rsp)
movl %edi, 0x350c(%rsp)
movq %rsi, 0x3500(%rsp)
movq %rdx, 0x34f8(%rsp)
movl %ecx, 0x34f4(%rsp)
movq %rax, 0x34e8(%rsp)
movq 0x3518(%rsp), %rcx
movq %rcx, 0x1b0(%rsp)
movq 0x3500(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x34f8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x34f4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x34e8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3514(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3510(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x350c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3600(%rsp)
movl $0x10, 0x35fc(%rsp)
movq 0x3600(%rsp), %rax
movslq 0x35fc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x35fc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x1b8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc88(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1284633
movq 0x1b8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xca0(%rsp)
movb $0x1, 0x1dbb(%rsp)
testb $0x1, 0x1dbb(%rsp)
jne 0x128476e
leaq 0xc60(%rsp), %rax
movq %rax, 0x21b0(%rsp)
movq 0x21b0(%rsp), %rax
movq %rax, 0x3f60(%rsp)
movq 0x3f60(%rsp), %rax
movq %rax, 0x1a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1284711
movq 0x1a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f5c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f5c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f58(%rsp)
cmpl $0x1, 0x3f58(%rsp)
jne 0x1284711
movq 0x1a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12846e2
movq 0x1a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12846e0
jmp 0x128470f
movq 0x1a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4178(%rsp)
cmpq $0x0, 0x4178(%rsp)
je 0x128470d
movq 0x4178(%rsp), %rdi
callq 0x5f480
jmp 0x128470f
jmp 0x1284711
movq 0x1a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128476c
movq %rax, %rdi
callq 0x678a0
jmp 0x128476e
leaq 0xc60(%rsp), %rax
movq %rax, 0x2028(%rsp)
movq 0x2028(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1a0(%rsp)
leaq 0xc60(%rsp), %rax
movq %rax, 0x2410(%rsp)
movq 0x2410(%rsp), %rax
movq %rax, 0x3aa0(%rsp)
movq 0x3aa0(%rsp), %rax
movq %rax, 0x198(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1284859
movq 0x198(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a9c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a9c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a98(%rsp)
cmpl $0x1, 0x3a98(%rsp)
jne 0x1284859
movq 0x198(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128482a
movq 0x198(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1284828
jmp 0x1284857
movq 0x198(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x43d8(%rsp)
cmpq $0x0, 0x43d8(%rsp)
je 0x1284855
movq 0x43d8(%rsp), %rdi
callq 0x5f480
jmp 0x1284857
jmp 0x1284859
movq 0x198(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12848b4
movq %rax, %rdi
callq 0x678a0
movq 0x1a0(%rsp), %rax
movq %rax, 0xca8(%rsp)
movq 0x1cb8(%rsp), %rcx
movl 0xcbc(%rsp), %eax
leaq 0xc10(%rsp), %rdx
movq %rdx, 0x2500(%rsp)
movq %rcx, 0x24f8(%rsp)
movl %eax, 0x24f4(%rsp)
movq 0x24f8(%rsp), %rax
movq %rax, 0x190(%rsp)
movb $0x0, 0x24f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x24f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xc10(%rsp), %r10
movq %r10, 0x2f68(%rsp)
movl %r9d, 0x2f64(%rsp)
movl %r8d, 0x2f60(%rsp)
movl %edi, 0x2f5c(%rsp)
movq %rsi, 0x2f50(%rsp)
movq %rdx, 0x2f48(%rsp)
movl %ecx, 0x2f44(%rsp)
movq %rax, 0x2f38(%rsp)
movq 0x2f68(%rsp), %rcx
movq %rcx, 0x188(%rsp)
movq 0x2f50(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2f48(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2f44(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2f38(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2f64(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f60(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f5c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x37a0(%rsp)
movl $0x10, 0x379c(%rsp)
movq 0x37a0(%rsp), %rax
movslq 0x379c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x379c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x190(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc38(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1284a80
movq 0x190(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xc50(%rsp)
movb $0x1, 0x24f3(%rsp)
testb $0x1, 0x24f3(%rsp)
jne 0x1284bbb
leaq 0xc10(%rsp), %rax
movq %rax, 0x2508(%rsp)
movq 0x2508(%rsp), %rax
movq %rax, 0x3970(%rsp)
movq 0x3970(%rsp), %rax
movq %rax, 0x180(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1284b5e
movq 0x180(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x396c(%rsp) # imm = 0xFFFFFFFF
movl 0x396c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3968(%rsp)
cmpl $0x1, 0x3968(%rsp)
jne 0x1284b5e
movq 0x180(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1284b2f
movq 0x180(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1284b2d
jmp 0x1284b5c
movq 0x180(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4470(%rsp)
cmpq $0x0, 0x4470(%rsp)
je 0x1284b5a
movq 0x4470(%rsp), %rdi
callq 0x5f480
jmp 0x1284b5c
jmp 0x1284b5e
movq 0x180(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1284bb9
movq %rax, %rdi
callq 0x678a0
jmp 0x1284bbb
leaq 0xc10(%rsp), %rax
movq %rax, 0x26f8(%rsp)
movq 0x26f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x178(%rsp)
leaq 0xc10(%rsp), %rax
movq %rax, 0x2420(%rsp)
movq 0x2420(%rsp), %rax
movq %rax, 0x3a80(%rsp)
movq 0x3a80(%rsp), %rax
movq %rax, 0x170(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1284ca6
movq 0x170(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a7c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a7c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a78(%rsp)
cmpl $0x1, 0x3a78(%rsp)
jne 0x1284ca6
movq 0x170(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1284c77
movq 0x170(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1284c75
jmp 0x1284ca4
movq 0x170(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x43e8(%rsp)
cmpq $0x0, 0x43e8(%rsp)
je 0x1284ca2
movq 0x43e8(%rsp), %rdi
callq 0x5f480
jmp 0x1284ca4
jmp 0x1284ca6
movq 0x170(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1284d01
movq %rax, %rdi
callq 0x678a0
movq 0x178(%rsp), %rax
movq %rax, 0xc58(%rsp)
movl $0x0, 0xc0c(%rsp)
movl 0xc0c(%rsp), %eax
cmpl 0x1c80(%rsp), %eax
jge 0x1284e8c
movq 0xcb0(%rsp), %rax
movq %rax, 0x27c8(%rsp)
movq 0x27c8(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xbf0(%rsp)
movl $0x0, 0xbec(%rsp)
movl 0xbec(%rsp), %eax
cmpl 0x1c84(%rsp), %eax
jge 0x1284e62
movl $0x0, 0xbe8(%rsp)
movl 0xbe8(%rsp), %eax
cmpl 0x1c88(%rsp), %eax
jge 0x1284e4a
movq 0xca8(%rsp), %rax
movq %rax, 0x27c0(%rsp)
movq 0x27c0(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xbd0(%rsp)
leaq 0x1caf(%rsp), %rdi
leaq 0xbf0(%rsp), %rsi
leaq 0xbd0(%rsp), %rdx
callq 0x12f6aa0
movaps %xmm0, 0xbc0(%rsp)
movq 0xc58(%rsp), %rax
movaps 0xbc0(%rsp), %xmm0
movq %rax, 0x2958(%rsp)
movaps %xmm0, 0x2940(%rsp)
movaps 0x2940(%rsp), %xmm0
movq 0x2958(%rsp), %rax
movups %xmm0, (%rax)
movq 0xca8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xca8(%rsp)
movq 0xc58(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xc58(%rsp)
movl 0xbe8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xbe8(%rsp)
jmp 0x1284d7d
jmp 0x1284e4c
movl 0xbec(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xbec(%rsp)
jmp 0x1284d5e
movq 0xcb0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xcb0(%rsp)
movl 0xc0c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xc0c(%rsp)
jmp 0x1284d1c
jmp 0x1284e8e
movl 0xcbc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xcbc(%rsp)
jmp 0x128441a
movl $0x0, 0x1cd4(%rsp)
jmp 0x1287700
movq 0x1cc0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x12859f4
movq 0x1cb8(%rsp), %rdi
movl 0x1c88(%rsp), %esi
movl 0x1c84(%rsp), %edx
movl 0x1c7c(%rsp), %ecx
movq 0x1c70(%rsp), %r8
movl 0x1c6c(%rsp), %r9d
movq 0x1cb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1cb8(%rsp), %rax
movq %rax, 0x1d08(%rsp)
movq 0x1d08(%rsp), %rcx
movq %rcx, 0x160(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x16f(%rsp)
je 0x1284f69
movq 0x160(%rsp), %rax
movq %rax, 0x2bf0(%rsp)
movq 0x2bf0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x16f(%rsp)
movb 0x16f(%rsp), %al
testb $0x1, %al
jne 0x1284f76
jmp 0x1284f86
movl $0xffffff9c, 0x1cd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1287700
movl $0x0, 0xbbc(%rsp)
movl 0xbbc(%rsp), %eax
cmpl 0x1c7c(%rsp), %eax
jge 0x12859e4
movq 0x1cc8(%rsp), %rcx
movl 0xbbc(%rsp), %eax
movq %rcx, 0x2b78(%rsp)
movl %eax, 0x2b74(%rsp)
movq 0x2b78(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2b74(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xbb0(%rsp)
movq 0x1cc0(%rsp), %rcx
movl 0xbbc(%rsp), %eax
leaq 0xb60(%rsp), %rdx
movq %rdx, 0x1db0(%rsp)
movq %rcx, 0x1da8(%rsp)
movl %eax, 0x1da4(%rsp)
movq 0x1da8(%rsp), %rax
movq %rax, 0x158(%rsp)
movb $0x0, 0x1da3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1da4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xb60(%rsp), %r10
movq %r10, 0x3550(%rsp)
movl %r9d, 0x354c(%rsp)
movl %r8d, 0x3548(%rsp)
movl %edi, 0x3544(%rsp)
movq %rsi, 0x3538(%rsp)
movq %rdx, 0x3530(%rsp)
movl %ecx, 0x352c(%rsp)
movq %rax, 0x3520(%rsp)
movq 0x3550(%rsp), %rcx
movq %rcx, 0x150(%rsp)
movq 0x3538(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3530(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x352c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3520(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x354c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3548(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3544(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x35f0(%rsp)
movl $0x10, 0x35ec(%rsp)
movq 0x35f0(%rsp), %rax
movslq 0x35ec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x35ec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x158(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xb88(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12851aa
movq 0x158(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xba0(%rsp)
movb $0x1, 0x1da3(%rsp)
testb $0x1, 0x1da3(%rsp)
jne 0x12852e5
leaq 0xb60(%rsp), %rax
movq %rax, 0x21b8(%rsp)
movq 0x21b8(%rsp), %rax
movq %rax, 0x3f50(%rsp)
movq 0x3f50(%rsp), %rax
movq %rax, 0x148(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1285288
movq 0x148(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f4c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f4c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f48(%rsp)
cmpl $0x1, 0x3f48(%rsp)
jne 0x1285288
movq 0x148(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1285259
movq 0x148(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1285257
jmp 0x1285286
movq 0x148(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4180(%rsp)
cmpq $0x0, 0x4180(%rsp)
je 0x1285284
movq 0x4180(%rsp), %rdi
callq 0x5f480
jmp 0x1285286
jmp 0x1285288
movq 0x148(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12852e3
movq %rax, %rdi
callq 0x678a0
jmp 0x12852e5
leaq 0xb60(%rsp), %rax
movq %rax, 0x2020(%rsp)
movq 0x2020(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x140(%rsp)
leaq 0xb60(%rsp), %rax
movq %rax, 0x2430(%rsp)
movq 0x2430(%rsp), %rax
movq %rax, 0x3a60(%rsp)
movq 0x3a60(%rsp), %rax
movq %rax, 0x138(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12853d0
movq 0x138(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a5c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a5c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a58(%rsp)
cmpl $0x1, 0x3a58(%rsp)
jne 0x12853d0
movq 0x138(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12853a1
movq 0x138(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128539f
jmp 0x12853ce
movq 0x138(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x43f8(%rsp)
cmpq $0x0, 0x43f8(%rsp)
je 0x12853cc
movq 0x43f8(%rsp), %rdi
callq 0x5f480
jmp 0x12853ce
jmp 0x12853d0
movq 0x138(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128542b
movq %rax, %rdi
callq 0x678a0
movq 0x140(%rsp), %rax
movq %rax, 0xba8(%rsp)
movq 0x1cb8(%rsp), %rcx
movl 0xbbc(%rsp), %eax
leaq 0xb10(%rsp), %rdx
movq %rdx, 0x24e0(%rsp)
movq %rcx, 0x24d8(%rsp)
movl %eax, 0x24d4(%rsp)
movq 0x24d8(%rsp), %rax
movq %rax, 0x130(%rsp)
movb $0x0, 0x24d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x24d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xb10(%rsp), %r10
movq %r10, 0x2fa0(%rsp)
movl %r9d, 0x2f9c(%rsp)
movl %r8d, 0x2f98(%rsp)
movl %edi, 0x2f94(%rsp)
movq %rsi, 0x2f88(%rsp)
movq %rdx, 0x2f80(%rsp)
movl %ecx, 0x2f7c(%rsp)
movq %rax, 0x2f70(%rsp)
movq 0x2fa0(%rsp), %rcx
movq %rcx, 0x128(%rsp)
movq 0x2f88(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2f80(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2f7c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2f70(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2f9c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f98(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f94(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3790(%rsp)
movl $0x10, 0x378c(%rsp)
movq 0x3790(%rsp), %rax
movslq 0x378c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x378c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x130(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xb38(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12855f7
movq 0x130(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xb50(%rsp)
movb $0x1, 0x24d3(%rsp)
testb $0x1, 0x24d3(%rsp)
jne 0x1285732
leaq 0xb10(%rsp), %rax
movq %rax, 0x24e8(%rsp)
movq 0x24e8(%rsp), %rax
movq %rax, 0x3980(%rsp)
movq 0x3980(%rsp), %rax
movq %rax, 0x120(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12856d5
movq 0x120(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x397c(%rsp) # imm = 0xFFFFFFFF
movl 0x397c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3978(%rsp)
cmpl $0x1, 0x3978(%rsp)
jne 0x12856d5
movq 0x120(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12856a6
movq 0x120(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12856a4
jmp 0x12856d3
movq 0x120(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4468(%rsp)
cmpq $0x0, 0x4468(%rsp)
je 0x12856d1
movq 0x4468(%rsp), %rdi
callq 0x5f480
jmp 0x12856d3
jmp 0x12856d5
movq 0x120(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1285730
movq %rax, %rdi
callq 0x678a0
jmp 0x1285732
leaq 0xb10(%rsp), %rax
movq %rax, 0x26f0(%rsp)
movq 0x26f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x118(%rsp)
leaq 0xb10(%rsp), %rax
movq %rax, 0x2440(%rsp)
movq 0x2440(%rsp), %rax
movq %rax, 0x3a40(%rsp)
movq 0x3a40(%rsp), %rax
movq %rax, 0x110(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128581d
movq 0x110(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a3c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a3c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a38(%rsp)
cmpl $0x1, 0x3a38(%rsp)
jne 0x128581d
movq 0x110(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12857ee
movq 0x110(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12857ec
jmp 0x128581b
movq 0x110(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4408(%rsp)
cmpq $0x0, 0x4408(%rsp)
je 0x1285819
movq 0x4408(%rsp), %rdi
callq 0x5f480
jmp 0x128581b
jmp 0x128581d
movq 0x110(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1285878
movq %rax, %rdi
callq 0x678a0
movq 0x118(%rsp), %rax
movq %rax, 0xb58(%rsp)
movl $0x0, 0xb0c(%rsp)
movl 0xb0c(%rsp), %eax
cmpl 0x1c84(%rsp), %eax
jge 0x12859cc
movq 0xbb0(%rsp), %rax
movq %rax, 0x27b8(%rsp)
movq 0x27b8(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xaf0(%rsp)
movl $0x0, 0xaec(%rsp)
movl 0xaec(%rsp), %eax
cmpl 0x1c88(%rsp), %eax
jge 0x12859a2
movq 0xba8(%rsp), %rax
movq %rax, 0x27b0(%rsp)
movq 0x27b0(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xad0(%rsp)
leaq 0x1caf(%rsp), %rdi
leaq 0xaf0(%rsp), %rsi
leaq 0xad0(%rsp), %rdx
callq 0x12f6aa0
movaps %xmm0, 0xac0(%rsp)
movq 0xb58(%rsp), %rax
movaps 0xac0(%rsp), %xmm0
movq %rax, 0x2938(%rsp)
movaps %xmm0, 0x2920(%rsp)
movaps 0x2920(%rsp), %xmm0
movq 0x2938(%rsp), %rax
movups %xmm0, (%rax)
movq 0xba8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xba8(%rsp)
movq 0xb58(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xb58(%rsp)
movl 0xaec(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xaec(%rsp)
jmp 0x12858d5
movq 0xbb0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xbb0(%rsp)
movl 0xb0c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xb0c(%rsp)
jmp 0x1285893
jmp 0x12859ce
movl 0xbbc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xbbc(%rsp)
jmp 0x1284f91
movl $0x0, 0x1cd4(%rsp)
jmp 0x1287700
movq 0x1cb8(%rsp), %rdi
movl 0x1ca8(%rsp), %esi
movl 0x1ca4(%rsp), %edx
movq 0x1c90(%rsp), %rcx
movl 0x1c8c(%rsp), %r8d
movq 0x1cb0(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x1cb8(%rsp), %rax
movq %rax, 0x1d00(%rsp)
movq 0x1d00(%rsp), %rcx
movq %rcx, 0x100(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x10f(%rsp)
je 0x1285a8c
movq 0x100(%rsp), %rax
movq %rax, 0x2bf8(%rsp)
movq 0x2bf8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x10f(%rsp)
movb 0x10f(%rsp), %al
testb $0x1, %al
jne 0x1285a99
jmp 0x1285aa9
movl $0xffffff9c, 0x1cd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1287700
movq 0x1cc0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1285ae8
movq 0x1cc8(%rsp), %rdi
movq 0x1cc0(%rsp), %rsi
movq 0x1cb8(%rsp), %rdx
movq 0x1cb0(%rsp), %rcx
callq 0x12e5e00
movl %eax, 0x1cd4(%rsp)
jmp 0x1287700
movq 0x1cc0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1285db5
movq 0x1cb8(%rsp), %rdi
movl 0x1ca8(%rsp), %esi
movl 0x1ca4(%rsp), %edx
movq 0x1c90(%rsp), %rcx
movl 0x1c8c(%rsp), %r8d
movq 0x1cb0(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x1cb8(%rsp), %rax
movq %rax, 0x1cf8(%rsp)
movq 0x1cf8(%rsp), %rcx
movq %rcx, 0xf0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xff(%rsp)
je 0x1285b92
movq 0xf0(%rsp), %rax
movq %rax, 0x2c00(%rsp)
movq 0x2c00(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xff(%rsp)
movb 0xff(%rsp), %al
testb $0x1, %al
jne 0x1285b9f
jmp 0x1285baf
movl $0xffffff9c, 0x1cd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1287700
movq 0x1cc0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1285bf8
cmpl $0x1, 0x1c6c(%rsp)
jne 0x1285bf8
movq 0x1cc8(%rsp), %rdi
movq 0x1cc0(%rsp), %rsi
movq 0x1cb8(%rsp), %rdx
movq 0x1cb0(%rsp), %rcx
callq 0x12e6d80
movl %eax, 0x1cd4(%rsp)
jmp 0x1287700
movq 0x1cc8(%rsp), %rax
movq %rax, 0x2018(%rsp)
movq 0x2018(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xab8(%rsp)
movq 0x1cc0(%rsp), %rax
movq %rax, 0x2010(%rsp)
movq 0x2010(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xab0(%rsp)
movq 0x1cb8(%rsp), %rax
movq %rax, 0x26e8(%rsp)
movq 0x26e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xaa8(%rsp)
movl $0x0, 0xaa4(%rsp)
movl 0xaa4(%rsp), %eax
cmpl 0x1ca4(%rsp), %eax
jge 0x1285da5
movq 0xab0(%rsp), %rax
movq %rax, 0x27a8(%rsp)
movq 0x27a8(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xa90(%rsp)
movl $0x0, 0xa8c(%rsp)
movl 0xa8c(%rsp), %eax
cmpl 0x1ca8(%rsp), %eax
jge 0x1285d7b
movq 0xab8(%rsp), %rax
movq %rax, 0x27a0(%rsp)
movq 0x27a0(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xa70(%rsp)
leaq 0x1caf(%rsp), %rdi
leaq 0xa70(%rsp), %rsi
leaq 0xa90(%rsp), %rdx
callq 0x12f6aa0
movaps %xmm0, 0xa60(%rsp)
movq 0xaa8(%rsp), %rax
movaps 0xa60(%rsp), %xmm0
movq %rax, 0x2918(%rsp)
movaps %xmm0, 0x2900(%rsp)
movaps 0x2900(%rsp), %xmm0
movq 0x2918(%rsp), %rax
movups %xmm0, (%rax)
movq 0xab8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xab8(%rsp)
movq 0xaa8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xaa8(%rsp)
movl 0xa8c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xa8c(%rsp)
jmp 0x1285cae
movq 0xab0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xab0(%rsp)
movl 0xaa4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xaa4(%rsp)
jmp 0x1285c6c
movl $0x0, 0x1cd4(%rsp)
jmp 0x1287700
jmp 0x12876f1
movq 0x1cc8(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x12876ef
movq 0x1cc8(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1285e15
cmpl $0x1, 0x1c8c(%rsp)
jne 0x1285e15
movq 0x1cc8(%rsp), %rdi
movq 0x1cc0(%rsp), %rsi
movq 0x1cb8(%rsp), %rdx
movq 0x1cb0(%rsp), %rcx
callq 0x12e78f0
movl %eax, 0x1cd4(%rsp)
jmp 0x1287700
movq 0x1cc0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x12868f7
movq 0x1cb8(%rsp), %rdi
movl 0x1c88(%rsp), %esi
movl 0x1c84(%rsp), %edx
movl 0x1c80(%rsp), %ecx
movl 0x1c7c(%rsp), %r8d
movq 0x1c70(%rsp), %r9
movl 0x1c6c(%rsp), %r10d
movq 0x1cb0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x1cb8(%rsp), %rax
movq %rax, 0x1cf0(%rsp)
movq 0x1cf0(%rsp), %rcx
movq %rcx, 0xe0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xef(%rsp)
je 0x1285ed7
movq 0xe0(%rsp), %rax
movq %rax, 0x2c08(%rsp)
movq 0x2c08(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xef(%rsp)
movb 0xef(%rsp), %al
testb $0x1, %al
jne 0x1285ee4
jmp 0x1285ef4
movl $0xffffff9c, 0x1cd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1287700
movl $0x0, 0xa5c(%rsp)
movl 0xa5c(%rsp), %eax
cmpl 0x1c7c(%rsp), %eax
jge 0x12868e7
movq 0x1cc8(%rsp), %rax
movq %rax, 0x2008(%rsp)
movq 0x2008(%rsp), %rax
movq (%rax), %rax
movl 0xa5c(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2798(%rsp)
movq 0x2798(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xa40(%rsp)
movq 0x1cc0(%rsp), %rcx
movl 0xa5c(%rsp), %eax
leaq 0x9f0(%rsp), %rdx
movq %rdx, 0x1d98(%rsp)
movq %rcx, 0x1d90(%rsp)
movl %eax, 0x1d8c(%rsp)
movq 0x1d90(%rsp), %rax
movq %rax, 0xd8(%rsp)
movb $0x0, 0x1d8b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1d8c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x9f0(%rsp), %r10
movq %r10, 0x3588(%rsp)
movl %r9d, 0x3584(%rsp)
movl %r8d, 0x3580(%rsp)
movl %edi, 0x357c(%rsp)
movq %rsi, 0x3570(%rsp)
movq %rdx, 0x3568(%rsp)
movl %ecx, 0x3564(%rsp)
movq %rax, 0x3558(%rsp)
movq 0x3588(%rsp), %rcx
movq %rcx, 0xd0(%rsp)
movq 0x3570(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3568(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3564(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3558(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3584(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3580(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x357c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x35e0(%rsp)
movl $0x10, 0x35dc(%rsp)
movq 0x35e0(%rsp), %rax
movslq 0x35dc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x35dc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xd8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xa18(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1286119
movq 0xd8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xa30(%rsp)
movb $0x1, 0x1d8b(%rsp)
testb $0x1, 0x1d8b(%rsp)
jne 0x1286254
leaq 0x9f0(%rsp), %rax
movq %rax, 0x21c0(%rsp)
movq 0x21c0(%rsp), %rax
movq %rax, 0x3f40(%rsp)
movq 0x3f40(%rsp), %rax
movq %rax, 0xc8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12861f7
movq 0xc8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f3c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f3c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f38(%rsp)
cmpl $0x1, 0x3f38(%rsp)
jne 0x12861f7
movq 0xc8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12861c8
movq 0xc8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12861c6
jmp 0x12861f5
movq 0xc8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4188(%rsp)
cmpq $0x0, 0x4188(%rsp)
je 0x12861f3
movq 0x4188(%rsp), %rdi
callq 0x5f480
jmp 0x12861f5
jmp 0x12861f7
movq 0xc8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1286252
movq %rax, %rdi
callq 0x678a0
jmp 0x1286254
leaq 0x9f0(%rsp), %rax
movq %rax, 0x2000(%rsp)
movq 0x2000(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xc0(%rsp)
leaq 0x9f0(%rsp), %rax
movq %rax, 0x2450(%rsp)
movq 0x2450(%rsp), %rax
movq %rax, 0x3a20(%rsp)
movq 0x3a20(%rsp), %rax
movq %rax, 0xb8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128633f
movq 0xb8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a1c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a1c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a18(%rsp)
cmpl $0x1, 0x3a18(%rsp)
jne 0x128633f
movq 0xb8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1286310
movq 0xb8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128630e
jmp 0x128633d
movq 0xb8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4418(%rsp)
cmpq $0x0, 0x4418(%rsp)
je 0x128633b
movq 0x4418(%rsp), %rdi
callq 0x5f480
jmp 0x128633d
jmp 0x128633f
movq 0xb8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128639a
movq %rax, %rdi
callq 0x678a0
movq 0xc0(%rsp), %rax
movq %rax, 0xa38(%rsp)
movq 0x1cb8(%rsp), %rcx
movl 0xa5c(%rsp), %eax
leaq 0x9a0(%rsp), %rdx
movq %rdx, 0x24c0(%rsp)
movq %rcx, 0x24b8(%rsp)
movl %eax, 0x24b4(%rsp)
movq 0x24b8(%rsp), %rax
movq %rax, 0xb0(%rsp)
movb $0x0, 0x24b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x24b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x9a0(%rsp), %r10
movq %r10, 0x2fd8(%rsp)
movl %r9d, 0x2fd4(%rsp)
movl %r8d, 0x2fd0(%rsp)
movl %edi, 0x2fcc(%rsp)
movq %rsi, 0x2fc0(%rsp)
movq %rdx, 0x2fb8(%rsp)
movl %ecx, 0x2fb4(%rsp)
movq %rax, 0x2fa8(%rsp)
movq 0x2fd8(%rsp), %rcx
movq %rcx, 0xa8(%rsp)
movq 0x2fc0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2fb8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2fb4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2fa8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2fd4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2fd0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2fcc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3780(%rsp)
movl $0x10, 0x377c(%rsp)
movq 0x3780(%rsp), %rax
movslq 0x377c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x377c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xb0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x9c8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1286566
movq 0xb0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x9e0(%rsp)
movb $0x1, 0x24b3(%rsp)
testb $0x1, 0x24b3(%rsp)
jne 0x12866a1
leaq 0x9a0(%rsp), %rax
movq %rax, 0x24c8(%rsp)
movq 0x24c8(%rsp), %rax
movq %rax, 0x3990(%rsp)
movq 0x3990(%rsp), %rax
movq %rax, 0xa0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1286644
movq 0xa0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x398c(%rsp) # imm = 0xFFFFFFFF
movl 0x398c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3988(%rsp)
cmpl $0x1, 0x3988(%rsp)
jne 0x1286644
movq 0xa0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1286615
movq 0xa0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1286613
jmp 0x1286642
movq 0xa0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4460(%rsp)
cmpq $0x0, 0x4460(%rsp)
je 0x1286640
movq 0x4460(%rsp), %rdi
callq 0x5f480
jmp 0x1286642
jmp 0x1286644
movq 0xa0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128669f
movq %rax, %rdi
callq 0x678a0
jmp 0x12866a1
leaq 0x9a0(%rsp), %rax
movq %rax, 0x26e0(%rsp)
movq 0x26e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x98(%rsp)
leaq 0x9a0(%rsp), %rax
movq %rax, 0x2460(%rsp)
movq 0x2460(%rsp), %rax
movq %rax, 0x3a00(%rsp)
movq 0x3a00(%rsp), %rax
movq %rax, 0x90(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128678c
movq 0x90(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x39fc(%rsp) # imm = 0xFFFFFFFF
movl 0x39fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x39f8(%rsp)
cmpl $0x1, 0x39f8(%rsp)
jne 0x128678c
movq 0x90(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128675d
movq 0x90(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128675b
jmp 0x128678a
movq 0x90(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4428(%rsp)
cmpq $0x0, 0x4428(%rsp)
je 0x1286788
movq 0x4428(%rsp), %rdi
callq 0x5f480
jmp 0x128678a
jmp 0x128678c
movq 0x90(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12867e7
movq %rax, %rdi
callq 0x678a0
movq 0x98(%rsp), %rax
movq %rax, 0x9e8(%rsp)
movl $0x0, 0x99c(%rsp)
movl 0x99c(%rsp), %eax
cmpl 0x1c78(%rsp), %eax
jge 0x12868cf
movq 0xa38(%rsp), %rax
movq %rax, 0x2790(%rsp)
movq 0x2790(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x980(%rsp)
leaq 0x1caf(%rsp), %rdi
leaq 0xa40(%rsp), %rsi
leaq 0x980(%rsp), %rdx
callq 0x12f6aa0
movaps %xmm0, 0x970(%rsp)
movq 0x9e8(%rsp), %rax
movaps 0x970(%rsp), %xmm0
movq %rax, 0x28f8(%rsp)
movaps %xmm0, 0x28e0(%rsp)
movaps 0x28e0(%rsp), %xmm0
movq 0x28f8(%rsp), %rax
movups %xmm0, (%rax)
movq 0xa38(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xa38(%rsp)
movq 0x9e8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x9e8(%rsp)
movl 0x99c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x99c(%rsp)
jmp 0x1286802
jmp 0x12868d1
movl 0xa5c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xa5c(%rsp)
jmp 0x1285eff
movl $0x0, 0x1cd4(%rsp)
jmp 0x1287700
movq 0x1cc0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1287360
movq 0x1cb8(%rsp), %rdi
movl 0x1c88(%rsp), %esi
movl 0x1c84(%rsp), %edx
movl 0x1c7c(%rsp), %ecx
movq 0x1c70(%rsp), %r8
movl 0x1c6c(%rsp), %r9d
movq 0x1cb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1cb8(%rsp), %rax
movq %rax, 0x1ce8(%rsp)
movq 0x1ce8(%rsp), %rcx
movq %rcx, 0x80(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x8f(%rsp)
je 0x12869ac
movq 0x80(%rsp), %rax
movq %rax, 0x2c10(%rsp)
movq 0x2c10(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x8f(%rsp)
movb 0x8f(%rsp), %al
testb $0x1, %al
jne 0x12869b9
jmp 0x12869c9
movl $0xffffff9c, 0x1cd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1287700
movl $0x0, 0x96c(%rsp)
movl 0x96c(%rsp), %eax
cmpl 0x1c7c(%rsp), %eax
jge 0x1287350
movq 0x1cc8(%rsp), %rax
movq %rax, 0x1ff8(%rsp)
movq 0x1ff8(%rsp), %rax
movq (%rax), %rax
movl 0x96c(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2788(%rsp)
movq 0x2788(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x950(%rsp)
movq 0x1cc0(%rsp), %rcx
movl 0x96c(%rsp), %eax
leaq 0x900(%rsp), %rdx
movq %rdx, 0x1d80(%rsp)
movq %rcx, 0x1d78(%rsp)
movl %eax, 0x1d74(%rsp)
movq 0x1d78(%rsp), %rax
movq %rax, 0x78(%rsp)
movb $0x0, 0x1d73(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1d74(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x900(%rsp), %r10
movq %r10, 0x35c0(%rsp)
movl %r9d, 0x35bc(%rsp)
movl %r8d, 0x35b8(%rsp)
movl %edi, 0x35b4(%rsp)
movq %rsi, 0x35a8(%rsp)
movq %rdx, 0x35a0(%rsp)
movl %ecx, 0x359c(%rsp)
movq %rax, 0x3590(%rsp)
movq 0x35c0(%rsp), %rcx
movq %rcx, 0x70(%rsp)
movq 0x35a8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x35a0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x359c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3590(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x35bc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x35b8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x35b4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x35d0(%rsp)
movl $0x10, 0x35cc(%rsp)
movq 0x35d0(%rsp), %rax
movslq 0x35cc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x35cc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x78(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x928(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1286be2
movq 0x78(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x940(%rsp)
movb $0x1, 0x1d73(%rsp)
testb $0x1, 0x1d73(%rsp)
jne 0x1286d0b
leaq 0x900(%rsp), %rax
movq %rax, 0x21c8(%rsp)
movq 0x21c8(%rsp), %rax
movq %rax, 0x3f30(%rsp)
movq 0x3f30(%rsp), %rax
movq %rax, 0x68(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1286cb1
movq 0x68(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f2c(%rsp) # imm = 0xFFFFFFFF
movl 0x3f2c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f28(%rsp)
cmpl $0x1, 0x3f28(%rsp)
jne 0x1286cb1
movq 0x68(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1286c85
movq 0x68(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1286c83
jmp 0x1286caf
movq 0x68(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4190(%rsp)
cmpq $0x0, 0x4190(%rsp)
je 0x1286cad
movq 0x4190(%rsp), %rdi
callq 0x5f480
jmp 0x1286caf
jmp 0x1286cb1
movq 0x68(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1286d09
movq %rax, %rdi
callq 0x678a0
jmp 0x1286d0b
leaq 0x900(%rsp), %rax
movq %rax, 0x1ff0(%rsp)
movq 0x1ff0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x60(%rsp)
leaq 0x900(%rsp), %rax
movq %rax, 0x2470(%rsp)
movq 0x2470(%rsp), %rax
movq %rax, 0x39e0(%rsp)
movq 0x39e0(%rsp), %rax
movq %rax, 0x58(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1286de4
movq 0x58(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x39dc(%rsp) # imm = 0xFFFFFFFF
movl 0x39dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x39d8(%rsp)
cmpl $0x1, 0x39d8(%rsp)
jne 0x1286de4
movq 0x58(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1286db8
movq 0x58(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1286db6
jmp 0x1286de2
movq 0x58(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4438(%rsp)
cmpq $0x0, 0x4438(%rsp)
je 0x1286de0
movq 0x4438(%rsp), %rdi
callq 0x5f480
jmp 0x1286de2
jmp 0x1286de4
movq 0x58(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1286e3c
movq %rax, %rdi
callq 0x678a0
movq 0x60(%rsp), %rax
movq %rax, 0x948(%rsp)
movq 0x1cb8(%rsp), %rcx
movl 0x96c(%rsp), %eax
leaq 0x8b0(%rsp), %rdx
movq %rdx, 0x24a0(%rsp)
movq %rcx, 0x2498(%rsp)
movl %eax, 0x2494(%rsp)
movq 0x2498(%rsp), %rax
movq %rax, 0x50(%rsp)
movb $0x0, 0x2493(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2494(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x8b0(%rsp), %r10
movq %r10, 0x3010(%rsp)
movl %r9d, 0x300c(%rsp)
movl %r8d, 0x3008(%rsp)
movl %edi, 0x3004(%rsp)
movq %rsi, 0x2ff8(%rsp)
movq %rdx, 0x2ff0(%rsp)
movl %ecx, 0x2fec(%rsp)
movq %rax, 0x2fe0(%rsp)
movq 0x3010(%rsp), %rcx
movq %rcx, 0x48(%rsp)
movq 0x2ff8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2ff0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2fec(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2fe0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x300c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3008(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3004(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3770(%rsp)
movl $0x10, 0x376c(%rsp)
movq 0x3770(%rsp), %rax
movslq 0x376c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x376c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x50(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x8d8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1286ff9
movq 0x50(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x8f0(%rsp)
movb $0x1, 0x2493(%rsp)
testb $0x1, 0x2493(%rsp)
jne 0x1287122
leaq 0x8b0(%rsp), %rax
movq %rax, 0x24a8(%rsp)
movq 0x24a8(%rsp), %rax
movq %rax, 0x39a0(%rsp)
movq 0x39a0(%rsp), %rax
movq %rax, 0x40(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12870c8
movq 0x40(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x399c(%rsp) # imm = 0xFFFFFFFF
movl 0x399c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3998(%rsp)
cmpl $0x1, 0x3998(%rsp)
jne 0x12870c8
movq 0x40(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128709c
movq 0x40(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128709a
jmp 0x12870c6
movq 0x40(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4458(%rsp)
cmpq $0x0, 0x4458(%rsp)
je 0x12870c4
movq 0x4458(%rsp), %rdi
callq 0x5f480
jmp 0x12870c6
jmp 0x12870c8
movq 0x40(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1287120
movq %rax, %rdi
callq 0x678a0
jmp 0x1287122
leaq 0x8b0(%rsp), %rax
movq %rax, 0x26d8(%rsp)
movq 0x26d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x38(%rsp)
leaq 0x8b0(%rsp), %rax
movq %rax, 0x2480(%rsp)
movq 0x2480(%rsp), %rax
movq %rax, 0x39c0(%rsp)
movq 0x39c0(%rsp), %rax
movq %rax, 0x30(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12871fb
movq 0x30(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x39bc(%rsp) # imm = 0xFFFFFFFF
movl 0x39bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x39b8(%rsp)
cmpl $0x1, 0x39b8(%rsp)
jne 0x12871fb
movq 0x30(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12871cf
movq 0x30(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12871cd
jmp 0x12871f9
movq 0x30(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4448(%rsp)
cmpq $0x0, 0x4448(%rsp)
je 0x12871f7
movq 0x4448(%rsp), %rdi
callq 0x5f480
jmp 0x12871f9
jmp 0x12871fb
movq 0x30(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1287253
movq %rax, %rdi
callq 0x678a0
movq 0x38(%rsp), %rax
movq %rax, 0x8f8(%rsp)
movl $0x0, 0x8ac(%rsp)
movl 0x8ac(%rsp), %eax
cmpl 0x1c78(%rsp), %eax
jge 0x1287338
movq 0x948(%rsp), %rax
movq %rax, 0x2780(%rsp)
movq 0x2780(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x890(%rsp)
leaq 0x1caf(%rsp), %rdi
leaq 0x950(%rsp), %rsi
leaq 0x890(%rsp), %rdx
callq 0x12f6aa0
movaps %xmm0, 0x880(%rsp)
movq 0x8f8(%rsp), %rax
movaps 0x880(%rsp), %xmm0
movq %rax, 0x28d8(%rsp)
movaps %xmm0, 0x28c0(%rsp)
movaps 0x28c0(%rsp), %xmm0
movq 0x28d8(%rsp), %rax
movups %xmm0, (%rax)
movq 0x948(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x948(%rsp)
movq 0x8f8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x8f8(%rsp)
movl 0x8ac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x8ac(%rsp)
jmp 0x128726b
jmp 0x128733a
movl 0x96c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x96c(%rsp)
jmp 0x12869d4
movl $0x0, 0x1cd4(%rsp)
jmp 0x1287700
movq 0x1cc0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x12875d5
movq 0x1cb8(%rsp), %rdi
movl 0x1c88(%rsp), %esi
movl 0x1c84(%rsp), %edx
movq 0x1c70(%rsp), %rcx
movl 0x1c6c(%rsp), %r8d
movq 0x1cb0(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x1cb8(%rsp), %rax
movq %rax, 0x1ce0(%rsp)
movq 0x1ce0(%rsp), %rcx
movq %rcx, 0x20(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x2f(%rsp)
je 0x12873fe
movq 0x20(%rsp), %rax
movq %rax, 0x2c18(%rsp)
movq 0x2c18(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x2f(%rsp)
movb 0x2f(%rsp), %al
testb $0x1, %al
jne 0x1287408
jmp 0x1287418
movl $0xffffff9c, 0x1cd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1287700
movq 0x1cc8(%rsp), %rax
movq %rax, 0x1fe8(%rsp)
movq 0x1fe8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x878(%rsp)
movq 0x1cc0(%rsp), %rax
movq %rax, 0x1fe0(%rsp)
movq 0x1fe0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x870(%rsp)
movq 0x1cb8(%rsp), %rax
movq %rax, 0x26d0(%rsp)
movq 0x26d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x868(%rsp)
movl $0x0, 0x864(%rsp)
movl 0x864(%rsp), %eax
cmpl 0x1c84(%rsp), %eax
jge 0x12875c5
movq 0x878(%rsp), %rax
movq %rax, 0x2778(%rsp)
movq 0x2778(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x850(%rsp)
movl $0x0, 0x84c(%rsp)
movl 0x84c(%rsp), %eax
cmpl 0x1c88(%rsp), %eax
jge 0x128759b
movq 0x870(%rsp), %rax
movq %rax, 0x2770(%rsp)
movq 0x2770(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x830(%rsp)
leaq 0x1caf(%rsp), %rdi
leaq 0x850(%rsp), %rsi
leaq 0x830(%rsp), %rdx
callq 0x12f6aa0
movaps %xmm0, 0x820(%rsp)
movq 0x868(%rsp), %rax
movaps 0x820(%rsp), %xmm0
movq %rax, 0x28b8(%rsp)
movaps %xmm0, 0x28a0(%rsp)
movaps 0x28a0(%rsp), %xmm0
movq 0x28b8(%rsp), %rax
movups %xmm0, (%rax)
movq 0x870(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x870(%rsp)
movq 0x868(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x868(%rsp)
movl 0x84c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x84c(%rsp)
jmp 0x12874ce
movq 0x878(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x878(%rsp)
movl 0x864(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x864(%rsp)
jmp 0x128748c
movl $0x0, 0x1cd4(%rsp)
jmp 0x1287700
movq 0x1cc0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x12876ed
movq 0x1cb8(%rsp), %rdi
movl 0x1ca8(%rsp), %esi
movq 0x1c90(%rsp), %rdx
movl 0x1c8c(%rsp), %ecx
movq 0x1cb0(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6be00
movq 0x1cb8(%rsp), %rax
movq %rax, 0x1cd8(%rsp)
movq 0x1cd8(%rsp), %rcx
movq %rcx, 0x10(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1f(%rsp)
je 0x128766b
movq 0x10(%rsp), %rax
movq %rax, 0x2c20(%rsp)
movq 0x2c20(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1f(%rsp)
movb 0x1f(%rsp), %al
testb $0x1, %al
jne 0x1287675
jmp 0x1287682
movl $0xffffff9c, 0x1cd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1287700
movq 0x1cc0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x12876c8
cmpl $0x1, 0x1c6c(%rsp)
jne 0x12876c8
movq 0x1cc8(%rsp), %rdi
movq 0x1cc0(%rsp), %rsi
movq 0x1cb8(%rsp), %rdx
movq 0x1cb0(%rsp), %rcx
callq 0x12e6d80
movl %eax, 0x1cd4(%rsp)
jmp 0x1287700
movq 0x1cc8(%rsp), %rdi
movq 0x1cc0(%rsp), %rsi
movq 0x1cb8(%rsp), %rdx
movq 0x1cb0(%rsp), %rcx
callq 0x12e5e00
jmp 0x12876ef
jmp 0x12876f1
jmp 0x12876f3
jmp 0x12876f5
movl $0x0, 0x1cd4(%rsp)
movl 0x1cd4(%rsp), %eax
addq $0x44e8, %rsp # imm = 0x44E8
retq
nop
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,830
|
int ncnn::binary_op_pack4<ncnn::BinaryOp_x86_functor::binary_op_sub>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op_pack4(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int size = w * h * d;
size_t elemsize = a.elemsize;
int elempack = a.elempack;
int w1 = b.w;
int h1 = b.h;
int d1 = b.d;
int channels1 = b.c;
int size1 = w1 * h1 * d1;
size_t elemsize1 = b.elemsize;
int elempack1 = b.elempack;
if (a.dims == 4)
{
if (b.dims == 4)
{
// type 29
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
c.create(w, h, d, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 3)
{
// type 28
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
for (int y = 0; y < h; y++)
{
__m128 _b0 = _mm_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
ptr1 += 4;
}
}
}
return 0;
}
if (b.dims == 2)
{
// type 27
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
__m128 _b0 = _mm_loadu_ps(ptr1);
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
}
ptr1 += 4;
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1 && elempack1 == 1)
{
// type 25
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 26
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
__m128 _b0 = _mm_loadu_ps((const float*)b + q * 4);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
}
return 0;
}
}
else if (a.dims == 3)
{
if (b.dims == 4)
{
// type 23
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
for (int y = 0; y < h1; y++)
{
__m128 _a0 = _mm_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m128 _p = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
ptr += 4;
}
}
}
return 0;
}
if (b.dims == 3)
{
if (w1 == 1 && h1 == 1 && channels1 == channels)
{
// special type 1
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
float* outptr = c.channel(q);
const float* b0 = b.channel(q);
__m128 _b0 = _mm_loadu_ps(b0);
for (int i = 0; i < size; i++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
}
return 0;
}
if (w1 == w && h1 == h && channels1 == 1 && elempack1 == 1)
{
// special type 2
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b;
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _p1 = _mm_set1_ps(*ptr1);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
ptr1 += 1;
outptr += 4;
}
}
return 0;
}
if (w == 1 && h == 1 && channels1 == channels)
{
// special type 3
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* a0 = a.channel(q);
float* outptr = c.channel(q);
const float* ptr1 = b.channel(q);
__m128 _a0 = _mm_loadu_ps(a0);
for (int i = 0; i < size1; i++)
{
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
}
return 0;
}
if (w1 == w && h1 == h && channels == 1 && elempack == 1)
{
// special type 4
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a;
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m128 _p = _mm_set1_ps(*ptr);
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_storeu_ps(outptr, _outp);
ptr += 1;
ptr1 += 4;
outptr += 4;
}
}
return 0;
}
if (w != 1 && w1 == 1 && h1 == h && channels1 == channels)
{
// special type 5
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
__m128 _p1 = _mm_loadu_ps(ptr1 + y * 4);
for (int x = 0; x < w; x++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
}
}
return 0;
}
if (w1 == w && h != 1 && h1 == 1 && channels1 == channels)
{
// special type 6
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _p1 = _mm_loadu_ps(ptr1 + x * 4);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
}
}
return 0;
}
if (w1 != 1 && w == 1 && h1 == h && channels1 == channels)
{
// special type 7
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
__m128 _p = _mm_loadu_ps(ptr + y * 4);
for (int x = 0; x < w1; x++)
{
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
}
}
return 0;
}
if (w1 == w && h1 != 1 && h == 1 && channels1 == channels)
{
// special type 8
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
__m128 _p = _mm_loadu_ps(ptr + x * 4);
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
}
}
return 0;
}
// type 19
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 18
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row<const float>(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
__m128 _b0 = _mm_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
ptr1 += 4;
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1 && elempack1 == 1)
{
// type 16
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 17
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
__m128 _b0 = _mm_loadu_ps((const float*)b + q * 4);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
}
return 0;
}
}
else if (a.dims == 2)
{
if (b.dims == 4)
{
// type 22
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
__m128 _a0 = _mm_loadu_ps(ptr);
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
__m128 _p = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
}
ptr += 4;
}
}
return 0;
}
if (b.dims == 3)
{
// type 14
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row<const float>(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
__m128 _a0 = _mm_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
ptr += 4;
}
}
return 0;
}
c.create(w, h, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 13
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
if (b.dims == 1)
{
c.create(w, h, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1 && elempack1 == 1)
{
// type 11
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 12
const float* ptr = a;
const float* ptr1 = b;
float* outptr = c;
for (int y = 0; y < h; y++)
{
__m128 _b0 = _mm_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
ptr1 += 4;
}
return 0;
}
}
else if (a.dims == 1)
{
if (a.w == 1 && elempack == 1)
{
// type 2 3 4 20
return binary_op_2_3_4_20<Op>(a, b, c, opt);
}
if (b.dims == 4)
{
// type 21
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
__m128 _a0 = _mm_loadu_ps((const float*)a + q * 4);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
}
return 0;
}
if (b.dims == 3)
{
// type 9
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
__m128 _a0 = _mm_loadu_ps((const float*)a + q * 4);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
}
return 0;
}
if (b.dims == 2)
{
// type 8
c.create(w1, h1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
const float* ptr = a;
const float* ptr1 = b;
float* outptr = c;
for (int y = 0; y < h1; y++)
{
__m128 _a0 = _mm_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
ptr += 4;
}
return 0;
}
if (b.dims == 1)
{
c.create(w, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1 && elempack1 == 1)
{
// type 6
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 7
binary_op_7_13_19_29<Op>(a, b, c, opt);
}
}
return 0;
}
|
subq $0x3f58, %rsp # imm = 0x3F58
movq %rdi, 0x1cb8(%rsp)
movq %rsi, 0x1cb0(%rsp)
movq %rdx, 0x1ca8(%rsp)
movq %rcx, 0x1ca0(%rsp)
movq 0x1cb8(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x1c98(%rsp)
movq 0x1cb8(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x1c94(%rsp)
movq 0x1cb8(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x1c90(%rsp)
movq 0x1cb8(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x1c8c(%rsp)
movl 0x1c98(%rsp), %eax
imull 0x1c94(%rsp), %eax
imull 0x1c90(%rsp), %eax
movl %eax, 0x1c88(%rsp)
movq 0x1cb8(%rsp), %rax
movq 0x10(%rax), %rax
movq %rax, 0x1c80(%rsp)
movq 0x1cb8(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x1c7c(%rsp)
movq 0x1cb0(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x1c78(%rsp)
movq 0x1cb0(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x1c74(%rsp)
movq 0x1cb0(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x1c70(%rsp)
movq 0x1cb0(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x1c6c(%rsp)
movl 0x1c78(%rsp), %eax
imull 0x1c74(%rsp), %eax
imull 0x1c70(%rsp), %eax
movl %eax, 0x1c68(%rsp)
movq 0x1cb0(%rsp), %rax
movq 0x10(%rax), %rax
movq %rax, 0x1c60(%rsp)
movq 0x1cb0(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x1c5c(%rsp)
movq 0x1cb8(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1289d42
movq 0x1cb0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x12878a0
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12e8460
movl %eax, 0x1cc4(%rsp)
jmp 0x1296910
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movl 0x1c90(%rsp), %ecx
movl 0x1c8c(%rsp), %r8d
movq 0x1c80(%rsp), %r9
movl 0x1c7c(%rsp), %r10d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d58(%rsp)
movq 0x1d58(%rsp), %rcx
movq %rcx, 0x810(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x81f(%rsp)
je 0x1287950
movq 0x810(%rsp), %rax
movq %rax, 0x2a20(%rsp)
movq 0x2a20(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x81f(%rsp)
movb 0x81f(%rsp), %al
testb $0x1, %al
jne 0x128795d
jmp 0x128796d
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1296910
movq 0x1cb0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1288828
movl $0x0, 0x1c58(%rsp)
movl 0x1c58(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jge 0x1288818
movq 0x1cb8(%rsp), %rcx
movl 0x1c58(%rsp), %eax
leaq 0x1c08(%rsp), %rdx
movq %rdx, 0x1fc8(%rsp)
movq %rcx, 0x1fc0(%rsp)
movl %eax, 0x1fbc(%rsp)
movq 0x1fc0(%rsp), %rax
movq %rax, 0x808(%rsp)
movb $0x0, 0x1fbb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1fbc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1c08(%rsp), %r10
movq %r10, 0x2ed8(%rsp)
movl %r9d, 0x2ed4(%rsp)
movl %r8d, 0x2ed0(%rsp)
movl %edi, 0x2ecc(%rsp)
movq %rsi, 0x2ec0(%rsp)
movq %rdx, 0x2eb8(%rsp)
movl %ecx, 0x2eb4(%rsp)
movq %rax, 0x2ea8(%rsp)
movq 0x2ed8(%rsp), %rcx
movq %rcx, 0x800(%rsp)
movq 0x2ec0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2eb8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2eb4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ea8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2ed4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2ed0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2ecc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x35f0(%rsp)
movl $0x10, 0x35ec(%rsp)
movq 0x35f0(%rsp), %rax
movslq 0x35ec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x35ec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x808(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1c30(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1287b5a
movq 0x808(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1c48(%rsp)
movb $0x1, 0x1fbb(%rsp)
testb $0x1, 0x1fbb(%rsp)
jne 0x1287c95
leaq 0x1c08(%rsp), %rax
movq %rax, 0x20f0(%rsp)
movq 0x20f0(%rsp), %rax
movq %rax, 0x3c90(%rsp)
movq 0x3c90(%rsp), %rax
movq %rax, 0x7f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1287c38
movq 0x7f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c8c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c8c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c88(%rsp)
cmpl $0x1, 0x3c88(%rsp)
jne 0x1287c38
movq 0x7f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1287c09
movq 0x7f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1287c07
jmp 0x1287c36
movq 0x7f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3c98(%rsp)
cmpq $0x0, 0x3c98(%rsp)
je 0x1287c34
movq 0x3c98(%rsp), %rdi
callq 0x5f480
jmp 0x1287c36
jmp 0x1287c38
movq 0x7f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1287c93
movq %rax, %rdi
callq 0x678a0
jmp 0x1287c95
leaq 0x1c08(%rsp), %rax
movq %rax, 0x20e8(%rsp)
movq 0x20e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7e8(%rsp)
leaq 0x1c08(%rsp), %rax
movq %rax, 0x21c0(%rsp)
movq 0x21c0(%rsp), %rax
movq %rax, 0x3af0(%rsp)
movq 0x3af0(%rsp), %rax
movq %rax, 0x7f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1287d80
movq 0x7f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3aec(%rsp) # imm = 0xFFFFFFFF
movl 0x3aec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ae8(%rsp)
cmpl $0x1, 0x3ae8(%rsp)
jne 0x1287d80
movq 0x7f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1287d51
movq 0x7f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1287d4f
jmp 0x1287d7e
movq 0x7f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d68(%rsp)
cmpq $0x0, 0x3d68(%rsp)
je 0x1287d7c
movq 0x3d68(%rsp), %rdi
callq 0x5f480
jmp 0x1287d7e
jmp 0x1287d80
movq 0x7f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1287ddb
movq %rax, %rdi
callq 0x678a0
movq 0x7e8(%rsp), %rax
movq %rax, 0x1c50(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x1c58(%rsp), %eax
leaq 0x1bb8(%rsp), %rdx
movq %rdx, 0x1fb0(%rsp)
movq %rcx, 0x1fa8(%rsp)
movl %eax, 0x1fa4(%rsp)
movq 0x1fa8(%rsp), %rax
movq %rax, 0x7e0(%rsp)
movb $0x0, 0x1fa3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1fa4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1bb8(%rsp), %r10
movq %r10, 0x2f10(%rsp)
movl %r9d, 0x2f0c(%rsp)
movl %r8d, 0x2f08(%rsp)
movl %edi, 0x2f04(%rsp)
movq %rsi, 0x2ef8(%rsp)
movq %rdx, 0x2ef0(%rsp)
movl %ecx, 0x2eec(%rsp)
movq %rax, 0x2ee0(%rsp)
movq 0x2f10(%rsp), %rcx
movq %rcx, 0x7d8(%rsp)
movq 0x2ef8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2ef0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2eec(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ee0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2f0c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f08(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f04(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x35e0(%rsp)
movl $0x10, 0x35dc(%rsp)
movq 0x35e0(%rsp), %rax
movslq 0x35dc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x35dc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7e0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1be0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1287fa7
movq 0x7e0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1bf8(%rsp)
movb $0x1, 0x1fa3(%rsp)
testb $0x1, 0x1fa3(%rsp)
jne 0x12880e2
leaq 0x1bb8(%rsp), %rax
movq %rax, 0x20f8(%rsp)
movq 0x20f8(%rsp), %rax
movq %rax, 0x3c80(%rsp)
movq 0x3c80(%rsp), %rax
movq %rax, 0x7d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1288085
movq 0x7d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c7c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c7c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c78(%rsp)
cmpl $0x1, 0x3c78(%rsp)
jne 0x1288085
movq 0x7d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1288056
movq 0x7d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1288054
jmp 0x1288083
movq 0x7d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ca0(%rsp)
cmpq $0x0, 0x3ca0(%rsp)
je 0x1288081
movq 0x3ca0(%rsp), %rdi
callq 0x5f480
jmp 0x1288083
jmp 0x1288085
movq 0x7d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12880e0
movq %rax, %rdi
callq 0x678a0
jmp 0x12880e2
leaq 0x1bb8(%rsp), %rax
movq %rax, 0x20e0(%rsp)
movq 0x20e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7c0(%rsp)
leaq 0x1bb8(%rsp), %rax
movq %rax, 0x21c8(%rsp)
movq 0x21c8(%rsp), %rax
movq %rax, 0x3ae0(%rsp)
movq 0x3ae0(%rsp), %rax
movq %rax, 0x7c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12881cd
movq 0x7c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3adc(%rsp) # imm = 0xFFFFFFFF
movl 0x3adc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ad8(%rsp)
cmpl $0x1, 0x3ad8(%rsp)
jne 0x12881cd
movq 0x7c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128819e
movq 0x7c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128819c
jmp 0x12881cb
movq 0x7c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d70(%rsp)
cmpq $0x0, 0x3d70(%rsp)
je 0x12881c9
movq 0x3d70(%rsp), %rdi
callq 0x5f480
jmp 0x12881cb
jmp 0x12881cd
movq 0x7c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1288228
movq %rax, %rdi
callq 0x678a0
movq 0x7c0(%rsp), %rax
movq %rax, 0x1c00(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x1c58(%rsp), %eax
leaq 0x1b68(%rsp), %rdx
movq %rdx, 0x2550(%rsp)
movq %rcx, 0x2548(%rsp)
movl %eax, 0x2544(%rsp)
movq 0x2548(%rsp), %rax
movq %rax, 0x7b8(%rsp)
movb $0x0, 0x2543(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2544(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1b68(%rsp), %r10
movq %r10, 0x2ae8(%rsp)
movl %r9d, 0x2ae4(%rsp)
movl %r8d, 0x2ae0(%rsp)
movl %edi, 0x2adc(%rsp)
movq %rsi, 0x2ad0(%rsp)
movq %rdx, 0x2ac8(%rsp)
movl %ecx, 0x2ac4(%rsp)
movq %rax, 0x2ab8(%rsp)
movq 0x2ae8(%rsp), %rcx
movq %rcx, 0x7b0(%rsp)
movq 0x2ad0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2ac8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2ac4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ab8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2ae4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2ae0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2adc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3710(%rsp)
movl $0x10, 0x370c(%rsp)
movq 0x3710(%rsp), %rax
movslq 0x370c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x370c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7b8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1b90(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12883f4
movq 0x7b8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1ba8(%rsp)
movb $0x1, 0x2543(%rsp)
testb $0x1, 0x2543(%rsp)
jne 0x128852f
leaq 0x1b68(%rsp), %rax
movq %rax, 0x2558(%rsp)
movq 0x2558(%rsp), %rax
movq %rax, 0x3720(%rsp)
movq 0x3720(%rsp), %rax
movq %rax, 0x7a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12884d2
movq 0x7a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x371c(%rsp) # imm = 0xFFFFFFFF
movl 0x371c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3718(%rsp)
cmpl $0x1, 0x3718(%rsp)
jne 0x12884d2
movq 0x7a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12884a3
movq 0x7a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12884a1
jmp 0x12884d0
movq 0x7a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f50(%rsp)
cmpq $0x0, 0x3f50(%rsp)
je 0x12884ce
movq 0x3f50(%rsp), %rdi
callq 0x5f480
jmp 0x12884d0
jmp 0x12884d2
movq 0x7a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128852d
movq %rax, %rdi
callq 0x678a0
jmp 0x128852f
leaq 0x1b68(%rsp), %rax
movq %rax, 0x25f8(%rsp)
movq 0x25f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x798(%rsp)
leaq 0x1b68(%rsp), %rax
movq %rax, 0x21d0(%rsp)
movq 0x21d0(%rsp), %rax
movq %rax, 0x3ad0(%rsp)
movq 0x3ad0(%rsp), %rax
movq %rax, 0x7a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128861a
movq 0x7a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3acc(%rsp) # imm = 0xFFFFFFFF
movl 0x3acc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ac8(%rsp)
cmpl $0x1, 0x3ac8(%rsp)
jne 0x128861a
movq 0x7a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12885eb
movq 0x7a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12885e9
jmp 0x1288618
movq 0x7a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d78(%rsp)
cmpq $0x0, 0x3d78(%rsp)
je 0x1288616
movq 0x3d78(%rsp), %rdi
callq 0x5f480
jmp 0x1288618
jmp 0x128861a
movq 0x7a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1288675
movq %rax, %rdi
callq 0x678a0
movq 0x798(%rsp), %rax
movq %rax, 0x1bb0(%rsp)
movl $0x0, 0x1b64(%rsp)
movl 0x1b64(%rsp), %eax
cmpl 0x1c90(%rsp), %eax
jge 0x1288800
movl $0x0, 0x1b60(%rsp)
movl 0x1b60(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jge 0x12887e8
movq 0x1c00(%rsp), %rax
movq %rax, 0x2728(%rsp)
movq 0x2728(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1b50(%rsp)
movl $0x0, 0x1b4c(%rsp)
movl 0x1b4c(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jge 0x12887be
movq 0x1c50(%rsp), %rax
movq %rax, 0x2720(%rsp)
movq 0x2720(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1b30(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x1b30(%rsp), %rsi
leaq 0x1b50(%rsp), %rdx
callq 0x12f6b10
movaps %xmm0, 0x1b20(%rsp)
movq 0x1bb0(%rsp), %rax
movaps 0x1b20(%rsp), %xmm0
movq %rax, 0x29a8(%rsp)
movaps %xmm0, 0x2990(%rsp)
movaps 0x2990(%rsp), %xmm0
movq 0x29a8(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1c50(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1c50(%rsp)
movq 0x1bb0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1bb0(%rsp)
movl 0x1b4c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b4c(%rsp)
jmp 0x12886f1
movq 0x1c00(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1c00(%rsp)
movl 0x1b60(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b60(%rsp)
jmp 0x12886af
jmp 0x12887ea
movl 0x1b64(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b64(%rsp)
jmp 0x1288690
jmp 0x1288802
movl 0x1c58(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c58(%rsp)
jmp 0x128798a
movl $0x0, 0x1cc4(%rsp)
jmp 0x1296910
movq 0x1cb0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x12892df
movl $0x0, 0x1b1c(%rsp)
movl 0x1b1c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jge 0x12892cf
movq 0x1cb8(%rsp), %rcx
movl 0x1b1c(%rsp), %eax
leaq 0x1ac8(%rsp), %rdx
movq %rdx, 0x1f98(%rsp)
movq %rcx, 0x1f90(%rsp)
movl %eax, 0x1f8c(%rsp)
movq 0x1f90(%rsp), %rax
movq %rax, 0x790(%rsp)
movb $0x0, 0x1f8b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1f8c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1ac8(%rsp), %r10
movq %r10, 0x2f48(%rsp)
movl %r9d, 0x2f44(%rsp)
movl %r8d, 0x2f40(%rsp)
movl %edi, 0x2f3c(%rsp)
movq %rsi, 0x2f30(%rsp)
movq %rdx, 0x2f28(%rsp)
movl %ecx, 0x2f24(%rsp)
movq %rax, 0x2f18(%rsp)
movq 0x2f48(%rsp), %rcx
movq %rcx, 0x788(%rsp)
movq 0x2f30(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2f28(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2f24(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2f18(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2f44(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f40(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f3c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x35d0(%rsp)
movl $0x10, 0x35cc(%rsp)
movq 0x35d0(%rsp), %rax
movslq 0x35cc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x35cc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x790(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1af0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1288a15
movq 0x790(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1b08(%rsp)
movb $0x1, 0x1f8b(%rsp)
testb $0x1, 0x1f8b(%rsp)
jne 0x1288b50
leaq 0x1ac8(%rsp), %rax
movq %rax, 0x2100(%rsp)
movq 0x2100(%rsp), %rax
movq %rax, 0x3c70(%rsp)
movq 0x3c70(%rsp), %rax
movq %rax, 0x780(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1288af3
movq 0x780(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c6c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c6c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c68(%rsp)
cmpl $0x1, 0x3c68(%rsp)
jne 0x1288af3
movq 0x780(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1288ac4
movq 0x780(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1288ac2
jmp 0x1288af1
movq 0x780(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ca8(%rsp)
cmpq $0x0, 0x3ca8(%rsp)
je 0x1288aef
movq 0x3ca8(%rsp), %rdi
callq 0x5f480
jmp 0x1288af1
jmp 0x1288af3
movq 0x780(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1288b4e
movq %rax, %rdi
callq 0x678a0
jmp 0x1288b50
leaq 0x1ac8(%rsp), %rax
movq %rax, 0x20d8(%rsp)
movq 0x20d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x770(%rsp)
leaq 0x1ac8(%rsp), %rax
movq %rax, 0x21d8(%rsp)
movq 0x21d8(%rsp), %rax
movq %rax, 0x3ac0(%rsp)
movq 0x3ac0(%rsp), %rax
movq %rax, 0x778(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1288c3b
movq 0x778(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3abc(%rsp) # imm = 0xFFFFFFFF
movl 0x3abc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ab8(%rsp)
cmpl $0x1, 0x3ab8(%rsp)
jne 0x1288c3b
movq 0x778(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1288c0c
movq 0x778(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1288c0a
jmp 0x1288c39
movq 0x778(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d80(%rsp)
cmpq $0x0, 0x3d80(%rsp)
je 0x1288c37
movq 0x3d80(%rsp), %rdi
callq 0x5f480
jmp 0x1288c39
jmp 0x1288c3b
movq 0x778(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1288c96
movq %rax, %rdi
callq 0x678a0
movq 0x770(%rsp), %rax
movq %rax, 0x1b10(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x1b1c(%rsp), %eax
movq %rcx, 0x29c8(%rsp)
movl %eax, 0x29c4(%rsp)
movq 0x29c8(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x29c4(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x1ac0(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x1b1c(%rsp), %eax
leaq 0x1a70(%rsp), %rdx
movq %rdx, 0x2530(%rsp)
movq %rcx, 0x2528(%rsp)
movl %eax, 0x2524(%rsp)
movq 0x2528(%rsp), %rax
movq %rax, 0x768(%rsp)
movb $0x0, 0x2523(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2524(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1a70(%rsp), %r10
movq %r10, 0x2b20(%rsp)
movl %r9d, 0x2b1c(%rsp)
movl %r8d, 0x2b18(%rsp)
movl %edi, 0x2b14(%rsp)
movq %rsi, 0x2b08(%rsp)
movq %rdx, 0x2b00(%rsp)
movl %ecx, 0x2afc(%rsp)
movq %rax, 0x2af0(%rsp)
movq 0x2b20(%rsp), %rcx
movq %rcx, 0x760(%rsp)
movq 0x2b08(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2b00(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2afc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2af0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2b1c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2b18(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2b14(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3700(%rsp)
movl $0x10, 0x36fc(%rsp)
movq 0x3700(%rsp), %rax
movslq 0x36fc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x36fc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x768(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1a98(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1288eab
movq 0x768(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1ab0(%rsp)
movb $0x1, 0x2523(%rsp)
testb $0x1, 0x2523(%rsp)
jne 0x1288fe6
leaq 0x1a70(%rsp), %rax
movq %rax, 0x2538(%rsp)
movq 0x2538(%rsp), %rax
movq %rax, 0x3730(%rsp)
movq 0x3730(%rsp), %rax
movq %rax, 0x758(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1288f89
movq 0x758(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x372c(%rsp) # imm = 0xFFFFFFFF
movl 0x372c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3728(%rsp)
cmpl $0x1, 0x3728(%rsp)
jne 0x1288f89
movq 0x758(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1288f5a
movq 0x758(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1288f58
jmp 0x1288f87
movq 0x758(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f48(%rsp)
cmpq $0x0, 0x3f48(%rsp)
je 0x1288f85
movq 0x3f48(%rsp), %rdi
callq 0x5f480
jmp 0x1288f87
jmp 0x1288f89
movq 0x758(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1288fe4
movq %rax, %rdi
callq 0x678a0
jmp 0x1288fe6
leaq 0x1a70(%rsp), %rax
movq %rax, 0x25f0(%rsp)
movq 0x25f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x748(%rsp)
leaq 0x1a70(%rsp), %rax
movq %rax, 0x21e0(%rsp)
movq 0x21e0(%rsp), %rax
movq %rax, 0x3ab0(%rsp)
movq 0x3ab0(%rsp), %rax
movq %rax, 0x750(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12890d1
movq 0x750(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3aac(%rsp) # imm = 0xFFFFFFFF
movl 0x3aac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3aa8(%rsp)
cmpl $0x1, 0x3aa8(%rsp)
jne 0x12890d1
movq 0x750(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12890a2
movq 0x750(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12890a0
jmp 0x12890cf
movq 0x750(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d88(%rsp)
cmpq $0x0, 0x3d88(%rsp)
je 0x12890cd
movq 0x3d88(%rsp), %rdi
callq 0x5f480
jmp 0x12890cf
jmp 0x12890d1
movq 0x750(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128912c
movq %rax, %rdi
callq 0x678a0
movq 0x748(%rsp), %rax
movq %rax, 0x1ab8(%rsp)
movl $0x0, 0x1a6c(%rsp)
movl 0x1a6c(%rsp), %eax
cmpl 0x1c90(%rsp), %eax
jge 0x12892b7
movq 0x1ac0(%rsp), %rax
movq %rax, 0x2718(%rsp)
movq 0x2718(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1a50(%rsp)
movl $0x0, 0x1a4c(%rsp)
movl 0x1a4c(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jge 0x128928d
movl $0x0, 0x1a48(%rsp)
movl 0x1a48(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jge 0x1289275
movq 0x1b10(%rsp), %rax
movq %rax, 0x2710(%rsp)
movq 0x2710(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1a30(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x1a30(%rsp), %rsi
leaq 0x1a50(%rsp), %rdx
callq 0x12f6b10
movaps %xmm0, 0x1a20(%rsp)
movq 0x1ab8(%rsp), %rax
movaps 0x1a20(%rsp), %xmm0
movq %rax, 0x2988(%rsp)
movaps %xmm0, 0x2970(%rsp)
movaps 0x2970(%rsp), %xmm0
movq 0x2988(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1b10(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1b10(%rsp)
movq 0x1ab8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1ab8(%rsp)
movl 0x1a48(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1a48(%rsp)
jmp 0x12891a8
jmp 0x1289277
movl 0x1a4c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1a4c(%rsp)
jmp 0x1289189
movq 0x1ac0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1ac0(%rsp)
movl 0x1a6c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1a6c(%rsp)
jmp 0x1289147
jmp 0x12892b9
movl 0x1b1c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b1c(%rsp)
jmp 0x1288845
movl $0x0, 0x1cc4(%rsp)
jmp 0x1296910
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1289d3d
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x128933a
cmpl $0x1, 0x1c5c(%rsp)
jne 0x128933a
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12e93e0
movl %eax, 0x1cc4(%rsp)
jmp 0x1296910
movl $0x0, 0x1a1c(%rsp)
movl 0x1a1c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jge 0x1289d2d
movq 0x1cb8(%rsp), %rcx
movl 0x1a1c(%rsp), %eax
leaq 0x19c8(%rsp), %rdx
movq %rdx, 0x1f80(%rsp)
movq %rcx, 0x1f78(%rsp)
movl %eax, 0x1f74(%rsp)
movq 0x1f78(%rsp), %rax
movq %rax, 0x740(%rsp)
movb $0x0, 0x1f73(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1f74(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x19c8(%rsp), %r10
movq %r10, 0x2f80(%rsp)
movl %r9d, 0x2f7c(%rsp)
movl %r8d, 0x2f78(%rsp)
movl %edi, 0x2f74(%rsp)
movq %rsi, 0x2f68(%rsp)
movq %rdx, 0x2f60(%rsp)
movl %ecx, 0x2f5c(%rsp)
movq %rax, 0x2f50(%rsp)
movq 0x2f80(%rsp), %rcx
movq %rcx, 0x738(%rsp)
movq 0x2f68(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2f60(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2f5c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2f50(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2f7c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f78(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f74(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x35c0(%rsp)
movl $0x10, 0x35bc(%rsp)
movq 0x35c0(%rsp), %rax
movslq 0x35bc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x35bc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x740(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x19f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1289515
movq 0x740(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1a08(%rsp)
movb $0x1, 0x1f73(%rsp)
testb $0x1, 0x1f73(%rsp)
jne 0x1289650
leaq 0x19c8(%rsp), %rax
movq %rax, 0x2108(%rsp)
movq 0x2108(%rsp), %rax
movq %rax, 0x3c60(%rsp)
movq 0x3c60(%rsp), %rax
movq %rax, 0x730(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12895f3
movq 0x730(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c5c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c5c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c58(%rsp)
cmpl $0x1, 0x3c58(%rsp)
jne 0x12895f3
movq 0x730(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12895c4
movq 0x730(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12895c2
jmp 0x12895f1
movq 0x730(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cb0(%rsp)
cmpq $0x0, 0x3cb0(%rsp)
je 0x12895ef
movq 0x3cb0(%rsp), %rdi
callq 0x5f480
jmp 0x12895f1
jmp 0x12895f3
movq 0x730(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128964e
movq %rax, %rdi
callq 0x678a0
jmp 0x1289650
leaq 0x19c8(%rsp), %rax
movq %rax, 0x20d0(%rsp)
movq 0x20d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x720(%rsp)
leaq 0x19c8(%rsp), %rax
movq %rax, 0x21e8(%rsp)
movq 0x21e8(%rsp), %rax
movq %rax, 0x3aa0(%rsp)
movq 0x3aa0(%rsp), %rax
movq %rax, 0x728(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128973b
movq 0x728(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a9c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a9c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a98(%rsp)
cmpl $0x1, 0x3a98(%rsp)
jne 0x128973b
movq 0x728(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128970c
movq 0x728(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128970a
jmp 0x1289739
movq 0x728(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d90(%rsp)
cmpq $0x0, 0x3d90(%rsp)
je 0x1289737
movq 0x3d90(%rsp), %rdi
callq 0x5f480
jmp 0x1289739
jmp 0x128973b
movq 0x728(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1289796
movq %rax, %rdi
callq 0x678a0
movq 0x720(%rsp), %rax
movq %rax, 0x1a10(%rsp)
movq 0x1cb0(%rsp), %rax
movq %rax, 0x20c8(%rsp)
movq 0x20c8(%rsp), %rax
movq (%rax), %rax
movl 0x1a1c(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2708(%rsp)
movq 0x2708(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x19b0(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x1a1c(%rsp), %eax
leaq 0x1960(%rsp), %rdx
movq %rdx, 0x2510(%rsp)
movq %rcx, 0x2508(%rsp)
movl %eax, 0x2504(%rsp)
movq 0x2508(%rsp), %rax
movq %rax, 0x718(%rsp)
movb $0x0, 0x2503(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2504(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1960(%rsp), %r10
movq %r10, 0x2b58(%rsp)
movl %r9d, 0x2b54(%rsp)
movl %r8d, 0x2b50(%rsp)
movl %edi, 0x2b4c(%rsp)
movq %rsi, 0x2b40(%rsp)
movq %rdx, 0x2b38(%rsp)
movl %ecx, 0x2b34(%rsp)
movq %rax, 0x2b28(%rsp)
movq 0x2b58(%rsp), %rcx
movq %rcx, 0x710(%rsp)
movq 0x2b40(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2b38(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2b34(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2b28(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2b54(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2b50(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2b4c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x36f0(%rsp)
movl $0x10, 0x36ec(%rsp)
movq 0x36f0(%rsp), %rax
movslq 0x36ec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x36ec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x718(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1988(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12899ac
movq 0x718(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x19a0(%rsp)
movb $0x1, 0x2503(%rsp)
testb $0x1, 0x2503(%rsp)
jne 0x1289ae7
leaq 0x1960(%rsp), %rax
movq %rax, 0x2518(%rsp)
movq 0x2518(%rsp), %rax
movq %rax, 0x3740(%rsp)
movq 0x3740(%rsp), %rax
movq %rax, 0x708(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1289a8a
movq 0x708(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x373c(%rsp) # imm = 0xFFFFFFFF
movl 0x373c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3738(%rsp)
cmpl $0x1, 0x3738(%rsp)
jne 0x1289a8a
movq 0x708(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1289a5b
movq 0x708(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1289a59
jmp 0x1289a88
movq 0x708(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f40(%rsp)
cmpq $0x0, 0x3f40(%rsp)
je 0x1289a86
movq 0x3f40(%rsp), %rdi
callq 0x5f480
jmp 0x1289a88
jmp 0x1289a8a
movq 0x708(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1289ae5
movq %rax, %rdi
callq 0x678a0
jmp 0x1289ae7
leaq 0x1960(%rsp), %rax
movq %rax, 0x25e8(%rsp)
movq 0x25e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6f8(%rsp)
leaq 0x1960(%rsp), %rax
movq %rax, 0x21f0(%rsp)
movq 0x21f0(%rsp), %rax
movq %rax, 0x3a90(%rsp)
movq 0x3a90(%rsp), %rax
movq %rax, 0x700(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1289bd2
movq 0x700(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a8c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a8c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a88(%rsp)
cmpl $0x1, 0x3a88(%rsp)
jne 0x1289bd2
movq 0x700(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1289ba3
movq 0x700(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1289ba1
jmp 0x1289bd0
movq 0x700(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d98(%rsp)
cmpq $0x0, 0x3d98(%rsp)
je 0x1289bce
movq 0x3d98(%rsp), %rdi
callq 0x5f480
jmp 0x1289bd0
jmp 0x1289bd2
movq 0x700(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1289c2d
movq %rax, %rdi
callq 0x678a0
movq 0x6f8(%rsp), %rax
movq %rax, 0x19a8(%rsp)
movl $0x0, 0x195c(%rsp)
movl 0x195c(%rsp), %eax
cmpl 0x1c88(%rsp), %eax
jge 0x1289d15
movq 0x1a10(%rsp), %rax
movq %rax, 0x2700(%rsp)
movq 0x2700(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1940(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x1940(%rsp), %rsi
leaq 0x19b0(%rsp), %rdx
callq 0x12f6b10
movaps %xmm0, 0x1930(%rsp)
movq 0x19a8(%rsp), %rax
movaps 0x1930(%rsp), %xmm0
movq %rax, 0x2968(%rsp)
movaps %xmm0, 0x2950(%rsp)
movaps 0x2950(%rsp), %xmm0
movq 0x2968(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1a10(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1a10(%rsp)
movq 0x19a8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x19a8(%rsp)
movl 0x195c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x195c(%rsp)
jmp 0x1289c48
jmp 0x1289d17
movl 0x1a1c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1a1c(%rsp)
jmp 0x1289345
movl $0x0, 0x1cc4(%rsp)
jmp 0x1296910
jmp 0x1296905
movq 0x1cb8(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x129352e
movq 0x1cb0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x128acdc
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c70(%rsp), %ecx
movl 0x1c6c(%rsp), %r8d
movq 0x1c60(%rsp), %r9
movl 0x1c5c(%rsp), %r10d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d50(%rsp)
movq 0x1d50(%rsp), %rcx
movq %rcx, 0x6e8(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x6f7(%rsp)
je 0x1289e16
movq 0x6e8(%rsp), %rax
movq %rax, 0x2a28(%rsp)
movq 0x2a28(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x6f7(%rsp)
movb 0x6f7(%rsp), %al
testb $0x1, %al
jne 0x1289e23
jmp 0x1289e33
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1296910
movl $0x0, 0x192c(%rsp)
movl 0x192c(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x128accc
movq 0x1cb8(%rsp), %rcx
movl 0x192c(%rsp), %eax
leaq 0x18d8(%rsp), %rdx
movq %rdx, 0x1f68(%rsp)
movq %rcx, 0x1f60(%rsp)
movl %eax, 0x1f5c(%rsp)
movq 0x1f60(%rsp), %rax
movq %rax, 0x6e0(%rsp)
movb $0x0, 0x1f5b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1f5c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x18d8(%rsp), %r10
movq %r10, 0x2fb8(%rsp)
movl %r9d, 0x2fb4(%rsp)
movl %r8d, 0x2fb0(%rsp)
movl %edi, 0x2fac(%rsp)
movq %rsi, 0x2fa0(%rsp)
movq %rdx, 0x2f98(%rsp)
movl %ecx, 0x2f94(%rsp)
movq %rax, 0x2f88(%rsp)
movq 0x2fb8(%rsp), %rcx
movq %rcx, 0x6d8(%rsp)
movq 0x2fa0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2f98(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2f94(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2f88(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2fb4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2fb0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2fac(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x35b0(%rsp)
movl $0x10, 0x35ac(%rsp)
movq 0x35b0(%rsp), %rax
movslq 0x35ac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x35ac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6e0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1900(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x128a00e
movq 0x6e0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1918(%rsp)
movb $0x1, 0x1f5b(%rsp)
testb $0x1, 0x1f5b(%rsp)
jne 0x128a149
leaq 0x18d8(%rsp), %rax
movq %rax, 0x2110(%rsp)
movq 0x2110(%rsp), %rax
movq %rax, 0x3c50(%rsp)
movq 0x3c50(%rsp), %rax
movq %rax, 0x6d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128a0ec
movq 0x6d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c4c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c4c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c48(%rsp)
cmpl $0x1, 0x3c48(%rsp)
jne 0x128a0ec
movq 0x6d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128a0bd
movq 0x6d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128a0bb
jmp 0x128a0ea
movq 0x6d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cb8(%rsp)
cmpq $0x0, 0x3cb8(%rsp)
je 0x128a0e8
movq 0x3cb8(%rsp), %rdi
callq 0x5f480
jmp 0x128a0ea
jmp 0x128a0ec
movq 0x6d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128a147
movq %rax, %rdi
callq 0x678a0
jmp 0x128a149
leaq 0x18d8(%rsp), %rax
movq %rax, 0x20c0(%rsp)
movq 0x20c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6c0(%rsp)
leaq 0x18d8(%rsp), %rax
movq %rax, 0x21f8(%rsp)
movq 0x21f8(%rsp), %rax
movq %rax, 0x3a80(%rsp)
movq 0x3a80(%rsp), %rax
movq %rax, 0x6c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128a234
movq 0x6c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a7c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a7c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a78(%rsp)
cmpl $0x1, 0x3a78(%rsp)
jne 0x128a234
movq 0x6c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128a205
movq 0x6c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128a203
jmp 0x128a232
movq 0x6c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3da0(%rsp)
cmpq $0x0, 0x3da0(%rsp)
je 0x128a230
movq 0x3da0(%rsp), %rdi
callq 0x5f480
jmp 0x128a232
jmp 0x128a234
movq 0x6c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128a28f
movq %rax, %rdi
callq 0x678a0
movq 0x6c0(%rsp), %rax
movq %rax, 0x1920(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x192c(%rsp), %eax
leaq 0x1888(%rsp), %rdx
movq %rdx, 0x1f50(%rsp)
movq %rcx, 0x1f48(%rsp)
movl %eax, 0x1f44(%rsp)
movq 0x1f48(%rsp), %rax
movq %rax, 0x6b8(%rsp)
movb $0x0, 0x1f43(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1f44(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1888(%rsp), %r10
movq %r10, 0x2ff0(%rsp)
movl %r9d, 0x2fec(%rsp)
movl %r8d, 0x2fe8(%rsp)
movl %edi, 0x2fe4(%rsp)
movq %rsi, 0x2fd8(%rsp)
movq %rdx, 0x2fd0(%rsp)
movl %ecx, 0x2fcc(%rsp)
movq %rax, 0x2fc0(%rsp)
movq 0x2ff0(%rsp), %rcx
movq %rcx, 0x6b0(%rsp)
movq 0x2fd8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2fd0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2fcc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2fc0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2fec(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2fe8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2fe4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x35a0(%rsp)
movl $0x10, 0x359c(%rsp)
movq 0x35a0(%rsp), %rax
movslq 0x359c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x359c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6b8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x18b0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x128a45b
movq 0x6b8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x18c8(%rsp)
movb $0x1, 0x1f43(%rsp)
testb $0x1, 0x1f43(%rsp)
jne 0x128a596
leaq 0x1888(%rsp), %rax
movq %rax, 0x2118(%rsp)
movq 0x2118(%rsp), %rax
movq %rax, 0x3c40(%rsp)
movq 0x3c40(%rsp), %rax
movq %rax, 0x6a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128a539
movq 0x6a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c3c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c3c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c38(%rsp)
cmpl $0x1, 0x3c38(%rsp)
jne 0x128a539
movq 0x6a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128a50a
movq 0x6a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128a508
jmp 0x128a537
movq 0x6a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cc0(%rsp)
cmpq $0x0, 0x3cc0(%rsp)
je 0x128a535
movq 0x3cc0(%rsp), %rdi
callq 0x5f480
jmp 0x128a537
jmp 0x128a539
movq 0x6a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128a594
movq %rax, %rdi
callq 0x678a0
jmp 0x128a596
leaq 0x1888(%rsp), %rax
movq %rax, 0x20b8(%rsp)
movq 0x20b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x698(%rsp)
leaq 0x1888(%rsp), %rax
movq %rax, 0x2200(%rsp)
movq 0x2200(%rsp), %rax
movq %rax, 0x3a70(%rsp)
movq 0x3a70(%rsp), %rax
movq %rax, 0x6a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128a681
movq 0x6a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a6c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a6c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a68(%rsp)
cmpl $0x1, 0x3a68(%rsp)
jne 0x128a681
movq 0x6a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128a652
movq 0x6a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128a650
jmp 0x128a67f
movq 0x6a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3da8(%rsp)
cmpq $0x0, 0x3da8(%rsp)
je 0x128a67d
movq 0x3da8(%rsp), %rdi
callq 0x5f480
jmp 0x128a67f
jmp 0x128a681
movq 0x6a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128a6dc
movq %rax, %rdi
callq 0x678a0
movq 0x698(%rsp), %rax
movq %rax, 0x18d0(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x192c(%rsp), %eax
leaq 0x1838(%rsp), %rdx
movq %rdx, 0x24f0(%rsp)
movq %rcx, 0x24e8(%rsp)
movl %eax, 0x24e4(%rsp)
movq 0x24e8(%rsp), %rax
movq %rax, 0x690(%rsp)
movb $0x0, 0x24e3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x24e4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1838(%rsp), %r10
movq %r10, 0x2b90(%rsp)
movl %r9d, 0x2b8c(%rsp)
movl %r8d, 0x2b88(%rsp)
movl %edi, 0x2b84(%rsp)
movq %rsi, 0x2b78(%rsp)
movq %rdx, 0x2b70(%rsp)
movl %ecx, 0x2b6c(%rsp)
movq %rax, 0x2b60(%rsp)
movq 0x2b90(%rsp), %rcx
movq %rcx, 0x688(%rsp)
movq 0x2b78(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2b70(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2b6c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2b60(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2b8c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2b88(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2b84(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x36e0(%rsp)
movl $0x10, 0x36dc(%rsp)
movq 0x36e0(%rsp), %rax
movslq 0x36dc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x36dc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x690(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1860(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x128a8a8
movq 0x690(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1878(%rsp)
movb $0x1, 0x24e3(%rsp)
testb $0x1, 0x24e3(%rsp)
jne 0x128a9e3
leaq 0x1838(%rsp), %rax
movq %rax, 0x24f8(%rsp)
movq 0x24f8(%rsp), %rax
movq %rax, 0x3750(%rsp)
movq 0x3750(%rsp), %rax
movq %rax, 0x680(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128a986
movq 0x680(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x374c(%rsp) # imm = 0xFFFFFFFF
movl 0x374c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3748(%rsp)
cmpl $0x1, 0x3748(%rsp)
jne 0x128a986
movq 0x680(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128a957
movq 0x680(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128a955
jmp 0x128a984
movq 0x680(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f38(%rsp)
cmpq $0x0, 0x3f38(%rsp)
je 0x128a982
movq 0x3f38(%rsp), %rdi
callq 0x5f480
jmp 0x128a984
jmp 0x128a986
movq 0x680(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128a9e1
movq %rax, %rdi
callq 0x678a0
jmp 0x128a9e3
leaq 0x1838(%rsp), %rax
movq %rax, 0x25e0(%rsp)
movq 0x25e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x670(%rsp)
leaq 0x1838(%rsp), %rax
movq %rax, 0x2208(%rsp)
movq 0x2208(%rsp), %rax
movq %rax, 0x3a60(%rsp)
movq 0x3a60(%rsp), %rax
movq %rax, 0x678(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128aace
movq 0x678(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a5c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a5c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a58(%rsp)
cmpl $0x1, 0x3a58(%rsp)
jne 0x128aace
movq 0x678(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128aa9f
movq 0x678(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128aa9d
jmp 0x128aacc
movq 0x678(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3db0(%rsp)
cmpq $0x0, 0x3db0(%rsp)
je 0x128aaca
movq 0x3db0(%rsp), %rdi
callq 0x5f480
jmp 0x128aacc
jmp 0x128aace
movq 0x678(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128ab29
movq %rax, %rdi
callq 0x678a0
movq 0x670(%rsp), %rax
movq %rax, 0x1880(%rsp)
movl $0x0, 0x1834(%rsp)
movl 0x1834(%rsp), %eax
cmpl 0x1c70(%rsp), %eax
jge 0x128acb4
movl $0x0, 0x1830(%rsp)
movl 0x1830(%rsp), %eax
cmpl 0x1c74(%rsp), %eax
jge 0x128ac9c
movq 0x1920(%rsp), %rax
movq %rax, 0x26f8(%rsp)
movq 0x26f8(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1820(%rsp)
movl $0x0, 0x181c(%rsp)
movl 0x181c(%rsp), %eax
cmpl 0x1c78(%rsp), %eax
jge 0x128ac72
movq 0x18d0(%rsp), %rax
movq %rax, 0x26f0(%rsp)
movq 0x26f0(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1800(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x1820(%rsp), %rsi
leaq 0x1800(%rsp), %rdx
callq 0x12f6b10
movaps %xmm0, 0x17f0(%rsp)
movq 0x1880(%rsp), %rax
movaps 0x17f0(%rsp), %xmm0
movq %rax, 0x2948(%rsp)
movaps %xmm0, 0x2930(%rsp)
movaps 0x2930(%rsp), %xmm0
movq 0x2948(%rsp), %rax
movups %xmm0, (%rax)
movq 0x18d0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x18d0(%rsp)
movq 0x1880(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1880(%rsp)
movl 0x181c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x181c(%rsp)
jmp 0x128aba5
movq 0x1920(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1920(%rsp)
movl 0x1830(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1830(%rsp)
jmp 0x128ab63
jmp 0x128ac9e
movl 0x1834(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1834(%rsp)
jmp 0x128ab44
jmp 0x128acb6
movl 0x192c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x192c(%rsp)
jmp 0x1289e3e
movl $0x0, 0x1cc4(%rsp)
jmp 0x1296910
movq 0x1cb0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1291f8b
cmpl $0x1, 0x1c78(%rsp)
jne 0x128bc07
cmpl $0x1, 0x1c74(%rsp)
jne 0x128bc07
movl 0x1c6c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jne 0x128bc07
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movl 0x1c8c(%rsp), %ecx
movq 0x1c80(%rsp), %r8
movl 0x1c7c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d48(%rsp)
movq 0x1d48(%rsp), %rcx
movq %rcx, 0x660(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x66f(%rsp)
je 0x128adc1
movq 0x660(%rsp), %rax
movq %rax, 0x2a30(%rsp)
movq 0x2a30(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x66f(%rsp)
movb 0x66f(%rsp), %al
testb $0x1, %al
jne 0x128adce
jmp 0x128adde
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1296910
movl $0x0, 0x17ec(%rsp)
movl 0x17ec(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jge 0x128bbf7
movq 0x1cb8(%rsp), %rcx
movl 0x17ec(%rsp), %eax
leaq 0x1798(%rsp), %rdx
movq %rdx, 0x1f38(%rsp)
movq %rcx, 0x1f30(%rsp)
movl %eax, 0x1f2c(%rsp)
movq 0x1f30(%rsp), %rax
movq %rax, 0x658(%rsp)
movb $0x0, 0x1f2b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1f2c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1798(%rsp), %r10
movq %r10, 0x3028(%rsp)
movl %r9d, 0x3024(%rsp)
movl %r8d, 0x3020(%rsp)
movl %edi, 0x301c(%rsp)
movq %rsi, 0x3010(%rsp)
movq %rdx, 0x3008(%rsp)
movl %ecx, 0x3004(%rsp)
movq %rax, 0x2ff8(%rsp)
movq 0x3028(%rsp), %rcx
movq %rcx, 0x650(%rsp)
movq 0x3010(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3008(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3004(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ff8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3024(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3020(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x301c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3590(%rsp)
movl $0x10, 0x358c(%rsp)
movq 0x3590(%rsp), %rax
movslq 0x358c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x358c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x658(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x17c0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x128afb9
movq 0x658(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x17d8(%rsp)
movb $0x1, 0x1f2b(%rsp)
testb $0x1, 0x1f2b(%rsp)
jne 0x128b0f4
leaq 0x1798(%rsp), %rax
movq %rax, 0x2120(%rsp)
movq 0x2120(%rsp), %rax
movq %rax, 0x3c30(%rsp)
movq 0x3c30(%rsp), %rax
movq %rax, 0x648(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128b097
movq 0x648(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c2c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c2c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c28(%rsp)
cmpl $0x1, 0x3c28(%rsp)
jne 0x128b097
movq 0x648(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128b068
movq 0x648(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128b066
jmp 0x128b095
movq 0x648(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cc8(%rsp)
cmpq $0x0, 0x3cc8(%rsp)
je 0x128b093
movq 0x3cc8(%rsp), %rdi
callq 0x5f480
jmp 0x128b095
jmp 0x128b097
movq 0x648(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128b0f2
movq %rax, %rdi
callq 0x678a0
jmp 0x128b0f4
leaq 0x1798(%rsp), %rax
movq %rax, 0x20b0(%rsp)
movq 0x20b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x638(%rsp)
leaq 0x1798(%rsp), %rax
movq %rax, 0x2210(%rsp)
movq 0x2210(%rsp), %rax
movq %rax, 0x3a50(%rsp)
movq 0x3a50(%rsp), %rax
movq %rax, 0x640(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128b1df
movq 0x640(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a4c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a4c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a48(%rsp)
cmpl $0x1, 0x3a48(%rsp)
jne 0x128b1df
movq 0x640(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128b1b0
movq 0x640(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128b1ae
jmp 0x128b1dd
movq 0x640(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3db8(%rsp)
cmpq $0x0, 0x3db8(%rsp)
je 0x128b1db
movq 0x3db8(%rsp), %rdi
callq 0x5f480
jmp 0x128b1dd
jmp 0x128b1df
movq 0x640(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128b23a
movq %rax, %rdi
callq 0x678a0
movq 0x638(%rsp), %rax
movq %rax, 0x17e0(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x17ec(%rsp), %eax
leaq 0x1748(%rsp), %rdx
movq %rdx, 0x24d0(%rsp)
movq %rcx, 0x24c8(%rsp)
movl %eax, 0x24c4(%rsp)
movq 0x24c8(%rsp), %rax
movq %rax, 0x630(%rsp)
movb $0x0, 0x24c3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x24c4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1748(%rsp), %r10
movq %r10, 0x2bc8(%rsp)
movl %r9d, 0x2bc4(%rsp)
movl %r8d, 0x2bc0(%rsp)
movl %edi, 0x2bbc(%rsp)
movq %rsi, 0x2bb0(%rsp)
movq %rdx, 0x2ba8(%rsp)
movl %ecx, 0x2ba4(%rsp)
movq %rax, 0x2b98(%rsp)
movq 0x2bc8(%rsp), %rcx
movq %rcx, 0x628(%rsp)
movq 0x2bb0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2ba8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2ba4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2b98(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2bc4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2bc0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2bbc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x36d0(%rsp)
movl $0x10, 0x36cc(%rsp)
movq 0x36d0(%rsp), %rax
movslq 0x36cc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x36cc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x630(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1770(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x128b406
movq 0x630(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1788(%rsp)
movb $0x1, 0x24c3(%rsp)
testb $0x1, 0x24c3(%rsp)
jne 0x128b541
leaq 0x1748(%rsp), %rax
movq %rax, 0x24d8(%rsp)
movq 0x24d8(%rsp), %rax
movq %rax, 0x3760(%rsp)
movq 0x3760(%rsp), %rax
movq %rax, 0x620(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128b4e4
movq 0x620(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x375c(%rsp) # imm = 0xFFFFFFFF
movl 0x375c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3758(%rsp)
cmpl $0x1, 0x3758(%rsp)
jne 0x128b4e4
movq 0x620(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128b4b5
movq 0x620(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128b4b3
jmp 0x128b4e2
movq 0x620(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f30(%rsp)
cmpq $0x0, 0x3f30(%rsp)
je 0x128b4e0
movq 0x3f30(%rsp), %rdi
callq 0x5f480
jmp 0x128b4e2
jmp 0x128b4e4
movq 0x620(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128b53f
movq %rax, %rdi
callq 0x678a0
jmp 0x128b541
leaq 0x1748(%rsp), %rax
movq %rax, 0x25d8(%rsp)
movq 0x25d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x610(%rsp)
leaq 0x1748(%rsp), %rax
movq %rax, 0x2218(%rsp)
movq 0x2218(%rsp), %rax
movq %rax, 0x3a40(%rsp)
movq 0x3a40(%rsp), %rax
movq %rax, 0x618(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128b62c
movq 0x618(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a3c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a3c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a38(%rsp)
cmpl $0x1, 0x3a38(%rsp)
jne 0x128b62c
movq 0x618(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128b5fd
movq 0x618(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128b5fb
jmp 0x128b62a
movq 0x618(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3dc0(%rsp)
cmpq $0x0, 0x3dc0(%rsp)
je 0x128b628
movq 0x3dc0(%rsp), %rdi
callq 0x5f480
jmp 0x128b62a
jmp 0x128b62c
movq 0x618(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128b687
movq %rax, %rdi
callq 0x678a0
movq 0x610(%rsp), %rax
movq %rax, 0x1790(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x17ec(%rsp), %eax
leaq 0x16f8(%rsp), %rdx
movq %rdx, 0x1f20(%rsp)
movq %rcx, 0x1f18(%rsp)
movl %eax, 0x1f14(%rsp)
movq 0x1f18(%rsp), %rax
movq %rax, 0x608(%rsp)
movb $0x0, 0x1f13(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1f14(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x16f8(%rsp), %r10
movq %r10, 0x3060(%rsp)
movl %r9d, 0x305c(%rsp)
movl %r8d, 0x3058(%rsp)
movl %edi, 0x3054(%rsp)
movq %rsi, 0x3048(%rsp)
movq %rdx, 0x3040(%rsp)
movl %ecx, 0x303c(%rsp)
movq %rax, 0x3030(%rsp)
movq 0x3060(%rsp), %rcx
movq %rcx, 0x600(%rsp)
movq 0x3048(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3040(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x303c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3030(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x305c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3058(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3054(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3580(%rsp)
movl $0x10, 0x357c(%rsp)
movq 0x3580(%rsp), %rax
movslq 0x357c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x357c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x608(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1720(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x128b853
movq 0x608(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1738(%rsp)
movb $0x1, 0x1f13(%rsp)
testb $0x1, 0x1f13(%rsp)
jne 0x128b98e
leaq 0x16f8(%rsp), %rax
movq %rax, 0x2128(%rsp)
movq 0x2128(%rsp), %rax
movq %rax, 0x3c20(%rsp)
movq 0x3c20(%rsp), %rax
movq %rax, 0x5f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128b931
movq 0x5f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c1c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c1c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c18(%rsp)
cmpl $0x1, 0x3c18(%rsp)
jne 0x128b931
movq 0x5f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128b902
movq 0x5f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128b900
jmp 0x128b92f
movq 0x5f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cd0(%rsp)
cmpq $0x0, 0x3cd0(%rsp)
je 0x128b92d
movq 0x3cd0(%rsp), %rdi
callq 0x5f480
jmp 0x128b92f
jmp 0x128b931
movq 0x5f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128b98c
movq %rax, %rdi
callq 0x678a0
jmp 0x128b98e
leaq 0x16f8(%rsp), %rax
movq %rax, 0x20a8(%rsp)
movq 0x20a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5e8(%rsp)
leaq 0x16f8(%rsp), %rax
movq %rax, 0x2220(%rsp)
movq 0x2220(%rsp), %rax
movq %rax, 0x3a30(%rsp)
movq 0x3a30(%rsp), %rax
movq %rax, 0x5f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128ba79
movq 0x5f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a2c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a2c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a28(%rsp)
cmpl $0x1, 0x3a28(%rsp)
jne 0x128ba79
movq 0x5f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128ba4a
movq 0x5f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128ba48
jmp 0x128ba77
movq 0x5f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3dc8(%rsp)
cmpq $0x0, 0x3dc8(%rsp)
je 0x128ba75
movq 0x3dc8(%rsp), %rdi
callq 0x5f480
jmp 0x128ba77
jmp 0x128ba79
movq 0x5f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128bad4
movq %rax, %rdi
callq 0x678a0
movq 0x5e8(%rsp), %rax
movq %rax, 0x1740(%rsp)
movq 0x1740(%rsp), %rax
movq %rax, 0x26e8(%rsp)
movq 0x26e8(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x16e0(%rsp)
movl $0x0, 0x16dc(%rsp)
movl 0x16dc(%rsp), %eax
cmpl 0x1c88(%rsp), %eax
jge 0x128bbdf
movq 0x17e0(%rsp), %rax
movq %rax, 0x26e0(%rsp)
movq 0x26e0(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x16c0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x16c0(%rsp), %rsi
leaq 0x16e0(%rsp), %rdx
callq 0x12f6b10
movaps %xmm0, 0x16b0(%rsp)
movq 0x1790(%rsp), %rax
movaps 0x16b0(%rsp), %xmm0
movq %rax, 0x2928(%rsp)
movaps %xmm0, 0x2910(%rsp)
movaps 0x2910(%rsp), %xmm0
movq 0x2928(%rsp), %rax
movups %xmm0, (%rax)
movq 0x17e0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x17e0(%rsp)
movq 0x1790(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1790(%rsp)
movl 0x16dc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x16dc(%rsp)
jmp 0x128bb12
jmp 0x128bbe1
movl 0x17ec(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x17ec(%rsp)
jmp 0x128ade9
movl $0x0, 0x1cc4(%rsp)
jmp 0x1296910
movl 0x1c78(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jne 0x128c734
movl 0x1c74(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jne 0x128c734
cmpl $0x1, 0x1c6c(%rsp)
jne 0x128c734
cmpl $0x1, 0x1c5c(%rsp)
jne 0x128c734
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movl 0x1c8c(%rsp), %ecx
movq 0x1c80(%rsp), %r8
movl 0x1c7c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d40(%rsp)
movq 0x1d40(%rsp), %rcx
movq %rcx, 0x5d8(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x5e7(%rsp)
je 0x128bcee
movq 0x5d8(%rsp), %rax
movq %rax, 0x2a38(%rsp)
movq 0x2a38(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x5e7(%rsp)
movb 0x5e7(%rsp), %al
testb $0x1, %al
jne 0x128bcfb
jmp 0x128bd0b
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1296910
movl $0x0, 0x16ac(%rsp)
movl 0x16ac(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jge 0x128c724
movq 0x1cb8(%rsp), %rcx
movl 0x16ac(%rsp), %eax
leaq 0x1658(%rsp), %rdx
movq %rdx, 0x1f08(%rsp)
movq %rcx, 0x1f00(%rsp)
movl %eax, 0x1efc(%rsp)
movq 0x1f00(%rsp), %rax
movq %rax, 0x5d0(%rsp)
movb $0x0, 0x1efb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1efc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1658(%rsp), %r10
movq %r10, 0x3098(%rsp)
movl %r9d, 0x3094(%rsp)
movl %r8d, 0x3090(%rsp)
movl %edi, 0x308c(%rsp)
movq %rsi, 0x3080(%rsp)
movq %rdx, 0x3078(%rsp)
movl %ecx, 0x3074(%rsp)
movq %rax, 0x3068(%rsp)
movq 0x3098(%rsp), %rcx
movq %rcx, 0x5c8(%rsp)
movq 0x3080(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3078(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3074(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3068(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3094(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3090(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x308c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3570(%rsp)
movl $0x10, 0x356c(%rsp)
movq 0x3570(%rsp), %rax
movslq 0x356c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x356c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5d0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1680(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x128bee6
movq 0x5d0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1698(%rsp)
movb $0x1, 0x1efb(%rsp)
testb $0x1, 0x1efb(%rsp)
jne 0x128c021
leaq 0x1658(%rsp), %rax
movq %rax, 0x2130(%rsp)
movq 0x2130(%rsp), %rax
movq %rax, 0x3c10(%rsp)
movq 0x3c10(%rsp), %rax
movq %rax, 0x5c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128bfc4
movq 0x5c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c0c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c0c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c08(%rsp)
cmpl $0x1, 0x3c08(%rsp)
jne 0x128bfc4
movq 0x5c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128bf95
movq 0x5c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128bf93
jmp 0x128bfc2
movq 0x5c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cd8(%rsp)
cmpq $0x0, 0x3cd8(%rsp)
je 0x128bfc0
movq 0x3cd8(%rsp), %rdi
callq 0x5f480
jmp 0x128bfc2
jmp 0x128bfc4
movq 0x5c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128c01f
movq %rax, %rdi
callq 0x678a0
jmp 0x128c021
leaq 0x1658(%rsp), %rax
movq %rax, 0x20a0(%rsp)
movq 0x20a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5b0(%rsp)
leaq 0x1658(%rsp), %rax
movq %rax, 0x2228(%rsp)
movq 0x2228(%rsp), %rax
movq %rax, 0x3a20(%rsp)
movq 0x3a20(%rsp), %rax
movq %rax, 0x5b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128c10c
movq 0x5b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a1c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a1c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a18(%rsp)
cmpl $0x1, 0x3a18(%rsp)
jne 0x128c10c
movq 0x5b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128c0dd
movq 0x5b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128c0db
jmp 0x128c10a
movq 0x5b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3dd0(%rsp)
cmpq $0x0, 0x3dd0(%rsp)
je 0x128c108
movq 0x3dd0(%rsp), %rdi
callq 0x5f480
jmp 0x128c10a
jmp 0x128c10c
movq 0x5b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128c167
movq %rax, %rdi
callq 0x678a0
movq 0x5b0(%rsp), %rax
movq %rax, 0x16a0(%rsp)
movq 0x1cb0(%rsp), %rax
movq %rax, 0x2098(%rsp)
movq 0x2098(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1650(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x16ac(%rsp), %eax
leaq 0x1600(%rsp), %rdx
movq %rdx, 0x24b0(%rsp)
movq %rcx, 0x24a8(%rsp)
movl %eax, 0x24a4(%rsp)
movq 0x24a8(%rsp), %rax
movq %rax, 0x5a8(%rsp)
movb $0x0, 0x24a3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x24a4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1600(%rsp), %r10
movq %r10, 0x2c00(%rsp)
movl %r9d, 0x2bfc(%rsp)
movl %r8d, 0x2bf8(%rsp)
movl %edi, 0x2bf4(%rsp)
movq %rsi, 0x2be8(%rsp)
movq %rdx, 0x2be0(%rsp)
movl %ecx, 0x2bdc(%rsp)
movq %rax, 0x2bd0(%rsp)
movq 0x2c00(%rsp), %rcx
movq %rcx, 0x5a0(%rsp)
movq 0x2be8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2be0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2bdc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2bd0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2bfc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2bf8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2bf4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x36c0(%rsp)
movl $0x10, 0x36bc(%rsp)
movq 0x36c0(%rsp), %rax
movslq 0x36bc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x36bc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5a8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1628(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x128c356
movq 0x5a8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1640(%rsp)
movb $0x1, 0x24a3(%rsp)
testb $0x1, 0x24a3(%rsp)
jne 0x128c491
leaq 0x1600(%rsp), %rax
movq %rax, 0x24b8(%rsp)
movq 0x24b8(%rsp), %rax
movq %rax, 0x3770(%rsp)
movq 0x3770(%rsp), %rax
movq %rax, 0x598(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128c434
movq 0x598(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x376c(%rsp) # imm = 0xFFFFFFFF
movl 0x376c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3768(%rsp)
cmpl $0x1, 0x3768(%rsp)
jne 0x128c434
movq 0x598(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128c405
movq 0x598(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128c403
jmp 0x128c432
movq 0x598(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f28(%rsp)
cmpq $0x0, 0x3f28(%rsp)
je 0x128c430
movq 0x3f28(%rsp), %rdi
callq 0x5f480
jmp 0x128c432
jmp 0x128c434
movq 0x598(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128c48f
movq %rax, %rdi
callq 0x678a0
jmp 0x128c491
leaq 0x1600(%rsp), %rax
movq %rax, 0x25d0(%rsp)
movq 0x25d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x588(%rsp)
leaq 0x1600(%rsp), %rax
movq %rax, 0x2230(%rsp)
movq 0x2230(%rsp), %rax
movq %rax, 0x3a10(%rsp)
movq 0x3a10(%rsp), %rax
movq %rax, 0x590(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128c57c
movq 0x590(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a0c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a0c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a08(%rsp)
cmpl $0x1, 0x3a08(%rsp)
jne 0x128c57c
movq 0x590(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128c54d
movq 0x590(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128c54b
jmp 0x128c57a
movq 0x590(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3dd8(%rsp)
cmpq $0x0, 0x3dd8(%rsp)
je 0x128c578
movq 0x3dd8(%rsp), %rdi
callq 0x5f480
jmp 0x128c57a
jmp 0x128c57c
movq 0x590(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128c5d7
movq %rax, %rdi
callq 0x678a0
movq 0x588(%rsp), %rax
movq %rax, 0x1648(%rsp)
movl $0x0, 0x15fc(%rsp)
movl 0x15fc(%rsp), %eax
cmpl 0x1c88(%rsp), %eax
jge 0x128c70c
movq 0x16a0(%rsp), %rax
movq %rax, 0x26d8(%rsp)
movq 0x26d8(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x15e0(%rsp)
movq 0x1650(%rsp), %rax
movss (%rax), %xmm0
movss %xmm0, 0x2a00(%rsp)
movaps 0x2a00(%rsp), %xmm0
shufps $0x0, %xmm0, %xmm0 # xmm0 = xmm0[0,0,0,0]
movaps %xmm0, 0x29f0(%rsp)
movaps 0x29f0(%rsp), %xmm0
movaps %xmm0, 0x15d0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x15e0(%rsp), %rsi
leaq 0x15d0(%rsp), %rdx
callq 0x12f6b10
movaps %xmm0, 0x15c0(%rsp)
movq 0x1648(%rsp), %rax
movaps 0x15c0(%rsp), %xmm0
movq %rax, 0x2908(%rsp)
movaps %xmm0, 0x28f0(%rsp)
movaps 0x28f0(%rsp), %xmm0
movq 0x2908(%rsp), %rax
movups %xmm0, (%rax)
movq 0x16a0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x16a0(%rsp)
movq 0x1650(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x1650(%rsp)
movq 0x1648(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1648(%rsp)
movl 0x15fc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x15fc(%rsp)
jmp 0x128c5f2
jmp 0x128c70e
movl 0x16ac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x16ac(%rsp)
jmp 0x128bd16
movl $0x0, 0x1cc4(%rsp)
jmp 0x1296910
cmpl $0x1, 0x1c98(%rsp)
jne 0x128d64d
cmpl $0x1, 0x1c94(%rsp)
jne 0x128d64d
movl 0x1c6c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jne 0x128d64d
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c6c(%rsp), %ecx
movq 0x1c60(%rsp), %r8
movl 0x1c5c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d38(%rsp)
movq 0x1d38(%rsp), %rcx
movq %rcx, 0x578(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x587(%rsp)
je 0x128c807
movq 0x578(%rsp), %rax
movq %rax, 0x2a40(%rsp)
movq 0x2a40(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x587(%rsp)
movb 0x587(%rsp), %al
testb $0x1, %al
jne 0x128c814
jmp 0x128c824
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1296910
movl $0x0, 0x15bc(%rsp)
movl 0x15bc(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x128d63d
movq 0x1cb8(%rsp), %rcx
movl 0x15bc(%rsp), %eax
leaq 0x1568(%rsp), %rdx
movq %rdx, 0x1ef0(%rsp)
movq %rcx, 0x1ee8(%rsp)
movl %eax, 0x1ee4(%rsp)
movq 0x1ee8(%rsp), %rax
movq %rax, 0x570(%rsp)
movb $0x0, 0x1ee3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1ee4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1568(%rsp), %r10
movq %r10, 0x30d0(%rsp)
movl %r9d, 0x30cc(%rsp)
movl %r8d, 0x30c8(%rsp)
movl %edi, 0x30c4(%rsp)
movq %rsi, 0x30b8(%rsp)
movq %rdx, 0x30b0(%rsp)
movl %ecx, 0x30ac(%rsp)
movq %rax, 0x30a0(%rsp)
movq 0x30d0(%rsp), %rcx
movq %rcx, 0x568(%rsp)
movq 0x30b8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x30b0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x30ac(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x30a0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x30cc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x30c8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x30c4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3560(%rsp)
movl $0x10, 0x355c(%rsp)
movq 0x3560(%rsp), %rax
movslq 0x355c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x355c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x570(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1590(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x128c9ff
movq 0x570(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x15a8(%rsp)
movb $0x1, 0x1ee3(%rsp)
testb $0x1, 0x1ee3(%rsp)
jne 0x128cb3a
leaq 0x1568(%rsp), %rax
movq %rax, 0x2138(%rsp)
movq 0x2138(%rsp), %rax
movq %rax, 0x3c00(%rsp)
movq 0x3c00(%rsp), %rax
movq %rax, 0x560(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128cadd
movq 0x560(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bfc(%rsp) # imm = 0xFFFFFFFF
movl 0x3bfc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3bf8(%rsp)
cmpl $0x1, 0x3bf8(%rsp)
jne 0x128cadd
movq 0x560(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128caae
movq 0x560(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128caac
jmp 0x128cadb
movq 0x560(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ce0(%rsp)
cmpq $0x0, 0x3ce0(%rsp)
je 0x128cad9
movq 0x3ce0(%rsp), %rdi
callq 0x5f480
jmp 0x128cadb
jmp 0x128cadd
movq 0x560(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128cb38
movq %rax, %rdi
callq 0x678a0
jmp 0x128cb3a
leaq 0x1568(%rsp), %rax
movq %rax, 0x2090(%rsp)
movq 0x2090(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x550(%rsp)
leaq 0x1568(%rsp), %rax
movq %rax, 0x2238(%rsp)
movq 0x2238(%rsp), %rax
movq %rax, 0x3a00(%rsp)
movq 0x3a00(%rsp), %rax
movq %rax, 0x558(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128cc25
movq 0x558(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x39fc(%rsp) # imm = 0xFFFFFFFF
movl 0x39fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x39f8(%rsp)
cmpl $0x1, 0x39f8(%rsp)
jne 0x128cc25
movq 0x558(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128cbf6
movq 0x558(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128cbf4
jmp 0x128cc23
movq 0x558(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3de0(%rsp)
cmpq $0x0, 0x3de0(%rsp)
je 0x128cc21
movq 0x3de0(%rsp), %rdi
callq 0x5f480
jmp 0x128cc23
jmp 0x128cc25
movq 0x558(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128cc80
movq %rax, %rdi
callq 0x678a0
movq 0x550(%rsp), %rax
movq %rax, 0x15b0(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x15bc(%rsp), %eax
leaq 0x1518(%rsp), %rdx
movq %rdx, 0x2490(%rsp)
movq %rcx, 0x2488(%rsp)
movl %eax, 0x2484(%rsp)
movq 0x2488(%rsp), %rax
movq %rax, 0x548(%rsp)
movb $0x0, 0x2483(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2484(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1518(%rsp), %r10
movq %r10, 0x2c38(%rsp)
movl %r9d, 0x2c34(%rsp)
movl %r8d, 0x2c30(%rsp)
movl %edi, 0x2c2c(%rsp)
movq %rsi, 0x2c20(%rsp)
movq %rdx, 0x2c18(%rsp)
movl %ecx, 0x2c14(%rsp)
movq %rax, 0x2c08(%rsp)
movq 0x2c38(%rsp), %rcx
movq %rcx, 0x540(%rsp)
movq 0x2c20(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2c18(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2c14(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2c08(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2c34(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2c30(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2c2c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x36b0(%rsp)
movl $0x10, 0x36ac(%rsp)
movq 0x36b0(%rsp), %rax
movslq 0x36ac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x36ac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x548(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1540(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x128ce4c
movq 0x548(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1558(%rsp)
movb $0x1, 0x2483(%rsp)
testb $0x1, 0x2483(%rsp)
jne 0x128cf87
leaq 0x1518(%rsp), %rax
movq %rax, 0x2498(%rsp)
movq 0x2498(%rsp), %rax
movq %rax, 0x3780(%rsp)
movq 0x3780(%rsp), %rax
movq %rax, 0x538(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128cf2a
movq 0x538(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x377c(%rsp) # imm = 0xFFFFFFFF
movl 0x377c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3778(%rsp)
cmpl $0x1, 0x3778(%rsp)
jne 0x128cf2a
movq 0x538(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128cefb
movq 0x538(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128cef9
jmp 0x128cf28
movq 0x538(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f20(%rsp)
cmpq $0x0, 0x3f20(%rsp)
je 0x128cf26
movq 0x3f20(%rsp), %rdi
callq 0x5f480
jmp 0x128cf28
jmp 0x128cf2a
movq 0x538(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128cf85
movq %rax, %rdi
callq 0x678a0
jmp 0x128cf87
leaq 0x1518(%rsp), %rax
movq %rax, 0x25c8(%rsp)
movq 0x25c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x528(%rsp)
leaq 0x1518(%rsp), %rax
movq %rax, 0x2240(%rsp)
movq 0x2240(%rsp), %rax
movq %rax, 0x39f0(%rsp)
movq 0x39f0(%rsp), %rax
movq %rax, 0x530(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128d072
movq 0x530(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x39ec(%rsp) # imm = 0xFFFFFFFF
movl 0x39ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x39e8(%rsp)
cmpl $0x1, 0x39e8(%rsp)
jne 0x128d072
movq 0x530(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128d043
movq 0x530(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128d041
jmp 0x128d070
movq 0x530(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3de8(%rsp)
cmpq $0x0, 0x3de8(%rsp)
je 0x128d06e
movq 0x3de8(%rsp), %rdi
callq 0x5f480
jmp 0x128d070
jmp 0x128d072
movq 0x530(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128d0cd
movq %rax, %rdi
callq 0x678a0
movq 0x528(%rsp), %rax
movq %rax, 0x1560(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x15bc(%rsp), %eax
leaq 0x14c8(%rsp), %rdx
movq %rdx, 0x1ed8(%rsp)
movq %rcx, 0x1ed0(%rsp)
movl %eax, 0x1ecc(%rsp)
movq 0x1ed0(%rsp), %rax
movq %rax, 0x520(%rsp)
movb $0x0, 0x1ecb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1ecc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x14c8(%rsp), %r10
movq %r10, 0x3108(%rsp)
movl %r9d, 0x3104(%rsp)
movl %r8d, 0x3100(%rsp)
movl %edi, 0x30fc(%rsp)
movq %rsi, 0x30f0(%rsp)
movq %rdx, 0x30e8(%rsp)
movl %ecx, 0x30e4(%rsp)
movq %rax, 0x30d8(%rsp)
movq 0x3108(%rsp), %rcx
movq %rcx, 0x518(%rsp)
movq 0x30f0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x30e8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x30e4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x30d8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3104(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3100(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x30fc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3550(%rsp)
movl $0x10, 0x354c(%rsp)
movq 0x3550(%rsp), %rax
movslq 0x354c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x354c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x520(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x14f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x128d299
movq 0x520(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1508(%rsp)
movb $0x1, 0x1ecb(%rsp)
testb $0x1, 0x1ecb(%rsp)
jne 0x128d3d4
leaq 0x14c8(%rsp), %rax
movq %rax, 0x2140(%rsp)
movq 0x2140(%rsp), %rax
movq %rax, 0x3bf0(%rsp)
movq 0x3bf0(%rsp), %rax
movq %rax, 0x510(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128d377
movq 0x510(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bec(%rsp) # imm = 0xFFFFFFFF
movl 0x3bec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3be8(%rsp)
cmpl $0x1, 0x3be8(%rsp)
jne 0x128d377
movq 0x510(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128d348
movq 0x510(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128d346
jmp 0x128d375
movq 0x510(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ce8(%rsp)
cmpq $0x0, 0x3ce8(%rsp)
je 0x128d373
movq 0x3ce8(%rsp), %rdi
callq 0x5f480
jmp 0x128d375
jmp 0x128d377
movq 0x510(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128d3d2
movq %rax, %rdi
callq 0x678a0
jmp 0x128d3d4
leaq 0x14c8(%rsp), %rax
movq %rax, 0x2088(%rsp)
movq 0x2088(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x500(%rsp)
leaq 0x14c8(%rsp), %rax
movq %rax, 0x2248(%rsp)
movq 0x2248(%rsp), %rax
movq %rax, 0x39e0(%rsp)
movq 0x39e0(%rsp), %rax
movq %rax, 0x508(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128d4bf
movq 0x508(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x39dc(%rsp) # imm = 0xFFFFFFFF
movl 0x39dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x39d8(%rsp)
cmpl $0x1, 0x39d8(%rsp)
jne 0x128d4bf
movq 0x508(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128d490
movq 0x508(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128d48e
jmp 0x128d4bd
movq 0x508(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3df0(%rsp)
cmpq $0x0, 0x3df0(%rsp)
je 0x128d4bb
movq 0x3df0(%rsp), %rdi
callq 0x5f480
jmp 0x128d4bd
jmp 0x128d4bf
movq 0x508(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128d51a
movq %rax, %rdi
callq 0x678a0
movq 0x500(%rsp), %rax
movq %rax, 0x1510(%rsp)
movq 0x15b0(%rsp), %rax
movq %rax, 0x26d0(%rsp)
movq 0x26d0(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x14b0(%rsp)
movl $0x0, 0x14ac(%rsp)
movl 0x14ac(%rsp), %eax
cmpl 0x1c68(%rsp), %eax
jge 0x128d625
movq 0x1510(%rsp), %rax
movq %rax, 0x26c8(%rsp)
movq 0x26c8(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1490(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x14b0(%rsp), %rsi
leaq 0x1490(%rsp), %rdx
callq 0x12f6b10
movaps %xmm0, 0x1480(%rsp)
movq 0x1560(%rsp), %rax
movaps 0x1480(%rsp), %xmm0
movq %rax, 0x28e8(%rsp)
movaps %xmm0, 0x28d0(%rsp)
movaps 0x28d0(%rsp), %xmm0
movq 0x28e8(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1510(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1510(%rsp)
movq 0x1560(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1560(%rsp)
movl 0x14ac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x14ac(%rsp)
jmp 0x128d558
jmp 0x128d627
movl 0x15bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x15bc(%rsp)
jmp 0x128c82f
movl $0x0, 0x1cc4(%rsp)
jmp 0x1296910
movl 0x1c78(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jne 0x128e17a
movl 0x1c74(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jne 0x128e17a
cmpl $0x1, 0x1c8c(%rsp)
jne 0x128e17a
cmpl $0x1, 0x1c7c(%rsp)
jne 0x128e17a
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c6c(%rsp), %ecx
movq 0x1c60(%rsp), %r8
movl 0x1c5c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d30(%rsp)
movq 0x1d30(%rsp), %rcx
movq %rcx, 0x4f0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x4ff(%rsp)
je 0x128d734
movq 0x4f0(%rsp), %rax
movq %rax, 0x2a48(%rsp)
movq 0x2a48(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x4ff(%rsp)
movb 0x4ff(%rsp), %al
testb $0x1, %al
jne 0x128d741
jmp 0x128d751
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1296910
movl $0x0, 0x147c(%rsp)
movl 0x147c(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x128e16a
movq 0x1cb8(%rsp), %rax
movq %rax, 0x2080(%rsp)
movq 0x2080(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1470(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x147c(%rsp), %eax
leaq 0x1420(%rsp), %rdx
movq %rdx, 0x1ec0(%rsp)
movq %rcx, 0x1eb8(%rsp)
movl %eax, 0x1eb4(%rsp)
movq 0x1eb8(%rsp), %rax
movq %rax, 0x4e8(%rsp)
movb $0x0, 0x1eb3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1eb4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1420(%rsp), %r10
movq %r10, 0x3140(%rsp)
movl %r9d, 0x313c(%rsp)
movl %r8d, 0x3138(%rsp)
movl %edi, 0x3134(%rsp)
movq %rsi, 0x3128(%rsp)
movq %rdx, 0x3120(%rsp)
movl %ecx, 0x311c(%rsp)
movq %rax, 0x3110(%rsp)
movq 0x3140(%rsp), %rcx
movq %rcx, 0x4e0(%rsp)
movq 0x3128(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3120(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x311c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3110(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x313c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3138(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3134(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3540(%rsp)
movl $0x10, 0x353c(%rsp)
movq 0x3540(%rsp), %rax
movslq 0x353c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x353c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4e8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1448(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x128d94f
movq 0x4e8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1460(%rsp)
movb $0x1, 0x1eb3(%rsp)
testb $0x1, 0x1eb3(%rsp)
jne 0x128da8a
leaq 0x1420(%rsp), %rax
movq %rax, 0x2148(%rsp)
movq 0x2148(%rsp), %rax
movq %rax, 0x3be0(%rsp)
movq 0x3be0(%rsp), %rax
movq %rax, 0x4d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128da2d
movq 0x4d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bdc(%rsp) # imm = 0xFFFFFFFF
movl 0x3bdc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3bd8(%rsp)
cmpl $0x1, 0x3bd8(%rsp)
jne 0x128da2d
movq 0x4d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128d9fe
movq 0x4d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128d9fc
jmp 0x128da2b
movq 0x4d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cf0(%rsp)
cmpq $0x0, 0x3cf0(%rsp)
je 0x128da29
movq 0x3cf0(%rsp), %rdi
callq 0x5f480
jmp 0x128da2b
jmp 0x128da2d
movq 0x4d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128da88
movq %rax, %rdi
callq 0x678a0
jmp 0x128da8a
leaq 0x1420(%rsp), %rax
movq %rax, 0x2078(%rsp)
movq 0x2078(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4c8(%rsp)
leaq 0x1420(%rsp), %rax
movq %rax, 0x2250(%rsp)
movq 0x2250(%rsp), %rax
movq %rax, 0x39d0(%rsp)
movq 0x39d0(%rsp), %rax
movq %rax, 0x4d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128db75
movq 0x4d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x39cc(%rsp) # imm = 0xFFFFFFFF
movl 0x39cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x39c8(%rsp)
cmpl $0x1, 0x39c8(%rsp)
jne 0x128db75
movq 0x4d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128db46
movq 0x4d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128db44
jmp 0x128db73
movq 0x4d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3df8(%rsp)
cmpq $0x0, 0x3df8(%rsp)
je 0x128db71
movq 0x3df8(%rsp), %rdi
callq 0x5f480
jmp 0x128db73
jmp 0x128db75
movq 0x4d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128dbd0
movq %rax, %rdi
callq 0x678a0
movq 0x4c8(%rsp), %rax
movq %rax, 0x1468(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x147c(%rsp), %eax
leaq 0x13d0(%rsp), %rdx
movq %rdx, 0x2470(%rsp)
movq %rcx, 0x2468(%rsp)
movl %eax, 0x2464(%rsp)
movq 0x2468(%rsp), %rax
movq %rax, 0x4c0(%rsp)
movb $0x0, 0x2463(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2464(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x13d0(%rsp), %r10
movq %r10, 0x2c70(%rsp)
movl %r9d, 0x2c6c(%rsp)
movl %r8d, 0x2c68(%rsp)
movl %edi, 0x2c64(%rsp)
movq %rsi, 0x2c58(%rsp)
movq %rdx, 0x2c50(%rsp)
movl %ecx, 0x2c4c(%rsp)
movq %rax, 0x2c40(%rsp)
movq 0x2c70(%rsp), %rcx
movq %rcx, 0x4b8(%rsp)
movq 0x2c58(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2c50(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2c4c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2c40(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2c6c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2c68(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2c64(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x36a0(%rsp)
movl $0x10, 0x369c(%rsp)
movq 0x36a0(%rsp), %rax
movslq 0x369c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x369c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4c0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x13f8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x128dd9c
movq 0x4c0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1410(%rsp)
movb $0x1, 0x2463(%rsp)
testb $0x1, 0x2463(%rsp)
jne 0x128ded7
leaq 0x13d0(%rsp), %rax
movq %rax, 0x2478(%rsp)
movq 0x2478(%rsp), %rax
movq %rax, 0x3790(%rsp)
movq 0x3790(%rsp), %rax
movq %rax, 0x4b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128de7a
movq 0x4b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x378c(%rsp) # imm = 0xFFFFFFFF
movl 0x378c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3788(%rsp)
cmpl $0x1, 0x3788(%rsp)
jne 0x128de7a
movq 0x4b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128de4b
movq 0x4b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128de49
jmp 0x128de78
movq 0x4b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f18(%rsp)
cmpq $0x0, 0x3f18(%rsp)
je 0x128de76
movq 0x3f18(%rsp), %rdi
callq 0x5f480
jmp 0x128de78
jmp 0x128de7a
movq 0x4b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128ded5
movq %rax, %rdi
callq 0x678a0
jmp 0x128ded7
leaq 0x13d0(%rsp), %rax
movq %rax, 0x25c0(%rsp)
movq 0x25c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4a0(%rsp)
leaq 0x13d0(%rsp), %rax
movq %rax, 0x2258(%rsp)
movq 0x2258(%rsp), %rax
movq %rax, 0x39c0(%rsp)
movq 0x39c0(%rsp), %rax
movq %rax, 0x4a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128dfc2
movq 0x4a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x39bc(%rsp) # imm = 0xFFFFFFFF
movl 0x39bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x39b8(%rsp)
cmpl $0x1, 0x39b8(%rsp)
jne 0x128dfc2
movq 0x4a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128df93
movq 0x4a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128df91
jmp 0x128dfc0
movq 0x4a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e00(%rsp)
cmpq $0x0, 0x3e00(%rsp)
je 0x128dfbe
movq 0x3e00(%rsp), %rdi
callq 0x5f480
jmp 0x128dfc0
jmp 0x128dfc2
movq 0x4a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128e01d
movq %rax, %rdi
callq 0x678a0
movq 0x4a0(%rsp), %rax
movq %rax, 0x1418(%rsp)
movl $0x0, 0x13cc(%rsp)
movl 0x13cc(%rsp), %eax
cmpl 0x1c68(%rsp), %eax
jge 0x128e152
movq 0x1470(%rsp), %rax
movss (%rax), %xmm0
movss %xmm0, 0x29e0(%rsp)
movaps 0x29e0(%rsp), %xmm0
shufps $0x0, %xmm0, %xmm0 # xmm0 = xmm0[0,0,0,0]
movaps %xmm0, 0x29d0(%rsp)
movaps 0x29d0(%rsp), %xmm0
movaps %xmm0, 0x13b0(%rsp)
movq 0x1468(%rsp), %rax
movq %rax, 0x26c0(%rsp)
movq 0x26c0(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x13a0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x13b0(%rsp), %rsi
leaq 0x13a0(%rsp), %rdx
callq 0x12f6b10
movaps %xmm0, 0x1390(%rsp)
movq 0x1418(%rsp), %rax
movaps 0x1390(%rsp), %xmm0
movq %rax, 0x28c8(%rsp)
movaps %xmm0, 0x28b0(%rsp)
movaps 0x28b0(%rsp), %xmm0
movq 0x28c8(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1470(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x1470(%rsp)
movq 0x1468(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1468(%rsp)
movq 0x1418(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1418(%rsp)
movl 0x13cc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x13cc(%rsp)
jmp 0x128e038
jmp 0x128e154
movl 0x147c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x147c(%rsp)
jmp 0x128d75c
movl $0x0, 0x1cc4(%rsp)
jmp 0x1296910
cmpl $0x1, 0x1c98(%rsp)
je 0x128f0f2
cmpl $0x1, 0x1c78(%rsp)
jne 0x128f0f2
movl 0x1c74(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jne 0x128f0f2
movl 0x1c6c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jne 0x128f0f2
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movl 0x1c8c(%rsp), %ecx
movq 0x1c80(%rsp), %r8
movl 0x1c7c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d28(%rsp)
movq 0x1d28(%rsp), %rcx
movq %rcx, 0x490(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x49f(%rsp)
je 0x128e261
movq 0x490(%rsp), %rax
movq %rax, 0x2a50(%rsp)
movq 0x2a50(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x49f(%rsp)
movb 0x49f(%rsp), %al
testb $0x1, %al
jne 0x128e26e
jmp 0x128e27e
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1296910
movl $0x0, 0x138c(%rsp)
movl 0x138c(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x128f0e2
movq 0x1cb8(%rsp), %rcx
movl 0x138c(%rsp), %eax
leaq 0x1338(%rsp), %rdx
movq %rdx, 0x1ea8(%rsp)
movq %rcx, 0x1ea0(%rsp)
movl %eax, 0x1e9c(%rsp)
movq 0x1ea0(%rsp), %rax
movq %rax, 0x488(%rsp)
movb $0x0, 0x1e9b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e9c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1338(%rsp), %r10
movq %r10, 0x3178(%rsp)
movl %r9d, 0x3174(%rsp)
movl %r8d, 0x3170(%rsp)
movl %edi, 0x316c(%rsp)
movq %rsi, 0x3160(%rsp)
movq %rdx, 0x3158(%rsp)
movl %ecx, 0x3154(%rsp)
movq %rax, 0x3148(%rsp)
movq 0x3178(%rsp), %rcx
movq %rcx, 0x480(%rsp)
movq 0x3160(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3158(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3154(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3148(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3174(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3170(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x316c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3530(%rsp)
movl $0x10, 0x352c(%rsp)
movq 0x3530(%rsp), %rax
movslq 0x352c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x352c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x488(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1360(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x128e459
movq 0x488(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1378(%rsp)
movb $0x1, 0x1e9b(%rsp)
testb $0x1, 0x1e9b(%rsp)
jne 0x128e594
leaq 0x1338(%rsp), %rax
movq %rax, 0x2150(%rsp)
movq 0x2150(%rsp), %rax
movq %rax, 0x3bd0(%rsp)
movq 0x3bd0(%rsp), %rax
movq %rax, 0x478(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128e537
movq 0x478(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bcc(%rsp) # imm = 0xFFFFFFFF
movl 0x3bcc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3bc8(%rsp)
cmpl $0x1, 0x3bc8(%rsp)
jne 0x128e537
movq 0x478(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128e508
movq 0x478(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128e506
jmp 0x128e535
movq 0x478(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cf8(%rsp)
cmpq $0x0, 0x3cf8(%rsp)
je 0x128e533
movq 0x3cf8(%rsp), %rdi
callq 0x5f480
jmp 0x128e535
jmp 0x128e537
movq 0x478(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128e592
movq %rax, %rdi
callq 0x678a0
jmp 0x128e594
leaq 0x1338(%rsp), %rax
movq %rax, 0x2070(%rsp)
movq 0x2070(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x468(%rsp)
leaq 0x1338(%rsp), %rax
movq %rax, 0x2260(%rsp)
movq 0x2260(%rsp), %rax
movq %rax, 0x39b0(%rsp)
movq 0x39b0(%rsp), %rax
movq %rax, 0x470(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128e67f
movq 0x470(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x39ac(%rsp) # imm = 0xFFFFFFFF
movl 0x39ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x39a8(%rsp)
cmpl $0x1, 0x39a8(%rsp)
jne 0x128e67f
movq 0x470(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128e650
movq 0x470(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128e64e
jmp 0x128e67d
movq 0x470(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e08(%rsp)
cmpq $0x0, 0x3e08(%rsp)
je 0x128e67b
movq 0x3e08(%rsp), %rdi
callq 0x5f480
jmp 0x128e67d
jmp 0x128e67f
movq 0x470(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128e6da
movq %rax, %rdi
callq 0x678a0
movq 0x468(%rsp), %rax
movq %rax, 0x1380(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x138c(%rsp), %eax
leaq 0x12e8(%rsp), %rdx
movq %rdx, 0x1e90(%rsp)
movq %rcx, 0x1e88(%rsp)
movl %eax, 0x1e84(%rsp)
movq 0x1e88(%rsp), %rax
movq %rax, 0x460(%rsp)
movb $0x0, 0x1e83(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e84(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x12e8(%rsp), %r10
movq %r10, 0x31b0(%rsp)
movl %r9d, 0x31ac(%rsp)
movl %r8d, 0x31a8(%rsp)
movl %edi, 0x31a4(%rsp)
movq %rsi, 0x3198(%rsp)
movq %rdx, 0x3190(%rsp)
movl %ecx, 0x318c(%rsp)
movq %rax, 0x3180(%rsp)
movq 0x31b0(%rsp), %rcx
movq %rcx, 0x458(%rsp)
movq 0x3198(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3190(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x318c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3180(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x31ac(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x31a8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x31a4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3520(%rsp)
movl $0x10, 0x351c(%rsp)
movq 0x3520(%rsp), %rax
movslq 0x351c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x351c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x460(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1310(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x128e8a6
movq 0x460(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1328(%rsp)
movb $0x1, 0x1e83(%rsp)
testb $0x1, 0x1e83(%rsp)
jne 0x128e9e1
leaq 0x12e8(%rsp), %rax
movq %rax, 0x2158(%rsp)
movq 0x2158(%rsp), %rax
movq %rax, 0x3bc0(%rsp)
movq 0x3bc0(%rsp), %rax
movq %rax, 0x450(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128e984
movq 0x450(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bbc(%rsp) # imm = 0xFFFFFFFF
movl 0x3bbc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3bb8(%rsp)
cmpl $0x1, 0x3bb8(%rsp)
jne 0x128e984
movq 0x450(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128e955
movq 0x450(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128e953
jmp 0x128e982
movq 0x450(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d00(%rsp)
cmpq $0x0, 0x3d00(%rsp)
je 0x128e980
movq 0x3d00(%rsp), %rdi
callq 0x5f480
jmp 0x128e982
jmp 0x128e984
movq 0x450(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128e9df
movq %rax, %rdi
callq 0x678a0
jmp 0x128e9e1
leaq 0x12e8(%rsp), %rax
movq %rax, 0x2068(%rsp)
movq 0x2068(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x440(%rsp)
leaq 0x12e8(%rsp), %rax
movq %rax, 0x2268(%rsp)
movq 0x2268(%rsp), %rax
movq %rax, 0x39a0(%rsp)
movq 0x39a0(%rsp), %rax
movq %rax, 0x448(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128eacc
movq 0x448(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x399c(%rsp) # imm = 0xFFFFFFFF
movl 0x399c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3998(%rsp)
cmpl $0x1, 0x3998(%rsp)
jne 0x128eacc
movq 0x448(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128ea9d
movq 0x448(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128ea9b
jmp 0x128eaca
movq 0x448(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e10(%rsp)
cmpq $0x0, 0x3e10(%rsp)
je 0x128eac8
movq 0x3e10(%rsp), %rdi
callq 0x5f480
jmp 0x128eaca
jmp 0x128eacc
movq 0x448(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128eb27
movq %rax, %rdi
callq 0x678a0
movq 0x440(%rsp), %rax
movq %rax, 0x1330(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x138c(%rsp), %eax
leaq 0x1298(%rsp), %rdx
movq %rdx, 0x2450(%rsp)
movq %rcx, 0x2448(%rsp)
movl %eax, 0x2444(%rsp)
movq 0x2448(%rsp), %rax
movq %rax, 0x438(%rsp)
movb $0x0, 0x2443(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2444(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1298(%rsp), %r10
movq %r10, 0x2ca8(%rsp)
movl %r9d, 0x2ca4(%rsp)
movl %r8d, 0x2ca0(%rsp)
movl %edi, 0x2c9c(%rsp)
movq %rsi, 0x2c90(%rsp)
movq %rdx, 0x2c88(%rsp)
movl %ecx, 0x2c84(%rsp)
movq %rax, 0x2c78(%rsp)
movq 0x2ca8(%rsp), %rcx
movq %rcx, 0x430(%rsp)
movq 0x2c90(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2c88(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2c84(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2c78(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2ca4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2ca0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2c9c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3690(%rsp)
movl $0x10, 0x368c(%rsp)
movq 0x3690(%rsp), %rax
movslq 0x368c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x368c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x438(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x12c0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x128ecf3
movq 0x438(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x12d8(%rsp)
movb $0x1, 0x2443(%rsp)
testb $0x1, 0x2443(%rsp)
jne 0x128ee2e
leaq 0x1298(%rsp), %rax
movq %rax, 0x2458(%rsp)
movq 0x2458(%rsp), %rax
movq %rax, 0x37a0(%rsp)
movq 0x37a0(%rsp), %rax
movq %rax, 0x428(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128edd1
movq 0x428(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x379c(%rsp) # imm = 0xFFFFFFFF
movl 0x379c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3798(%rsp)
cmpl $0x1, 0x3798(%rsp)
jne 0x128edd1
movq 0x428(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128eda2
movq 0x428(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128eda0
jmp 0x128edcf
movq 0x428(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f10(%rsp)
cmpq $0x0, 0x3f10(%rsp)
je 0x128edcd
movq 0x3f10(%rsp), %rdi
callq 0x5f480
jmp 0x128edcf
jmp 0x128edd1
movq 0x428(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128ee2c
movq %rax, %rdi
callq 0x678a0
jmp 0x128ee2e
leaq 0x1298(%rsp), %rax
movq %rax, 0x25b8(%rsp)
movq 0x25b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x418(%rsp)
leaq 0x1298(%rsp), %rax
movq %rax, 0x2270(%rsp)
movq 0x2270(%rsp), %rax
movq %rax, 0x3990(%rsp)
movq 0x3990(%rsp), %rax
movq %rax, 0x420(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128ef19
movq 0x420(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x398c(%rsp) # imm = 0xFFFFFFFF
movl 0x398c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3988(%rsp)
cmpl $0x1, 0x3988(%rsp)
jne 0x128ef19
movq 0x420(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128eeea
movq 0x420(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128eee8
jmp 0x128ef17
movq 0x420(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e18(%rsp)
cmpq $0x0, 0x3e18(%rsp)
je 0x128ef15
movq 0x3e18(%rsp), %rdi
callq 0x5f480
jmp 0x128ef17
jmp 0x128ef19
movq 0x420(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128ef74
movq %rax, %rdi
callq 0x678a0
movq 0x418(%rsp), %rax
movq %rax, 0x12e0(%rsp)
movl $0x0, 0x1294(%rsp)
movl 0x1294(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jge 0x128f0ca
movq 0x1330(%rsp), %rax
movl 0x1294(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x26b8(%rsp)
movq 0x26b8(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1280(%rsp)
movl $0x0, 0x127c(%rsp)
movl 0x127c(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jge 0x128f0b2
movq 0x1380(%rsp), %rax
movq %rax, 0x26b0(%rsp)
movq 0x26b0(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1260(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x1260(%rsp), %rsi
leaq 0x1280(%rsp), %rdx
callq 0x12f6b10
movaps %xmm0, 0x1250(%rsp)
movq 0x12e0(%rsp), %rax
movaps 0x1250(%rsp), %xmm0
movq %rax, 0x28a8(%rsp)
movaps %xmm0, 0x2890(%rsp)
movaps 0x2890(%rsp), %xmm0
movq 0x28a8(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1380(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1380(%rsp)
movq 0x12e0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x12e0(%rsp)
movl 0x127c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x127c(%rsp)
jmp 0x128efe5
jmp 0x128f0b4
movl 0x1294(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1294(%rsp)
jmp 0x128ef8f
jmp 0x128f0cc
movl 0x138c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x138c(%rsp)
jmp 0x128e289
movl $0x0, 0x1cc4(%rsp)
jmp 0x1296910
movl 0x1c78(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jne 0x129006a
cmpl $0x1, 0x1c94(%rsp)
je 0x129006a
cmpl $0x1, 0x1c74(%rsp)
jne 0x129006a
movl 0x1c6c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jne 0x129006a
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movl 0x1c8c(%rsp), %ecx
movq 0x1c80(%rsp), %r8
movl 0x1c7c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d20(%rsp)
movq 0x1d20(%rsp), %rcx
movq %rcx, 0x408(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x417(%rsp)
je 0x128f1d9
movq 0x408(%rsp), %rax
movq %rax, 0x2a58(%rsp)
movq 0x2a58(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x417(%rsp)
movb 0x417(%rsp), %al
testb $0x1, %al
jne 0x128f1e6
jmp 0x128f1f6
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1296910
movl $0x0, 0x124c(%rsp)
movl 0x124c(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x129005a
movq 0x1cb8(%rsp), %rcx
movl 0x124c(%rsp), %eax
leaq 0x11f8(%rsp), %rdx
movq %rdx, 0x1e78(%rsp)
movq %rcx, 0x1e70(%rsp)
movl %eax, 0x1e6c(%rsp)
movq 0x1e70(%rsp), %rax
movq %rax, 0x400(%rsp)
movb $0x0, 0x1e6b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e6c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x11f8(%rsp), %r10
movq %r10, 0x31e8(%rsp)
movl %r9d, 0x31e4(%rsp)
movl %r8d, 0x31e0(%rsp)
movl %edi, 0x31dc(%rsp)
movq %rsi, 0x31d0(%rsp)
movq %rdx, 0x31c8(%rsp)
movl %ecx, 0x31c4(%rsp)
movq %rax, 0x31b8(%rsp)
movq 0x31e8(%rsp), %rcx
movq %rcx, 0x3f8(%rsp)
movq 0x31d0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x31c8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x31c4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x31b8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x31e4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x31e0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x31dc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3510(%rsp)
movl $0x10, 0x350c(%rsp)
movq 0x3510(%rsp), %rax
movslq 0x350c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x350c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x400(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1220(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x128f3d1
movq 0x400(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1238(%rsp)
movb $0x1, 0x1e6b(%rsp)
testb $0x1, 0x1e6b(%rsp)
jne 0x128f50c
leaq 0x11f8(%rsp), %rax
movq %rax, 0x2160(%rsp)
movq 0x2160(%rsp), %rax
movq %rax, 0x3bb0(%rsp)
movq 0x3bb0(%rsp), %rax
movq %rax, 0x3f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128f4af
movq 0x3f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bac(%rsp) # imm = 0xFFFFFFFF
movl 0x3bac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ba8(%rsp)
cmpl $0x1, 0x3ba8(%rsp)
jne 0x128f4af
movq 0x3f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128f480
movq 0x3f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128f47e
jmp 0x128f4ad
movq 0x3f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d08(%rsp)
cmpq $0x0, 0x3d08(%rsp)
je 0x128f4ab
movq 0x3d08(%rsp), %rdi
callq 0x5f480
jmp 0x128f4ad
jmp 0x128f4af
movq 0x3f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128f50a
movq %rax, %rdi
callq 0x678a0
jmp 0x128f50c
leaq 0x11f8(%rsp), %rax
movq %rax, 0x2060(%rsp)
movq 0x2060(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e0(%rsp)
leaq 0x11f8(%rsp), %rax
movq %rax, 0x2278(%rsp)
movq 0x2278(%rsp), %rax
movq %rax, 0x3980(%rsp)
movq 0x3980(%rsp), %rax
movq %rax, 0x3e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128f5f7
movq 0x3e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x397c(%rsp) # imm = 0xFFFFFFFF
movl 0x397c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3978(%rsp)
cmpl $0x1, 0x3978(%rsp)
jne 0x128f5f7
movq 0x3e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128f5c8
movq 0x3e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128f5c6
jmp 0x128f5f5
movq 0x3e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e20(%rsp)
cmpq $0x0, 0x3e20(%rsp)
je 0x128f5f3
movq 0x3e20(%rsp), %rdi
callq 0x5f480
jmp 0x128f5f5
jmp 0x128f5f7
movq 0x3e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128f652
movq %rax, %rdi
callq 0x678a0
movq 0x3e0(%rsp), %rax
movq %rax, 0x1240(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x124c(%rsp), %eax
leaq 0x11a8(%rsp), %rdx
movq %rdx, 0x1e60(%rsp)
movq %rcx, 0x1e58(%rsp)
movl %eax, 0x1e54(%rsp)
movq 0x1e58(%rsp), %rax
movq %rax, 0x3d8(%rsp)
movb $0x0, 0x1e53(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e54(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x11a8(%rsp), %r10
movq %r10, 0x3220(%rsp)
movl %r9d, 0x321c(%rsp)
movl %r8d, 0x3218(%rsp)
movl %edi, 0x3214(%rsp)
movq %rsi, 0x3208(%rsp)
movq %rdx, 0x3200(%rsp)
movl %ecx, 0x31fc(%rsp)
movq %rax, 0x31f0(%rsp)
movq 0x3220(%rsp), %rcx
movq %rcx, 0x3d0(%rsp)
movq 0x3208(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3200(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x31fc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x31f0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x321c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3218(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3214(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3500(%rsp)
movl $0x10, 0x34fc(%rsp)
movq 0x3500(%rsp), %rax
movslq 0x34fc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x34fc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3d8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x11d0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x128f81e
movq 0x3d8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x11e8(%rsp)
movb $0x1, 0x1e53(%rsp)
testb $0x1, 0x1e53(%rsp)
jne 0x128f959
leaq 0x11a8(%rsp), %rax
movq %rax, 0x2168(%rsp)
movq 0x2168(%rsp), %rax
movq %rax, 0x3ba0(%rsp)
movq 0x3ba0(%rsp), %rax
movq %rax, 0x3c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128f8fc
movq 0x3c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b9c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b9c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b98(%rsp)
cmpl $0x1, 0x3b98(%rsp)
jne 0x128f8fc
movq 0x3c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128f8cd
movq 0x3c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128f8cb
jmp 0x128f8fa
movq 0x3c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d10(%rsp)
cmpq $0x0, 0x3d10(%rsp)
je 0x128f8f8
movq 0x3d10(%rsp), %rdi
callq 0x5f480
jmp 0x128f8fa
jmp 0x128f8fc
movq 0x3c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128f957
movq %rax, %rdi
callq 0x678a0
jmp 0x128f959
leaq 0x11a8(%rsp), %rax
movq %rax, 0x2058(%rsp)
movq 0x2058(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3b8(%rsp)
leaq 0x11a8(%rsp), %rax
movq %rax, 0x2280(%rsp)
movq 0x2280(%rsp), %rax
movq %rax, 0x3970(%rsp)
movq 0x3970(%rsp), %rax
movq %rax, 0x3c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128fa44
movq 0x3c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x396c(%rsp) # imm = 0xFFFFFFFF
movl 0x396c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3968(%rsp)
cmpl $0x1, 0x3968(%rsp)
jne 0x128fa44
movq 0x3c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128fa15
movq 0x3c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128fa13
jmp 0x128fa42
movq 0x3c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e28(%rsp)
cmpq $0x0, 0x3e28(%rsp)
je 0x128fa40
movq 0x3e28(%rsp), %rdi
callq 0x5f480
jmp 0x128fa42
jmp 0x128fa44
movq 0x3c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128fa9f
movq %rax, %rdi
callq 0x678a0
movq 0x3b8(%rsp), %rax
movq %rax, 0x11f0(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x124c(%rsp), %eax
leaq 0x1158(%rsp), %rdx
movq %rdx, 0x2430(%rsp)
movq %rcx, 0x2428(%rsp)
movl %eax, 0x2424(%rsp)
movq 0x2428(%rsp), %rax
movq %rax, 0x3b0(%rsp)
movb $0x0, 0x2423(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2424(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1158(%rsp), %r10
movq %r10, 0x2ce0(%rsp)
movl %r9d, 0x2cdc(%rsp)
movl %r8d, 0x2cd8(%rsp)
movl %edi, 0x2cd4(%rsp)
movq %rsi, 0x2cc8(%rsp)
movq %rdx, 0x2cc0(%rsp)
movl %ecx, 0x2cbc(%rsp)
movq %rax, 0x2cb0(%rsp)
movq 0x2ce0(%rsp), %rcx
movq %rcx, 0x3a8(%rsp)
movq 0x2cc8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2cc0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2cbc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2cb0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2cdc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2cd8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2cd4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3680(%rsp)
movl $0x10, 0x367c(%rsp)
movq 0x3680(%rsp), %rax
movslq 0x367c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x367c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3b0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1180(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x128fc6b
movq 0x3b0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1198(%rsp)
movb $0x1, 0x2423(%rsp)
testb $0x1, 0x2423(%rsp)
jne 0x128fda6
leaq 0x1158(%rsp), %rax
movq %rax, 0x2438(%rsp)
movq 0x2438(%rsp), %rax
movq %rax, 0x37b0(%rsp)
movq 0x37b0(%rsp), %rax
movq %rax, 0x3a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128fd49
movq 0x3a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x37ac(%rsp) # imm = 0xFFFFFFFF
movl 0x37ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x37a8(%rsp)
cmpl $0x1, 0x37a8(%rsp)
jne 0x128fd49
movq 0x3a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128fd1a
movq 0x3a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128fd18
jmp 0x128fd47
movq 0x3a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f08(%rsp)
cmpq $0x0, 0x3f08(%rsp)
je 0x128fd45
movq 0x3f08(%rsp), %rdi
callq 0x5f480
jmp 0x128fd47
jmp 0x128fd49
movq 0x3a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128fda4
movq %rax, %rdi
callq 0x678a0
jmp 0x128fda6
leaq 0x1158(%rsp), %rax
movq %rax, 0x25b0(%rsp)
movq 0x25b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x390(%rsp)
leaq 0x1158(%rsp), %rax
movq %rax, 0x2288(%rsp)
movq 0x2288(%rsp), %rax
movq %rax, 0x3960(%rsp)
movq 0x3960(%rsp), %rax
movq %rax, 0x398(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x128fe91
movq 0x398(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x395c(%rsp) # imm = 0xFFFFFFFF
movl 0x395c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3958(%rsp)
cmpl $0x1, 0x3958(%rsp)
jne 0x128fe91
movq 0x398(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x128fe62
movq 0x398(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x128fe60
jmp 0x128fe8f
movq 0x398(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e30(%rsp)
cmpq $0x0, 0x3e30(%rsp)
je 0x128fe8d
movq 0x3e30(%rsp), %rdi
callq 0x5f480
jmp 0x128fe8f
jmp 0x128fe91
movq 0x398(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x128feec
movq %rax, %rdi
callq 0x678a0
movq 0x390(%rsp), %rax
movq %rax, 0x11a0(%rsp)
movl $0x0, 0x1154(%rsp)
movl 0x1154(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jge 0x1290042
movl $0x0, 0x1150(%rsp)
movl 0x1150(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jge 0x129002a
movq 0x1240(%rsp), %rax
movq %rax, 0x26a8(%rsp)
movq 0x26a8(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1140(%rsp)
movq 0x11f0(%rsp), %rax
movl 0x1150(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x26a0(%rsp)
movq 0x26a0(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1130(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x1140(%rsp), %rsi
leaq 0x1130(%rsp), %rdx
callq 0x12f6b10
movaps %xmm0, 0x1120(%rsp)
movq 0x11a0(%rsp), %rax
movaps 0x1120(%rsp), %xmm0
movq %rax, 0x2888(%rsp)
movaps %xmm0, 0x2870(%rsp)
movaps 0x2870(%rsp), %xmm0
movq 0x2888(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1240(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1240(%rsp)
movq 0x11a0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x11a0(%rsp)
movl 0x1150(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1150(%rsp)
jmp 0x128ff26
jmp 0x129002c
movl 0x1154(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1154(%rsp)
jmp 0x128ff07
jmp 0x1290044
movl 0x124c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x124c(%rsp)
jmp 0x128f201
movl $0x0, 0x1cc4(%rsp)
jmp 0x1296910
cmpl $0x1, 0x1c78(%rsp)
je 0x1290fe2
cmpl $0x1, 0x1c98(%rsp)
jne 0x1290fe2
movl 0x1c74(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jne 0x1290fe2
movl 0x1c6c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jne 0x1290fe2
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c6c(%rsp), %ecx
movq 0x1c60(%rsp), %r8
movl 0x1c5c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d18(%rsp)
movq 0x1d18(%rsp), %rcx
movq %rcx, 0x380(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x38f(%rsp)
je 0x1290151
movq 0x380(%rsp), %rax
movq %rax, 0x2a60(%rsp)
movq 0x2a60(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x38f(%rsp)
movb 0x38f(%rsp), %al
testb $0x1, %al
jne 0x129015e
jmp 0x129016e
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1296910
movl $0x0, 0x111c(%rsp)
movl 0x111c(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x1290fd2
movq 0x1cb8(%rsp), %rcx
movl 0x111c(%rsp), %eax
leaq 0x10c8(%rsp), %rdx
movq %rdx, 0x1e48(%rsp)
movq %rcx, 0x1e40(%rsp)
movl %eax, 0x1e3c(%rsp)
movq 0x1e40(%rsp), %rax
movq %rax, 0x378(%rsp)
movb $0x0, 0x1e3b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e3c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x10c8(%rsp), %r10
movq %r10, 0x3258(%rsp)
movl %r9d, 0x3254(%rsp)
movl %r8d, 0x3250(%rsp)
movl %edi, 0x324c(%rsp)
movq %rsi, 0x3240(%rsp)
movq %rdx, 0x3238(%rsp)
movl %ecx, 0x3234(%rsp)
movq %rax, 0x3228(%rsp)
movq 0x3258(%rsp), %rcx
movq %rcx, 0x370(%rsp)
movq 0x3240(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3238(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3234(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3228(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3254(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3250(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x324c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x34f0(%rsp)
movl $0x10, 0x34ec(%rsp)
movq 0x34f0(%rsp), %rax
movslq 0x34ec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x34ec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x378(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x10f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1290349
movq 0x378(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1108(%rsp)
movb $0x1, 0x1e3b(%rsp)
testb $0x1, 0x1e3b(%rsp)
jne 0x1290484
leaq 0x10c8(%rsp), %rax
movq %rax, 0x2170(%rsp)
movq 0x2170(%rsp), %rax
movq %rax, 0x3b90(%rsp)
movq 0x3b90(%rsp), %rax
movq %rax, 0x368(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1290427
movq 0x368(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b8c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b8c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b88(%rsp)
cmpl $0x1, 0x3b88(%rsp)
jne 0x1290427
movq 0x368(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12903f8
movq 0x368(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12903f6
jmp 0x1290425
movq 0x368(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d18(%rsp)
cmpq $0x0, 0x3d18(%rsp)
je 0x1290423
movq 0x3d18(%rsp), %rdi
callq 0x5f480
jmp 0x1290425
jmp 0x1290427
movq 0x368(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1290482
movq %rax, %rdi
callq 0x678a0
jmp 0x1290484
leaq 0x10c8(%rsp), %rax
movq %rax, 0x2050(%rsp)
movq 0x2050(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x358(%rsp)
leaq 0x10c8(%rsp), %rax
movq %rax, 0x2290(%rsp)
movq 0x2290(%rsp), %rax
movq %rax, 0x3950(%rsp)
movq 0x3950(%rsp), %rax
movq %rax, 0x360(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129056f
movq 0x360(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x394c(%rsp) # imm = 0xFFFFFFFF
movl 0x394c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3948(%rsp)
cmpl $0x1, 0x3948(%rsp)
jne 0x129056f
movq 0x360(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1290540
movq 0x360(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129053e
jmp 0x129056d
movq 0x360(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e38(%rsp)
cmpq $0x0, 0x3e38(%rsp)
je 0x129056b
movq 0x3e38(%rsp), %rdi
callq 0x5f480
jmp 0x129056d
jmp 0x129056f
movq 0x360(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12905ca
movq %rax, %rdi
callq 0x678a0
movq 0x358(%rsp), %rax
movq %rax, 0x1110(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x111c(%rsp), %eax
leaq 0x1078(%rsp), %rdx
movq %rdx, 0x1e30(%rsp)
movq %rcx, 0x1e28(%rsp)
movl %eax, 0x1e24(%rsp)
movq 0x1e28(%rsp), %rax
movq %rax, 0x350(%rsp)
movb $0x0, 0x1e23(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e24(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1078(%rsp), %r10
movq %r10, 0x3290(%rsp)
movl %r9d, 0x328c(%rsp)
movl %r8d, 0x3288(%rsp)
movl %edi, 0x3284(%rsp)
movq %rsi, 0x3278(%rsp)
movq %rdx, 0x3270(%rsp)
movl %ecx, 0x326c(%rsp)
movq %rax, 0x3260(%rsp)
movq 0x3290(%rsp), %rcx
movq %rcx, 0x348(%rsp)
movq 0x3278(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3270(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x326c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3260(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x328c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3288(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3284(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x34e0(%rsp)
movl $0x10, 0x34dc(%rsp)
movq 0x34e0(%rsp), %rax
movslq 0x34dc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x34dc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x350(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x10a0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1290796
movq 0x350(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x10b8(%rsp)
movb $0x1, 0x1e23(%rsp)
testb $0x1, 0x1e23(%rsp)
jne 0x12908d1
leaq 0x1078(%rsp), %rax
movq %rax, 0x2178(%rsp)
movq 0x2178(%rsp), %rax
movq %rax, 0x3b80(%rsp)
movq 0x3b80(%rsp), %rax
movq %rax, 0x340(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1290874
movq 0x340(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b7c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b7c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b78(%rsp)
cmpl $0x1, 0x3b78(%rsp)
jne 0x1290874
movq 0x340(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1290845
movq 0x340(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1290843
jmp 0x1290872
movq 0x340(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d20(%rsp)
cmpq $0x0, 0x3d20(%rsp)
je 0x1290870
movq 0x3d20(%rsp), %rdi
callq 0x5f480
jmp 0x1290872
jmp 0x1290874
movq 0x340(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12908cf
movq %rax, %rdi
callq 0x678a0
jmp 0x12908d1
leaq 0x1078(%rsp), %rax
movq %rax, 0x2048(%rsp)
movq 0x2048(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x330(%rsp)
leaq 0x1078(%rsp), %rax
movq %rax, 0x2298(%rsp)
movq 0x2298(%rsp), %rax
movq %rax, 0x3940(%rsp)
movq 0x3940(%rsp), %rax
movq %rax, 0x338(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12909bc
movq 0x338(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x393c(%rsp) # imm = 0xFFFFFFFF
movl 0x393c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3938(%rsp)
cmpl $0x1, 0x3938(%rsp)
jne 0x12909bc
movq 0x338(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129098d
movq 0x338(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129098b
jmp 0x12909ba
movq 0x338(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e40(%rsp)
cmpq $0x0, 0x3e40(%rsp)
je 0x12909b8
movq 0x3e40(%rsp), %rdi
callq 0x5f480
jmp 0x12909ba
jmp 0x12909bc
movq 0x338(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1290a17
movq %rax, %rdi
callq 0x678a0
movq 0x330(%rsp), %rax
movq %rax, 0x10c0(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x111c(%rsp), %eax
leaq 0x1028(%rsp), %rdx
movq %rdx, 0x2410(%rsp)
movq %rcx, 0x2408(%rsp)
movl %eax, 0x2404(%rsp)
movq 0x2408(%rsp), %rax
movq %rax, 0x328(%rsp)
movb $0x0, 0x2403(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2404(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1028(%rsp), %r10
movq %r10, 0x2d18(%rsp)
movl %r9d, 0x2d14(%rsp)
movl %r8d, 0x2d10(%rsp)
movl %edi, 0x2d0c(%rsp)
movq %rsi, 0x2d00(%rsp)
movq %rdx, 0x2cf8(%rsp)
movl %ecx, 0x2cf4(%rsp)
movq %rax, 0x2ce8(%rsp)
movq 0x2d18(%rsp), %rcx
movq %rcx, 0x320(%rsp)
movq 0x2d00(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2cf8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2cf4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ce8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2d14(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2d10(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2d0c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3670(%rsp)
movl $0x10, 0x366c(%rsp)
movq 0x3670(%rsp), %rax
movslq 0x366c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x366c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x328(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1050(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1290be3
movq 0x328(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1068(%rsp)
movb $0x1, 0x2403(%rsp)
testb $0x1, 0x2403(%rsp)
jne 0x1290d1e
leaq 0x1028(%rsp), %rax
movq %rax, 0x2418(%rsp)
movq 0x2418(%rsp), %rax
movq %rax, 0x37c0(%rsp)
movq 0x37c0(%rsp), %rax
movq %rax, 0x318(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1290cc1
movq 0x318(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x37bc(%rsp) # imm = 0xFFFFFFFF
movl 0x37bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x37b8(%rsp)
cmpl $0x1, 0x37b8(%rsp)
jne 0x1290cc1
movq 0x318(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1290c92
movq 0x318(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1290c90
jmp 0x1290cbf
movq 0x318(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f00(%rsp)
cmpq $0x0, 0x3f00(%rsp)
je 0x1290cbd
movq 0x3f00(%rsp), %rdi
callq 0x5f480
jmp 0x1290cbf
jmp 0x1290cc1
movq 0x318(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1290d1c
movq %rax, %rdi
callq 0x678a0
jmp 0x1290d1e
leaq 0x1028(%rsp), %rax
movq %rax, 0x25a8(%rsp)
movq 0x25a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x308(%rsp)
leaq 0x1028(%rsp), %rax
movq %rax, 0x22a0(%rsp)
movq 0x22a0(%rsp), %rax
movq %rax, 0x3930(%rsp)
movq 0x3930(%rsp), %rax
movq %rax, 0x310(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1290e09
movq 0x310(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x392c(%rsp) # imm = 0xFFFFFFFF
movl 0x392c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3928(%rsp)
cmpl $0x1, 0x3928(%rsp)
jne 0x1290e09
movq 0x310(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1290dda
movq 0x310(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1290dd8
jmp 0x1290e07
movq 0x310(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e48(%rsp)
cmpq $0x0, 0x3e48(%rsp)
je 0x1290e05
movq 0x3e48(%rsp), %rdi
callq 0x5f480
jmp 0x1290e07
jmp 0x1290e09
movq 0x310(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1290e64
movq %rax, %rdi
callq 0x678a0
movq 0x308(%rsp), %rax
movq %rax, 0x1070(%rsp)
movl $0x0, 0x1024(%rsp)
movl 0x1024(%rsp), %eax
cmpl 0x1c74(%rsp), %eax
jge 0x1290fba
movq 0x1110(%rsp), %rax
movl 0x1024(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2698(%rsp)
movq 0x2698(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1010(%rsp)
movl $0x0, 0x100c(%rsp)
movl 0x100c(%rsp), %eax
cmpl 0x1c78(%rsp), %eax
jge 0x1290fa2
movq 0x10c0(%rsp), %rax
movq %rax, 0x2690(%rsp)
movq 0x2690(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xff0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x1010(%rsp), %rsi
leaq 0xff0(%rsp), %rdx
callq 0x12f6b10
movaps %xmm0, 0xfe0(%rsp)
movq 0x1070(%rsp), %rax
movaps 0xfe0(%rsp), %xmm0
movq %rax, 0x2868(%rsp)
movaps %xmm0, 0x2850(%rsp)
movaps 0x2850(%rsp), %xmm0
movq 0x2868(%rsp), %rax
movups %xmm0, (%rax)
movq 0x10c0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x10c0(%rsp)
movq 0x1070(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1070(%rsp)
movl 0x100c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x100c(%rsp)
jmp 0x1290ed5
jmp 0x1290fa4
movl 0x1024(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1024(%rsp)
jmp 0x1290e7f
jmp 0x1290fbc
movl 0x111c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x111c(%rsp)
jmp 0x1290179
movl $0x0, 0x1cc4(%rsp)
jmp 0x1296910
movl 0x1c78(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jne 0x1291f5a
cmpl $0x1, 0x1c74(%rsp)
je 0x1291f5a
cmpl $0x1, 0x1c94(%rsp)
jne 0x1291f5a
movl 0x1c6c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jne 0x1291f5a
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c6c(%rsp), %ecx
movq 0x1c60(%rsp), %r8
movl 0x1c5c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d10(%rsp)
movq 0x1d10(%rsp), %rcx
movq %rcx, 0x2f8(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x307(%rsp)
je 0x12910c9
movq 0x2f8(%rsp), %rax
movq %rax, 0x2a68(%rsp)
movq 0x2a68(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x307(%rsp)
movb 0x307(%rsp), %al
testb $0x1, %al
jne 0x12910d6
jmp 0x12910e6
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1296910
movl $0x0, 0xfdc(%rsp)
movl 0xfdc(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x1291f4a
movq 0x1cb8(%rsp), %rcx
movl 0xfdc(%rsp), %eax
leaq 0xf88(%rsp), %rdx
movq %rdx, 0x1e18(%rsp)
movq %rcx, 0x1e10(%rsp)
movl %eax, 0x1e0c(%rsp)
movq 0x1e10(%rsp), %rax
movq %rax, 0x2f0(%rsp)
movb $0x0, 0x1e0b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e0c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xf88(%rsp), %r10
movq %r10, 0x32c8(%rsp)
movl %r9d, 0x32c4(%rsp)
movl %r8d, 0x32c0(%rsp)
movl %edi, 0x32bc(%rsp)
movq %rsi, 0x32b0(%rsp)
movq %rdx, 0x32a8(%rsp)
movl %ecx, 0x32a4(%rsp)
movq %rax, 0x3298(%rsp)
movq 0x32c8(%rsp), %rcx
movq %rcx, 0x2e8(%rsp)
movq 0x32b0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x32a8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x32a4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3298(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x32c4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x32c0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x32bc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x34d0(%rsp)
movl $0x10, 0x34cc(%rsp)
movq 0x34d0(%rsp), %rax
movslq 0x34cc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x34cc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2f0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xfb0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12912c1
movq 0x2f0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xfc8(%rsp)
movb $0x1, 0x1e0b(%rsp)
testb $0x1, 0x1e0b(%rsp)
jne 0x12913fc
leaq 0xf88(%rsp), %rax
movq %rax, 0x2180(%rsp)
movq 0x2180(%rsp), %rax
movq %rax, 0x3b70(%rsp)
movq 0x3b70(%rsp), %rax
movq %rax, 0x2e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129139f
movq 0x2e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b6c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b6c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b68(%rsp)
cmpl $0x1, 0x3b68(%rsp)
jne 0x129139f
movq 0x2e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1291370
movq 0x2e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129136e
jmp 0x129139d
movq 0x2e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d28(%rsp)
cmpq $0x0, 0x3d28(%rsp)
je 0x129139b
movq 0x3d28(%rsp), %rdi
callq 0x5f480
jmp 0x129139d
jmp 0x129139f
movq 0x2e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12913fa
movq %rax, %rdi
callq 0x678a0
jmp 0x12913fc
leaq 0xf88(%rsp), %rax
movq %rax, 0x2040(%rsp)
movq 0x2040(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2d0(%rsp)
leaq 0xf88(%rsp), %rax
movq %rax, 0x22a8(%rsp)
movq 0x22a8(%rsp), %rax
movq %rax, 0x3920(%rsp)
movq 0x3920(%rsp), %rax
movq %rax, 0x2d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12914e7
movq 0x2d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x391c(%rsp) # imm = 0xFFFFFFFF
movl 0x391c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3918(%rsp)
cmpl $0x1, 0x3918(%rsp)
jne 0x12914e7
movq 0x2d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12914b8
movq 0x2d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12914b6
jmp 0x12914e5
movq 0x2d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e50(%rsp)
cmpq $0x0, 0x3e50(%rsp)
je 0x12914e3
movq 0x3e50(%rsp), %rdi
callq 0x5f480
jmp 0x12914e5
jmp 0x12914e7
movq 0x2d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1291542
movq %rax, %rdi
callq 0x678a0
movq 0x2d0(%rsp), %rax
movq %rax, 0xfd0(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0xfdc(%rsp), %eax
leaq 0xf38(%rsp), %rdx
movq %rdx, 0x1e00(%rsp)
movq %rcx, 0x1df8(%rsp)
movl %eax, 0x1df4(%rsp)
movq 0x1df8(%rsp), %rax
movq %rax, 0x2c8(%rsp)
movb $0x0, 0x1df3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1df4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xf38(%rsp), %r10
movq %r10, 0x3300(%rsp)
movl %r9d, 0x32fc(%rsp)
movl %r8d, 0x32f8(%rsp)
movl %edi, 0x32f4(%rsp)
movq %rsi, 0x32e8(%rsp)
movq %rdx, 0x32e0(%rsp)
movl %ecx, 0x32dc(%rsp)
movq %rax, 0x32d0(%rsp)
movq 0x3300(%rsp), %rcx
movq %rcx, 0x2c0(%rsp)
movq 0x32e8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x32e0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x32dc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x32d0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x32fc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x32f8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x32f4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x34c0(%rsp)
movl $0x10, 0x34bc(%rsp)
movq 0x34c0(%rsp), %rax
movslq 0x34bc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x34bc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2c8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf60(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x129170e
movq 0x2c8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xf78(%rsp)
movb $0x1, 0x1df3(%rsp)
testb $0x1, 0x1df3(%rsp)
jne 0x1291849
leaq 0xf38(%rsp), %rax
movq %rax, 0x2188(%rsp)
movq 0x2188(%rsp), %rax
movq %rax, 0x3b60(%rsp)
movq 0x3b60(%rsp), %rax
movq %rax, 0x2b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12917ec
movq 0x2b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b5c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b5c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b58(%rsp)
cmpl $0x1, 0x3b58(%rsp)
jne 0x12917ec
movq 0x2b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12917bd
movq 0x2b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12917bb
jmp 0x12917ea
movq 0x2b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d30(%rsp)
cmpq $0x0, 0x3d30(%rsp)
je 0x12917e8
movq 0x3d30(%rsp), %rdi
callq 0x5f480
jmp 0x12917ea
jmp 0x12917ec
movq 0x2b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1291847
movq %rax, %rdi
callq 0x678a0
jmp 0x1291849
leaq 0xf38(%rsp), %rax
movq %rax, 0x2038(%rsp)
movq 0x2038(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2a8(%rsp)
leaq 0xf38(%rsp), %rax
movq %rax, 0x22b0(%rsp)
movq 0x22b0(%rsp), %rax
movq %rax, 0x3910(%rsp)
movq 0x3910(%rsp), %rax
movq %rax, 0x2b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1291934
movq 0x2b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x390c(%rsp) # imm = 0xFFFFFFFF
movl 0x390c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3908(%rsp)
cmpl $0x1, 0x3908(%rsp)
jne 0x1291934
movq 0x2b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1291905
movq 0x2b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1291903
jmp 0x1291932
movq 0x2b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e58(%rsp)
cmpq $0x0, 0x3e58(%rsp)
je 0x1291930
movq 0x3e58(%rsp), %rdi
callq 0x5f480
jmp 0x1291932
jmp 0x1291934
movq 0x2b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129198f
movq %rax, %rdi
callq 0x678a0
movq 0x2a8(%rsp), %rax
movq %rax, 0xf80(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0xfdc(%rsp), %eax
leaq 0xee8(%rsp), %rdx
movq %rdx, 0x23f0(%rsp)
movq %rcx, 0x23e8(%rsp)
movl %eax, 0x23e4(%rsp)
movq 0x23e8(%rsp), %rax
movq %rax, 0x2a0(%rsp)
movb $0x0, 0x23e3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x23e4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xee8(%rsp), %r10
movq %r10, 0x2d50(%rsp)
movl %r9d, 0x2d4c(%rsp)
movl %r8d, 0x2d48(%rsp)
movl %edi, 0x2d44(%rsp)
movq %rsi, 0x2d38(%rsp)
movq %rdx, 0x2d30(%rsp)
movl %ecx, 0x2d2c(%rsp)
movq %rax, 0x2d20(%rsp)
movq 0x2d50(%rsp), %rcx
movq %rcx, 0x298(%rsp)
movq 0x2d38(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2d30(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2d2c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2d20(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2d4c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2d48(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2d44(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3660(%rsp)
movl $0x10, 0x365c(%rsp)
movq 0x3660(%rsp), %rax
movslq 0x365c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x365c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2a0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf10(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1291b5b
movq 0x2a0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xf28(%rsp)
movb $0x1, 0x23e3(%rsp)
testb $0x1, 0x23e3(%rsp)
jne 0x1291c96
leaq 0xee8(%rsp), %rax
movq %rax, 0x23f8(%rsp)
movq 0x23f8(%rsp), %rax
movq %rax, 0x37d0(%rsp)
movq 0x37d0(%rsp), %rax
movq %rax, 0x290(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1291c39
movq 0x290(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x37cc(%rsp) # imm = 0xFFFFFFFF
movl 0x37cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x37c8(%rsp)
cmpl $0x1, 0x37c8(%rsp)
jne 0x1291c39
movq 0x290(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1291c0a
movq 0x290(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1291c08
jmp 0x1291c37
movq 0x290(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ef8(%rsp)
cmpq $0x0, 0x3ef8(%rsp)
je 0x1291c35
movq 0x3ef8(%rsp), %rdi
callq 0x5f480
jmp 0x1291c37
jmp 0x1291c39
movq 0x290(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1291c94
movq %rax, %rdi
callq 0x678a0
jmp 0x1291c96
leaq 0xee8(%rsp), %rax
movq %rax, 0x25a0(%rsp)
movq 0x25a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x280(%rsp)
leaq 0xee8(%rsp), %rax
movq %rax, 0x22b8(%rsp)
movq 0x22b8(%rsp), %rax
movq %rax, 0x3900(%rsp)
movq 0x3900(%rsp), %rax
movq %rax, 0x288(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1291d81
movq 0x288(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x38fc(%rsp) # imm = 0xFFFFFFFF
movl 0x38fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x38f8(%rsp)
cmpl $0x1, 0x38f8(%rsp)
jne 0x1291d81
movq 0x288(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1291d52
movq 0x288(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1291d50
jmp 0x1291d7f
movq 0x288(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e60(%rsp)
cmpq $0x0, 0x3e60(%rsp)
je 0x1291d7d
movq 0x3e60(%rsp), %rdi
callq 0x5f480
jmp 0x1291d7f
jmp 0x1291d81
movq 0x288(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1291ddc
movq %rax, %rdi
callq 0x678a0
movq 0x280(%rsp), %rax
movq %rax, 0xf30(%rsp)
movl $0x0, 0xee4(%rsp)
movl 0xee4(%rsp), %eax
cmpl 0x1c74(%rsp), %eax
jge 0x1291f32
movl $0x0, 0xee0(%rsp)
movl 0xee0(%rsp), %eax
cmpl 0x1c78(%rsp), %eax
jge 0x1291f1a
movq 0xfd0(%rsp), %rax
movl 0xee0(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2688(%rsp)
movq 0x2688(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xed0(%rsp)
movq 0xf80(%rsp), %rax
movq %rax, 0x2680(%rsp)
movq 0x2680(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xec0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0xed0(%rsp), %rsi
leaq 0xec0(%rsp), %rdx
callq 0x12f6b10
movaps %xmm0, 0xeb0(%rsp)
movq 0xf30(%rsp), %rax
movaps 0xeb0(%rsp), %xmm0
movq %rax, 0x2848(%rsp)
movaps %xmm0, 0x2830(%rsp)
movaps 0x2830(%rsp), %xmm0
movq 0x2848(%rsp), %rax
movups %xmm0, (%rax)
movq 0xf80(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xf80(%rsp)
movq 0xf30(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xf30(%rsp)
movl 0xee0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xee0(%rsp)
jmp 0x1291e16
jmp 0x1291f1c
movl 0xee4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xee4(%rsp)
jmp 0x1291df7
jmp 0x1291f34
movl 0xfdc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xfdc(%rsp)
jmp 0x12910f1
movl $0x0, 0x1cc4(%rsp)
jmp 0x1296910
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12e8460
movl %eax, 0x1cc4(%rsp)
jmp 0x1296910
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movl 0x1c8c(%rsp), %ecx
movq 0x1c80(%rsp), %r8
movl 0x1c7c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d08(%rsp)
movq 0x1d08(%rsp), %rcx
movq %rcx, 0x270(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x27f(%rsp)
je 0x129202e
movq 0x270(%rsp), %rax
movq %rax, 0x2a70(%rsp)
movq 0x2a70(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x27f(%rsp)
movb 0x27f(%rsp), %al
testb $0x1, %al
jne 0x129203b
jmp 0x129204b
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1296910
movq 0x1cb0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1292acb
movl $0x0, 0xeac(%rsp)
movl 0xeac(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jge 0x1292abb
movq 0x1cb8(%rsp), %rcx
movl 0xeac(%rsp), %eax
leaq 0xe58(%rsp), %rdx
movq %rdx, 0x1de8(%rsp)
movq %rcx, 0x1de0(%rsp)
movl %eax, 0x1ddc(%rsp)
movq 0x1de0(%rsp), %rax
movq %rax, 0x268(%rsp)
movb $0x0, 0x1ddb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1ddc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xe58(%rsp), %r10
movq %r10, 0x3338(%rsp)
movl %r9d, 0x3334(%rsp)
movl %r8d, 0x3330(%rsp)
movl %edi, 0x332c(%rsp)
movq %rsi, 0x3320(%rsp)
movq %rdx, 0x3318(%rsp)
movl %ecx, 0x3314(%rsp)
movq %rax, 0x3308(%rsp)
movq 0x3338(%rsp), %rcx
movq %rcx, 0x260(%rsp)
movq 0x3320(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3318(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3314(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3308(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3334(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3330(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x332c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x34b0(%rsp)
movl $0x10, 0x34ac(%rsp)
movq 0x34b0(%rsp), %rax
movslq 0x34ac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x34ac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x268(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xe80(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1292238
movq 0x268(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xe98(%rsp)
movb $0x1, 0x1ddb(%rsp)
testb $0x1, 0x1ddb(%rsp)
jne 0x1292373
leaq 0xe58(%rsp), %rax
movq %rax, 0x2190(%rsp)
movq 0x2190(%rsp), %rax
movq %rax, 0x3b50(%rsp)
movq 0x3b50(%rsp), %rax
movq %rax, 0x258(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1292316
movq 0x258(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b4c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b4c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b48(%rsp)
cmpl $0x1, 0x3b48(%rsp)
jne 0x1292316
movq 0x258(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12922e7
movq 0x258(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12922e5
jmp 0x1292314
movq 0x258(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d38(%rsp)
cmpq $0x0, 0x3d38(%rsp)
je 0x1292312
movq 0x3d38(%rsp), %rdi
callq 0x5f480
jmp 0x1292314
jmp 0x1292316
movq 0x258(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1292371
movq %rax, %rdi
callq 0x678a0
jmp 0x1292373
leaq 0xe58(%rsp), %rax
movq %rax, 0x2030(%rsp)
movq 0x2030(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x248(%rsp)
leaq 0xe58(%rsp), %rax
movq %rax, 0x22c0(%rsp)
movq 0x22c0(%rsp), %rax
movq %rax, 0x38f0(%rsp)
movq 0x38f0(%rsp), %rax
movq %rax, 0x250(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129245e
movq 0x250(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x38ec(%rsp) # imm = 0xFFFFFFFF
movl 0x38ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x38e8(%rsp)
cmpl $0x1, 0x38e8(%rsp)
jne 0x129245e
movq 0x250(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129242f
movq 0x250(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129242d
jmp 0x129245c
movq 0x250(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e68(%rsp)
cmpq $0x0, 0x3e68(%rsp)
je 0x129245a
movq 0x3e68(%rsp), %rdi
callq 0x5f480
jmp 0x129245c
jmp 0x129245e
movq 0x250(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12924b9
movq %rax, %rdi
callq 0x678a0
movq 0x248(%rsp), %rax
movq %rax, 0xea0(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0xeac(%rsp), %eax
movq %rcx, 0x2a18(%rsp)
movl %eax, 0x2a14(%rsp)
movq 0x2a18(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2a14(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xe50(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0xeac(%rsp), %eax
leaq 0xe00(%rsp), %rdx
movq %rdx, 0x23d0(%rsp)
movq %rcx, 0x23c8(%rsp)
movl %eax, 0x23c4(%rsp)
movq 0x23c8(%rsp), %rax
movq %rax, 0x240(%rsp)
movb $0x0, 0x23c3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x23c4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xe00(%rsp), %r10
movq %r10, 0x2d88(%rsp)
movl %r9d, 0x2d84(%rsp)
movl %r8d, 0x2d80(%rsp)
movl %edi, 0x2d7c(%rsp)
movq %rsi, 0x2d70(%rsp)
movq %rdx, 0x2d68(%rsp)
movl %ecx, 0x2d64(%rsp)
movq %rax, 0x2d58(%rsp)
movq 0x2d88(%rsp), %rcx
movq %rcx, 0x238(%rsp)
movq 0x2d70(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2d68(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2d64(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2d58(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2d84(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2d80(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2d7c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3650(%rsp)
movl $0x10, 0x364c(%rsp)
movq 0x3650(%rsp), %rax
movslq 0x364c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x364c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x240(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xe28(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12926ce
movq 0x240(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xe40(%rsp)
movb $0x1, 0x23c3(%rsp)
testb $0x1, 0x23c3(%rsp)
jne 0x1292809
leaq 0xe00(%rsp), %rax
movq %rax, 0x23d8(%rsp)
movq 0x23d8(%rsp), %rax
movq %rax, 0x37e0(%rsp)
movq 0x37e0(%rsp), %rax
movq %rax, 0x230(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12927ac
movq 0x230(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x37dc(%rsp) # imm = 0xFFFFFFFF
movl 0x37dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x37d8(%rsp)
cmpl $0x1, 0x37d8(%rsp)
jne 0x12927ac
movq 0x230(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129277d
movq 0x230(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129277b
jmp 0x12927aa
movq 0x230(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ef0(%rsp)
cmpq $0x0, 0x3ef0(%rsp)
je 0x12927a8
movq 0x3ef0(%rsp), %rdi
callq 0x5f480
jmp 0x12927aa
jmp 0x12927ac
movq 0x230(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1292807
movq %rax, %rdi
callq 0x678a0
jmp 0x1292809
leaq 0xe00(%rsp), %rax
movq %rax, 0x2598(%rsp)
movq 0x2598(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x220(%rsp)
leaq 0xe00(%rsp), %rax
movq %rax, 0x22c8(%rsp)
movq 0x22c8(%rsp), %rax
movq %rax, 0x38e0(%rsp)
movq 0x38e0(%rsp), %rax
movq %rax, 0x228(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12928f4
movq 0x228(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x38dc(%rsp) # imm = 0xFFFFFFFF
movl 0x38dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x38d8(%rsp)
cmpl $0x1, 0x38d8(%rsp)
jne 0x12928f4
movq 0x228(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12928c5
movq 0x228(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12928c3
jmp 0x12928f2
movq 0x228(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e70(%rsp)
cmpq $0x0, 0x3e70(%rsp)
je 0x12928f0
movq 0x3e70(%rsp), %rdi
callq 0x5f480
jmp 0x12928f2
jmp 0x12928f4
movq 0x228(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129294f
movq %rax, %rdi
callq 0x678a0
movq 0x220(%rsp), %rax
movq %rax, 0xe48(%rsp)
movl $0x0, 0xdfc(%rsp)
movl 0xdfc(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jge 0x1292aa3
movq 0xe50(%rsp), %rax
movq %rax, 0x2678(%rsp)
movq 0x2678(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xde0(%rsp)
movl $0x0, 0xddc(%rsp)
movl 0xddc(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jge 0x1292a79
movq 0xea0(%rsp), %rax
movq %rax, 0x2670(%rsp)
movq 0x2670(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xdc0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0xdc0(%rsp), %rsi
leaq 0xde0(%rsp), %rdx
callq 0x12f6b10
movaps %xmm0, 0xdb0(%rsp)
movq 0xe48(%rsp), %rax
movaps 0xdb0(%rsp), %xmm0
movq %rax, 0x2828(%rsp)
movaps %xmm0, 0x2810(%rsp)
movaps 0x2810(%rsp), %xmm0
movq 0x2828(%rsp), %rax
movups %xmm0, (%rax)
movq 0xea0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xea0(%rsp)
movq 0xe48(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xe48(%rsp)
movl 0xddc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xddc(%rsp)
jmp 0x12929ac
movq 0xe50(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xe50(%rsp)
movl 0xdfc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdfc(%rsp)
jmp 0x129296a
jmp 0x1292aa5
movl 0xeac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xeac(%rsp)
jmp 0x1292068
movl $0x0, 0x1cc4(%rsp)
jmp 0x1296910
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1293529
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1292b26
cmpl $0x1, 0x1c5c(%rsp)
jne 0x1292b26
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12e93e0
movl %eax, 0x1cc4(%rsp)
jmp 0x1296910
movl $0x0, 0xdac(%rsp)
movl 0xdac(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jge 0x1293519
movq 0x1cb8(%rsp), %rcx
movl 0xdac(%rsp), %eax
leaq 0xd58(%rsp), %rdx
movq %rdx, 0x1dd0(%rsp)
movq %rcx, 0x1dc8(%rsp)
movl %eax, 0x1dc4(%rsp)
movq 0x1dc8(%rsp), %rax
movq %rax, 0x218(%rsp)
movb $0x0, 0x1dc3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1dc4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xd58(%rsp), %r10
movq %r10, 0x3370(%rsp)
movl %r9d, 0x336c(%rsp)
movl %r8d, 0x3368(%rsp)
movl %edi, 0x3364(%rsp)
movq %rsi, 0x3358(%rsp)
movq %rdx, 0x3350(%rsp)
movl %ecx, 0x334c(%rsp)
movq %rax, 0x3340(%rsp)
movq 0x3370(%rsp), %rcx
movq %rcx, 0x210(%rsp)
movq 0x3358(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3350(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x334c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3340(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x336c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3368(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3364(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x34a0(%rsp)
movl $0x10, 0x349c(%rsp)
movq 0x34a0(%rsp), %rax
movslq 0x349c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x349c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x218(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xd80(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1292d01
movq 0x218(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd98(%rsp)
movb $0x1, 0x1dc3(%rsp)
testb $0x1, 0x1dc3(%rsp)
jne 0x1292e3c
leaq 0xd58(%rsp), %rax
movq %rax, 0x2198(%rsp)
movq 0x2198(%rsp), %rax
movq %rax, 0x3b40(%rsp)
movq 0x3b40(%rsp), %rax
movq %rax, 0x208(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1292ddf
movq 0x208(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b3c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b3c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b38(%rsp)
cmpl $0x1, 0x3b38(%rsp)
jne 0x1292ddf
movq 0x208(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1292db0
movq 0x208(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1292dae
jmp 0x1292ddd
movq 0x208(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d40(%rsp)
cmpq $0x0, 0x3d40(%rsp)
je 0x1292ddb
movq 0x3d40(%rsp), %rdi
callq 0x5f480
jmp 0x1292ddd
jmp 0x1292ddf
movq 0x208(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1292e3a
movq %rax, %rdi
callq 0x678a0
jmp 0x1292e3c
leaq 0xd58(%rsp), %rax
movq %rax, 0x2028(%rsp)
movq 0x2028(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1f8(%rsp)
leaq 0xd58(%rsp), %rax
movq %rax, 0x22d0(%rsp)
movq 0x22d0(%rsp), %rax
movq %rax, 0x38d0(%rsp)
movq 0x38d0(%rsp), %rax
movq %rax, 0x200(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1292f27
movq 0x200(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x38cc(%rsp) # imm = 0xFFFFFFFF
movl 0x38cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x38c8(%rsp)
cmpl $0x1, 0x38c8(%rsp)
jne 0x1292f27
movq 0x200(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1292ef8
movq 0x200(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1292ef6
jmp 0x1292f25
movq 0x200(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e78(%rsp)
cmpq $0x0, 0x3e78(%rsp)
je 0x1292f23
movq 0x3e78(%rsp), %rdi
callq 0x5f480
jmp 0x1292f25
jmp 0x1292f27
movq 0x200(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1292f82
movq %rax, %rdi
callq 0x678a0
movq 0x1f8(%rsp), %rax
movq %rax, 0xda0(%rsp)
movq 0x1cb0(%rsp), %rax
movq %rax, 0x2020(%rsp)
movq 0x2020(%rsp), %rax
movq (%rax), %rax
movl 0xdac(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2668(%rsp)
movq 0x2668(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xd40(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0xdac(%rsp), %eax
leaq 0xcf0(%rsp), %rdx
movq %rdx, 0x23b0(%rsp)
movq %rcx, 0x23a8(%rsp)
movl %eax, 0x23a4(%rsp)
movq 0x23a8(%rsp), %rax
movq %rax, 0x1f0(%rsp)
movb $0x0, 0x23a3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x23a4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xcf0(%rsp), %r10
movq %r10, 0x2dc0(%rsp)
movl %r9d, 0x2dbc(%rsp)
movl %r8d, 0x2db8(%rsp)
movl %edi, 0x2db4(%rsp)
movq %rsi, 0x2da8(%rsp)
movq %rdx, 0x2da0(%rsp)
movl %ecx, 0x2d9c(%rsp)
movq %rax, 0x2d90(%rsp)
movq 0x2dc0(%rsp), %rcx
movq %rcx, 0x1e8(%rsp)
movq 0x2da8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2da0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2d9c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2d90(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2dbc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2db8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2db4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3640(%rsp)
movl $0x10, 0x363c(%rsp)
movq 0x3640(%rsp), %rax
movslq 0x363c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x363c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x1f0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xd18(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1293198
movq 0x1f0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd30(%rsp)
movb $0x1, 0x23a3(%rsp)
testb $0x1, 0x23a3(%rsp)
jne 0x12932d3
leaq 0xcf0(%rsp), %rax
movq %rax, 0x23b8(%rsp)
movq 0x23b8(%rsp), %rax
movq %rax, 0x37f0(%rsp)
movq 0x37f0(%rsp), %rax
movq %rax, 0x1e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1293276
movq 0x1e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x37ec(%rsp) # imm = 0xFFFFFFFF
movl 0x37ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x37e8(%rsp)
cmpl $0x1, 0x37e8(%rsp)
jne 0x1293276
movq 0x1e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1293247
movq 0x1e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1293245
jmp 0x1293274
movq 0x1e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ee8(%rsp)
cmpq $0x0, 0x3ee8(%rsp)
je 0x1293272
movq 0x3ee8(%rsp), %rdi
callq 0x5f480
jmp 0x1293274
jmp 0x1293276
movq 0x1e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12932d1
movq %rax, %rdi
callq 0x678a0
jmp 0x12932d3
leaq 0xcf0(%rsp), %rax
movq %rax, 0x2590(%rsp)
movq 0x2590(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1d0(%rsp)
leaq 0xcf0(%rsp), %rax
movq %rax, 0x22d8(%rsp)
movq 0x22d8(%rsp), %rax
movq %rax, 0x38c0(%rsp)
movq 0x38c0(%rsp), %rax
movq %rax, 0x1d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12933be
movq 0x1d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x38bc(%rsp) # imm = 0xFFFFFFFF
movl 0x38bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x38b8(%rsp)
cmpl $0x1, 0x38b8(%rsp)
jne 0x12933be
movq 0x1d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129338f
movq 0x1d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129338d
jmp 0x12933bc
movq 0x1d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e80(%rsp)
cmpq $0x0, 0x3e80(%rsp)
je 0x12933ba
movq 0x3e80(%rsp), %rdi
callq 0x5f480
jmp 0x12933bc
jmp 0x12933be
movq 0x1d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1293419
movq %rax, %rdi
callq 0x678a0
movq 0x1d0(%rsp), %rax
movq %rax, 0xd38(%rsp)
movl $0x0, 0xcec(%rsp)
movl 0xcec(%rsp), %eax
cmpl 0x1c88(%rsp), %eax
jge 0x1293501
movq 0xda0(%rsp), %rax
movq %rax, 0x2660(%rsp)
movq 0x2660(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xcd0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0xcd0(%rsp), %rsi
leaq 0xd40(%rsp), %rdx
callq 0x12f6b10
movaps %xmm0, 0xcc0(%rsp)
movq 0xd38(%rsp), %rax
movaps 0xcc0(%rsp), %xmm0
movq %rax, 0x2808(%rsp)
movaps %xmm0, 0x27f0(%rsp)
movaps 0x27f0(%rsp), %xmm0
movq 0x2808(%rsp), %rax
movups %xmm0, (%rax)
movq 0xda0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xda0(%rsp)
movq 0xd38(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xd38(%rsp)
movl 0xcec(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xcec(%rsp)
jmp 0x1293434
jmp 0x1293503
movl 0xdac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdac(%rsp)
jmp 0x1292b31
movl $0x0, 0x1cc4(%rsp)
jmp 0x1296910
jmp 0x1296903
movq 0x1cb8(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1294fca
movq 0x1cb0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x12940c4
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c70(%rsp), %ecx
movl 0x1c6c(%rsp), %r8d
movq 0x1c60(%rsp), %r9
movl 0x1c5c(%rsp), %r10d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d00(%rsp)
movq 0x1d00(%rsp), %rcx
movq %rcx, 0x1c0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1cf(%rsp)
je 0x1293602
movq 0x1c0(%rsp), %rax
movq %rax, 0x2a78(%rsp)
movq 0x2a78(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1cf(%rsp)
movb 0x1cf(%rsp), %al
testb $0x1, %al
jne 0x129360f
jmp 0x129361f
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1296910
movl $0x0, 0xcbc(%rsp)
movl 0xcbc(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12940b4
movq 0x1cb8(%rsp), %rcx
movl 0xcbc(%rsp), %eax
movq %rcx, 0x29b8(%rsp)
movl %eax, 0x29b4(%rsp)
movq 0x29b8(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x29b4(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xcb0(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0xcbc(%rsp), %eax
leaq 0xc60(%rsp), %rdx
movq %rdx, 0x1db8(%rsp)
movq %rcx, 0x1db0(%rsp)
movl %eax, 0x1dac(%rsp)
movq 0x1db0(%rsp), %rax
movq %rax, 0x1b8(%rsp)
movb $0x0, 0x1dab(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1dac(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xc60(%rsp), %r10
movq %r10, 0x33a8(%rsp)
movl %r9d, 0x33a4(%rsp)
movl %r8d, 0x33a0(%rsp)
movl %edi, 0x339c(%rsp)
movq %rsi, 0x3390(%rsp)
movq %rdx, 0x3388(%rsp)
movl %ecx, 0x3384(%rsp)
movq %rax, 0x3378(%rsp)
movq 0x33a8(%rsp), %rcx
movq %rcx, 0x1b0(%rsp)
movq 0x3390(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3388(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3384(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3378(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x33a4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x33a0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x339c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3490(%rsp)
movl $0x10, 0x348c(%rsp)
movq 0x3490(%rsp), %rax
movslq 0x348c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x348c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x1b8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc88(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1293843
movq 0x1b8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xca0(%rsp)
movb $0x1, 0x1dab(%rsp)
testb $0x1, 0x1dab(%rsp)
jne 0x129397e
leaq 0xc60(%rsp), %rax
movq %rax, 0x21a0(%rsp)
movq 0x21a0(%rsp), %rax
movq %rax, 0x3b30(%rsp)
movq 0x3b30(%rsp), %rax
movq %rax, 0x1a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1293921
movq 0x1a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b2c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b2c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b28(%rsp)
cmpl $0x1, 0x3b28(%rsp)
jne 0x1293921
movq 0x1a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12938f2
movq 0x1a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12938f0
jmp 0x129391f
movq 0x1a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d48(%rsp)
cmpq $0x0, 0x3d48(%rsp)
je 0x129391d
movq 0x3d48(%rsp), %rdi
callq 0x5f480
jmp 0x129391f
jmp 0x1293921
movq 0x1a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129397c
movq %rax, %rdi
callq 0x678a0
jmp 0x129397e
leaq 0xc60(%rsp), %rax
movq %rax, 0x2018(%rsp)
movq 0x2018(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x198(%rsp)
leaq 0xc60(%rsp), %rax
movq %rax, 0x22e0(%rsp)
movq 0x22e0(%rsp), %rax
movq %rax, 0x38b0(%rsp)
movq 0x38b0(%rsp), %rax
movq %rax, 0x1a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1293a69
movq 0x1a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x38ac(%rsp) # imm = 0xFFFFFFFF
movl 0x38ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x38a8(%rsp)
cmpl $0x1, 0x38a8(%rsp)
jne 0x1293a69
movq 0x1a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1293a3a
movq 0x1a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1293a38
jmp 0x1293a67
movq 0x1a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e88(%rsp)
cmpq $0x0, 0x3e88(%rsp)
je 0x1293a65
movq 0x3e88(%rsp), %rdi
callq 0x5f480
jmp 0x1293a67
jmp 0x1293a69
movq 0x1a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1293ac4
movq %rax, %rdi
callq 0x678a0
movq 0x198(%rsp), %rax
movq %rax, 0xca8(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0xcbc(%rsp), %eax
leaq 0xc10(%rsp), %rdx
movq %rdx, 0x2390(%rsp)
movq %rcx, 0x2388(%rsp)
movl %eax, 0x2384(%rsp)
movq 0x2388(%rsp), %rax
movq %rax, 0x190(%rsp)
movb $0x0, 0x2383(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2384(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xc10(%rsp), %r10
movq %r10, 0x2df8(%rsp)
movl %r9d, 0x2df4(%rsp)
movl %r8d, 0x2df0(%rsp)
movl %edi, 0x2dec(%rsp)
movq %rsi, 0x2de0(%rsp)
movq %rdx, 0x2dd8(%rsp)
movl %ecx, 0x2dd4(%rsp)
movq %rax, 0x2dc8(%rsp)
movq 0x2df8(%rsp), %rcx
movq %rcx, 0x188(%rsp)
movq 0x2de0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2dd8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2dd4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2dc8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2df4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2df0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2dec(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3630(%rsp)
movl $0x10, 0x362c(%rsp)
movq 0x3630(%rsp), %rax
movslq 0x362c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x362c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x190(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc38(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1293c90
movq 0x190(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xc50(%rsp)
movb $0x1, 0x2383(%rsp)
testb $0x1, 0x2383(%rsp)
jne 0x1293dcb
leaq 0xc10(%rsp), %rax
movq %rax, 0x2398(%rsp)
movq 0x2398(%rsp), %rax
movq %rax, 0x3800(%rsp)
movq 0x3800(%rsp), %rax
movq %rax, 0x180(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1293d6e
movq 0x180(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x37fc(%rsp) # imm = 0xFFFFFFFF
movl 0x37fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x37f8(%rsp)
cmpl $0x1, 0x37f8(%rsp)
jne 0x1293d6e
movq 0x180(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1293d3f
movq 0x180(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1293d3d
jmp 0x1293d6c
movq 0x180(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ee0(%rsp)
cmpq $0x0, 0x3ee0(%rsp)
je 0x1293d6a
movq 0x3ee0(%rsp), %rdi
callq 0x5f480
jmp 0x1293d6c
jmp 0x1293d6e
movq 0x180(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1293dc9
movq %rax, %rdi
callq 0x678a0
jmp 0x1293dcb
leaq 0xc10(%rsp), %rax
movq %rax, 0x2588(%rsp)
movq 0x2588(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x170(%rsp)
leaq 0xc10(%rsp), %rax
movq %rax, 0x22e8(%rsp)
movq 0x22e8(%rsp), %rax
movq %rax, 0x38a0(%rsp)
movq 0x38a0(%rsp), %rax
movq %rax, 0x178(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1293eb6
movq 0x178(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x389c(%rsp) # imm = 0xFFFFFFFF
movl 0x389c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3898(%rsp)
cmpl $0x1, 0x3898(%rsp)
jne 0x1293eb6
movq 0x178(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1293e87
movq 0x178(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1293e85
jmp 0x1293eb4
movq 0x178(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e90(%rsp)
cmpq $0x0, 0x3e90(%rsp)
je 0x1293eb2
movq 0x3e90(%rsp), %rdi
callq 0x5f480
jmp 0x1293eb4
jmp 0x1293eb6
movq 0x178(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1293f11
movq %rax, %rdi
callq 0x678a0
movq 0x170(%rsp), %rax
movq %rax, 0xc58(%rsp)
movl $0x0, 0xc0c(%rsp)
movl 0xc0c(%rsp), %eax
cmpl 0x1c70(%rsp), %eax
jge 0x129409c
movq 0xcb0(%rsp), %rax
movq %rax, 0x2658(%rsp)
movq 0x2658(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xbf0(%rsp)
movl $0x0, 0xbec(%rsp)
movl 0xbec(%rsp), %eax
cmpl 0x1c74(%rsp), %eax
jge 0x1294072
movl $0x0, 0xbe8(%rsp)
movl 0xbe8(%rsp), %eax
cmpl 0x1c78(%rsp), %eax
jge 0x129405a
movq 0xca8(%rsp), %rax
movq %rax, 0x2650(%rsp)
movq 0x2650(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xbd0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0xbf0(%rsp), %rsi
leaq 0xbd0(%rsp), %rdx
callq 0x12f6b10
movaps %xmm0, 0xbc0(%rsp)
movq 0xc58(%rsp), %rax
movaps 0xbc0(%rsp), %xmm0
movq %rax, 0x27e8(%rsp)
movaps %xmm0, 0x27d0(%rsp)
movaps 0x27d0(%rsp), %xmm0
movq 0x27e8(%rsp), %rax
movups %xmm0, (%rax)
movq 0xca8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xca8(%rsp)
movq 0xc58(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xc58(%rsp)
movl 0xbe8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xbe8(%rsp)
jmp 0x1293f8d
jmp 0x129405c
movl 0xbec(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xbec(%rsp)
jmp 0x1293f6e
movq 0xcb0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xcb0(%rsp)
movl 0xc0c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xc0c(%rsp)
jmp 0x1293f2c
jmp 0x129409e
movl 0xcbc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xcbc(%rsp)
jmp 0x129362a
movl $0x0, 0x1cc4(%rsp)
jmp 0x1296910
movq 0x1cb0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1294c04
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c6c(%rsp), %ecx
movq 0x1c60(%rsp), %r8
movl 0x1c5c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1cf8(%rsp)
movq 0x1cf8(%rsp), %rcx
movq %rcx, 0x160(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x16f(%rsp)
je 0x1294179
movq 0x160(%rsp), %rax
movq %rax, 0x2a80(%rsp)
movq 0x2a80(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x16f(%rsp)
movb 0x16f(%rsp), %al
testb $0x1, %al
jne 0x1294186
jmp 0x1294196
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1296910
movl $0x0, 0xbbc(%rsp)
movl 0xbbc(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x1294bf4
movq 0x1cb8(%rsp), %rcx
movl 0xbbc(%rsp), %eax
movq %rcx, 0x2a08(%rsp)
movl %eax, 0x2a04(%rsp)
movq 0x2a08(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2a04(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xbb0(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0xbbc(%rsp), %eax
leaq 0xb60(%rsp), %rdx
movq %rdx, 0x1da0(%rsp)
movq %rcx, 0x1d98(%rsp)
movl %eax, 0x1d94(%rsp)
movq 0x1d98(%rsp), %rax
movq %rax, 0x158(%rsp)
movb $0x0, 0x1d93(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1d94(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xb60(%rsp), %r10
movq %r10, 0x33e0(%rsp)
movl %r9d, 0x33dc(%rsp)
movl %r8d, 0x33d8(%rsp)
movl %edi, 0x33d4(%rsp)
movq %rsi, 0x33c8(%rsp)
movq %rdx, 0x33c0(%rsp)
movl %ecx, 0x33bc(%rsp)
movq %rax, 0x33b0(%rsp)
movq 0x33e0(%rsp), %rcx
movq %rcx, 0x150(%rsp)
movq 0x33c8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x33c0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x33bc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x33b0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x33dc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x33d8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x33d4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3480(%rsp)
movl $0x10, 0x347c(%rsp)
movq 0x3480(%rsp), %rax
movslq 0x347c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x347c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x158(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xb88(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12943ba
movq 0x158(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xba0(%rsp)
movb $0x1, 0x1d93(%rsp)
testb $0x1, 0x1d93(%rsp)
jne 0x12944f5
leaq 0xb60(%rsp), %rax
movq %rax, 0x21a8(%rsp)
movq 0x21a8(%rsp), %rax
movq %rax, 0x3b20(%rsp)
movq 0x3b20(%rsp), %rax
movq %rax, 0x148(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1294498
movq 0x148(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b1c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b1c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b18(%rsp)
cmpl $0x1, 0x3b18(%rsp)
jne 0x1294498
movq 0x148(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1294469
movq 0x148(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1294467
jmp 0x1294496
movq 0x148(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d50(%rsp)
cmpq $0x0, 0x3d50(%rsp)
je 0x1294494
movq 0x3d50(%rsp), %rdi
callq 0x5f480
jmp 0x1294496
jmp 0x1294498
movq 0x148(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12944f3
movq %rax, %rdi
callq 0x678a0
jmp 0x12944f5
leaq 0xb60(%rsp), %rax
movq %rax, 0x2010(%rsp)
movq 0x2010(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x138(%rsp)
leaq 0xb60(%rsp), %rax
movq %rax, 0x22f0(%rsp)
movq 0x22f0(%rsp), %rax
movq %rax, 0x3890(%rsp)
movq 0x3890(%rsp), %rax
movq %rax, 0x140(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12945e0
movq 0x140(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x388c(%rsp) # imm = 0xFFFFFFFF
movl 0x388c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3888(%rsp)
cmpl $0x1, 0x3888(%rsp)
jne 0x12945e0
movq 0x140(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12945b1
movq 0x140(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12945af
jmp 0x12945de
movq 0x140(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e98(%rsp)
cmpq $0x0, 0x3e98(%rsp)
je 0x12945dc
movq 0x3e98(%rsp), %rdi
callq 0x5f480
jmp 0x12945de
jmp 0x12945e0
movq 0x140(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129463b
movq %rax, %rdi
callq 0x678a0
movq 0x138(%rsp), %rax
movq %rax, 0xba8(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0xbbc(%rsp), %eax
leaq 0xb10(%rsp), %rdx
movq %rdx, 0x2370(%rsp)
movq %rcx, 0x2368(%rsp)
movl %eax, 0x2364(%rsp)
movq 0x2368(%rsp), %rax
movq %rax, 0x130(%rsp)
movb $0x0, 0x2363(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2364(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xb10(%rsp), %r10
movq %r10, 0x2e30(%rsp)
movl %r9d, 0x2e2c(%rsp)
movl %r8d, 0x2e28(%rsp)
movl %edi, 0x2e24(%rsp)
movq %rsi, 0x2e18(%rsp)
movq %rdx, 0x2e10(%rsp)
movl %ecx, 0x2e0c(%rsp)
movq %rax, 0x2e00(%rsp)
movq 0x2e30(%rsp), %rcx
movq %rcx, 0x128(%rsp)
movq 0x2e18(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2e10(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2e0c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2e00(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2e2c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2e28(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2e24(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3620(%rsp)
movl $0x10, 0x361c(%rsp)
movq 0x3620(%rsp), %rax
movslq 0x361c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x361c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x130(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xb38(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1294807
movq 0x130(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xb50(%rsp)
movb $0x1, 0x2363(%rsp)
testb $0x1, 0x2363(%rsp)
jne 0x1294942
leaq 0xb10(%rsp), %rax
movq %rax, 0x2378(%rsp)
movq 0x2378(%rsp), %rax
movq %rax, 0x3810(%rsp)
movq 0x3810(%rsp), %rax
movq %rax, 0x120(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12948e5
movq 0x120(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x380c(%rsp) # imm = 0xFFFFFFFF
movl 0x380c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3808(%rsp)
cmpl $0x1, 0x3808(%rsp)
jne 0x12948e5
movq 0x120(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12948b6
movq 0x120(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12948b4
jmp 0x12948e3
movq 0x120(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ed8(%rsp)
cmpq $0x0, 0x3ed8(%rsp)
je 0x12948e1
movq 0x3ed8(%rsp), %rdi
callq 0x5f480
jmp 0x12948e3
jmp 0x12948e5
movq 0x120(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1294940
movq %rax, %rdi
callq 0x678a0
jmp 0x1294942
leaq 0xb10(%rsp), %rax
movq %rax, 0x2580(%rsp)
movq 0x2580(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x110(%rsp)
leaq 0xb10(%rsp), %rax
movq %rax, 0x22f8(%rsp)
movq 0x22f8(%rsp), %rax
movq %rax, 0x3880(%rsp)
movq 0x3880(%rsp), %rax
movq %rax, 0x118(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1294a2d
movq 0x118(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x387c(%rsp) # imm = 0xFFFFFFFF
movl 0x387c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3878(%rsp)
cmpl $0x1, 0x3878(%rsp)
jne 0x1294a2d
movq 0x118(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12949fe
movq 0x118(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12949fc
jmp 0x1294a2b
movq 0x118(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ea0(%rsp)
cmpq $0x0, 0x3ea0(%rsp)
je 0x1294a29
movq 0x3ea0(%rsp), %rdi
callq 0x5f480
jmp 0x1294a2b
jmp 0x1294a2d
movq 0x118(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1294a88
movq %rax, %rdi
callq 0x678a0
movq 0x110(%rsp), %rax
movq %rax, 0xb58(%rsp)
movl $0x0, 0xb0c(%rsp)
movl 0xb0c(%rsp), %eax
cmpl 0x1c74(%rsp), %eax
jge 0x1294bdc
movq 0xbb0(%rsp), %rax
movq %rax, 0x2648(%rsp)
movq 0x2648(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xaf0(%rsp)
movl $0x0, 0xaec(%rsp)
movl 0xaec(%rsp), %eax
cmpl 0x1c78(%rsp), %eax
jge 0x1294bb2
movq 0xba8(%rsp), %rax
movq %rax, 0x2640(%rsp)
movq 0x2640(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xad0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0xaf0(%rsp), %rsi
leaq 0xad0(%rsp), %rdx
callq 0x12f6b10
movaps %xmm0, 0xac0(%rsp)
movq 0xb58(%rsp), %rax
movaps 0xac0(%rsp), %xmm0
movq %rax, 0x27c8(%rsp)
movaps %xmm0, 0x27b0(%rsp)
movaps 0x27b0(%rsp), %xmm0
movq 0x27c8(%rsp), %rax
movups %xmm0, (%rax)
movq 0xba8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xba8(%rsp)
movq 0xb58(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xb58(%rsp)
movl 0xaec(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xaec(%rsp)
jmp 0x1294ae5
movq 0xbb0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xbb0(%rsp)
movl 0xb0c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xb0c(%rsp)
jmp 0x1294aa3
jmp 0x1294bde
movl 0xbbc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xbbc(%rsp)
jmp 0x12941a1
movl $0x0, 0x1cc4(%rsp)
jmp 0x1296910
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movq 0x1c80(%rsp), %rcx
movl 0x1c7c(%rsp), %r8d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1cf0(%rsp)
movq 0x1cf0(%rsp), %rcx
movq %rcx, 0x100(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x10f(%rsp)
je 0x1294c9c
movq 0x100(%rsp), %rax
movq %rax, 0x2a88(%rsp)
movq 0x2a88(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x10f(%rsp)
movb 0x10f(%rsp), %al
testb $0x1, %al
jne 0x1294ca9
jmp 0x1294cb9
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1296910
movq 0x1cb0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1294cf8
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12e8460
movl %eax, 0x1cc4(%rsp)
jmp 0x1296910
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1294fc5
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movq 0x1c80(%rsp), %rcx
movl 0x1c7c(%rsp), %r8d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1ce8(%rsp)
movq 0x1ce8(%rsp), %rcx
movq %rcx, 0xf0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xff(%rsp)
je 0x1294da2
movq 0xf0(%rsp), %rax
movq %rax, 0x2a90(%rsp)
movq 0x2a90(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xff(%rsp)
movb 0xff(%rsp), %al
testb $0x1, %al
jne 0x1294daf
jmp 0x1294dbf
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1296910
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1294e08
cmpl $0x1, 0x1c5c(%rsp)
jne 0x1294e08
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12e93e0
movl %eax, 0x1cc4(%rsp)
jmp 0x1296910
movq 0x1cb8(%rsp), %rax
movq %rax, 0x2008(%rsp)
movq 0x2008(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xab8(%rsp)
movq 0x1cb0(%rsp), %rax
movq %rax, 0x2000(%rsp)
movq 0x2000(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xab0(%rsp)
movq 0x1ca8(%rsp), %rax
movq %rax, 0x2578(%rsp)
movq 0x2578(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xaa8(%rsp)
movl $0x0, 0xaa4(%rsp)
movl 0xaa4(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jge 0x1294fb5
movq 0xab0(%rsp), %rax
movq %rax, 0x2638(%rsp)
movq 0x2638(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xa90(%rsp)
movl $0x0, 0xa8c(%rsp)
movl 0xa8c(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jge 0x1294f8b
movq 0xab8(%rsp), %rax
movq %rax, 0x2630(%rsp)
movq 0x2630(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xa70(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0xa70(%rsp), %rsi
leaq 0xa90(%rsp), %rdx
callq 0x12f6b10
movaps %xmm0, 0xa60(%rsp)
movq 0xaa8(%rsp), %rax
movaps 0xa60(%rsp), %xmm0
movq %rax, 0x27a8(%rsp)
movaps %xmm0, 0x2790(%rsp)
movaps 0x2790(%rsp), %xmm0
movq 0x27a8(%rsp), %rax
movups %xmm0, (%rax)
movq 0xab8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xab8(%rsp)
movq 0xaa8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xaa8(%rsp)
movl 0xa8c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xa8c(%rsp)
jmp 0x1294ebe
movq 0xab0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xab0(%rsp)
movl 0xaa4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xaa4(%rsp)
jmp 0x1294e7c
movl $0x0, 0x1cc4(%rsp)
jmp 0x1296910
jmp 0x1296901
movq 0x1cb8(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x12968ff
movq 0x1cb8(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1295025
cmpl $0x1, 0x1c7c(%rsp)
jne 0x1295025
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12e9f50
movl %eax, 0x1cc4(%rsp)
jmp 0x1296910
movq 0x1cb0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1295b07
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c70(%rsp), %ecx
movl 0x1c6c(%rsp), %r8d
movq 0x1c60(%rsp), %r9
movl 0x1c5c(%rsp), %r10d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1ce0(%rsp)
movq 0x1ce0(%rsp), %rcx
movq %rcx, 0xe0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xef(%rsp)
je 0x12950e7
movq 0xe0(%rsp), %rax
movq %rax, 0x2a98(%rsp)
movq 0x2a98(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xef(%rsp)
movb 0xef(%rsp), %al
testb $0x1, %al
jne 0x12950f4
jmp 0x1295104
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1296910
movl $0x0, 0xa5c(%rsp)
movl 0xa5c(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x1295af7
movq 0x1cb8(%rsp), %rax
movq %rax, 0x1ff8(%rsp)
movq 0x1ff8(%rsp), %rax
movq (%rax), %rax
movl 0xa5c(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2628(%rsp)
movq 0x2628(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xa40(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0xa5c(%rsp), %eax
leaq 0x9f0(%rsp), %rdx
movq %rdx, 0x1d88(%rsp)
movq %rcx, 0x1d80(%rsp)
movl %eax, 0x1d7c(%rsp)
movq 0x1d80(%rsp), %rax
movq %rax, 0xd8(%rsp)
movb $0x0, 0x1d7b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1d7c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x9f0(%rsp), %r10
movq %r10, 0x3418(%rsp)
movl %r9d, 0x3414(%rsp)
movl %r8d, 0x3410(%rsp)
movl %edi, 0x340c(%rsp)
movq %rsi, 0x3400(%rsp)
movq %rdx, 0x33f8(%rsp)
movl %ecx, 0x33f4(%rsp)
movq %rax, 0x33e8(%rsp)
movq 0x3418(%rsp), %rcx
movq %rcx, 0xd0(%rsp)
movq 0x3400(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x33f8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x33f4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x33e8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3414(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3410(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x340c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3470(%rsp)
movl $0x10, 0x346c(%rsp)
movq 0x3470(%rsp), %rax
movslq 0x346c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x346c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xd8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xa18(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1295329
movq 0xd8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xa30(%rsp)
movb $0x1, 0x1d7b(%rsp)
testb $0x1, 0x1d7b(%rsp)
jne 0x1295464
leaq 0x9f0(%rsp), %rax
movq %rax, 0x21b0(%rsp)
movq 0x21b0(%rsp), %rax
movq %rax, 0x3b10(%rsp)
movq 0x3b10(%rsp), %rax
movq %rax, 0xc8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1295407
movq 0xc8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b0c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b0c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b08(%rsp)
cmpl $0x1, 0x3b08(%rsp)
jne 0x1295407
movq 0xc8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12953d8
movq 0xc8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12953d6
jmp 0x1295405
movq 0xc8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d58(%rsp)
cmpq $0x0, 0x3d58(%rsp)
je 0x1295403
movq 0x3d58(%rsp), %rdi
callq 0x5f480
jmp 0x1295405
jmp 0x1295407
movq 0xc8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1295462
movq %rax, %rdi
callq 0x678a0
jmp 0x1295464
leaq 0x9f0(%rsp), %rax
movq %rax, 0x1ff0(%rsp)
movq 0x1ff0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xb8(%rsp)
leaq 0x9f0(%rsp), %rax
movq %rax, 0x2300(%rsp)
movq 0x2300(%rsp), %rax
movq %rax, 0x3870(%rsp)
movq 0x3870(%rsp), %rax
movq %rax, 0xc0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129554f
movq 0xc0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x386c(%rsp) # imm = 0xFFFFFFFF
movl 0x386c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3868(%rsp)
cmpl $0x1, 0x3868(%rsp)
jne 0x129554f
movq 0xc0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1295520
movq 0xc0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129551e
jmp 0x129554d
movq 0xc0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ea8(%rsp)
cmpq $0x0, 0x3ea8(%rsp)
je 0x129554b
movq 0x3ea8(%rsp), %rdi
callq 0x5f480
jmp 0x129554d
jmp 0x129554f
movq 0xc0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12955aa
movq %rax, %rdi
callq 0x678a0
movq 0xb8(%rsp), %rax
movq %rax, 0xa38(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0xa5c(%rsp), %eax
leaq 0x9a0(%rsp), %rdx
movq %rdx, 0x2350(%rsp)
movq %rcx, 0x2348(%rsp)
movl %eax, 0x2344(%rsp)
movq 0x2348(%rsp), %rax
movq %rax, 0xb0(%rsp)
movb $0x0, 0x2343(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2344(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x9a0(%rsp), %r10
movq %r10, 0x2e68(%rsp)
movl %r9d, 0x2e64(%rsp)
movl %r8d, 0x2e60(%rsp)
movl %edi, 0x2e5c(%rsp)
movq %rsi, 0x2e50(%rsp)
movq %rdx, 0x2e48(%rsp)
movl %ecx, 0x2e44(%rsp)
movq %rax, 0x2e38(%rsp)
movq 0x2e68(%rsp), %rcx
movq %rcx, 0xa8(%rsp)
movq 0x2e50(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2e48(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2e44(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2e38(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2e64(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2e60(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2e5c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3610(%rsp)
movl $0x10, 0x360c(%rsp)
movq 0x3610(%rsp), %rax
movslq 0x360c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x360c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xb0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x9c8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1295776
movq 0xb0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x9e0(%rsp)
movb $0x1, 0x2343(%rsp)
testb $0x1, 0x2343(%rsp)
jne 0x12958b1
leaq 0x9a0(%rsp), %rax
movq %rax, 0x2358(%rsp)
movq 0x2358(%rsp), %rax
movq %rax, 0x3820(%rsp)
movq 0x3820(%rsp), %rax
movq %rax, 0xa0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1295854
movq 0xa0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x381c(%rsp) # imm = 0xFFFFFFFF
movl 0x381c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3818(%rsp)
cmpl $0x1, 0x3818(%rsp)
jne 0x1295854
movq 0xa0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1295825
movq 0xa0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1295823
jmp 0x1295852
movq 0xa0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ed0(%rsp)
cmpq $0x0, 0x3ed0(%rsp)
je 0x1295850
movq 0x3ed0(%rsp), %rdi
callq 0x5f480
jmp 0x1295852
jmp 0x1295854
movq 0xa0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12958af
movq %rax, %rdi
callq 0x678a0
jmp 0x12958b1
leaq 0x9a0(%rsp), %rax
movq %rax, 0x2570(%rsp)
movq 0x2570(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x90(%rsp)
leaq 0x9a0(%rsp), %rax
movq %rax, 0x2308(%rsp)
movq 0x2308(%rsp), %rax
movq %rax, 0x3860(%rsp)
movq 0x3860(%rsp), %rax
movq %rax, 0x98(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129599c
movq 0x98(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x385c(%rsp) # imm = 0xFFFFFFFF
movl 0x385c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3858(%rsp)
cmpl $0x1, 0x3858(%rsp)
jne 0x129599c
movq 0x98(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129596d
movq 0x98(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129596b
jmp 0x129599a
movq 0x98(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3eb0(%rsp)
cmpq $0x0, 0x3eb0(%rsp)
je 0x1295998
movq 0x3eb0(%rsp), %rdi
callq 0x5f480
jmp 0x129599a
jmp 0x129599c
movq 0x98(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12959f7
movq %rax, %rdi
callq 0x678a0
movq 0x90(%rsp), %rax
movq %rax, 0x9e8(%rsp)
movl $0x0, 0x99c(%rsp)
movl 0x99c(%rsp), %eax
cmpl 0x1c68(%rsp), %eax
jge 0x1295adf
movq 0xa38(%rsp), %rax
movq %rax, 0x2620(%rsp)
movq 0x2620(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x980(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0xa40(%rsp), %rsi
leaq 0x980(%rsp), %rdx
callq 0x12f6b10
movaps %xmm0, 0x970(%rsp)
movq 0x9e8(%rsp), %rax
movaps 0x970(%rsp), %xmm0
movq %rax, 0x2788(%rsp)
movaps %xmm0, 0x2770(%rsp)
movaps 0x2770(%rsp), %xmm0
movq 0x2788(%rsp), %rax
movups %xmm0, (%rax)
movq 0xa38(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xa38(%rsp)
movq 0x9e8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x9e8(%rsp)
movl 0x99c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x99c(%rsp)
jmp 0x1295a12
jmp 0x1295ae1
movl 0xa5c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xa5c(%rsp)
jmp 0x129510f
movl $0x0, 0x1cc4(%rsp)
jmp 0x1296910
movq 0x1cb0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1296570
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c6c(%rsp), %ecx
movq 0x1c60(%rsp), %r8
movl 0x1c5c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1cd8(%rsp)
movq 0x1cd8(%rsp), %rcx
movq %rcx, 0x80(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x8f(%rsp)
je 0x1295bbc
movq 0x80(%rsp), %rax
movq %rax, 0x2aa0(%rsp)
movq 0x2aa0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x8f(%rsp)
movb 0x8f(%rsp), %al
testb $0x1, %al
jne 0x1295bc9
jmp 0x1295bd9
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1296910
movl $0x0, 0x96c(%rsp)
movl 0x96c(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x1296560
movq 0x1cb8(%rsp), %rax
movq %rax, 0x1fe8(%rsp)
movq 0x1fe8(%rsp), %rax
movq (%rax), %rax
movl 0x96c(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2618(%rsp)
movq 0x2618(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x950(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x96c(%rsp), %eax
leaq 0x900(%rsp), %rdx
movq %rdx, 0x1d70(%rsp)
movq %rcx, 0x1d68(%rsp)
movl %eax, 0x1d64(%rsp)
movq 0x1d68(%rsp), %rax
movq %rax, 0x78(%rsp)
movb $0x0, 0x1d63(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1d64(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x900(%rsp), %r10
movq %r10, 0x3450(%rsp)
movl %r9d, 0x344c(%rsp)
movl %r8d, 0x3448(%rsp)
movl %edi, 0x3444(%rsp)
movq %rsi, 0x3438(%rsp)
movq %rdx, 0x3430(%rsp)
movl %ecx, 0x342c(%rsp)
movq %rax, 0x3420(%rsp)
movq 0x3450(%rsp), %rcx
movq %rcx, 0x70(%rsp)
movq 0x3438(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3430(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x342c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3420(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x344c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3448(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3444(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3460(%rsp)
movl $0x10, 0x345c(%rsp)
movq 0x3460(%rsp), %rax
movslq 0x345c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x345c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x78(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x928(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1295df2
movq 0x78(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x940(%rsp)
movb $0x1, 0x1d63(%rsp)
testb $0x1, 0x1d63(%rsp)
jne 0x1295f1b
leaq 0x900(%rsp), %rax
movq %rax, 0x21b8(%rsp)
movq 0x21b8(%rsp), %rax
movq %rax, 0x3b00(%rsp)
movq 0x3b00(%rsp), %rax
movq %rax, 0x68(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1295ec1
movq 0x68(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3afc(%rsp) # imm = 0xFFFFFFFF
movl 0x3afc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3af8(%rsp)
cmpl $0x1, 0x3af8(%rsp)
jne 0x1295ec1
movq 0x68(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1295e95
movq 0x68(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1295e93
jmp 0x1295ebf
movq 0x68(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d60(%rsp)
cmpq $0x0, 0x3d60(%rsp)
je 0x1295ebd
movq 0x3d60(%rsp), %rdi
callq 0x5f480
jmp 0x1295ebf
jmp 0x1295ec1
movq 0x68(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1295f19
movq %rax, %rdi
callq 0x678a0
jmp 0x1295f1b
leaq 0x900(%rsp), %rax
movq %rax, 0x1fe0(%rsp)
movq 0x1fe0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x58(%rsp)
leaq 0x900(%rsp), %rax
movq %rax, 0x2310(%rsp)
movq 0x2310(%rsp), %rax
movq %rax, 0x3850(%rsp)
movq 0x3850(%rsp), %rax
movq %rax, 0x60(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1295ff4
movq 0x60(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x384c(%rsp) # imm = 0xFFFFFFFF
movl 0x384c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3848(%rsp)
cmpl $0x1, 0x3848(%rsp)
jne 0x1295ff4
movq 0x60(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1295fc8
movq 0x60(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1295fc6
jmp 0x1295ff2
movq 0x60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3eb8(%rsp)
cmpq $0x0, 0x3eb8(%rsp)
je 0x1295ff0
movq 0x3eb8(%rsp), %rdi
callq 0x5f480
jmp 0x1295ff2
jmp 0x1295ff4
movq 0x60(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129604c
movq %rax, %rdi
callq 0x678a0
movq 0x58(%rsp), %rax
movq %rax, 0x948(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x96c(%rsp), %eax
leaq 0x8b0(%rsp), %rdx
movq %rdx, 0x2330(%rsp)
movq %rcx, 0x2328(%rsp)
movl %eax, 0x2324(%rsp)
movq 0x2328(%rsp), %rax
movq %rax, 0x50(%rsp)
movb $0x0, 0x2323(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2324(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x8b0(%rsp), %r10
movq %r10, 0x2ea0(%rsp)
movl %r9d, 0x2e9c(%rsp)
movl %r8d, 0x2e98(%rsp)
movl %edi, 0x2e94(%rsp)
movq %rsi, 0x2e88(%rsp)
movq %rdx, 0x2e80(%rsp)
movl %ecx, 0x2e7c(%rsp)
movq %rax, 0x2e70(%rsp)
movq 0x2ea0(%rsp), %rcx
movq %rcx, 0x48(%rsp)
movq 0x2e88(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2e80(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2e7c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2e70(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2e9c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2e98(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2e94(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3600(%rsp)
movl $0x10, 0x35fc(%rsp)
movq 0x3600(%rsp), %rax
movslq 0x35fc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x35fc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x50(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x8d8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1296209
movq 0x50(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x8f0(%rsp)
movb $0x1, 0x2323(%rsp)
testb $0x1, 0x2323(%rsp)
jne 0x1296332
leaq 0x8b0(%rsp), %rax
movq %rax, 0x2338(%rsp)
movq 0x2338(%rsp), %rax
movq %rax, 0x3830(%rsp)
movq 0x3830(%rsp), %rax
movq %rax, 0x40(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12962d8
movq 0x40(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x382c(%rsp) # imm = 0xFFFFFFFF
movl 0x382c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3828(%rsp)
cmpl $0x1, 0x3828(%rsp)
jne 0x12962d8
movq 0x40(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12962ac
movq 0x40(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12962aa
jmp 0x12962d6
movq 0x40(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ec8(%rsp)
cmpq $0x0, 0x3ec8(%rsp)
je 0x12962d4
movq 0x3ec8(%rsp), %rdi
callq 0x5f480
jmp 0x12962d6
jmp 0x12962d8
movq 0x40(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1296330
movq %rax, %rdi
callq 0x678a0
jmp 0x1296332
leaq 0x8b0(%rsp), %rax
movq %rax, 0x2568(%rsp)
movq 0x2568(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x30(%rsp)
leaq 0x8b0(%rsp), %rax
movq %rax, 0x2318(%rsp)
movq 0x2318(%rsp), %rax
movq %rax, 0x3840(%rsp)
movq 0x3840(%rsp), %rax
movq %rax, 0x38(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129640b
movq 0x38(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x383c(%rsp) # imm = 0xFFFFFFFF
movl 0x383c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3838(%rsp)
cmpl $0x1, 0x3838(%rsp)
jne 0x129640b
movq 0x38(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12963df
movq 0x38(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12963dd
jmp 0x1296409
movq 0x38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ec0(%rsp)
cmpq $0x0, 0x3ec0(%rsp)
je 0x1296407
movq 0x3ec0(%rsp), %rdi
callq 0x5f480
jmp 0x1296409
jmp 0x129640b
movq 0x38(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1296463
movq %rax, %rdi
callq 0x678a0
movq 0x30(%rsp), %rax
movq %rax, 0x8f8(%rsp)
movl $0x0, 0x8ac(%rsp)
movl 0x8ac(%rsp), %eax
cmpl 0x1c68(%rsp), %eax
jge 0x1296548
movq 0x948(%rsp), %rax
movq %rax, 0x2610(%rsp)
movq 0x2610(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x890(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x950(%rsp), %rsi
leaq 0x890(%rsp), %rdx
callq 0x12f6b10
movaps %xmm0, 0x880(%rsp)
movq 0x8f8(%rsp), %rax
movaps 0x880(%rsp), %xmm0
movq %rax, 0x2768(%rsp)
movaps %xmm0, 0x2750(%rsp)
movaps 0x2750(%rsp), %xmm0
movq 0x2768(%rsp), %rax
movups %xmm0, (%rax)
movq 0x948(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x948(%rsp)
movq 0x8f8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x8f8(%rsp)
movl 0x8ac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x8ac(%rsp)
jmp 0x129647b
jmp 0x129654a
movl 0x96c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x96c(%rsp)
jmp 0x1295be4
movl $0x0, 0x1cc4(%rsp)
jmp 0x1296910
movq 0x1cb0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x12967e5
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movq 0x1c60(%rsp), %rcx
movl 0x1c5c(%rsp), %r8d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1cd0(%rsp)
movq 0x1cd0(%rsp), %rcx
movq %rcx, 0x20(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x2f(%rsp)
je 0x129660e
movq 0x20(%rsp), %rax
movq %rax, 0x2aa8(%rsp)
movq 0x2aa8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x2f(%rsp)
movb 0x2f(%rsp), %al
testb $0x1, %al
jne 0x1296618
jmp 0x1296628
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1296910
movq 0x1cb8(%rsp), %rax
movq %rax, 0x1fd8(%rsp)
movq 0x1fd8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x878(%rsp)
movq 0x1cb0(%rsp), %rax
movq %rax, 0x1fd0(%rsp)
movq 0x1fd0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x870(%rsp)
movq 0x1ca8(%rsp), %rax
movq %rax, 0x2560(%rsp)
movq 0x2560(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x868(%rsp)
movl $0x0, 0x864(%rsp)
movl 0x864(%rsp), %eax
cmpl 0x1c74(%rsp), %eax
jge 0x12967d5
movq 0x878(%rsp), %rax
movq %rax, 0x2608(%rsp)
movq 0x2608(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x850(%rsp)
movl $0x0, 0x84c(%rsp)
movl 0x84c(%rsp), %eax
cmpl 0x1c78(%rsp), %eax
jge 0x12967ab
movq 0x870(%rsp), %rax
movq %rax, 0x2600(%rsp)
movq 0x2600(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x830(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x850(%rsp), %rsi
leaq 0x830(%rsp), %rdx
callq 0x12f6b10
movaps %xmm0, 0x820(%rsp)
movq 0x868(%rsp), %rax
movaps 0x820(%rsp), %xmm0
movq %rax, 0x2748(%rsp)
movaps %xmm0, 0x2730(%rsp)
movaps 0x2730(%rsp), %xmm0
movq 0x2748(%rsp), %rax
movups %xmm0, (%rax)
movq 0x870(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x870(%rsp)
movq 0x868(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x868(%rsp)
movl 0x84c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x84c(%rsp)
jmp 0x12966de
movq 0x878(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x878(%rsp)
movl 0x864(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x864(%rsp)
jmp 0x129669c
movl $0x0, 0x1cc4(%rsp)
jmp 0x1296910
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x12968fd
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movq 0x1c80(%rsp), %rdx
movl 0x1c7c(%rsp), %ecx
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6be00
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1cc8(%rsp)
movq 0x1cc8(%rsp), %rcx
movq %rcx, 0x10(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1f(%rsp)
je 0x129687b
movq 0x10(%rsp), %rax
movq %rax, 0x2ab0(%rsp)
movq 0x2ab0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1f(%rsp)
movb 0x1f(%rsp), %al
testb $0x1, %al
jne 0x1296885
jmp 0x1296892
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1296910
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x12968d8
cmpl $0x1, 0x1c5c(%rsp)
jne 0x12968d8
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12e93e0
movl %eax, 0x1cc4(%rsp)
jmp 0x1296910
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12e8460
jmp 0x12968ff
jmp 0x1296901
jmp 0x1296903
jmp 0x1296905
movl $0x0, 0x1cc4(%rsp)
movl 0x1cc4(%rsp), %eax
addq $0x3f58, %rsp # imm = 0x3F58
retq
nop
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,831
|
int ncnn::binary_op_pack4<ncnn::BinaryOp_x86_functor::binary_op_mul>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op_pack4(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int size = w * h * d;
size_t elemsize = a.elemsize;
int elempack = a.elempack;
int w1 = b.w;
int h1 = b.h;
int d1 = b.d;
int channels1 = b.c;
int size1 = w1 * h1 * d1;
size_t elemsize1 = b.elemsize;
int elempack1 = b.elempack;
if (a.dims == 4)
{
if (b.dims == 4)
{
// type 29
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
c.create(w, h, d, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 3)
{
// type 28
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
for (int y = 0; y < h; y++)
{
__m128 _b0 = _mm_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
ptr1 += 4;
}
}
}
return 0;
}
if (b.dims == 2)
{
// type 27
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
__m128 _b0 = _mm_loadu_ps(ptr1);
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
}
ptr1 += 4;
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1 && elempack1 == 1)
{
// type 25
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 26
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
__m128 _b0 = _mm_loadu_ps((const float*)b + q * 4);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
}
return 0;
}
}
else if (a.dims == 3)
{
if (b.dims == 4)
{
// type 23
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
for (int y = 0; y < h1; y++)
{
__m128 _a0 = _mm_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m128 _p = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
ptr += 4;
}
}
}
return 0;
}
if (b.dims == 3)
{
if (w1 == 1 && h1 == 1 && channels1 == channels)
{
// special type 1
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
float* outptr = c.channel(q);
const float* b0 = b.channel(q);
__m128 _b0 = _mm_loadu_ps(b0);
for (int i = 0; i < size; i++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
}
return 0;
}
if (w1 == w && h1 == h && channels1 == 1 && elempack1 == 1)
{
// special type 2
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b;
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _p1 = _mm_set1_ps(*ptr1);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
ptr1 += 1;
outptr += 4;
}
}
return 0;
}
if (w == 1 && h == 1 && channels1 == channels)
{
// special type 3
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* a0 = a.channel(q);
float* outptr = c.channel(q);
const float* ptr1 = b.channel(q);
__m128 _a0 = _mm_loadu_ps(a0);
for (int i = 0; i < size1; i++)
{
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
}
return 0;
}
if (w1 == w && h1 == h && channels == 1 && elempack == 1)
{
// special type 4
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a;
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m128 _p = _mm_set1_ps(*ptr);
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_storeu_ps(outptr, _outp);
ptr += 1;
ptr1 += 4;
outptr += 4;
}
}
return 0;
}
if (w != 1 && w1 == 1 && h1 == h && channels1 == channels)
{
// special type 5
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
__m128 _p1 = _mm_loadu_ps(ptr1 + y * 4);
for (int x = 0; x < w; x++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
}
}
return 0;
}
if (w1 == w && h != 1 && h1 == 1 && channels1 == channels)
{
// special type 6
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _p1 = _mm_loadu_ps(ptr1 + x * 4);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
}
}
return 0;
}
if (w1 != 1 && w == 1 && h1 == h && channels1 == channels)
{
// special type 7
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
__m128 _p = _mm_loadu_ps(ptr + y * 4);
for (int x = 0; x < w1; x++)
{
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
}
}
return 0;
}
if (w1 == w && h1 != 1 && h == 1 && channels1 == channels)
{
// special type 8
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
__m128 _p = _mm_loadu_ps(ptr + x * 4);
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
}
}
return 0;
}
// type 19
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 18
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row<const float>(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
__m128 _b0 = _mm_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
ptr1 += 4;
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1 && elempack1 == 1)
{
// type 16
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 17
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
__m128 _b0 = _mm_loadu_ps((const float*)b + q * 4);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
}
return 0;
}
}
else if (a.dims == 2)
{
if (b.dims == 4)
{
// type 22
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
__m128 _a0 = _mm_loadu_ps(ptr);
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
__m128 _p = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
}
ptr += 4;
}
}
return 0;
}
if (b.dims == 3)
{
// type 14
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row<const float>(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
__m128 _a0 = _mm_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
ptr += 4;
}
}
return 0;
}
c.create(w, h, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 13
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
if (b.dims == 1)
{
c.create(w, h, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1 && elempack1 == 1)
{
// type 11
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 12
const float* ptr = a;
const float* ptr1 = b;
float* outptr = c;
for (int y = 0; y < h; y++)
{
__m128 _b0 = _mm_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
ptr1 += 4;
}
return 0;
}
}
else if (a.dims == 1)
{
if (a.w == 1 && elempack == 1)
{
// type 2 3 4 20
return binary_op_2_3_4_20<Op>(a, b, c, opt);
}
if (b.dims == 4)
{
// type 21
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
__m128 _a0 = _mm_loadu_ps((const float*)a + q * 4);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
}
return 0;
}
if (b.dims == 3)
{
// type 9
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
__m128 _a0 = _mm_loadu_ps((const float*)a + q * 4);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
}
return 0;
}
if (b.dims == 2)
{
// type 8
c.create(w1, h1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
const float* ptr = a;
const float* ptr1 = b;
float* outptr = c;
for (int y = 0; y < h1; y++)
{
__m128 _a0 = _mm_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
ptr += 4;
}
return 0;
}
if (b.dims == 1)
{
c.create(w, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1 && elempack1 == 1)
{
// type 6
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 7
binary_op_7_13_19_29<Op>(a, b, c, opt);
}
}
return 0;
}
|
subq $0x3f58, %rsp # imm = 0x3F58
movq %rdi, 0x1cb8(%rsp)
movq %rsi, 0x1cb0(%rsp)
movq %rdx, 0x1ca8(%rsp)
movq %rcx, 0x1ca0(%rsp)
movq 0x1cb8(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x1c98(%rsp)
movq 0x1cb8(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x1c94(%rsp)
movq 0x1cb8(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x1c90(%rsp)
movq 0x1cb8(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x1c8c(%rsp)
movl 0x1c98(%rsp), %eax
imull 0x1c94(%rsp), %eax
imull 0x1c90(%rsp), %eax
movl %eax, 0x1c88(%rsp)
movq 0x1cb8(%rsp), %rax
movq 0x10(%rax), %rax
movq %rax, 0x1c80(%rsp)
movq 0x1cb8(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x1c7c(%rsp)
movq 0x1cb0(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x1c78(%rsp)
movq 0x1cb0(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x1c74(%rsp)
movq 0x1cb0(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x1c70(%rsp)
movq 0x1cb0(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x1c6c(%rsp)
movl 0x1c78(%rsp), %eax
imull 0x1c74(%rsp), %eax
imull 0x1c70(%rsp), %eax
movl %eax, 0x1c68(%rsp)
movq 0x1cb0(%rsp), %rax
movq 0x10(%rax), %rax
movq %rax, 0x1c60(%rsp)
movq 0x1cb0(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x1c5c(%rsp)
movq 0x1cb8(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1298f52
movq 0x1cb0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1296ab0
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12eaac0
movl %eax, 0x1cc4(%rsp)
jmp 0x12a5b20
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movl 0x1c90(%rsp), %ecx
movl 0x1c8c(%rsp), %r8d
movq 0x1c80(%rsp), %r9
movl 0x1c7c(%rsp), %r10d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d58(%rsp)
movq 0x1d58(%rsp), %rcx
movq %rcx, 0x810(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x81f(%rsp)
je 0x1296b60
movq 0x810(%rsp), %rax
movq %rax, 0x2a20(%rsp)
movq 0x2a20(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x81f(%rsp)
movb 0x81f(%rsp), %al
testb $0x1, %al
jne 0x1296b6d
jmp 0x1296b7d
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12a5b20
movq 0x1cb0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1297a38
movl $0x0, 0x1c58(%rsp)
movl 0x1c58(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jge 0x1297a28
movq 0x1cb8(%rsp), %rcx
movl 0x1c58(%rsp), %eax
leaq 0x1c08(%rsp), %rdx
movq %rdx, 0x1fc8(%rsp)
movq %rcx, 0x1fc0(%rsp)
movl %eax, 0x1fbc(%rsp)
movq 0x1fc0(%rsp), %rax
movq %rax, 0x808(%rsp)
movb $0x0, 0x1fbb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1fbc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1c08(%rsp), %r10
movq %r10, 0x2ed8(%rsp)
movl %r9d, 0x2ed4(%rsp)
movl %r8d, 0x2ed0(%rsp)
movl %edi, 0x2ecc(%rsp)
movq %rsi, 0x2ec0(%rsp)
movq %rdx, 0x2eb8(%rsp)
movl %ecx, 0x2eb4(%rsp)
movq %rax, 0x2ea8(%rsp)
movq 0x2ed8(%rsp), %rcx
movq %rcx, 0x800(%rsp)
movq 0x2ec0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2eb8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2eb4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ea8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2ed4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2ed0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2ecc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x35f0(%rsp)
movl $0x10, 0x35ec(%rsp)
movq 0x35f0(%rsp), %rax
movslq 0x35ec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x35ec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x808(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1c30(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1296d6a
movq 0x808(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1c48(%rsp)
movb $0x1, 0x1fbb(%rsp)
testb $0x1, 0x1fbb(%rsp)
jne 0x1296ea5
leaq 0x1c08(%rsp), %rax
movq %rax, 0x20f0(%rsp)
movq 0x20f0(%rsp), %rax
movq %rax, 0x3c90(%rsp)
movq 0x3c90(%rsp), %rax
movq %rax, 0x7f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1296e48
movq 0x7f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c8c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c8c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c88(%rsp)
cmpl $0x1, 0x3c88(%rsp)
jne 0x1296e48
movq 0x7f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1296e19
movq 0x7f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1296e17
jmp 0x1296e46
movq 0x7f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3c98(%rsp)
cmpq $0x0, 0x3c98(%rsp)
je 0x1296e44
movq 0x3c98(%rsp), %rdi
callq 0x5f480
jmp 0x1296e46
jmp 0x1296e48
movq 0x7f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1296ea3
movq %rax, %rdi
callq 0x678a0
jmp 0x1296ea5
leaq 0x1c08(%rsp), %rax
movq %rax, 0x20e8(%rsp)
movq 0x20e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7e8(%rsp)
leaq 0x1c08(%rsp), %rax
movq %rax, 0x21c0(%rsp)
movq 0x21c0(%rsp), %rax
movq %rax, 0x3af0(%rsp)
movq 0x3af0(%rsp), %rax
movq %rax, 0x7f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1296f90
movq 0x7f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3aec(%rsp) # imm = 0xFFFFFFFF
movl 0x3aec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ae8(%rsp)
cmpl $0x1, 0x3ae8(%rsp)
jne 0x1296f90
movq 0x7f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1296f61
movq 0x7f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1296f5f
jmp 0x1296f8e
movq 0x7f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d68(%rsp)
cmpq $0x0, 0x3d68(%rsp)
je 0x1296f8c
movq 0x3d68(%rsp), %rdi
callq 0x5f480
jmp 0x1296f8e
jmp 0x1296f90
movq 0x7f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1296feb
movq %rax, %rdi
callq 0x678a0
movq 0x7e8(%rsp), %rax
movq %rax, 0x1c50(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x1c58(%rsp), %eax
leaq 0x1bb8(%rsp), %rdx
movq %rdx, 0x1fb0(%rsp)
movq %rcx, 0x1fa8(%rsp)
movl %eax, 0x1fa4(%rsp)
movq 0x1fa8(%rsp), %rax
movq %rax, 0x7e0(%rsp)
movb $0x0, 0x1fa3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1fa4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1bb8(%rsp), %r10
movq %r10, 0x2f10(%rsp)
movl %r9d, 0x2f0c(%rsp)
movl %r8d, 0x2f08(%rsp)
movl %edi, 0x2f04(%rsp)
movq %rsi, 0x2ef8(%rsp)
movq %rdx, 0x2ef0(%rsp)
movl %ecx, 0x2eec(%rsp)
movq %rax, 0x2ee0(%rsp)
movq 0x2f10(%rsp), %rcx
movq %rcx, 0x7d8(%rsp)
movq 0x2ef8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2ef0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2eec(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ee0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2f0c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f08(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f04(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x35e0(%rsp)
movl $0x10, 0x35dc(%rsp)
movq 0x35e0(%rsp), %rax
movslq 0x35dc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x35dc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7e0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1be0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12971b7
movq 0x7e0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1bf8(%rsp)
movb $0x1, 0x1fa3(%rsp)
testb $0x1, 0x1fa3(%rsp)
jne 0x12972f2
leaq 0x1bb8(%rsp), %rax
movq %rax, 0x20f8(%rsp)
movq 0x20f8(%rsp), %rax
movq %rax, 0x3c80(%rsp)
movq 0x3c80(%rsp), %rax
movq %rax, 0x7d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1297295
movq 0x7d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c7c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c7c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c78(%rsp)
cmpl $0x1, 0x3c78(%rsp)
jne 0x1297295
movq 0x7d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1297266
movq 0x7d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1297264
jmp 0x1297293
movq 0x7d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ca0(%rsp)
cmpq $0x0, 0x3ca0(%rsp)
je 0x1297291
movq 0x3ca0(%rsp), %rdi
callq 0x5f480
jmp 0x1297293
jmp 0x1297295
movq 0x7d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12972f0
movq %rax, %rdi
callq 0x678a0
jmp 0x12972f2
leaq 0x1bb8(%rsp), %rax
movq %rax, 0x20e0(%rsp)
movq 0x20e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7c0(%rsp)
leaq 0x1bb8(%rsp), %rax
movq %rax, 0x21c8(%rsp)
movq 0x21c8(%rsp), %rax
movq %rax, 0x3ae0(%rsp)
movq 0x3ae0(%rsp), %rax
movq %rax, 0x7c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12973dd
movq 0x7c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3adc(%rsp) # imm = 0xFFFFFFFF
movl 0x3adc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ad8(%rsp)
cmpl $0x1, 0x3ad8(%rsp)
jne 0x12973dd
movq 0x7c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12973ae
movq 0x7c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12973ac
jmp 0x12973db
movq 0x7c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d70(%rsp)
cmpq $0x0, 0x3d70(%rsp)
je 0x12973d9
movq 0x3d70(%rsp), %rdi
callq 0x5f480
jmp 0x12973db
jmp 0x12973dd
movq 0x7c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1297438
movq %rax, %rdi
callq 0x678a0
movq 0x7c0(%rsp), %rax
movq %rax, 0x1c00(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x1c58(%rsp), %eax
leaq 0x1b68(%rsp), %rdx
movq %rdx, 0x2550(%rsp)
movq %rcx, 0x2548(%rsp)
movl %eax, 0x2544(%rsp)
movq 0x2548(%rsp), %rax
movq %rax, 0x7b8(%rsp)
movb $0x0, 0x2543(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2544(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1b68(%rsp), %r10
movq %r10, 0x2ae8(%rsp)
movl %r9d, 0x2ae4(%rsp)
movl %r8d, 0x2ae0(%rsp)
movl %edi, 0x2adc(%rsp)
movq %rsi, 0x2ad0(%rsp)
movq %rdx, 0x2ac8(%rsp)
movl %ecx, 0x2ac4(%rsp)
movq %rax, 0x2ab8(%rsp)
movq 0x2ae8(%rsp), %rcx
movq %rcx, 0x7b0(%rsp)
movq 0x2ad0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2ac8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2ac4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ab8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2ae4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2ae0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2adc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3710(%rsp)
movl $0x10, 0x370c(%rsp)
movq 0x3710(%rsp), %rax
movslq 0x370c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x370c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7b8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1b90(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1297604
movq 0x7b8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1ba8(%rsp)
movb $0x1, 0x2543(%rsp)
testb $0x1, 0x2543(%rsp)
jne 0x129773f
leaq 0x1b68(%rsp), %rax
movq %rax, 0x2558(%rsp)
movq 0x2558(%rsp), %rax
movq %rax, 0x3720(%rsp)
movq 0x3720(%rsp), %rax
movq %rax, 0x7a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12976e2
movq 0x7a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x371c(%rsp) # imm = 0xFFFFFFFF
movl 0x371c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3718(%rsp)
cmpl $0x1, 0x3718(%rsp)
jne 0x12976e2
movq 0x7a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12976b3
movq 0x7a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12976b1
jmp 0x12976e0
movq 0x7a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f50(%rsp)
cmpq $0x0, 0x3f50(%rsp)
je 0x12976de
movq 0x3f50(%rsp), %rdi
callq 0x5f480
jmp 0x12976e0
jmp 0x12976e2
movq 0x7a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129773d
movq %rax, %rdi
callq 0x678a0
jmp 0x129773f
leaq 0x1b68(%rsp), %rax
movq %rax, 0x25f8(%rsp)
movq 0x25f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x798(%rsp)
leaq 0x1b68(%rsp), %rax
movq %rax, 0x21d0(%rsp)
movq 0x21d0(%rsp), %rax
movq %rax, 0x3ad0(%rsp)
movq 0x3ad0(%rsp), %rax
movq %rax, 0x7a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129782a
movq 0x7a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3acc(%rsp) # imm = 0xFFFFFFFF
movl 0x3acc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ac8(%rsp)
cmpl $0x1, 0x3ac8(%rsp)
jne 0x129782a
movq 0x7a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12977fb
movq 0x7a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12977f9
jmp 0x1297828
movq 0x7a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d78(%rsp)
cmpq $0x0, 0x3d78(%rsp)
je 0x1297826
movq 0x3d78(%rsp), %rdi
callq 0x5f480
jmp 0x1297828
jmp 0x129782a
movq 0x7a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1297885
movq %rax, %rdi
callq 0x678a0
movq 0x798(%rsp), %rax
movq %rax, 0x1bb0(%rsp)
movl $0x0, 0x1b64(%rsp)
movl 0x1b64(%rsp), %eax
cmpl 0x1c90(%rsp), %eax
jge 0x1297a10
movl $0x0, 0x1b60(%rsp)
movl 0x1b60(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jge 0x12979f8
movq 0x1c00(%rsp), %rax
movq %rax, 0x2728(%rsp)
movq 0x2728(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1b50(%rsp)
movl $0x0, 0x1b4c(%rsp)
movl 0x1b4c(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jge 0x12979ce
movq 0x1c50(%rsp), %rax
movq %rax, 0x2720(%rsp)
movq 0x2720(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1b30(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x1b30(%rsp), %rsi
leaq 0x1b50(%rsp), %rdx
callq 0x12f6b80
movaps %xmm0, 0x1b20(%rsp)
movq 0x1bb0(%rsp), %rax
movaps 0x1b20(%rsp), %xmm0
movq %rax, 0x29a8(%rsp)
movaps %xmm0, 0x2990(%rsp)
movaps 0x2990(%rsp), %xmm0
movq 0x29a8(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1c50(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1c50(%rsp)
movq 0x1bb0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1bb0(%rsp)
movl 0x1b4c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b4c(%rsp)
jmp 0x1297901
movq 0x1c00(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1c00(%rsp)
movl 0x1b60(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b60(%rsp)
jmp 0x12978bf
jmp 0x12979fa
movl 0x1b64(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b64(%rsp)
jmp 0x12978a0
jmp 0x1297a12
movl 0x1c58(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c58(%rsp)
jmp 0x1296b9a
movl $0x0, 0x1cc4(%rsp)
jmp 0x12a5b20
movq 0x1cb0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x12984ef
movl $0x0, 0x1b1c(%rsp)
movl 0x1b1c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jge 0x12984df
movq 0x1cb8(%rsp), %rcx
movl 0x1b1c(%rsp), %eax
leaq 0x1ac8(%rsp), %rdx
movq %rdx, 0x1f98(%rsp)
movq %rcx, 0x1f90(%rsp)
movl %eax, 0x1f8c(%rsp)
movq 0x1f90(%rsp), %rax
movq %rax, 0x790(%rsp)
movb $0x0, 0x1f8b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1f8c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1ac8(%rsp), %r10
movq %r10, 0x2f48(%rsp)
movl %r9d, 0x2f44(%rsp)
movl %r8d, 0x2f40(%rsp)
movl %edi, 0x2f3c(%rsp)
movq %rsi, 0x2f30(%rsp)
movq %rdx, 0x2f28(%rsp)
movl %ecx, 0x2f24(%rsp)
movq %rax, 0x2f18(%rsp)
movq 0x2f48(%rsp), %rcx
movq %rcx, 0x788(%rsp)
movq 0x2f30(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2f28(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2f24(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2f18(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2f44(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f40(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f3c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x35d0(%rsp)
movl $0x10, 0x35cc(%rsp)
movq 0x35d0(%rsp), %rax
movslq 0x35cc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x35cc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x790(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1af0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1297c25
movq 0x790(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1b08(%rsp)
movb $0x1, 0x1f8b(%rsp)
testb $0x1, 0x1f8b(%rsp)
jne 0x1297d60
leaq 0x1ac8(%rsp), %rax
movq %rax, 0x2100(%rsp)
movq 0x2100(%rsp), %rax
movq %rax, 0x3c70(%rsp)
movq 0x3c70(%rsp), %rax
movq %rax, 0x780(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1297d03
movq 0x780(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c6c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c6c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c68(%rsp)
cmpl $0x1, 0x3c68(%rsp)
jne 0x1297d03
movq 0x780(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1297cd4
movq 0x780(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1297cd2
jmp 0x1297d01
movq 0x780(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ca8(%rsp)
cmpq $0x0, 0x3ca8(%rsp)
je 0x1297cff
movq 0x3ca8(%rsp), %rdi
callq 0x5f480
jmp 0x1297d01
jmp 0x1297d03
movq 0x780(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1297d5e
movq %rax, %rdi
callq 0x678a0
jmp 0x1297d60
leaq 0x1ac8(%rsp), %rax
movq %rax, 0x20d8(%rsp)
movq 0x20d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x770(%rsp)
leaq 0x1ac8(%rsp), %rax
movq %rax, 0x21d8(%rsp)
movq 0x21d8(%rsp), %rax
movq %rax, 0x3ac0(%rsp)
movq 0x3ac0(%rsp), %rax
movq %rax, 0x778(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1297e4b
movq 0x778(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3abc(%rsp) # imm = 0xFFFFFFFF
movl 0x3abc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ab8(%rsp)
cmpl $0x1, 0x3ab8(%rsp)
jne 0x1297e4b
movq 0x778(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1297e1c
movq 0x778(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1297e1a
jmp 0x1297e49
movq 0x778(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d80(%rsp)
cmpq $0x0, 0x3d80(%rsp)
je 0x1297e47
movq 0x3d80(%rsp), %rdi
callq 0x5f480
jmp 0x1297e49
jmp 0x1297e4b
movq 0x778(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1297ea6
movq %rax, %rdi
callq 0x678a0
movq 0x770(%rsp), %rax
movq %rax, 0x1b10(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x1b1c(%rsp), %eax
movq %rcx, 0x29c8(%rsp)
movl %eax, 0x29c4(%rsp)
movq 0x29c8(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x29c4(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x1ac0(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x1b1c(%rsp), %eax
leaq 0x1a70(%rsp), %rdx
movq %rdx, 0x2530(%rsp)
movq %rcx, 0x2528(%rsp)
movl %eax, 0x2524(%rsp)
movq 0x2528(%rsp), %rax
movq %rax, 0x768(%rsp)
movb $0x0, 0x2523(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2524(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1a70(%rsp), %r10
movq %r10, 0x2b20(%rsp)
movl %r9d, 0x2b1c(%rsp)
movl %r8d, 0x2b18(%rsp)
movl %edi, 0x2b14(%rsp)
movq %rsi, 0x2b08(%rsp)
movq %rdx, 0x2b00(%rsp)
movl %ecx, 0x2afc(%rsp)
movq %rax, 0x2af0(%rsp)
movq 0x2b20(%rsp), %rcx
movq %rcx, 0x760(%rsp)
movq 0x2b08(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2b00(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2afc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2af0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2b1c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2b18(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2b14(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3700(%rsp)
movl $0x10, 0x36fc(%rsp)
movq 0x3700(%rsp), %rax
movslq 0x36fc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x36fc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x768(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1a98(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12980bb
movq 0x768(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1ab0(%rsp)
movb $0x1, 0x2523(%rsp)
testb $0x1, 0x2523(%rsp)
jne 0x12981f6
leaq 0x1a70(%rsp), %rax
movq %rax, 0x2538(%rsp)
movq 0x2538(%rsp), %rax
movq %rax, 0x3730(%rsp)
movq 0x3730(%rsp), %rax
movq %rax, 0x758(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1298199
movq 0x758(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x372c(%rsp) # imm = 0xFFFFFFFF
movl 0x372c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3728(%rsp)
cmpl $0x1, 0x3728(%rsp)
jne 0x1298199
movq 0x758(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129816a
movq 0x758(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1298168
jmp 0x1298197
movq 0x758(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f48(%rsp)
cmpq $0x0, 0x3f48(%rsp)
je 0x1298195
movq 0x3f48(%rsp), %rdi
callq 0x5f480
jmp 0x1298197
jmp 0x1298199
movq 0x758(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12981f4
movq %rax, %rdi
callq 0x678a0
jmp 0x12981f6
leaq 0x1a70(%rsp), %rax
movq %rax, 0x25f0(%rsp)
movq 0x25f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x748(%rsp)
leaq 0x1a70(%rsp), %rax
movq %rax, 0x21e0(%rsp)
movq 0x21e0(%rsp), %rax
movq %rax, 0x3ab0(%rsp)
movq 0x3ab0(%rsp), %rax
movq %rax, 0x750(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12982e1
movq 0x750(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3aac(%rsp) # imm = 0xFFFFFFFF
movl 0x3aac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3aa8(%rsp)
cmpl $0x1, 0x3aa8(%rsp)
jne 0x12982e1
movq 0x750(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12982b2
movq 0x750(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12982b0
jmp 0x12982df
movq 0x750(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d88(%rsp)
cmpq $0x0, 0x3d88(%rsp)
je 0x12982dd
movq 0x3d88(%rsp), %rdi
callq 0x5f480
jmp 0x12982df
jmp 0x12982e1
movq 0x750(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129833c
movq %rax, %rdi
callq 0x678a0
movq 0x748(%rsp), %rax
movq %rax, 0x1ab8(%rsp)
movl $0x0, 0x1a6c(%rsp)
movl 0x1a6c(%rsp), %eax
cmpl 0x1c90(%rsp), %eax
jge 0x12984c7
movq 0x1ac0(%rsp), %rax
movq %rax, 0x2718(%rsp)
movq 0x2718(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1a50(%rsp)
movl $0x0, 0x1a4c(%rsp)
movl 0x1a4c(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jge 0x129849d
movl $0x0, 0x1a48(%rsp)
movl 0x1a48(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jge 0x1298485
movq 0x1b10(%rsp), %rax
movq %rax, 0x2710(%rsp)
movq 0x2710(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1a30(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x1a30(%rsp), %rsi
leaq 0x1a50(%rsp), %rdx
callq 0x12f6b80
movaps %xmm0, 0x1a20(%rsp)
movq 0x1ab8(%rsp), %rax
movaps 0x1a20(%rsp), %xmm0
movq %rax, 0x2988(%rsp)
movaps %xmm0, 0x2970(%rsp)
movaps 0x2970(%rsp), %xmm0
movq 0x2988(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1b10(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1b10(%rsp)
movq 0x1ab8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1ab8(%rsp)
movl 0x1a48(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1a48(%rsp)
jmp 0x12983b8
jmp 0x1298487
movl 0x1a4c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1a4c(%rsp)
jmp 0x1298399
movq 0x1ac0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1ac0(%rsp)
movl 0x1a6c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1a6c(%rsp)
jmp 0x1298357
jmp 0x12984c9
movl 0x1b1c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b1c(%rsp)
jmp 0x1297a55
movl $0x0, 0x1cc4(%rsp)
jmp 0x12a5b20
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1298f4d
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x129854a
cmpl $0x1, 0x1c5c(%rsp)
jne 0x129854a
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12eba40
movl %eax, 0x1cc4(%rsp)
jmp 0x12a5b20
movl $0x0, 0x1a1c(%rsp)
movl 0x1a1c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jge 0x1298f3d
movq 0x1cb8(%rsp), %rcx
movl 0x1a1c(%rsp), %eax
leaq 0x19c8(%rsp), %rdx
movq %rdx, 0x1f80(%rsp)
movq %rcx, 0x1f78(%rsp)
movl %eax, 0x1f74(%rsp)
movq 0x1f78(%rsp), %rax
movq %rax, 0x740(%rsp)
movb $0x0, 0x1f73(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1f74(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x19c8(%rsp), %r10
movq %r10, 0x2f80(%rsp)
movl %r9d, 0x2f7c(%rsp)
movl %r8d, 0x2f78(%rsp)
movl %edi, 0x2f74(%rsp)
movq %rsi, 0x2f68(%rsp)
movq %rdx, 0x2f60(%rsp)
movl %ecx, 0x2f5c(%rsp)
movq %rax, 0x2f50(%rsp)
movq 0x2f80(%rsp), %rcx
movq %rcx, 0x738(%rsp)
movq 0x2f68(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2f60(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2f5c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2f50(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2f7c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f78(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f74(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x35c0(%rsp)
movl $0x10, 0x35bc(%rsp)
movq 0x35c0(%rsp), %rax
movslq 0x35bc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x35bc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x740(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x19f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1298725
movq 0x740(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1a08(%rsp)
movb $0x1, 0x1f73(%rsp)
testb $0x1, 0x1f73(%rsp)
jne 0x1298860
leaq 0x19c8(%rsp), %rax
movq %rax, 0x2108(%rsp)
movq 0x2108(%rsp), %rax
movq %rax, 0x3c60(%rsp)
movq 0x3c60(%rsp), %rax
movq %rax, 0x730(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1298803
movq 0x730(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c5c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c5c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c58(%rsp)
cmpl $0x1, 0x3c58(%rsp)
jne 0x1298803
movq 0x730(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12987d4
movq 0x730(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12987d2
jmp 0x1298801
movq 0x730(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cb0(%rsp)
cmpq $0x0, 0x3cb0(%rsp)
je 0x12987ff
movq 0x3cb0(%rsp), %rdi
callq 0x5f480
jmp 0x1298801
jmp 0x1298803
movq 0x730(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129885e
movq %rax, %rdi
callq 0x678a0
jmp 0x1298860
leaq 0x19c8(%rsp), %rax
movq %rax, 0x20d0(%rsp)
movq 0x20d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x720(%rsp)
leaq 0x19c8(%rsp), %rax
movq %rax, 0x21e8(%rsp)
movq 0x21e8(%rsp), %rax
movq %rax, 0x3aa0(%rsp)
movq 0x3aa0(%rsp), %rax
movq %rax, 0x728(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129894b
movq 0x728(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a9c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a9c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a98(%rsp)
cmpl $0x1, 0x3a98(%rsp)
jne 0x129894b
movq 0x728(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129891c
movq 0x728(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129891a
jmp 0x1298949
movq 0x728(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d90(%rsp)
cmpq $0x0, 0x3d90(%rsp)
je 0x1298947
movq 0x3d90(%rsp), %rdi
callq 0x5f480
jmp 0x1298949
jmp 0x129894b
movq 0x728(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12989a6
movq %rax, %rdi
callq 0x678a0
movq 0x720(%rsp), %rax
movq %rax, 0x1a10(%rsp)
movq 0x1cb0(%rsp), %rax
movq %rax, 0x20c8(%rsp)
movq 0x20c8(%rsp), %rax
movq (%rax), %rax
movl 0x1a1c(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2708(%rsp)
movq 0x2708(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x19b0(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x1a1c(%rsp), %eax
leaq 0x1960(%rsp), %rdx
movq %rdx, 0x2510(%rsp)
movq %rcx, 0x2508(%rsp)
movl %eax, 0x2504(%rsp)
movq 0x2508(%rsp), %rax
movq %rax, 0x718(%rsp)
movb $0x0, 0x2503(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2504(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1960(%rsp), %r10
movq %r10, 0x2b58(%rsp)
movl %r9d, 0x2b54(%rsp)
movl %r8d, 0x2b50(%rsp)
movl %edi, 0x2b4c(%rsp)
movq %rsi, 0x2b40(%rsp)
movq %rdx, 0x2b38(%rsp)
movl %ecx, 0x2b34(%rsp)
movq %rax, 0x2b28(%rsp)
movq 0x2b58(%rsp), %rcx
movq %rcx, 0x710(%rsp)
movq 0x2b40(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2b38(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2b34(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2b28(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2b54(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2b50(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2b4c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x36f0(%rsp)
movl $0x10, 0x36ec(%rsp)
movq 0x36f0(%rsp), %rax
movslq 0x36ec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x36ec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x718(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1988(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1298bbc
movq 0x718(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x19a0(%rsp)
movb $0x1, 0x2503(%rsp)
testb $0x1, 0x2503(%rsp)
jne 0x1298cf7
leaq 0x1960(%rsp), %rax
movq %rax, 0x2518(%rsp)
movq 0x2518(%rsp), %rax
movq %rax, 0x3740(%rsp)
movq 0x3740(%rsp), %rax
movq %rax, 0x708(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1298c9a
movq 0x708(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x373c(%rsp) # imm = 0xFFFFFFFF
movl 0x373c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3738(%rsp)
cmpl $0x1, 0x3738(%rsp)
jne 0x1298c9a
movq 0x708(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1298c6b
movq 0x708(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1298c69
jmp 0x1298c98
movq 0x708(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f40(%rsp)
cmpq $0x0, 0x3f40(%rsp)
je 0x1298c96
movq 0x3f40(%rsp), %rdi
callq 0x5f480
jmp 0x1298c98
jmp 0x1298c9a
movq 0x708(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1298cf5
movq %rax, %rdi
callq 0x678a0
jmp 0x1298cf7
leaq 0x1960(%rsp), %rax
movq %rax, 0x25e8(%rsp)
movq 0x25e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6f8(%rsp)
leaq 0x1960(%rsp), %rax
movq %rax, 0x21f0(%rsp)
movq 0x21f0(%rsp), %rax
movq %rax, 0x3a90(%rsp)
movq 0x3a90(%rsp), %rax
movq %rax, 0x700(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1298de2
movq 0x700(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a8c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a8c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a88(%rsp)
cmpl $0x1, 0x3a88(%rsp)
jne 0x1298de2
movq 0x700(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1298db3
movq 0x700(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1298db1
jmp 0x1298de0
movq 0x700(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d98(%rsp)
cmpq $0x0, 0x3d98(%rsp)
je 0x1298dde
movq 0x3d98(%rsp), %rdi
callq 0x5f480
jmp 0x1298de0
jmp 0x1298de2
movq 0x700(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1298e3d
movq %rax, %rdi
callq 0x678a0
movq 0x6f8(%rsp), %rax
movq %rax, 0x19a8(%rsp)
movl $0x0, 0x195c(%rsp)
movl 0x195c(%rsp), %eax
cmpl 0x1c88(%rsp), %eax
jge 0x1298f25
movq 0x1a10(%rsp), %rax
movq %rax, 0x2700(%rsp)
movq 0x2700(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1940(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x1940(%rsp), %rsi
leaq 0x19b0(%rsp), %rdx
callq 0x12f6b80
movaps %xmm0, 0x1930(%rsp)
movq 0x19a8(%rsp), %rax
movaps 0x1930(%rsp), %xmm0
movq %rax, 0x2968(%rsp)
movaps %xmm0, 0x2950(%rsp)
movaps 0x2950(%rsp), %xmm0
movq 0x2968(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1a10(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1a10(%rsp)
movq 0x19a8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x19a8(%rsp)
movl 0x195c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x195c(%rsp)
jmp 0x1298e58
jmp 0x1298f27
movl 0x1a1c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1a1c(%rsp)
jmp 0x1298555
movl $0x0, 0x1cc4(%rsp)
jmp 0x12a5b20
jmp 0x12a5b15
movq 0x1cb8(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x12a273e
movq 0x1cb0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1299eec
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c70(%rsp), %ecx
movl 0x1c6c(%rsp), %r8d
movq 0x1c60(%rsp), %r9
movl 0x1c5c(%rsp), %r10d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d50(%rsp)
movq 0x1d50(%rsp), %rcx
movq %rcx, 0x6e8(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x6f7(%rsp)
je 0x1299026
movq 0x6e8(%rsp), %rax
movq %rax, 0x2a28(%rsp)
movq 0x2a28(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x6f7(%rsp)
movb 0x6f7(%rsp), %al
testb $0x1, %al
jne 0x1299033
jmp 0x1299043
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12a5b20
movl $0x0, 0x192c(%rsp)
movl 0x192c(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x1299edc
movq 0x1cb8(%rsp), %rcx
movl 0x192c(%rsp), %eax
leaq 0x18d8(%rsp), %rdx
movq %rdx, 0x1f68(%rsp)
movq %rcx, 0x1f60(%rsp)
movl %eax, 0x1f5c(%rsp)
movq 0x1f60(%rsp), %rax
movq %rax, 0x6e0(%rsp)
movb $0x0, 0x1f5b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1f5c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x18d8(%rsp), %r10
movq %r10, 0x2fb8(%rsp)
movl %r9d, 0x2fb4(%rsp)
movl %r8d, 0x2fb0(%rsp)
movl %edi, 0x2fac(%rsp)
movq %rsi, 0x2fa0(%rsp)
movq %rdx, 0x2f98(%rsp)
movl %ecx, 0x2f94(%rsp)
movq %rax, 0x2f88(%rsp)
movq 0x2fb8(%rsp), %rcx
movq %rcx, 0x6d8(%rsp)
movq 0x2fa0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2f98(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2f94(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2f88(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2fb4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2fb0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2fac(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x35b0(%rsp)
movl $0x10, 0x35ac(%rsp)
movq 0x35b0(%rsp), %rax
movslq 0x35ac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x35ac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6e0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1900(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x129921e
movq 0x6e0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1918(%rsp)
movb $0x1, 0x1f5b(%rsp)
testb $0x1, 0x1f5b(%rsp)
jne 0x1299359
leaq 0x18d8(%rsp), %rax
movq %rax, 0x2110(%rsp)
movq 0x2110(%rsp), %rax
movq %rax, 0x3c50(%rsp)
movq 0x3c50(%rsp), %rax
movq %rax, 0x6d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12992fc
movq 0x6d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c4c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c4c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c48(%rsp)
cmpl $0x1, 0x3c48(%rsp)
jne 0x12992fc
movq 0x6d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12992cd
movq 0x6d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12992cb
jmp 0x12992fa
movq 0x6d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cb8(%rsp)
cmpq $0x0, 0x3cb8(%rsp)
je 0x12992f8
movq 0x3cb8(%rsp), %rdi
callq 0x5f480
jmp 0x12992fa
jmp 0x12992fc
movq 0x6d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1299357
movq %rax, %rdi
callq 0x678a0
jmp 0x1299359
leaq 0x18d8(%rsp), %rax
movq %rax, 0x20c0(%rsp)
movq 0x20c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6c0(%rsp)
leaq 0x18d8(%rsp), %rax
movq %rax, 0x21f8(%rsp)
movq 0x21f8(%rsp), %rax
movq %rax, 0x3a80(%rsp)
movq 0x3a80(%rsp), %rax
movq %rax, 0x6c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1299444
movq 0x6c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a7c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a7c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a78(%rsp)
cmpl $0x1, 0x3a78(%rsp)
jne 0x1299444
movq 0x6c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1299415
movq 0x6c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1299413
jmp 0x1299442
movq 0x6c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3da0(%rsp)
cmpq $0x0, 0x3da0(%rsp)
je 0x1299440
movq 0x3da0(%rsp), %rdi
callq 0x5f480
jmp 0x1299442
jmp 0x1299444
movq 0x6c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129949f
movq %rax, %rdi
callq 0x678a0
movq 0x6c0(%rsp), %rax
movq %rax, 0x1920(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x192c(%rsp), %eax
leaq 0x1888(%rsp), %rdx
movq %rdx, 0x1f50(%rsp)
movq %rcx, 0x1f48(%rsp)
movl %eax, 0x1f44(%rsp)
movq 0x1f48(%rsp), %rax
movq %rax, 0x6b8(%rsp)
movb $0x0, 0x1f43(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1f44(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1888(%rsp), %r10
movq %r10, 0x2ff0(%rsp)
movl %r9d, 0x2fec(%rsp)
movl %r8d, 0x2fe8(%rsp)
movl %edi, 0x2fe4(%rsp)
movq %rsi, 0x2fd8(%rsp)
movq %rdx, 0x2fd0(%rsp)
movl %ecx, 0x2fcc(%rsp)
movq %rax, 0x2fc0(%rsp)
movq 0x2ff0(%rsp), %rcx
movq %rcx, 0x6b0(%rsp)
movq 0x2fd8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2fd0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2fcc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2fc0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2fec(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2fe8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2fe4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x35a0(%rsp)
movl $0x10, 0x359c(%rsp)
movq 0x35a0(%rsp), %rax
movslq 0x359c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x359c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6b8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x18b0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x129966b
movq 0x6b8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x18c8(%rsp)
movb $0x1, 0x1f43(%rsp)
testb $0x1, 0x1f43(%rsp)
jne 0x12997a6
leaq 0x1888(%rsp), %rax
movq %rax, 0x2118(%rsp)
movq 0x2118(%rsp), %rax
movq %rax, 0x3c40(%rsp)
movq 0x3c40(%rsp), %rax
movq %rax, 0x6a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1299749
movq 0x6a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c3c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c3c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c38(%rsp)
cmpl $0x1, 0x3c38(%rsp)
jne 0x1299749
movq 0x6a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129971a
movq 0x6a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1299718
jmp 0x1299747
movq 0x6a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cc0(%rsp)
cmpq $0x0, 0x3cc0(%rsp)
je 0x1299745
movq 0x3cc0(%rsp), %rdi
callq 0x5f480
jmp 0x1299747
jmp 0x1299749
movq 0x6a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12997a4
movq %rax, %rdi
callq 0x678a0
jmp 0x12997a6
leaq 0x1888(%rsp), %rax
movq %rax, 0x20b8(%rsp)
movq 0x20b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x698(%rsp)
leaq 0x1888(%rsp), %rax
movq %rax, 0x2200(%rsp)
movq 0x2200(%rsp), %rax
movq %rax, 0x3a70(%rsp)
movq 0x3a70(%rsp), %rax
movq %rax, 0x6a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1299891
movq 0x6a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a6c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a6c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a68(%rsp)
cmpl $0x1, 0x3a68(%rsp)
jne 0x1299891
movq 0x6a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1299862
movq 0x6a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1299860
jmp 0x129988f
movq 0x6a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3da8(%rsp)
cmpq $0x0, 0x3da8(%rsp)
je 0x129988d
movq 0x3da8(%rsp), %rdi
callq 0x5f480
jmp 0x129988f
jmp 0x1299891
movq 0x6a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12998ec
movq %rax, %rdi
callq 0x678a0
movq 0x698(%rsp), %rax
movq %rax, 0x18d0(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x192c(%rsp), %eax
leaq 0x1838(%rsp), %rdx
movq %rdx, 0x24f0(%rsp)
movq %rcx, 0x24e8(%rsp)
movl %eax, 0x24e4(%rsp)
movq 0x24e8(%rsp), %rax
movq %rax, 0x690(%rsp)
movb $0x0, 0x24e3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x24e4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1838(%rsp), %r10
movq %r10, 0x2b90(%rsp)
movl %r9d, 0x2b8c(%rsp)
movl %r8d, 0x2b88(%rsp)
movl %edi, 0x2b84(%rsp)
movq %rsi, 0x2b78(%rsp)
movq %rdx, 0x2b70(%rsp)
movl %ecx, 0x2b6c(%rsp)
movq %rax, 0x2b60(%rsp)
movq 0x2b90(%rsp), %rcx
movq %rcx, 0x688(%rsp)
movq 0x2b78(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2b70(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2b6c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2b60(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2b8c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2b88(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2b84(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x36e0(%rsp)
movl $0x10, 0x36dc(%rsp)
movq 0x36e0(%rsp), %rax
movslq 0x36dc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x36dc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x690(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1860(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1299ab8
movq 0x690(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1878(%rsp)
movb $0x1, 0x24e3(%rsp)
testb $0x1, 0x24e3(%rsp)
jne 0x1299bf3
leaq 0x1838(%rsp), %rax
movq %rax, 0x24f8(%rsp)
movq 0x24f8(%rsp), %rax
movq %rax, 0x3750(%rsp)
movq 0x3750(%rsp), %rax
movq %rax, 0x680(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1299b96
movq 0x680(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x374c(%rsp) # imm = 0xFFFFFFFF
movl 0x374c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3748(%rsp)
cmpl $0x1, 0x3748(%rsp)
jne 0x1299b96
movq 0x680(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1299b67
movq 0x680(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1299b65
jmp 0x1299b94
movq 0x680(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f38(%rsp)
cmpq $0x0, 0x3f38(%rsp)
je 0x1299b92
movq 0x3f38(%rsp), %rdi
callq 0x5f480
jmp 0x1299b94
jmp 0x1299b96
movq 0x680(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1299bf1
movq %rax, %rdi
callq 0x678a0
jmp 0x1299bf3
leaq 0x1838(%rsp), %rax
movq %rax, 0x25e0(%rsp)
movq 0x25e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x670(%rsp)
leaq 0x1838(%rsp), %rax
movq %rax, 0x2208(%rsp)
movq 0x2208(%rsp), %rax
movq %rax, 0x3a60(%rsp)
movq 0x3a60(%rsp), %rax
movq %rax, 0x678(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1299cde
movq 0x678(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a5c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a5c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a58(%rsp)
cmpl $0x1, 0x3a58(%rsp)
jne 0x1299cde
movq 0x678(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1299caf
movq 0x678(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x1299cad
jmp 0x1299cdc
movq 0x678(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3db0(%rsp)
cmpq $0x0, 0x3db0(%rsp)
je 0x1299cda
movq 0x3db0(%rsp), %rdi
callq 0x5f480
jmp 0x1299cdc
jmp 0x1299cde
movq 0x678(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1299d39
movq %rax, %rdi
callq 0x678a0
movq 0x670(%rsp), %rax
movq %rax, 0x1880(%rsp)
movl $0x0, 0x1834(%rsp)
movl 0x1834(%rsp), %eax
cmpl 0x1c70(%rsp), %eax
jge 0x1299ec4
movl $0x0, 0x1830(%rsp)
movl 0x1830(%rsp), %eax
cmpl 0x1c74(%rsp), %eax
jge 0x1299eac
movq 0x1920(%rsp), %rax
movq %rax, 0x26f8(%rsp)
movq 0x26f8(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1820(%rsp)
movl $0x0, 0x181c(%rsp)
movl 0x181c(%rsp), %eax
cmpl 0x1c78(%rsp), %eax
jge 0x1299e82
movq 0x18d0(%rsp), %rax
movq %rax, 0x26f0(%rsp)
movq 0x26f0(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1800(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x1820(%rsp), %rsi
leaq 0x1800(%rsp), %rdx
callq 0x12f6b80
movaps %xmm0, 0x17f0(%rsp)
movq 0x1880(%rsp), %rax
movaps 0x17f0(%rsp), %xmm0
movq %rax, 0x2948(%rsp)
movaps %xmm0, 0x2930(%rsp)
movaps 0x2930(%rsp), %xmm0
movq 0x2948(%rsp), %rax
movups %xmm0, (%rax)
movq 0x18d0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x18d0(%rsp)
movq 0x1880(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1880(%rsp)
movl 0x181c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x181c(%rsp)
jmp 0x1299db5
movq 0x1920(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1920(%rsp)
movl 0x1830(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1830(%rsp)
jmp 0x1299d73
jmp 0x1299eae
movl 0x1834(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1834(%rsp)
jmp 0x1299d54
jmp 0x1299ec6
movl 0x192c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x192c(%rsp)
jmp 0x129904e
movl $0x0, 0x1cc4(%rsp)
jmp 0x12a5b20
movq 0x1cb0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x12a119b
cmpl $0x1, 0x1c78(%rsp)
jne 0x129ae17
cmpl $0x1, 0x1c74(%rsp)
jne 0x129ae17
movl 0x1c6c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jne 0x129ae17
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movl 0x1c8c(%rsp), %ecx
movq 0x1c80(%rsp), %r8
movl 0x1c7c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d48(%rsp)
movq 0x1d48(%rsp), %rcx
movq %rcx, 0x660(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x66f(%rsp)
je 0x1299fd1
movq 0x660(%rsp), %rax
movq %rax, 0x2a30(%rsp)
movq 0x2a30(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x66f(%rsp)
movb 0x66f(%rsp), %al
testb $0x1, %al
jne 0x1299fde
jmp 0x1299fee
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12a5b20
movl $0x0, 0x17ec(%rsp)
movl 0x17ec(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jge 0x129ae07
movq 0x1cb8(%rsp), %rcx
movl 0x17ec(%rsp), %eax
leaq 0x1798(%rsp), %rdx
movq %rdx, 0x1f38(%rsp)
movq %rcx, 0x1f30(%rsp)
movl %eax, 0x1f2c(%rsp)
movq 0x1f30(%rsp), %rax
movq %rax, 0x658(%rsp)
movb $0x0, 0x1f2b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1f2c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1798(%rsp), %r10
movq %r10, 0x3028(%rsp)
movl %r9d, 0x3024(%rsp)
movl %r8d, 0x3020(%rsp)
movl %edi, 0x301c(%rsp)
movq %rsi, 0x3010(%rsp)
movq %rdx, 0x3008(%rsp)
movl %ecx, 0x3004(%rsp)
movq %rax, 0x2ff8(%rsp)
movq 0x3028(%rsp), %rcx
movq %rcx, 0x650(%rsp)
movq 0x3010(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3008(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3004(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ff8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3024(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3020(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x301c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3590(%rsp)
movl $0x10, 0x358c(%rsp)
movq 0x3590(%rsp), %rax
movslq 0x358c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x358c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x658(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x17c0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x129a1c9
movq 0x658(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x17d8(%rsp)
movb $0x1, 0x1f2b(%rsp)
testb $0x1, 0x1f2b(%rsp)
jne 0x129a304
leaq 0x1798(%rsp), %rax
movq %rax, 0x2120(%rsp)
movq 0x2120(%rsp), %rax
movq %rax, 0x3c30(%rsp)
movq 0x3c30(%rsp), %rax
movq %rax, 0x648(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129a2a7
movq 0x648(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c2c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c2c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c28(%rsp)
cmpl $0x1, 0x3c28(%rsp)
jne 0x129a2a7
movq 0x648(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129a278
movq 0x648(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129a276
jmp 0x129a2a5
movq 0x648(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cc8(%rsp)
cmpq $0x0, 0x3cc8(%rsp)
je 0x129a2a3
movq 0x3cc8(%rsp), %rdi
callq 0x5f480
jmp 0x129a2a5
jmp 0x129a2a7
movq 0x648(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129a302
movq %rax, %rdi
callq 0x678a0
jmp 0x129a304
leaq 0x1798(%rsp), %rax
movq %rax, 0x20b0(%rsp)
movq 0x20b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x638(%rsp)
leaq 0x1798(%rsp), %rax
movq %rax, 0x2210(%rsp)
movq 0x2210(%rsp), %rax
movq %rax, 0x3a50(%rsp)
movq 0x3a50(%rsp), %rax
movq %rax, 0x640(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129a3ef
movq 0x640(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a4c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a4c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a48(%rsp)
cmpl $0x1, 0x3a48(%rsp)
jne 0x129a3ef
movq 0x640(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129a3c0
movq 0x640(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129a3be
jmp 0x129a3ed
movq 0x640(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3db8(%rsp)
cmpq $0x0, 0x3db8(%rsp)
je 0x129a3eb
movq 0x3db8(%rsp), %rdi
callq 0x5f480
jmp 0x129a3ed
jmp 0x129a3ef
movq 0x640(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129a44a
movq %rax, %rdi
callq 0x678a0
movq 0x638(%rsp), %rax
movq %rax, 0x17e0(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x17ec(%rsp), %eax
leaq 0x1748(%rsp), %rdx
movq %rdx, 0x24d0(%rsp)
movq %rcx, 0x24c8(%rsp)
movl %eax, 0x24c4(%rsp)
movq 0x24c8(%rsp), %rax
movq %rax, 0x630(%rsp)
movb $0x0, 0x24c3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x24c4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1748(%rsp), %r10
movq %r10, 0x2bc8(%rsp)
movl %r9d, 0x2bc4(%rsp)
movl %r8d, 0x2bc0(%rsp)
movl %edi, 0x2bbc(%rsp)
movq %rsi, 0x2bb0(%rsp)
movq %rdx, 0x2ba8(%rsp)
movl %ecx, 0x2ba4(%rsp)
movq %rax, 0x2b98(%rsp)
movq 0x2bc8(%rsp), %rcx
movq %rcx, 0x628(%rsp)
movq 0x2bb0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2ba8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2ba4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2b98(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2bc4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2bc0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2bbc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x36d0(%rsp)
movl $0x10, 0x36cc(%rsp)
movq 0x36d0(%rsp), %rax
movslq 0x36cc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x36cc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x630(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1770(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x129a616
movq 0x630(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1788(%rsp)
movb $0x1, 0x24c3(%rsp)
testb $0x1, 0x24c3(%rsp)
jne 0x129a751
leaq 0x1748(%rsp), %rax
movq %rax, 0x24d8(%rsp)
movq 0x24d8(%rsp), %rax
movq %rax, 0x3760(%rsp)
movq 0x3760(%rsp), %rax
movq %rax, 0x620(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129a6f4
movq 0x620(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x375c(%rsp) # imm = 0xFFFFFFFF
movl 0x375c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3758(%rsp)
cmpl $0x1, 0x3758(%rsp)
jne 0x129a6f4
movq 0x620(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129a6c5
movq 0x620(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129a6c3
jmp 0x129a6f2
movq 0x620(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f30(%rsp)
cmpq $0x0, 0x3f30(%rsp)
je 0x129a6f0
movq 0x3f30(%rsp), %rdi
callq 0x5f480
jmp 0x129a6f2
jmp 0x129a6f4
movq 0x620(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129a74f
movq %rax, %rdi
callq 0x678a0
jmp 0x129a751
leaq 0x1748(%rsp), %rax
movq %rax, 0x25d8(%rsp)
movq 0x25d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x610(%rsp)
leaq 0x1748(%rsp), %rax
movq %rax, 0x2218(%rsp)
movq 0x2218(%rsp), %rax
movq %rax, 0x3a40(%rsp)
movq 0x3a40(%rsp), %rax
movq %rax, 0x618(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129a83c
movq 0x618(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a3c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a3c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a38(%rsp)
cmpl $0x1, 0x3a38(%rsp)
jne 0x129a83c
movq 0x618(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129a80d
movq 0x618(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129a80b
jmp 0x129a83a
movq 0x618(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3dc0(%rsp)
cmpq $0x0, 0x3dc0(%rsp)
je 0x129a838
movq 0x3dc0(%rsp), %rdi
callq 0x5f480
jmp 0x129a83a
jmp 0x129a83c
movq 0x618(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129a897
movq %rax, %rdi
callq 0x678a0
movq 0x610(%rsp), %rax
movq %rax, 0x1790(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x17ec(%rsp), %eax
leaq 0x16f8(%rsp), %rdx
movq %rdx, 0x1f20(%rsp)
movq %rcx, 0x1f18(%rsp)
movl %eax, 0x1f14(%rsp)
movq 0x1f18(%rsp), %rax
movq %rax, 0x608(%rsp)
movb $0x0, 0x1f13(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1f14(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x16f8(%rsp), %r10
movq %r10, 0x3060(%rsp)
movl %r9d, 0x305c(%rsp)
movl %r8d, 0x3058(%rsp)
movl %edi, 0x3054(%rsp)
movq %rsi, 0x3048(%rsp)
movq %rdx, 0x3040(%rsp)
movl %ecx, 0x303c(%rsp)
movq %rax, 0x3030(%rsp)
movq 0x3060(%rsp), %rcx
movq %rcx, 0x600(%rsp)
movq 0x3048(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3040(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x303c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3030(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x305c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3058(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3054(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3580(%rsp)
movl $0x10, 0x357c(%rsp)
movq 0x3580(%rsp), %rax
movslq 0x357c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x357c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x608(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1720(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x129aa63
movq 0x608(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1738(%rsp)
movb $0x1, 0x1f13(%rsp)
testb $0x1, 0x1f13(%rsp)
jne 0x129ab9e
leaq 0x16f8(%rsp), %rax
movq %rax, 0x2128(%rsp)
movq 0x2128(%rsp), %rax
movq %rax, 0x3c20(%rsp)
movq 0x3c20(%rsp), %rax
movq %rax, 0x5f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129ab41
movq 0x5f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c1c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c1c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c18(%rsp)
cmpl $0x1, 0x3c18(%rsp)
jne 0x129ab41
movq 0x5f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129ab12
movq 0x5f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129ab10
jmp 0x129ab3f
movq 0x5f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cd0(%rsp)
cmpq $0x0, 0x3cd0(%rsp)
je 0x129ab3d
movq 0x3cd0(%rsp), %rdi
callq 0x5f480
jmp 0x129ab3f
jmp 0x129ab41
movq 0x5f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129ab9c
movq %rax, %rdi
callq 0x678a0
jmp 0x129ab9e
leaq 0x16f8(%rsp), %rax
movq %rax, 0x20a8(%rsp)
movq 0x20a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5e8(%rsp)
leaq 0x16f8(%rsp), %rax
movq %rax, 0x2220(%rsp)
movq 0x2220(%rsp), %rax
movq %rax, 0x3a30(%rsp)
movq 0x3a30(%rsp), %rax
movq %rax, 0x5f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129ac89
movq 0x5f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a2c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a2c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a28(%rsp)
cmpl $0x1, 0x3a28(%rsp)
jne 0x129ac89
movq 0x5f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129ac5a
movq 0x5f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129ac58
jmp 0x129ac87
movq 0x5f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3dc8(%rsp)
cmpq $0x0, 0x3dc8(%rsp)
je 0x129ac85
movq 0x3dc8(%rsp), %rdi
callq 0x5f480
jmp 0x129ac87
jmp 0x129ac89
movq 0x5f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129ace4
movq %rax, %rdi
callq 0x678a0
movq 0x5e8(%rsp), %rax
movq %rax, 0x1740(%rsp)
movq 0x1740(%rsp), %rax
movq %rax, 0x26e8(%rsp)
movq 0x26e8(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x16e0(%rsp)
movl $0x0, 0x16dc(%rsp)
movl 0x16dc(%rsp), %eax
cmpl 0x1c88(%rsp), %eax
jge 0x129adef
movq 0x17e0(%rsp), %rax
movq %rax, 0x26e0(%rsp)
movq 0x26e0(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x16c0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x16c0(%rsp), %rsi
leaq 0x16e0(%rsp), %rdx
callq 0x12f6b80
movaps %xmm0, 0x16b0(%rsp)
movq 0x1790(%rsp), %rax
movaps 0x16b0(%rsp), %xmm0
movq %rax, 0x2928(%rsp)
movaps %xmm0, 0x2910(%rsp)
movaps 0x2910(%rsp), %xmm0
movq 0x2928(%rsp), %rax
movups %xmm0, (%rax)
movq 0x17e0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x17e0(%rsp)
movq 0x1790(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1790(%rsp)
movl 0x16dc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x16dc(%rsp)
jmp 0x129ad22
jmp 0x129adf1
movl 0x17ec(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x17ec(%rsp)
jmp 0x1299ff9
movl $0x0, 0x1cc4(%rsp)
jmp 0x12a5b20
movl 0x1c78(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jne 0x129b944
movl 0x1c74(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jne 0x129b944
cmpl $0x1, 0x1c6c(%rsp)
jne 0x129b944
cmpl $0x1, 0x1c5c(%rsp)
jne 0x129b944
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movl 0x1c8c(%rsp), %ecx
movq 0x1c80(%rsp), %r8
movl 0x1c7c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d40(%rsp)
movq 0x1d40(%rsp), %rcx
movq %rcx, 0x5d8(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x5e7(%rsp)
je 0x129aefe
movq 0x5d8(%rsp), %rax
movq %rax, 0x2a38(%rsp)
movq 0x2a38(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x5e7(%rsp)
movb 0x5e7(%rsp), %al
testb $0x1, %al
jne 0x129af0b
jmp 0x129af1b
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12a5b20
movl $0x0, 0x16ac(%rsp)
movl 0x16ac(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jge 0x129b934
movq 0x1cb8(%rsp), %rcx
movl 0x16ac(%rsp), %eax
leaq 0x1658(%rsp), %rdx
movq %rdx, 0x1f08(%rsp)
movq %rcx, 0x1f00(%rsp)
movl %eax, 0x1efc(%rsp)
movq 0x1f00(%rsp), %rax
movq %rax, 0x5d0(%rsp)
movb $0x0, 0x1efb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1efc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1658(%rsp), %r10
movq %r10, 0x3098(%rsp)
movl %r9d, 0x3094(%rsp)
movl %r8d, 0x3090(%rsp)
movl %edi, 0x308c(%rsp)
movq %rsi, 0x3080(%rsp)
movq %rdx, 0x3078(%rsp)
movl %ecx, 0x3074(%rsp)
movq %rax, 0x3068(%rsp)
movq 0x3098(%rsp), %rcx
movq %rcx, 0x5c8(%rsp)
movq 0x3080(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3078(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3074(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3068(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3094(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3090(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x308c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3570(%rsp)
movl $0x10, 0x356c(%rsp)
movq 0x3570(%rsp), %rax
movslq 0x356c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x356c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5d0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1680(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x129b0f6
movq 0x5d0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1698(%rsp)
movb $0x1, 0x1efb(%rsp)
testb $0x1, 0x1efb(%rsp)
jne 0x129b231
leaq 0x1658(%rsp), %rax
movq %rax, 0x2130(%rsp)
movq 0x2130(%rsp), %rax
movq %rax, 0x3c10(%rsp)
movq 0x3c10(%rsp), %rax
movq %rax, 0x5c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129b1d4
movq 0x5c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c0c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c0c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c08(%rsp)
cmpl $0x1, 0x3c08(%rsp)
jne 0x129b1d4
movq 0x5c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129b1a5
movq 0x5c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129b1a3
jmp 0x129b1d2
movq 0x5c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cd8(%rsp)
cmpq $0x0, 0x3cd8(%rsp)
je 0x129b1d0
movq 0x3cd8(%rsp), %rdi
callq 0x5f480
jmp 0x129b1d2
jmp 0x129b1d4
movq 0x5c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129b22f
movq %rax, %rdi
callq 0x678a0
jmp 0x129b231
leaq 0x1658(%rsp), %rax
movq %rax, 0x20a0(%rsp)
movq 0x20a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5b0(%rsp)
leaq 0x1658(%rsp), %rax
movq %rax, 0x2228(%rsp)
movq 0x2228(%rsp), %rax
movq %rax, 0x3a20(%rsp)
movq 0x3a20(%rsp), %rax
movq %rax, 0x5b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129b31c
movq 0x5b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a1c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a1c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a18(%rsp)
cmpl $0x1, 0x3a18(%rsp)
jne 0x129b31c
movq 0x5b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129b2ed
movq 0x5b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129b2eb
jmp 0x129b31a
movq 0x5b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3dd0(%rsp)
cmpq $0x0, 0x3dd0(%rsp)
je 0x129b318
movq 0x3dd0(%rsp), %rdi
callq 0x5f480
jmp 0x129b31a
jmp 0x129b31c
movq 0x5b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129b377
movq %rax, %rdi
callq 0x678a0
movq 0x5b0(%rsp), %rax
movq %rax, 0x16a0(%rsp)
movq 0x1cb0(%rsp), %rax
movq %rax, 0x2098(%rsp)
movq 0x2098(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1650(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x16ac(%rsp), %eax
leaq 0x1600(%rsp), %rdx
movq %rdx, 0x24b0(%rsp)
movq %rcx, 0x24a8(%rsp)
movl %eax, 0x24a4(%rsp)
movq 0x24a8(%rsp), %rax
movq %rax, 0x5a8(%rsp)
movb $0x0, 0x24a3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x24a4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1600(%rsp), %r10
movq %r10, 0x2c00(%rsp)
movl %r9d, 0x2bfc(%rsp)
movl %r8d, 0x2bf8(%rsp)
movl %edi, 0x2bf4(%rsp)
movq %rsi, 0x2be8(%rsp)
movq %rdx, 0x2be0(%rsp)
movl %ecx, 0x2bdc(%rsp)
movq %rax, 0x2bd0(%rsp)
movq 0x2c00(%rsp), %rcx
movq %rcx, 0x5a0(%rsp)
movq 0x2be8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2be0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2bdc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2bd0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2bfc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2bf8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2bf4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x36c0(%rsp)
movl $0x10, 0x36bc(%rsp)
movq 0x36c0(%rsp), %rax
movslq 0x36bc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x36bc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5a8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1628(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x129b566
movq 0x5a8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1640(%rsp)
movb $0x1, 0x24a3(%rsp)
testb $0x1, 0x24a3(%rsp)
jne 0x129b6a1
leaq 0x1600(%rsp), %rax
movq %rax, 0x24b8(%rsp)
movq 0x24b8(%rsp), %rax
movq %rax, 0x3770(%rsp)
movq 0x3770(%rsp), %rax
movq %rax, 0x598(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129b644
movq 0x598(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x376c(%rsp) # imm = 0xFFFFFFFF
movl 0x376c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3768(%rsp)
cmpl $0x1, 0x3768(%rsp)
jne 0x129b644
movq 0x598(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129b615
movq 0x598(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129b613
jmp 0x129b642
movq 0x598(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f28(%rsp)
cmpq $0x0, 0x3f28(%rsp)
je 0x129b640
movq 0x3f28(%rsp), %rdi
callq 0x5f480
jmp 0x129b642
jmp 0x129b644
movq 0x598(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129b69f
movq %rax, %rdi
callq 0x678a0
jmp 0x129b6a1
leaq 0x1600(%rsp), %rax
movq %rax, 0x25d0(%rsp)
movq 0x25d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x588(%rsp)
leaq 0x1600(%rsp), %rax
movq %rax, 0x2230(%rsp)
movq 0x2230(%rsp), %rax
movq %rax, 0x3a10(%rsp)
movq 0x3a10(%rsp), %rax
movq %rax, 0x590(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129b78c
movq 0x590(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a0c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a0c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a08(%rsp)
cmpl $0x1, 0x3a08(%rsp)
jne 0x129b78c
movq 0x590(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129b75d
movq 0x590(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129b75b
jmp 0x129b78a
movq 0x590(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3dd8(%rsp)
cmpq $0x0, 0x3dd8(%rsp)
je 0x129b788
movq 0x3dd8(%rsp), %rdi
callq 0x5f480
jmp 0x129b78a
jmp 0x129b78c
movq 0x590(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129b7e7
movq %rax, %rdi
callq 0x678a0
movq 0x588(%rsp), %rax
movq %rax, 0x1648(%rsp)
movl $0x0, 0x15fc(%rsp)
movl 0x15fc(%rsp), %eax
cmpl 0x1c88(%rsp), %eax
jge 0x129b91c
movq 0x16a0(%rsp), %rax
movq %rax, 0x26d8(%rsp)
movq 0x26d8(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x15e0(%rsp)
movq 0x1650(%rsp), %rax
movss (%rax), %xmm0
movss %xmm0, 0x2a00(%rsp)
movaps 0x2a00(%rsp), %xmm0
shufps $0x0, %xmm0, %xmm0 # xmm0 = xmm0[0,0,0,0]
movaps %xmm0, 0x29f0(%rsp)
movaps 0x29f0(%rsp), %xmm0
movaps %xmm0, 0x15d0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x15e0(%rsp), %rsi
leaq 0x15d0(%rsp), %rdx
callq 0x12f6b80
movaps %xmm0, 0x15c0(%rsp)
movq 0x1648(%rsp), %rax
movaps 0x15c0(%rsp), %xmm0
movq %rax, 0x2908(%rsp)
movaps %xmm0, 0x28f0(%rsp)
movaps 0x28f0(%rsp), %xmm0
movq 0x2908(%rsp), %rax
movups %xmm0, (%rax)
movq 0x16a0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x16a0(%rsp)
movq 0x1650(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x1650(%rsp)
movq 0x1648(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1648(%rsp)
movl 0x15fc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x15fc(%rsp)
jmp 0x129b802
jmp 0x129b91e
movl 0x16ac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x16ac(%rsp)
jmp 0x129af26
movl $0x0, 0x1cc4(%rsp)
jmp 0x12a5b20
cmpl $0x1, 0x1c98(%rsp)
jne 0x129c85d
cmpl $0x1, 0x1c94(%rsp)
jne 0x129c85d
movl 0x1c6c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jne 0x129c85d
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c6c(%rsp), %ecx
movq 0x1c60(%rsp), %r8
movl 0x1c5c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d38(%rsp)
movq 0x1d38(%rsp), %rcx
movq %rcx, 0x578(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x587(%rsp)
je 0x129ba17
movq 0x578(%rsp), %rax
movq %rax, 0x2a40(%rsp)
movq 0x2a40(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x587(%rsp)
movb 0x587(%rsp), %al
testb $0x1, %al
jne 0x129ba24
jmp 0x129ba34
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12a5b20
movl $0x0, 0x15bc(%rsp)
movl 0x15bc(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x129c84d
movq 0x1cb8(%rsp), %rcx
movl 0x15bc(%rsp), %eax
leaq 0x1568(%rsp), %rdx
movq %rdx, 0x1ef0(%rsp)
movq %rcx, 0x1ee8(%rsp)
movl %eax, 0x1ee4(%rsp)
movq 0x1ee8(%rsp), %rax
movq %rax, 0x570(%rsp)
movb $0x0, 0x1ee3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1ee4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1568(%rsp), %r10
movq %r10, 0x30d0(%rsp)
movl %r9d, 0x30cc(%rsp)
movl %r8d, 0x30c8(%rsp)
movl %edi, 0x30c4(%rsp)
movq %rsi, 0x30b8(%rsp)
movq %rdx, 0x30b0(%rsp)
movl %ecx, 0x30ac(%rsp)
movq %rax, 0x30a0(%rsp)
movq 0x30d0(%rsp), %rcx
movq %rcx, 0x568(%rsp)
movq 0x30b8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x30b0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x30ac(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x30a0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x30cc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x30c8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x30c4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3560(%rsp)
movl $0x10, 0x355c(%rsp)
movq 0x3560(%rsp), %rax
movslq 0x355c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x355c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x570(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1590(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x129bc0f
movq 0x570(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x15a8(%rsp)
movb $0x1, 0x1ee3(%rsp)
testb $0x1, 0x1ee3(%rsp)
jne 0x129bd4a
leaq 0x1568(%rsp), %rax
movq %rax, 0x2138(%rsp)
movq 0x2138(%rsp), %rax
movq %rax, 0x3c00(%rsp)
movq 0x3c00(%rsp), %rax
movq %rax, 0x560(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129bced
movq 0x560(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bfc(%rsp) # imm = 0xFFFFFFFF
movl 0x3bfc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3bf8(%rsp)
cmpl $0x1, 0x3bf8(%rsp)
jne 0x129bced
movq 0x560(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129bcbe
movq 0x560(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129bcbc
jmp 0x129bceb
movq 0x560(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ce0(%rsp)
cmpq $0x0, 0x3ce0(%rsp)
je 0x129bce9
movq 0x3ce0(%rsp), %rdi
callq 0x5f480
jmp 0x129bceb
jmp 0x129bced
movq 0x560(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129bd48
movq %rax, %rdi
callq 0x678a0
jmp 0x129bd4a
leaq 0x1568(%rsp), %rax
movq %rax, 0x2090(%rsp)
movq 0x2090(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x550(%rsp)
leaq 0x1568(%rsp), %rax
movq %rax, 0x2238(%rsp)
movq 0x2238(%rsp), %rax
movq %rax, 0x3a00(%rsp)
movq 0x3a00(%rsp), %rax
movq %rax, 0x558(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129be35
movq 0x558(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x39fc(%rsp) # imm = 0xFFFFFFFF
movl 0x39fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x39f8(%rsp)
cmpl $0x1, 0x39f8(%rsp)
jne 0x129be35
movq 0x558(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129be06
movq 0x558(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129be04
jmp 0x129be33
movq 0x558(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3de0(%rsp)
cmpq $0x0, 0x3de0(%rsp)
je 0x129be31
movq 0x3de0(%rsp), %rdi
callq 0x5f480
jmp 0x129be33
jmp 0x129be35
movq 0x558(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129be90
movq %rax, %rdi
callq 0x678a0
movq 0x550(%rsp), %rax
movq %rax, 0x15b0(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x15bc(%rsp), %eax
leaq 0x1518(%rsp), %rdx
movq %rdx, 0x2490(%rsp)
movq %rcx, 0x2488(%rsp)
movl %eax, 0x2484(%rsp)
movq 0x2488(%rsp), %rax
movq %rax, 0x548(%rsp)
movb $0x0, 0x2483(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2484(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1518(%rsp), %r10
movq %r10, 0x2c38(%rsp)
movl %r9d, 0x2c34(%rsp)
movl %r8d, 0x2c30(%rsp)
movl %edi, 0x2c2c(%rsp)
movq %rsi, 0x2c20(%rsp)
movq %rdx, 0x2c18(%rsp)
movl %ecx, 0x2c14(%rsp)
movq %rax, 0x2c08(%rsp)
movq 0x2c38(%rsp), %rcx
movq %rcx, 0x540(%rsp)
movq 0x2c20(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2c18(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2c14(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2c08(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2c34(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2c30(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2c2c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x36b0(%rsp)
movl $0x10, 0x36ac(%rsp)
movq 0x36b0(%rsp), %rax
movslq 0x36ac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x36ac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x548(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1540(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x129c05c
movq 0x548(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1558(%rsp)
movb $0x1, 0x2483(%rsp)
testb $0x1, 0x2483(%rsp)
jne 0x129c197
leaq 0x1518(%rsp), %rax
movq %rax, 0x2498(%rsp)
movq 0x2498(%rsp), %rax
movq %rax, 0x3780(%rsp)
movq 0x3780(%rsp), %rax
movq %rax, 0x538(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129c13a
movq 0x538(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x377c(%rsp) # imm = 0xFFFFFFFF
movl 0x377c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3778(%rsp)
cmpl $0x1, 0x3778(%rsp)
jne 0x129c13a
movq 0x538(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129c10b
movq 0x538(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129c109
jmp 0x129c138
movq 0x538(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f20(%rsp)
cmpq $0x0, 0x3f20(%rsp)
je 0x129c136
movq 0x3f20(%rsp), %rdi
callq 0x5f480
jmp 0x129c138
jmp 0x129c13a
movq 0x538(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129c195
movq %rax, %rdi
callq 0x678a0
jmp 0x129c197
leaq 0x1518(%rsp), %rax
movq %rax, 0x25c8(%rsp)
movq 0x25c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x528(%rsp)
leaq 0x1518(%rsp), %rax
movq %rax, 0x2240(%rsp)
movq 0x2240(%rsp), %rax
movq %rax, 0x39f0(%rsp)
movq 0x39f0(%rsp), %rax
movq %rax, 0x530(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129c282
movq 0x530(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x39ec(%rsp) # imm = 0xFFFFFFFF
movl 0x39ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x39e8(%rsp)
cmpl $0x1, 0x39e8(%rsp)
jne 0x129c282
movq 0x530(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129c253
movq 0x530(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129c251
jmp 0x129c280
movq 0x530(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3de8(%rsp)
cmpq $0x0, 0x3de8(%rsp)
je 0x129c27e
movq 0x3de8(%rsp), %rdi
callq 0x5f480
jmp 0x129c280
jmp 0x129c282
movq 0x530(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129c2dd
movq %rax, %rdi
callq 0x678a0
movq 0x528(%rsp), %rax
movq %rax, 0x1560(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x15bc(%rsp), %eax
leaq 0x14c8(%rsp), %rdx
movq %rdx, 0x1ed8(%rsp)
movq %rcx, 0x1ed0(%rsp)
movl %eax, 0x1ecc(%rsp)
movq 0x1ed0(%rsp), %rax
movq %rax, 0x520(%rsp)
movb $0x0, 0x1ecb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1ecc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x14c8(%rsp), %r10
movq %r10, 0x3108(%rsp)
movl %r9d, 0x3104(%rsp)
movl %r8d, 0x3100(%rsp)
movl %edi, 0x30fc(%rsp)
movq %rsi, 0x30f0(%rsp)
movq %rdx, 0x30e8(%rsp)
movl %ecx, 0x30e4(%rsp)
movq %rax, 0x30d8(%rsp)
movq 0x3108(%rsp), %rcx
movq %rcx, 0x518(%rsp)
movq 0x30f0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x30e8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x30e4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x30d8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3104(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3100(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x30fc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3550(%rsp)
movl $0x10, 0x354c(%rsp)
movq 0x3550(%rsp), %rax
movslq 0x354c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x354c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x520(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x14f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x129c4a9
movq 0x520(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1508(%rsp)
movb $0x1, 0x1ecb(%rsp)
testb $0x1, 0x1ecb(%rsp)
jne 0x129c5e4
leaq 0x14c8(%rsp), %rax
movq %rax, 0x2140(%rsp)
movq 0x2140(%rsp), %rax
movq %rax, 0x3bf0(%rsp)
movq 0x3bf0(%rsp), %rax
movq %rax, 0x510(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129c587
movq 0x510(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bec(%rsp) # imm = 0xFFFFFFFF
movl 0x3bec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3be8(%rsp)
cmpl $0x1, 0x3be8(%rsp)
jne 0x129c587
movq 0x510(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129c558
movq 0x510(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129c556
jmp 0x129c585
movq 0x510(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ce8(%rsp)
cmpq $0x0, 0x3ce8(%rsp)
je 0x129c583
movq 0x3ce8(%rsp), %rdi
callq 0x5f480
jmp 0x129c585
jmp 0x129c587
movq 0x510(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129c5e2
movq %rax, %rdi
callq 0x678a0
jmp 0x129c5e4
leaq 0x14c8(%rsp), %rax
movq %rax, 0x2088(%rsp)
movq 0x2088(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x500(%rsp)
leaq 0x14c8(%rsp), %rax
movq %rax, 0x2248(%rsp)
movq 0x2248(%rsp), %rax
movq %rax, 0x39e0(%rsp)
movq 0x39e0(%rsp), %rax
movq %rax, 0x508(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129c6cf
movq 0x508(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x39dc(%rsp) # imm = 0xFFFFFFFF
movl 0x39dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x39d8(%rsp)
cmpl $0x1, 0x39d8(%rsp)
jne 0x129c6cf
movq 0x508(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129c6a0
movq 0x508(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129c69e
jmp 0x129c6cd
movq 0x508(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3df0(%rsp)
cmpq $0x0, 0x3df0(%rsp)
je 0x129c6cb
movq 0x3df0(%rsp), %rdi
callq 0x5f480
jmp 0x129c6cd
jmp 0x129c6cf
movq 0x508(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129c72a
movq %rax, %rdi
callq 0x678a0
movq 0x500(%rsp), %rax
movq %rax, 0x1510(%rsp)
movq 0x15b0(%rsp), %rax
movq %rax, 0x26d0(%rsp)
movq 0x26d0(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x14b0(%rsp)
movl $0x0, 0x14ac(%rsp)
movl 0x14ac(%rsp), %eax
cmpl 0x1c68(%rsp), %eax
jge 0x129c835
movq 0x1510(%rsp), %rax
movq %rax, 0x26c8(%rsp)
movq 0x26c8(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1490(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x14b0(%rsp), %rsi
leaq 0x1490(%rsp), %rdx
callq 0x12f6b80
movaps %xmm0, 0x1480(%rsp)
movq 0x1560(%rsp), %rax
movaps 0x1480(%rsp), %xmm0
movq %rax, 0x28e8(%rsp)
movaps %xmm0, 0x28d0(%rsp)
movaps 0x28d0(%rsp), %xmm0
movq 0x28e8(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1510(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1510(%rsp)
movq 0x1560(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1560(%rsp)
movl 0x14ac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x14ac(%rsp)
jmp 0x129c768
jmp 0x129c837
movl 0x15bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x15bc(%rsp)
jmp 0x129ba3f
movl $0x0, 0x1cc4(%rsp)
jmp 0x12a5b20
movl 0x1c78(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jne 0x129d38a
movl 0x1c74(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jne 0x129d38a
cmpl $0x1, 0x1c8c(%rsp)
jne 0x129d38a
cmpl $0x1, 0x1c7c(%rsp)
jne 0x129d38a
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c6c(%rsp), %ecx
movq 0x1c60(%rsp), %r8
movl 0x1c5c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d30(%rsp)
movq 0x1d30(%rsp), %rcx
movq %rcx, 0x4f0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x4ff(%rsp)
je 0x129c944
movq 0x4f0(%rsp), %rax
movq %rax, 0x2a48(%rsp)
movq 0x2a48(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x4ff(%rsp)
movb 0x4ff(%rsp), %al
testb $0x1, %al
jne 0x129c951
jmp 0x129c961
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12a5b20
movl $0x0, 0x147c(%rsp)
movl 0x147c(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x129d37a
movq 0x1cb8(%rsp), %rax
movq %rax, 0x2080(%rsp)
movq 0x2080(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1470(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x147c(%rsp), %eax
leaq 0x1420(%rsp), %rdx
movq %rdx, 0x1ec0(%rsp)
movq %rcx, 0x1eb8(%rsp)
movl %eax, 0x1eb4(%rsp)
movq 0x1eb8(%rsp), %rax
movq %rax, 0x4e8(%rsp)
movb $0x0, 0x1eb3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1eb4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1420(%rsp), %r10
movq %r10, 0x3140(%rsp)
movl %r9d, 0x313c(%rsp)
movl %r8d, 0x3138(%rsp)
movl %edi, 0x3134(%rsp)
movq %rsi, 0x3128(%rsp)
movq %rdx, 0x3120(%rsp)
movl %ecx, 0x311c(%rsp)
movq %rax, 0x3110(%rsp)
movq 0x3140(%rsp), %rcx
movq %rcx, 0x4e0(%rsp)
movq 0x3128(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3120(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x311c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3110(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x313c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3138(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3134(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3540(%rsp)
movl $0x10, 0x353c(%rsp)
movq 0x3540(%rsp), %rax
movslq 0x353c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x353c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4e8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1448(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x129cb5f
movq 0x4e8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1460(%rsp)
movb $0x1, 0x1eb3(%rsp)
testb $0x1, 0x1eb3(%rsp)
jne 0x129cc9a
leaq 0x1420(%rsp), %rax
movq %rax, 0x2148(%rsp)
movq 0x2148(%rsp), %rax
movq %rax, 0x3be0(%rsp)
movq 0x3be0(%rsp), %rax
movq %rax, 0x4d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129cc3d
movq 0x4d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bdc(%rsp) # imm = 0xFFFFFFFF
movl 0x3bdc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3bd8(%rsp)
cmpl $0x1, 0x3bd8(%rsp)
jne 0x129cc3d
movq 0x4d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129cc0e
movq 0x4d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129cc0c
jmp 0x129cc3b
movq 0x4d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cf0(%rsp)
cmpq $0x0, 0x3cf0(%rsp)
je 0x129cc39
movq 0x3cf0(%rsp), %rdi
callq 0x5f480
jmp 0x129cc3b
jmp 0x129cc3d
movq 0x4d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129cc98
movq %rax, %rdi
callq 0x678a0
jmp 0x129cc9a
leaq 0x1420(%rsp), %rax
movq %rax, 0x2078(%rsp)
movq 0x2078(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4c8(%rsp)
leaq 0x1420(%rsp), %rax
movq %rax, 0x2250(%rsp)
movq 0x2250(%rsp), %rax
movq %rax, 0x39d0(%rsp)
movq 0x39d0(%rsp), %rax
movq %rax, 0x4d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129cd85
movq 0x4d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x39cc(%rsp) # imm = 0xFFFFFFFF
movl 0x39cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x39c8(%rsp)
cmpl $0x1, 0x39c8(%rsp)
jne 0x129cd85
movq 0x4d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129cd56
movq 0x4d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129cd54
jmp 0x129cd83
movq 0x4d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3df8(%rsp)
cmpq $0x0, 0x3df8(%rsp)
je 0x129cd81
movq 0x3df8(%rsp), %rdi
callq 0x5f480
jmp 0x129cd83
jmp 0x129cd85
movq 0x4d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129cde0
movq %rax, %rdi
callq 0x678a0
movq 0x4c8(%rsp), %rax
movq %rax, 0x1468(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x147c(%rsp), %eax
leaq 0x13d0(%rsp), %rdx
movq %rdx, 0x2470(%rsp)
movq %rcx, 0x2468(%rsp)
movl %eax, 0x2464(%rsp)
movq 0x2468(%rsp), %rax
movq %rax, 0x4c0(%rsp)
movb $0x0, 0x2463(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2464(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x13d0(%rsp), %r10
movq %r10, 0x2c70(%rsp)
movl %r9d, 0x2c6c(%rsp)
movl %r8d, 0x2c68(%rsp)
movl %edi, 0x2c64(%rsp)
movq %rsi, 0x2c58(%rsp)
movq %rdx, 0x2c50(%rsp)
movl %ecx, 0x2c4c(%rsp)
movq %rax, 0x2c40(%rsp)
movq 0x2c70(%rsp), %rcx
movq %rcx, 0x4b8(%rsp)
movq 0x2c58(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2c50(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2c4c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2c40(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2c6c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2c68(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2c64(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x36a0(%rsp)
movl $0x10, 0x369c(%rsp)
movq 0x36a0(%rsp), %rax
movslq 0x369c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x369c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4c0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x13f8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x129cfac
movq 0x4c0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1410(%rsp)
movb $0x1, 0x2463(%rsp)
testb $0x1, 0x2463(%rsp)
jne 0x129d0e7
leaq 0x13d0(%rsp), %rax
movq %rax, 0x2478(%rsp)
movq 0x2478(%rsp), %rax
movq %rax, 0x3790(%rsp)
movq 0x3790(%rsp), %rax
movq %rax, 0x4b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129d08a
movq 0x4b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x378c(%rsp) # imm = 0xFFFFFFFF
movl 0x378c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3788(%rsp)
cmpl $0x1, 0x3788(%rsp)
jne 0x129d08a
movq 0x4b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129d05b
movq 0x4b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129d059
jmp 0x129d088
movq 0x4b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f18(%rsp)
cmpq $0x0, 0x3f18(%rsp)
je 0x129d086
movq 0x3f18(%rsp), %rdi
callq 0x5f480
jmp 0x129d088
jmp 0x129d08a
movq 0x4b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129d0e5
movq %rax, %rdi
callq 0x678a0
jmp 0x129d0e7
leaq 0x13d0(%rsp), %rax
movq %rax, 0x25c0(%rsp)
movq 0x25c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4a0(%rsp)
leaq 0x13d0(%rsp), %rax
movq %rax, 0x2258(%rsp)
movq 0x2258(%rsp), %rax
movq %rax, 0x39c0(%rsp)
movq 0x39c0(%rsp), %rax
movq %rax, 0x4a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129d1d2
movq 0x4a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x39bc(%rsp) # imm = 0xFFFFFFFF
movl 0x39bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x39b8(%rsp)
cmpl $0x1, 0x39b8(%rsp)
jne 0x129d1d2
movq 0x4a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129d1a3
movq 0x4a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129d1a1
jmp 0x129d1d0
movq 0x4a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e00(%rsp)
cmpq $0x0, 0x3e00(%rsp)
je 0x129d1ce
movq 0x3e00(%rsp), %rdi
callq 0x5f480
jmp 0x129d1d0
jmp 0x129d1d2
movq 0x4a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129d22d
movq %rax, %rdi
callq 0x678a0
movq 0x4a0(%rsp), %rax
movq %rax, 0x1418(%rsp)
movl $0x0, 0x13cc(%rsp)
movl 0x13cc(%rsp), %eax
cmpl 0x1c68(%rsp), %eax
jge 0x129d362
movq 0x1470(%rsp), %rax
movss (%rax), %xmm0
movss %xmm0, 0x29e0(%rsp)
movaps 0x29e0(%rsp), %xmm0
shufps $0x0, %xmm0, %xmm0 # xmm0 = xmm0[0,0,0,0]
movaps %xmm0, 0x29d0(%rsp)
movaps 0x29d0(%rsp), %xmm0
movaps %xmm0, 0x13b0(%rsp)
movq 0x1468(%rsp), %rax
movq %rax, 0x26c0(%rsp)
movq 0x26c0(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x13a0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x13b0(%rsp), %rsi
leaq 0x13a0(%rsp), %rdx
callq 0x12f6b80
movaps %xmm0, 0x1390(%rsp)
movq 0x1418(%rsp), %rax
movaps 0x1390(%rsp), %xmm0
movq %rax, 0x28c8(%rsp)
movaps %xmm0, 0x28b0(%rsp)
movaps 0x28b0(%rsp), %xmm0
movq 0x28c8(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1470(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x1470(%rsp)
movq 0x1468(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1468(%rsp)
movq 0x1418(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1418(%rsp)
movl 0x13cc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x13cc(%rsp)
jmp 0x129d248
jmp 0x129d364
movl 0x147c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x147c(%rsp)
jmp 0x129c96c
movl $0x0, 0x1cc4(%rsp)
jmp 0x12a5b20
cmpl $0x1, 0x1c98(%rsp)
je 0x129e302
cmpl $0x1, 0x1c78(%rsp)
jne 0x129e302
movl 0x1c74(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jne 0x129e302
movl 0x1c6c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jne 0x129e302
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movl 0x1c8c(%rsp), %ecx
movq 0x1c80(%rsp), %r8
movl 0x1c7c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d28(%rsp)
movq 0x1d28(%rsp), %rcx
movq %rcx, 0x490(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x49f(%rsp)
je 0x129d471
movq 0x490(%rsp), %rax
movq %rax, 0x2a50(%rsp)
movq 0x2a50(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x49f(%rsp)
movb 0x49f(%rsp), %al
testb $0x1, %al
jne 0x129d47e
jmp 0x129d48e
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12a5b20
movl $0x0, 0x138c(%rsp)
movl 0x138c(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x129e2f2
movq 0x1cb8(%rsp), %rcx
movl 0x138c(%rsp), %eax
leaq 0x1338(%rsp), %rdx
movq %rdx, 0x1ea8(%rsp)
movq %rcx, 0x1ea0(%rsp)
movl %eax, 0x1e9c(%rsp)
movq 0x1ea0(%rsp), %rax
movq %rax, 0x488(%rsp)
movb $0x0, 0x1e9b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e9c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1338(%rsp), %r10
movq %r10, 0x3178(%rsp)
movl %r9d, 0x3174(%rsp)
movl %r8d, 0x3170(%rsp)
movl %edi, 0x316c(%rsp)
movq %rsi, 0x3160(%rsp)
movq %rdx, 0x3158(%rsp)
movl %ecx, 0x3154(%rsp)
movq %rax, 0x3148(%rsp)
movq 0x3178(%rsp), %rcx
movq %rcx, 0x480(%rsp)
movq 0x3160(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3158(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3154(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3148(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3174(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3170(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x316c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3530(%rsp)
movl $0x10, 0x352c(%rsp)
movq 0x3530(%rsp), %rax
movslq 0x352c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x352c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x488(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1360(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x129d669
movq 0x488(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1378(%rsp)
movb $0x1, 0x1e9b(%rsp)
testb $0x1, 0x1e9b(%rsp)
jne 0x129d7a4
leaq 0x1338(%rsp), %rax
movq %rax, 0x2150(%rsp)
movq 0x2150(%rsp), %rax
movq %rax, 0x3bd0(%rsp)
movq 0x3bd0(%rsp), %rax
movq %rax, 0x478(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129d747
movq 0x478(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bcc(%rsp) # imm = 0xFFFFFFFF
movl 0x3bcc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3bc8(%rsp)
cmpl $0x1, 0x3bc8(%rsp)
jne 0x129d747
movq 0x478(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129d718
movq 0x478(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129d716
jmp 0x129d745
movq 0x478(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cf8(%rsp)
cmpq $0x0, 0x3cf8(%rsp)
je 0x129d743
movq 0x3cf8(%rsp), %rdi
callq 0x5f480
jmp 0x129d745
jmp 0x129d747
movq 0x478(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129d7a2
movq %rax, %rdi
callq 0x678a0
jmp 0x129d7a4
leaq 0x1338(%rsp), %rax
movq %rax, 0x2070(%rsp)
movq 0x2070(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x468(%rsp)
leaq 0x1338(%rsp), %rax
movq %rax, 0x2260(%rsp)
movq 0x2260(%rsp), %rax
movq %rax, 0x39b0(%rsp)
movq 0x39b0(%rsp), %rax
movq %rax, 0x470(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129d88f
movq 0x470(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x39ac(%rsp) # imm = 0xFFFFFFFF
movl 0x39ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x39a8(%rsp)
cmpl $0x1, 0x39a8(%rsp)
jne 0x129d88f
movq 0x470(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129d860
movq 0x470(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129d85e
jmp 0x129d88d
movq 0x470(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e08(%rsp)
cmpq $0x0, 0x3e08(%rsp)
je 0x129d88b
movq 0x3e08(%rsp), %rdi
callq 0x5f480
jmp 0x129d88d
jmp 0x129d88f
movq 0x470(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129d8ea
movq %rax, %rdi
callq 0x678a0
movq 0x468(%rsp), %rax
movq %rax, 0x1380(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x138c(%rsp), %eax
leaq 0x12e8(%rsp), %rdx
movq %rdx, 0x1e90(%rsp)
movq %rcx, 0x1e88(%rsp)
movl %eax, 0x1e84(%rsp)
movq 0x1e88(%rsp), %rax
movq %rax, 0x460(%rsp)
movb $0x0, 0x1e83(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e84(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x12e8(%rsp), %r10
movq %r10, 0x31b0(%rsp)
movl %r9d, 0x31ac(%rsp)
movl %r8d, 0x31a8(%rsp)
movl %edi, 0x31a4(%rsp)
movq %rsi, 0x3198(%rsp)
movq %rdx, 0x3190(%rsp)
movl %ecx, 0x318c(%rsp)
movq %rax, 0x3180(%rsp)
movq 0x31b0(%rsp), %rcx
movq %rcx, 0x458(%rsp)
movq 0x3198(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3190(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x318c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3180(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x31ac(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x31a8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x31a4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3520(%rsp)
movl $0x10, 0x351c(%rsp)
movq 0x3520(%rsp), %rax
movslq 0x351c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x351c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x460(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1310(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x129dab6
movq 0x460(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1328(%rsp)
movb $0x1, 0x1e83(%rsp)
testb $0x1, 0x1e83(%rsp)
jne 0x129dbf1
leaq 0x12e8(%rsp), %rax
movq %rax, 0x2158(%rsp)
movq 0x2158(%rsp), %rax
movq %rax, 0x3bc0(%rsp)
movq 0x3bc0(%rsp), %rax
movq %rax, 0x450(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129db94
movq 0x450(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bbc(%rsp) # imm = 0xFFFFFFFF
movl 0x3bbc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3bb8(%rsp)
cmpl $0x1, 0x3bb8(%rsp)
jne 0x129db94
movq 0x450(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129db65
movq 0x450(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129db63
jmp 0x129db92
movq 0x450(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d00(%rsp)
cmpq $0x0, 0x3d00(%rsp)
je 0x129db90
movq 0x3d00(%rsp), %rdi
callq 0x5f480
jmp 0x129db92
jmp 0x129db94
movq 0x450(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129dbef
movq %rax, %rdi
callq 0x678a0
jmp 0x129dbf1
leaq 0x12e8(%rsp), %rax
movq %rax, 0x2068(%rsp)
movq 0x2068(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x440(%rsp)
leaq 0x12e8(%rsp), %rax
movq %rax, 0x2268(%rsp)
movq 0x2268(%rsp), %rax
movq %rax, 0x39a0(%rsp)
movq 0x39a0(%rsp), %rax
movq %rax, 0x448(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129dcdc
movq 0x448(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x399c(%rsp) # imm = 0xFFFFFFFF
movl 0x399c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3998(%rsp)
cmpl $0x1, 0x3998(%rsp)
jne 0x129dcdc
movq 0x448(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129dcad
movq 0x448(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129dcab
jmp 0x129dcda
movq 0x448(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e10(%rsp)
cmpq $0x0, 0x3e10(%rsp)
je 0x129dcd8
movq 0x3e10(%rsp), %rdi
callq 0x5f480
jmp 0x129dcda
jmp 0x129dcdc
movq 0x448(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129dd37
movq %rax, %rdi
callq 0x678a0
movq 0x440(%rsp), %rax
movq %rax, 0x1330(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x138c(%rsp), %eax
leaq 0x1298(%rsp), %rdx
movq %rdx, 0x2450(%rsp)
movq %rcx, 0x2448(%rsp)
movl %eax, 0x2444(%rsp)
movq 0x2448(%rsp), %rax
movq %rax, 0x438(%rsp)
movb $0x0, 0x2443(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2444(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1298(%rsp), %r10
movq %r10, 0x2ca8(%rsp)
movl %r9d, 0x2ca4(%rsp)
movl %r8d, 0x2ca0(%rsp)
movl %edi, 0x2c9c(%rsp)
movq %rsi, 0x2c90(%rsp)
movq %rdx, 0x2c88(%rsp)
movl %ecx, 0x2c84(%rsp)
movq %rax, 0x2c78(%rsp)
movq 0x2ca8(%rsp), %rcx
movq %rcx, 0x430(%rsp)
movq 0x2c90(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2c88(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2c84(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2c78(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2ca4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2ca0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2c9c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3690(%rsp)
movl $0x10, 0x368c(%rsp)
movq 0x3690(%rsp), %rax
movslq 0x368c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x368c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x438(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x12c0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x129df03
movq 0x438(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x12d8(%rsp)
movb $0x1, 0x2443(%rsp)
testb $0x1, 0x2443(%rsp)
jne 0x129e03e
leaq 0x1298(%rsp), %rax
movq %rax, 0x2458(%rsp)
movq 0x2458(%rsp), %rax
movq %rax, 0x37a0(%rsp)
movq 0x37a0(%rsp), %rax
movq %rax, 0x428(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129dfe1
movq 0x428(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x379c(%rsp) # imm = 0xFFFFFFFF
movl 0x379c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3798(%rsp)
cmpl $0x1, 0x3798(%rsp)
jne 0x129dfe1
movq 0x428(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129dfb2
movq 0x428(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129dfb0
jmp 0x129dfdf
movq 0x428(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f10(%rsp)
cmpq $0x0, 0x3f10(%rsp)
je 0x129dfdd
movq 0x3f10(%rsp), %rdi
callq 0x5f480
jmp 0x129dfdf
jmp 0x129dfe1
movq 0x428(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129e03c
movq %rax, %rdi
callq 0x678a0
jmp 0x129e03e
leaq 0x1298(%rsp), %rax
movq %rax, 0x25b8(%rsp)
movq 0x25b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x418(%rsp)
leaq 0x1298(%rsp), %rax
movq %rax, 0x2270(%rsp)
movq 0x2270(%rsp), %rax
movq %rax, 0x3990(%rsp)
movq 0x3990(%rsp), %rax
movq %rax, 0x420(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129e129
movq 0x420(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x398c(%rsp) # imm = 0xFFFFFFFF
movl 0x398c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3988(%rsp)
cmpl $0x1, 0x3988(%rsp)
jne 0x129e129
movq 0x420(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129e0fa
movq 0x420(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129e0f8
jmp 0x129e127
movq 0x420(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e18(%rsp)
cmpq $0x0, 0x3e18(%rsp)
je 0x129e125
movq 0x3e18(%rsp), %rdi
callq 0x5f480
jmp 0x129e127
jmp 0x129e129
movq 0x420(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129e184
movq %rax, %rdi
callq 0x678a0
movq 0x418(%rsp), %rax
movq %rax, 0x12e0(%rsp)
movl $0x0, 0x1294(%rsp)
movl 0x1294(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jge 0x129e2da
movq 0x1330(%rsp), %rax
movl 0x1294(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x26b8(%rsp)
movq 0x26b8(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1280(%rsp)
movl $0x0, 0x127c(%rsp)
movl 0x127c(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jge 0x129e2c2
movq 0x1380(%rsp), %rax
movq %rax, 0x26b0(%rsp)
movq 0x26b0(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1260(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x1260(%rsp), %rsi
leaq 0x1280(%rsp), %rdx
callq 0x12f6b80
movaps %xmm0, 0x1250(%rsp)
movq 0x12e0(%rsp), %rax
movaps 0x1250(%rsp), %xmm0
movq %rax, 0x28a8(%rsp)
movaps %xmm0, 0x2890(%rsp)
movaps 0x2890(%rsp), %xmm0
movq 0x28a8(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1380(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1380(%rsp)
movq 0x12e0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x12e0(%rsp)
movl 0x127c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x127c(%rsp)
jmp 0x129e1f5
jmp 0x129e2c4
movl 0x1294(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1294(%rsp)
jmp 0x129e19f
jmp 0x129e2dc
movl 0x138c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x138c(%rsp)
jmp 0x129d499
movl $0x0, 0x1cc4(%rsp)
jmp 0x12a5b20
movl 0x1c78(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jne 0x129f27a
cmpl $0x1, 0x1c94(%rsp)
je 0x129f27a
cmpl $0x1, 0x1c74(%rsp)
jne 0x129f27a
movl 0x1c6c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jne 0x129f27a
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movl 0x1c8c(%rsp), %ecx
movq 0x1c80(%rsp), %r8
movl 0x1c7c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d20(%rsp)
movq 0x1d20(%rsp), %rcx
movq %rcx, 0x408(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x417(%rsp)
je 0x129e3e9
movq 0x408(%rsp), %rax
movq %rax, 0x2a58(%rsp)
movq 0x2a58(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x417(%rsp)
movb 0x417(%rsp), %al
testb $0x1, %al
jne 0x129e3f6
jmp 0x129e406
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12a5b20
movl $0x0, 0x124c(%rsp)
movl 0x124c(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x129f26a
movq 0x1cb8(%rsp), %rcx
movl 0x124c(%rsp), %eax
leaq 0x11f8(%rsp), %rdx
movq %rdx, 0x1e78(%rsp)
movq %rcx, 0x1e70(%rsp)
movl %eax, 0x1e6c(%rsp)
movq 0x1e70(%rsp), %rax
movq %rax, 0x400(%rsp)
movb $0x0, 0x1e6b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e6c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x11f8(%rsp), %r10
movq %r10, 0x31e8(%rsp)
movl %r9d, 0x31e4(%rsp)
movl %r8d, 0x31e0(%rsp)
movl %edi, 0x31dc(%rsp)
movq %rsi, 0x31d0(%rsp)
movq %rdx, 0x31c8(%rsp)
movl %ecx, 0x31c4(%rsp)
movq %rax, 0x31b8(%rsp)
movq 0x31e8(%rsp), %rcx
movq %rcx, 0x3f8(%rsp)
movq 0x31d0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x31c8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x31c4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x31b8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x31e4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x31e0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x31dc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3510(%rsp)
movl $0x10, 0x350c(%rsp)
movq 0x3510(%rsp), %rax
movslq 0x350c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x350c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x400(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1220(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x129e5e1
movq 0x400(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1238(%rsp)
movb $0x1, 0x1e6b(%rsp)
testb $0x1, 0x1e6b(%rsp)
jne 0x129e71c
leaq 0x11f8(%rsp), %rax
movq %rax, 0x2160(%rsp)
movq 0x2160(%rsp), %rax
movq %rax, 0x3bb0(%rsp)
movq 0x3bb0(%rsp), %rax
movq %rax, 0x3f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129e6bf
movq 0x3f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bac(%rsp) # imm = 0xFFFFFFFF
movl 0x3bac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ba8(%rsp)
cmpl $0x1, 0x3ba8(%rsp)
jne 0x129e6bf
movq 0x3f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129e690
movq 0x3f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129e68e
jmp 0x129e6bd
movq 0x3f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d08(%rsp)
cmpq $0x0, 0x3d08(%rsp)
je 0x129e6bb
movq 0x3d08(%rsp), %rdi
callq 0x5f480
jmp 0x129e6bd
jmp 0x129e6bf
movq 0x3f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129e71a
movq %rax, %rdi
callq 0x678a0
jmp 0x129e71c
leaq 0x11f8(%rsp), %rax
movq %rax, 0x2060(%rsp)
movq 0x2060(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e0(%rsp)
leaq 0x11f8(%rsp), %rax
movq %rax, 0x2278(%rsp)
movq 0x2278(%rsp), %rax
movq %rax, 0x3980(%rsp)
movq 0x3980(%rsp), %rax
movq %rax, 0x3e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129e807
movq 0x3e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x397c(%rsp) # imm = 0xFFFFFFFF
movl 0x397c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3978(%rsp)
cmpl $0x1, 0x3978(%rsp)
jne 0x129e807
movq 0x3e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129e7d8
movq 0x3e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129e7d6
jmp 0x129e805
movq 0x3e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e20(%rsp)
cmpq $0x0, 0x3e20(%rsp)
je 0x129e803
movq 0x3e20(%rsp), %rdi
callq 0x5f480
jmp 0x129e805
jmp 0x129e807
movq 0x3e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129e862
movq %rax, %rdi
callq 0x678a0
movq 0x3e0(%rsp), %rax
movq %rax, 0x1240(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x124c(%rsp), %eax
leaq 0x11a8(%rsp), %rdx
movq %rdx, 0x1e60(%rsp)
movq %rcx, 0x1e58(%rsp)
movl %eax, 0x1e54(%rsp)
movq 0x1e58(%rsp), %rax
movq %rax, 0x3d8(%rsp)
movb $0x0, 0x1e53(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e54(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x11a8(%rsp), %r10
movq %r10, 0x3220(%rsp)
movl %r9d, 0x321c(%rsp)
movl %r8d, 0x3218(%rsp)
movl %edi, 0x3214(%rsp)
movq %rsi, 0x3208(%rsp)
movq %rdx, 0x3200(%rsp)
movl %ecx, 0x31fc(%rsp)
movq %rax, 0x31f0(%rsp)
movq 0x3220(%rsp), %rcx
movq %rcx, 0x3d0(%rsp)
movq 0x3208(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3200(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x31fc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x31f0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x321c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3218(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3214(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3500(%rsp)
movl $0x10, 0x34fc(%rsp)
movq 0x3500(%rsp), %rax
movslq 0x34fc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x34fc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3d8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x11d0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x129ea2e
movq 0x3d8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x11e8(%rsp)
movb $0x1, 0x1e53(%rsp)
testb $0x1, 0x1e53(%rsp)
jne 0x129eb69
leaq 0x11a8(%rsp), %rax
movq %rax, 0x2168(%rsp)
movq 0x2168(%rsp), %rax
movq %rax, 0x3ba0(%rsp)
movq 0x3ba0(%rsp), %rax
movq %rax, 0x3c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129eb0c
movq 0x3c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b9c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b9c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b98(%rsp)
cmpl $0x1, 0x3b98(%rsp)
jne 0x129eb0c
movq 0x3c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129eadd
movq 0x3c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129eadb
jmp 0x129eb0a
movq 0x3c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d10(%rsp)
cmpq $0x0, 0x3d10(%rsp)
je 0x129eb08
movq 0x3d10(%rsp), %rdi
callq 0x5f480
jmp 0x129eb0a
jmp 0x129eb0c
movq 0x3c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129eb67
movq %rax, %rdi
callq 0x678a0
jmp 0x129eb69
leaq 0x11a8(%rsp), %rax
movq %rax, 0x2058(%rsp)
movq 0x2058(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3b8(%rsp)
leaq 0x11a8(%rsp), %rax
movq %rax, 0x2280(%rsp)
movq 0x2280(%rsp), %rax
movq %rax, 0x3970(%rsp)
movq 0x3970(%rsp), %rax
movq %rax, 0x3c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129ec54
movq 0x3c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x396c(%rsp) # imm = 0xFFFFFFFF
movl 0x396c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3968(%rsp)
cmpl $0x1, 0x3968(%rsp)
jne 0x129ec54
movq 0x3c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129ec25
movq 0x3c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129ec23
jmp 0x129ec52
movq 0x3c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e28(%rsp)
cmpq $0x0, 0x3e28(%rsp)
je 0x129ec50
movq 0x3e28(%rsp), %rdi
callq 0x5f480
jmp 0x129ec52
jmp 0x129ec54
movq 0x3c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129ecaf
movq %rax, %rdi
callq 0x678a0
movq 0x3b8(%rsp), %rax
movq %rax, 0x11f0(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x124c(%rsp), %eax
leaq 0x1158(%rsp), %rdx
movq %rdx, 0x2430(%rsp)
movq %rcx, 0x2428(%rsp)
movl %eax, 0x2424(%rsp)
movq 0x2428(%rsp), %rax
movq %rax, 0x3b0(%rsp)
movb $0x0, 0x2423(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2424(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1158(%rsp), %r10
movq %r10, 0x2ce0(%rsp)
movl %r9d, 0x2cdc(%rsp)
movl %r8d, 0x2cd8(%rsp)
movl %edi, 0x2cd4(%rsp)
movq %rsi, 0x2cc8(%rsp)
movq %rdx, 0x2cc0(%rsp)
movl %ecx, 0x2cbc(%rsp)
movq %rax, 0x2cb0(%rsp)
movq 0x2ce0(%rsp), %rcx
movq %rcx, 0x3a8(%rsp)
movq 0x2cc8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2cc0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2cbc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2cb0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2cdc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2cd8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2cd4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3680(%rsp)
movl $0x10, 0x367c(%rsp)
movq 0x3680(%rsp), %rax
movslq 0x367c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x367c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3b0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1180(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x129ee7b
movq 0x3b0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1198(%rsp)
movb $0x1, 0x2423(%rsp)
testb $0x1, 0x2423(%rsp)
jne 0x129efb6
leaq 0x1158(%rsp), %rax
movq %rax, 0x2438(%rsp)
movq 0x2438(%rsp), %rax
movq %rax, 0x37b0(%rsp)
movq 0x37b0(%rsp), %rax
movq %rax, 0x3a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129ef59
movq 0x3a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x37ac(%rsp) # imm = 0xFFFFFFFF
movl 0x37ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x37a8(%rsp)
cmpl $0x1, 0x37a8(%rsp)
jne 0x129ef59
movq 0x3a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129ef2a
movq 0x3a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129ef28
jmp 0x129ef57
movq 0x3a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f08(%rsp)
cmpq $0x0, 0x3f08(%rsp)
je 0x129ef55
movq 0x3f08(%rsp), %rdi
callq 0x5f480
jmp 0x129ef57
jmp 0x129ef59
movq 0x3a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129efb4
movq %rax, %rdi
callq 0x678a0
jmp 0x129efb6
leaq 0x1158(%rsp), %rax
movq %rax, 0x25b0(%rsp)
movq 0x25b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x390(%rsp)
leaq 0x1158(%rsp), %rax
movq %rax, 0x2288(%rsp)
movq 0x2288(%rsp), %rax
movq %rax, 0x3960(%rsp)
movq 0x3960(%rsp), %rax
movq %rax, 0x398(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129f0a1
movq 0x398(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x395c(%rsp) # imm = 0xFFFFFFFF
movl 0x395c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3958(%rsp)
cmpl $0x1, 0x3958(%rsp)
jne 0x129f0a1
movq 0x398(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129f072
movq 0x398(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129f070
jmp 0x129f09f
movq 0x398(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e30(%rsp)
cmpq $0x0, 0x3e30(%rsp)
je 0x129f09d
movq 0x3e30(%rsp), %rdi
callq 0x5f480
jmp 0x129f09f
jmp 0x129f0a1
movq 0x398(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129f0fc
movq %rax, %rdi
callq 0x678a0
movq 0x390(%rsp), %rax
movq %rax, 0x11a0(%rsp)
movl $0x0, 0x1154(%rsp)
movl 0x1154(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jge 0x129f252
movl $0x0, 0x1150(%rsp)
movl 0x1150(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jge 0x129f23a
movq 0x1240(%rsp), %rax
movq %rax, 0x26a8(%rsp)
movq 0x26a8(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1140(%rsp)
movq 0x11f0(%rsp), %rax
movl 0x1150(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x26a0(%rsp)
movq 0x26a0(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1130(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x1140(%rsp), %rsi
leaq 0x1130(%rsp), %rdx
callq 0x12f6b80
movaps %xmm0, 0x1120(%rsp)
movq 0x11a0(%rsp), %rax
movaps 0x1120(%rsp), %xmm0
movq %rax, 0x2888(%rsp)
movaps %xmm0, 0x2870(%rsp)
movaps 0x2870(%rsp), %xmm0
movq 0x2888(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1240(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1240(%rsp)
movq 0x11a0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x11a0(%rsp)
movl 0x1150(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1150(%rsp)
jmp 0x129f136
jmp 0x129f23c
movl 0x1154(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1154(%rsp)
jmp 0x129f117
jmp 0x129f254
movl 0x124c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x124c(%rsp)
jmp 0x129e411
movl $0x0, 0x1cc4(%rsp)
jmp 0x12a5b20
cmpl $0x1, 0x1c78(%rsp)
je 0x12a01f2
cmpl $0x1, 0x1c98(%rsp)
jne 0x12a01f2
movl 0x1c74(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jne 0x12a01f2
movl 0x1c6c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jne 0x12a01f2
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c6c(%rsp), %ecx
movq 0x1c60(%rsp), %r8
movl 0x1c5c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d18(%rsp)
movq 0x1d18(%rsp), %rcx
movq %rcx, 0x380(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x38f(%rsp)
je 0x129f361
movq 0x380(%rsp), %rax
movq %rax, 0x2a60(%rsp)
movq 0x2a60(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x38f(%rsp)
movb 0x38f(%rsp), %al
testb $0x1, %al
jne 0x129f36e
jmp 0x129f37e
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12a5b20
movl $0x0, 0x111c(%rsp)
movl 0x111c(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12a01e2
movq 0x1cb8(%rsp), %rcx
movl 0x111c(%rsp), %eax
leaq 0x10c8(%rsp), %rdx
movq %rdx, 0x1e48(%rsp)
movq %rcx, 0x1e40(%rsp)
movl %eax, 0x1e3c(%rsp)
movq 0x1e40(%rsp), %rax
movq %rax, 0x378(%rsp)
movb $0x0, 0x1e3b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e3c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x10c8(%rsp), %r10
movq %r10, 0x3258(%rsp)
movl %r9d, 0x3254(%rsp)
movl %r8d, 0x3250(%rsp)
movl %edi, 0x324c(%rsp)
movq %rsi, 0x3240(%rsp)
movq %rdx, 0x3238(%rsp)
movl %ecx, 0x3234(%rsp)
movq %rax, 0x3228(%rsp)
movq 0x3258(%rsp), %rcx
movq %rcx, 0x370(%rsp)
movq 0x3240(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3238(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3234(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3228(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3254(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3250(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x324c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x34f0(%rsp)
movl $0x10, 0x34ec(%rsp)
movq 0x34f0(%rsp), %rax
movslq 0x34ec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x34ec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x378(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x10f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x129f559
movq 0x378(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1108(%rsp)
movb $0x1, 0x1e3b(%rsp)
testb $0x1, 0x1e3b(%rsp)
jne 0x129f694
leaq 0x10c8(%rsp), %rax
movq %rax, 0x2170(%rsp)
movq 0x2170(%rsp), %rax
movq %rax, 0x3b90(%rsp)
movq 0x3b90(%rsp), %rax
movq %rax, 0x368(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129f637
movq 0x368(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b8c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b8c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b88(%rsp)
cmpl $0x1, 0x3b88(%rsp)
jne 0x129f637
movq 0x368(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129f608
movq 0x368(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129f606
jmp 0x129f635
movq 0x368(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d18(%rsp)
cmpq $0x0, 0x3d18(%rsp)
je 0x129f633
movq 0x3d18(%rsp), %rdi
callq 0x5f480
jmp 0x129f635
jmp 0x129f637
movq 0x368(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129f692
movq %rax, %rdi
callq 0x678a0
jmp 0x129f694
leaq 0x10c8(%rsp), %rax
movq %rax, 0x2050(%rsp)
movq 0x2050(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x358(%rsp)
leaq 0x10c8(%rsp), %rax
movq %rax, 0x2290(%rsp)
movq 0x2290(%rsp), %rax
movq %rax, 0x3950(%rsp)
movq 0x3950(%rsp), %rax
movq %rax, 0x360(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129f77f
movq 0x360(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x394c(%rsp) # imm = 0xFFFFFFFF
movl 0x394c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3948(%rsp)
cmpl $0x1, 0x3948(%rsp)
jne 0x129f77f
movq 0x360(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129f750
movq 0x360(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129f74e
jmp 0x129f77d
movq 0x360(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e38(%rsp)
cmpq $0x0, 0x3e38(%rsp)
je 0x129f77b
movq 0x3e38(%rsp), %rdi
callq 0x5f480
jmp 0x129f77d
jmp 0x129f77f
movq 0x360(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129f7da
movq %rax, %rdi
callq 0x678a0
movq 0x358(%rsp), %rax
movq %rax, 0x1110(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x111c(%rsp), %eax
leaq 0x1078(%rsp), %rdx
movq %rdx, 0x1e30(%rsp)
movq %rcx, 0x1e28(%rsp)
movl %eax, 0x1e24(%rsp)
movq 0x1e28(%rsp), %rax
movq %rax, 0x350(%rsp)
movb $0x0, 0x1e23(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e24(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1078(%rsp), %r10
movq %r10, 0x3290(%rsp)
movl %r9d, 0x328c(%rsp)
movl %r8d, 0x3288(%rsp)
movl %edi, 0x3284(%rsp)
movq %rsi, 0x3278(%rsp)
movq %rdx, 0x3270(%rsp)
movl %ecx, 0x326c(%rsp)
movq %rax, 0x3260(%rsp)
movq 0x3290(%rsp), %rcx
movq %rcx, 0x348(%rsp)
movq 0x3278(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3270(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x326c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3260(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x328c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3288(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3284(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x34e0(%rsp)
movl $0x10, 0x34dc(%rsp)
movq 0x34e0(%rsp), %rax
movslq 0x34dc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x34dc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x350(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x10a0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x129f9a6
movq 0x350(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x10b8(%rsp)
movb $0x1, 0x1e23(%rsp)
testb $0x1, 0x1e23(%rsp)
jne 0x129fae1
leaq 0x1078(%rsp), %rax
movq %rax, 0x2178(%rsp)
movq 0x2178(%rsp), %rax
movq %rax, 0x3b80(%rsp)
movq 0x3b80(%rsp), %rax
movq %rax, 0x340(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129fa84
movq 0x340(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b7c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b7c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b78(%rsp)
cmpl $0x1, 0x3b78(%rsp)
jne 0x129fa84
movq 0x340(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129fa55
movq 0x340(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129fa53
jmp 0x129fa82
movq 0x340(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d20(%rsp)
cmpq $0x0, 0x3d20(%rsp)
je 0x129fa80
movq 0x3d20(%rsp), %rdi
callq 0x5f480
jmp 0x129fa82
jmp 0x129fa84
movq 0x340(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129fadf
movq %rax, %rdi
callq 0x678a0
jmp 0x129fae1
leaq 0x1078(%rsp), %rax
movq %rax, 0x2048(%rsp)
movq 0x2048(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x330(%rsp)
leaq 0x1078(%rsp), %rax
movq %rax, 0x2298(%rsp)
movq 0x2298(%rsp), %rax
movq %rax, 0x3940(%rsp)
movq 0x3940(%rsp), %rax
movq %rax, 0x338(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129fbcc
movq 0x338(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x393c(%rsp) # imm = 0xFFFFFFFF
movl 0x393c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3938(%rsp)
cmpl $0x1, 0x3938(%rsp)
jne 0x129fbcc
movq 0x338(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129fb9d
movq 0x338(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129fb9b
jmp 0x129fbca
movq 0x338(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e40(%rsp)
cmpq $0x0, 0x3e40(%rsp)
je 0x129fbc8
movq 0x3e40(%rsp), %rdi
callq 0x5f480
jmp 0x129fbca
jmp 0x129fbcc
movq 0x338(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129fc27
movq %rax, %rdi
callq 0x678a0
movq 0x330(%rsp), %rax
movq %rax, 0x10c0(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x111c(%rsp), %eax
leaq 0x1028(%rsp), %rdx
movq %rdx, 0x2410(%rsp)
movq %rcx, 0x2408(%rsp)
movl %eax, 0x2404(%rsp)
movq 0x2408(%rsp), %rax
movq %rax, 0x328(%rsp)
movb $0x0, 0x2403(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2404(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1028(%rsp), %r10
movq %r10, 0x2d18(%rsp)
movl %r9d, 0x2d14(%rsp)
movl %r8d, 0x2d10(%rsp)
movl %edi, 0x2d0c(%rsp)
movq %rsi, 0x2d00(%rsp)
movq %rdx, 0x2cf8(%rsp)
movl %ecx, 0x2cf4(%rsp)
movq %rax, 0x2ce8(%rsp)
movq 0x2d18(%rsp), %rcx
movq %rcx, 0x320(%rsp)
movq 0x2d00(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2cf8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2cf4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ce8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2d14(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2d10(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2d0c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3670(%rsp)
movl $0x10, 0x366c(%rsp)
movq 0x3670(%rsp), %rax
movslq 0x366c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x366c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x328(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1050(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x129fdf3
movq 0x328(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1068(%rsp)
movb $0x1, 0x2403(%rsp)
testb $0x1, 0x2403(%rsp)
jne 0x129ff2e
leaq 0x1028(%rsp), %rax
movq %rax, 0x2418(%rsp)
movq 0x2418(%rsp), %rax
movq %rax, 0x37c0(%rsp)
movq 0x37c0(%rsp), %rax
movq %rax, 0x318(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x129fed1
movq 0x318(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x37bc(%rsp) # imm = 0xFFFFFFFF
movl 0x37bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x37b8(%rsp)
cmpl $0x1, 0x37b8(%rsp)
jne 0x129fed1
movq 0x318(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129fea2
movq 0x318(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129fea0
jmp 0x129fecf
movq 0x318(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f00(%rsp)
cmpq $0x0, 0x3f00(%rsp)
je 0x129fecd
movq 0x3f00(%rsp), %rdi
callq 0x5f480
jmp 0x129fecf
jmp 0x129fed1
movq 0x318(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x129ff2c
movq %rax, %rdi
callq 0x678a0
jmp 0x129ff2e
leaq 0x1028(%rsp), %rax
movq %rax, 0x25a8(%rsp)
movq 0x25a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x308(%rsp)
leaq 0x1028(%rsp), %rax
movq %rax, 0x22a0(%rsp)
movq 0x22a0(%rsp), %rax
movq %rax, 0x3930(%rsp)
movq 0x3930(%rsp), %rax
movq %rax, 0x310(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a0019
movq 0x310(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x392c(%rsp) # imm = 0xFFFFFFFF
movl 0x392c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3928(%rsp)
cmpl $0x1, 0x3928(%rsp)
jne 0x12a0019
movq 0x310(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x129ffea
movq 0x310(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x129ffe8
jmp 0x12a0017
movq 0x310(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e48(%rsp)
cmpq $0x0, 0x3e48(%rsp)
je 0x12a0015
movq 0x3e48(%rsp), %rdi
callq 0x5f480
jmp 0x12a0017
jmp 0x12a0019
movq 0x310(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a0074
movq %rax, %rdi
callq 0x678a0
movq 0x308(%rsp), %rax
movq %rax, 0x1070(%rsp)
movl $0x0, 0x1024(%rsp)
movl 0x1024(%rsp), %eax
cmpl 0x1c74(%rsp), %eax
jge 0x12a01ca
movq 0x1110(%rsp), %rax
movl 0x1024(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2698(%rsp)
movq 0x2698(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1010(%rsp)
movl $0x0, 0x100c(%rsp)
movl 0x100c(%rsp), %eax
cmpl 0x1c78(%rsp), %eax
jge 0x12a01b2
movq 0x10c0(%rsp), %rax
movq %rax, 0x2690(%rsp)
movq 0x2690(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xff0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x1010(%rsp), %rsi
leaq 0xff0(%rsp), %rdx
callq 0x12f6b80
movaps %xmm0, 0xfe0(%rsp)
movq 0x1070(%rsp), %rax
movaps 0xfe0(%rsp), %xmm0
movq %rax, 0x2868(%rsp)
movaps %xmm0, 0x2850(%rsp)
movaps 0x2850(%rsp), %xmm0
movq 0x2868(%rsp), %rax
movups %xmm0, (%rax)
movq 0x10c0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x10c0(%rsp)
movq 0x1070(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1070(%rsp)
movl 0x100c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x100c(%rsp)
jmp 0x12a00e5
jmp 0x12a01b4
movl 0x1024(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1024(%rsp)
jmp 0x12a008f
jmp 0x12a01cc
movl 0x111c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x111c(%rsp)
jmp 0x129f389
movl $0x0, 0x1cc4(%rsp)
jmp 0x12a5b20
movl 0x1c78(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jne 0x12a116a
cmpl $0x1, 0x1c74(%rsp)
je 0x12a116a
cmpl $0x1, 0x1c94(%rsp)
jne 0x12a116a
movl 0x1c6c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jne 0x12a116a
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c6c(%rsp), %ecx
movq 0x1c60(%rsp), %r8
movl 0x1c5c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d10(%rsp)
movq 0x1d10(%rsp), %rcx
movq %rcx, 0x2f8(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x307(%rsp)
je 0x12a02d9
movq 0x2f8(%rsp), %rax
movq %rax, 0x2a68(%rsp)
movq 0x2a68(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x307(%rsp)
movb 0x307(%rsp), %al
testb $0x1, %al
jne 0x12a02e6
jmp 0x12a02f6
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12a5b20
movl $0x0, 0xfdc(%rsp)
movl 0xfdc(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12a115a
movq 0x1cb8(%rsp), %rcx
movl 0xfdc(%rsp), %eax
leaq 0xf88(%rsp), %rdx
movq %rdx, 0x1e18(%rsp)
movq %rcx, 0x1e10(%rsp)
movl %eax, 0x1e0c(%rsp)
movq 0x1e10(%rsp), %rax
movq %rax, 0x2f0(%rsp)
movb $0x0, 0x1e0b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e0c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xf88(%rsp), %r10
movq %r10, 0x32c8(%rsp)
movl %r9d, 0x32c4(%rsp)
movl %r8d, 0x32c0(%rsp)
movl %edi, 0x32bc(%rsp)
movq %rsi, 0x32b0(%rsp)
movq %rdx, 0x32a8(%rsp)
movl %ecx, 0x32a4(%rsp)
movq %rax, 0x3298(%rsp)
movq 0x32c8(%rsp), %rcx
movq %rcx, 0x2e8(%rsp)
movq 0x32b0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x32a8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x32a4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3298(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x32c4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x32c0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x32bc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x34d0(%rsp)
movl $0x10, 0x34cc(%rsp)
movq 0x34d0(%rsp), %rax
movslq 0x34cc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x34cc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2f0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xfb0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12a04d1
movq 0x2f0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xfc8(%rsp)
movb $0x1, 0x1e0b(%rsp)
testb $0x1, 0x1e0b(%rsp)
jne 0x12a060c
leaq 0xf88(%rsp), %rax
movq %rax, 0x2180(%rsp)
movq 0x2180(%rsp), %rax
movq %rax, 0x3b70(%rsp)
movq 0x3b70(%rsp), %rax
movq %rax, 0x2e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a05af
movq 0x2e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b6c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b6c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b68(%rsp)
cmpl $0x1, 0x3b68(%rsp)
jne 0x12a05af
movq 0x2e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a0580
movq 0x2e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a057e
jmp 0x12a05ad
movq 0x2e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d28(%rsp)
cmpq $0x0, 0x3d28(%rsp)
je 0x12a05ab
movq 0x3d28(%rsp), %rdi
callq 0x5f480
jmp 0x12a05ad
jmp 0x12a05af
movq 0x2e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a060a
movq %rax, %rdi
callq 0x678a0
jmp 0x12a060c
leaq 0xf88(%rsp), %rax
movq %rax, 0x2040(%rsp)
movq 0x2040(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2d0(%rsp)
leaq 0xf88(%rsp), %rax
movq %rax, 0x22a8(%rsp)
movq 0x22a8(%rsp), %rax
movq %rax, 0x3920(%rsp)
movq 0x3920(%rsp), %rax
movq %rax, 0x2d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a06f7
movq 0x2d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x391c(%rsp) # imm = 0xFFFFFFFF
movl 0x391c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3918(%rsp)
cmpl $0x1, 0x3918(%rsp)
jne 0x12a06f7
movq 0x2d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a06c8
movq 0x2d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a06c6
jmp 0x12a06f5
movq 0x2d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e50(%rsp)
cmpq $0x0, 0x3e50(%rsp)
je 0x12a06f3
movq 0x3e50(%rsp), %rdi
callq 0x5f480
jmp 0x12a06f5
jmp 0x12a06f7
movq 0x2d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a0752
movq %rax, %rdi
callq 0x678a0
movq 0x2d0(%rsp), %rax
movq %rax, 0xfd0(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0xfdc(%rsp), %eax
leaq 0xf38(%rsp), %rdx
movq %rdx, 0x1e00(%rsp)
movq %rcx, 0x1df8(%rsp)
movl %eax, 0x1df4(%rsp)
movq 0x1df8(%rsp), %rax
movq %rax, 0x2c8(%rsp)
movb $0x0, 0x1df3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1df4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xf38(%rsp), %r10
movq %r10, 0x3300(%rsp)
movl %r9d, 0x32fc(%rsp)
movl %r8d, 0x32f8(%rsp)
movl %edi, 0x32f4(%rsp)
movq %rsi, 0x32e8(%rsp)
movq %rdx, 0x32e0(%rsp)
movl %ecx, 0x32dc(%rsp)
movq %rax, 0x32d0(%rsp)
movq 0x3300(%rsp), %rcx
movq %rcx, 0x2c0(%rsp)
movq 0x32e8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x32e0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x32dc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x32d0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x32fc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x32f8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x32f4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x34c0(%rsp)
movl $0x10, 0x34bc(%rsp)
movq 0x34c0(%rsp), %rax
movslq 0x34bc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x34bc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2c8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf60(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12a091e
movq 0x2c8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xf78(%rsp)
movb $0x1, 0x1df3(%rsp)
testb $0x1, 0x1df3(%rsp)
jne 0x12a0a59
leaq 0xf38(%rsp), %rax
movq %rax, 0x2188(%rsp)
movq 0x2188(%rsp), %rax
movq %rax, 0x3b60(%rsp)
movq 0x3b60(%rsp), %rax
movq %rax, 0x2b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a09fc
movq 0x2b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b5c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b5c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b58(%rsp)
cmpl $0x1, 0x3b58(%rsp)
jne 0x12a09fc
movq 0x2b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a09cd
movq 0x2b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a09cb
jmp 0x12a09fa
movq 0x2b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d30(%rsp)
cmpq $0x0, 0x3d30(%rsp)
je 0x12a09f8
movq 0x3d30(%rsp), %rdi
callq 0x5f480
jmp 0x12a09fa
jmp 0x12a09fc
movq 0x2b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a0a57
movq %rax, %rdi
callq 0x678a0
jmp 0x12a0a59
leaq 0xf38(%rsp), %rax
movq %rax, 0x2038(%rsp)
movq 0x2038(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2a8(%rsp)
leaq 0xf38(%rsp), %rax
movq %rax, 0x22b0(%rsp)
movq 0x22b0(%rsp), %rax
movq %rax, 0x3910(%rsp)
movq 0x3910(%rsp), %rax
movq %rax, 0x2b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a0b44
movq 0x2b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x390c(%rsp) # imm = 0xFFFFFFFF
movl 0x390c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3908(%rsp)
cmpl $0x1, 0x3908(%rsp)
jne 0x12a0b44
movq 0x2b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a0b15
movq 0x2b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a0b13
jmp 0x12a0b42
movq 0x2b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e58(%rsp)
cmpq $0x0, 0x3e58(%rsp)
je 0x12a0b40
movq 0x3e58(%rsp), %rdi
callq 0x5f480
jmp 0x12a0b42
jmp 0x12a0b44
movq 0x2b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a0b9f
movq %rax, %rdi
callq 0x678a0
movq 0x2a8(%rsp), %rax
movq %rax, 0xf80(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0xfdc(%rsp), %eax
leaq 0xee8(%rsp), %rdx
movq %rdx, 0x23f0(%rsp)
movq %rcx, 0x23e8(%rsp)
movl %eax, 0x23e4(%rsp)
movq 0x23e8(%rsp), %rax
movq %rax, 0x2a0(%rsp)
movb $0x0, 0x23e3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x23e4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xee8(%rsp), %r10
movq %r10, 0x2d50(%rsp)
movl %r9d, 0x2d4c(%rsp)
movl %r8d, 0x2d48(%rsp)
movl %edi, 0x2d44(%rsp)
movq %rsi, 0x2d38(%rsp)
movq %rdx, 0x2d30(%rsp)
movl %ecx, 0x2d2c(%rsp)
movq %rax, 0x2d20(%rsp)
movq 0x2d50(%rsp), %rcx
movq %rcx, 0x298(%rsp)
movq 0x2d38(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2d30(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2d2c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2d20(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2d4c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2d48(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2d44(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3660(%rsp)
movl $0x10, 0x365c(%rsp)
movq 0x3660(%rsp), %rax
movslq 0x365c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x365c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2a0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf10(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12a0d6b
movq 0x2a0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xf28(%rsp)
movb $0x1, 0x23e3(%rsp)
testb $0x1, 0x23e3(%rsp)
jne 0x12a0ea6
leaq 0xee8(%rsp), %rax
movq %rax, 0x23f8(%rsp)
movq 0x23f8(%rsp), %rax
movq %rax, 0x37d0(%rsp)
movq 0x37d0(%rsp), %rax
movq %rax, 0x290(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a0e49
movq 0x290(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x37cc(%rsp) # imm = 0xFFFFFFFF
movl 0x37cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x37c8(%rsp)
cmpl $0x1, 0x37c8(%rsp)
jne 0x12a0e49
movq 0x290(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a0e1a
movq 0x290(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a0e18
jmp 0x12a0e47
movq 0x290(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ef8(%rsp)
cmpq $0x0, 0x3ef8(%rsp)
je 0x12a0e45
movq 0x3ef8(%rsp), %rdi
callq 0x5f480
jmp 0x12a0e47
jmp 0x12a0e49
movq 0x290(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a0ea4
movq %rax, %rdi
callq 0x678a0
jmp 0x12a0ea6
leaq 0xee8(%rsp), %rax
movq %rax, 0x25a0(%rsp)
movq 0x25a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x280(%rsp)
leaq 0xee8(%rsp), %rax
movq %rax, 0x22b8(%rsp)
movq 0x22b8(%rsp), %rax
movq %rax, 0x3900(%rsp)
movq 0x3900(%rsp), %rax
movq %rax, 0x288(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a0f91
movq 0x288(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x38fc(%rsp) # imm = 0xFFFFFFFF
movl 0x38fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x38f8(%rsp)
cmpl $0x1, 0x38f8(%rsp)
jne 0x12a0f91
movq 0x288(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a0f62
movq 0x288(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a0f60
jmp 0x12a0f8f
movq 0x288(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e60(%rsp)
cmpq $0x0, 0x3e60(%rsp)
je 0x12a0f8d
movq 0x3e60(%rsp), %rdi
callq 0x5f480
jmp 0x12a0f8f
jmp 0x12a0f91
movq 0x288(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a0fec
movq %rax, %rdi
callq 0x678a0
movq 0x280(%rsp), %rax
movq %rax, 0xf30(%rsp)
movl $0x0, 0xee4(%rsp)
movl 0xee4(%rsp), %eax
cmpl 0x1c74(%rsp), %eax
jge 0x12a1142
movl $0x0, 0xee0(%rsp)
movl 0xee0(%rsp), %eax
cmpl 0x1c78(%rsp), %eax
jge 0x12a112a
movq 0xfd0(%rsp), %rax
movl 0xee0(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2688(%rsp)
movq 0x2688(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xed0(%rsp)
movq 0xf80(%rsp), %rax
movq %rax, 0x2680(%rsp)
movq 0x2680(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xec0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0xed0(%rsp), %rsi
leaq 0xec0(%rsp), %rdx
callq 0x12f6b80
movaps %xmm0, 0xeb0(%rsp)
movq 0xf30(%rsp), %rax
movaps 0xeb0(%rsp), %xmm0
movq %rax, 0x2848(%rsp)
movaps %xmm0, 0x2830(%rsp)
movaps 0x2830(%rsp), %xmm0
movq 0x2848(%rsp), %rax
movups %xmm0, (%rax)
movq 0xf80(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xf80(%rsp)
movq 0xf30(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xf30(%rsp)
movl 0xee0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xee0(%rsp)
jmp 0x12a1026
jmp 0x12a112c
movl 0xee4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xee4(%rsp)
jmp 0x12a1007
jmp 0x12a1144
movl 0xfdc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xfdc(%rsp)
jmp 0x12a0301
movl $0x0, 0x1cc4(%rsp)
jmp 0x12a5b20
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12eaac0
movl %eax, 0x1cc4(%rsp)
jmp 0x12a5b20
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movl 0x1c8c(%rsp), %ecx
movq 0x1c80(%rsp), %r8
movl 0x1c7c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d08(%rsp)
movq 0x1d08(%rsp), %rcx
movq %rcx, 0x270(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x27f(%rsp)
je 0x12a123e
movq 0x270(%rsp), %rax
movq %rax, 0x2a70(%rsp)
movq 0x2a70(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x27f(%rsp)
movb 0x27f(%rsp), %al
testb $0x1, %al
jne 0x12a124b
jmp 0x12a125b
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12a5b20
movq 0x1cb0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x12a1cdb
movl $0x0, 0xeac(%rsp)
movl 0xeac(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jge 0x12a1ccb
movq 0x1cb8(%rsp), %rcx
movl 0xeac(%rsp), %eax
leaq 0xe58(%rsp), %rdx
movq %rdx, 0x1de8(%rsp)
movq %rcx, 0x1de0(%rsp)
movl %eax, 0x1ddc(%rsp)
movq 0x1de0(%rsp), %rax
movq %rax, 0x268(%rsp)
movb $0x0, 0x1ddb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1ddc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xe58(%rsp), %r10
movq %r10, 0x3338(%rsp)
movl %r9d, 0x3334(%rsp)
movl %r8d, 0x3330(%rsp)
movl %edi, 0x332c(%rsp)
movq %rsi, 0x3320(%rsp)
movq %rdx, 0x3318(%rsp)
movl %ecx, 0x3314(%rsp)
movq %rax, 0x3308(%rsp)
movq 0x3338(%rsp), %rcx
movq %rcx, 0x260(%rsp)
movq 0x3320(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3318(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3314(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3308(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3334(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3330(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x332c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x34b0(%rsp)
movl $0x10, 0x34ac(%rsp)
movq 0x34b0(%rsp), %rax
movslq 0x34ac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x34ac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x268(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xe80(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12a1448
movq 0x268(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xe98(%rsp)
movb $0x1, 0x1ddb(%rsp)
testb $0x1, 0x1ddb(%rsp)
jne 0x12a1583
leaq 0xe58(%rsp), %rax
movq %rax, 0x2190(%rsp)
movq 0x2190(%rsp), %rax
movq %rax, 0x3b50(%rsp)
movq 0x3b50(%rsp), %rax
movq %rax, 0x258(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a1526
movq 0x258(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b4c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b4c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b48(%rsp)
cmpl $0x1, 0x3b48(%rsp)
jne 0x12a1526
movq 0x258(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a14f7
movq 0x258(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a14f5
jmp 0x12a1524
movq 0x258(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d38(%rsp)
cmpq $0x0, 0x3d38(%rsp)
je 0x12a1522
movq 0x3d38(%rsp), %rdi
callq 0x5f480
jmp 0x12a1524
jmp 0x12a1526
movq 0x258(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a1581
movq %rax, %rdi
callq 0x678a0
jmp 0x12a1583
leaq 0xe58(%rsp), %rax
movq %rax, 0x2030(%rsp)
movq 0x2030(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x248(%rsp)
leaq 0xe58(%rsp), %rax
movq %rax, 0x22c0(%rsp)
movq 0x22c0(%rsp), %rax
movq %rax, 0x38f0(%rsp)
movq 0x38f0(%rsp), %rax
movq %rax, 0x250(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a166e
movq 0x250(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x38ec(%rsp) # imm = 0xFFFFFFFF
movl 0x38ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x38e8(%rsp)
cmpl $0x1, 0x38e8(%rsp)
jne 0x12a166e
movq 0x250(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a163f
movq 0x250(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a163d
jmp 0x12a166c
movq 0x250(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e68(%rsp)
cmpq $0x0, 0x3e68(%rsp)
je 0x12a166a
movq 0x3e68(%rsp), %rdi
callq 0x5f480
jmp 0x12a166c
jmp 0x12a166e
movq 0x250(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a16c9
movq %rax, %rdi
callq 0x678a0
movq 0x248(%rsp), %rax
movq %rax, 0xea0(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0xeac(%rsp), %eax
movq %rcx, 0x2a18(%rsp)
movl %eax, 0x2a14(%rsp)
movq 0x2a18(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2a14(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xe50(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0xeac(%rsp), %eax
leaq 0xe00(%rsp), %rdx
movq %rdx, 0x23d0(%rsp)
movq %rcx, 0x23c8(%rsp)
movl %eax, 0x23c4(%rsp)
movq 0x23c8(%rsp), %rax
movq %rax, 0x240(%rsp)
movb $0x0, 0x23c3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x23c4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xe00(%rsp), %r10
movq %r10, 0x2d88(%rsp)
movl %r9d, 0x2d84(%rsp)
movl %r8d, 0x2d80(%rsp)
movl %edi, 0x2d7c(%rsp)
movq %rsi, 0x2d70(%rsp)
movq %rdx, 0x2d68(%rsp)
movl %ecx, 0x2d64(%rsp)
movq %rax, 0x2d58(%rsp)
movq 0x2d88(%rsp), %rcx
movq %rcx, 0x238(%rsp)
movq 0x2d70(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2d68(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2d64(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2d58(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2d84(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2d80(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2d7c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3650(%rsp)
movl $0x10, 0x364c(%rsp)
movq 0x3650(%rsp), %rax
movslq 0x364c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x364c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x240(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xe28(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12a18de
movq 0x240(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xe40(%rsp)
movb $0x1, 0x23c3(%rsp)
testb $0x1, 0x23c3(%rsp)
jne 0x12a1a19
leaq 0xe00(%rsp), %rax
movq %rax, 0x23d8(%rsp)
movq 0x23d8(%rsp), %rax
movq %rax, 0x37e0(%rsp)
movq 0x37e0(%rsp), %rax
movq %rax, 0x230(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a19bc
movq 0x230(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x37dc(%rsp) # imm = 0xFFFFFFFF
movl 0x37dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x37d8(%rsp)
cmpl $0x1, 0x37d8(%rsp)
jne 0x12a19bc
movq 0x230(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a198d
movq 0x230(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a198b
jmp 0x12a19ba
movq 0x230(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ef0(%rsp)
cmpq $0x0, 0x3ef0(%rsp)
je 0x12a19b8
movq 0x3ef0(%rsp), %rdi
callq 0x5f480
jmp 0x12a19ba
jmp 0x12a19bc
movq 0x230(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a1a17
movq %rax, %rdi
callq 0x678a0
jmp 0x12a1a19
leaq 0xe00(%rsp), %rax
movq %rax, 0x2598(%rsp)
movq 0x2598(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x220(%rsp)
leaq 0xe00(%rsp), %rax
movq %rax, 0x22c8(%rsp)
movq 0x22c8(%rsp), %rax
movq %rax, 0x38e0(%rsp)
movq 0x38e0(%rsp), %rax
movq %rax, 0x228(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a1b04
movq 0x228(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x38dc(%rsp) # imm = 0xFFFFFFFF
movl 0x38dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x38d8(%rsp)
cmpl $0x1, 0x38d8(%rsp)
jne 0x12a1b04
movq 0x228(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a1ad5
movq 0x228(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a1ad3
jmp 0x12a1b02
movq 0x228(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e70(%rsp)
cmpq $0x0, 0x3e70(%rsp)
je 0x12a1b00
movq 0x3e70(%rsp), %rdi
callq 0x5f480
jmp 0x12a1b02
jmp 0x12a1b04
movq 0x228(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a1b5f
movq %rax, %rdi
callq 0x678a0
movq 0x220(%rsp), %rax
movq %rax, 0xe48(%rsp)
movl $0x0, 0xdfc(%rsp)
movl 0xdfc(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jge 0x12a1cb3
movq 0xe50(%rsp), %rax
movq %rax, 0x2678(%rsp)
movq 0x2678(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xde0(%rsp)
movl $0x0, 0xddc(%rsp)
movl 0xddc(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jge 0x12a1c89
movq 0xea0(%rsp), %rax
movq %rax, 0x2670(%rsp)
movq 0x2670(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xdc0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0xdc0(%rsp), %rsi
leaq 0xde0(%rsp), %rdx
callq 0x12f6b80
movaps %xmm0, 0xdb0(%rsp)
movq 0xe48(%rsp), %rax
movaps 0xdb0(%rsp), %xmm0
movq %rax, 0x2828(%rsp)
movaps %xmm0, 0x2810(%rsp)
movaps 0x2810(%rsp), %xmm0
movq 0x2828(%rsp), %rax
movups %xmm0, (%rax)
movq 0xea0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xea0(%rsp)
movq 0xe48(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xe48(%rsp)
movl 0xddc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xddc(%rsp)
jmp 0x12a1bbc
movq 0xe50(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xe50(%rsp)
movl 0xdfc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdfc(%rsp)
jmp 0x12a1b7a
jmp 0x12a1cb5
movl 0xeac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xeac(%rsp)
jmp 0x12a1278
movl $0x0, 0x1cc4(%rsp)
jmp 0x12a5b20
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x12a2739
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x12a1d36
cmpl $0x1, 0x1c5c(%rsp)
jne 0x12a1d36
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12eba40
movl %eax, 0x1cc4(%rsp)
jmp 0x12a5b20
movl $0x0, 0xdac(%rsp)
movl 0xdac(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jge 0x12a2729
movq 0x1cb8(%rsp), %rcx
movl 0xdac(%rsp), %eax
leaq 0xd58(%rsp), %rdx
movq %rdx, 0x1dd0(%rsp)
movq %rcx, 0x1dc8(%rsp)
movl %eax, 0x1dc4(%rsp)
movq 0x1dc8(%rsp), %rax
movq %rax, 0x218(%rsp)
movb $0x0, 0x1dc3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1dc4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xd58(%rsp), %r10
movq %r10, 0x3370(%rsp)
movl %r9d, 0x336c(%rsp)
movl %r8d, 0x3368(%rsp)
movl %edi, 0x3364(%rsp)
movq %rsi, 0x3358(%rsp)
movq %rdx, 0x3350(%rsp)
movl %ecx, 0x334c(%rsp)
movq %rax, 0x3340(%rsp)
movq 0x3370(%rsp), %rcx
movq %rcx, 0x210(%rsp)
movq 0x3358(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3350(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x334c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3340(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x336c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3368(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3364(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x34a0(%rsp)
movl $0x10, 0x349c(%rsp)
movq 0x34a0(%rsp), %rax
movslq 0x349c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x349c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x218(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xd80(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12a1f11
movq 0x218(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd98(%rsp)
movb $0x1, 0x1dc3(%rsp)
testb $0x1, 0x1dc3(%rsp)
jne 0x12a204c
leaq 0xd58(%rsp), %rax
movq %rax, 0x2198(%rsp)
movq 0x2198(%rsp), %rax
movq %rax, 0x3b40(%rsp)
movq 0x3b40(%rsp), %rax
movq %rax, 0x208(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a1fef
movq 0x208(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b3c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b3c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b38(%rsp)
cmpl $0x1, 0x3b38(%rsp)
jne 0x12a1fef
movq 0x208(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a1fc0
movq 0x208(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a1fbe
jmp 0x12a1fed
movq 0x208(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d40(%rsp)
cmpq $0x0, 0x3d40(%rsp)
je 0x12a1feb
movq 0x3d40(%rsp), %rdi
callq 0x5f480
jmp 0x12a1fed
jmp 0x12a1fef
movq 0x208(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a204a
movq %rax, %rdi
callq 0x678a0
jmp 0x12a204c
leaq 0xd58(%rsp), %rax
movq %rax, 0x2028(%rsp)
movq 0x2028(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1f8(%rsp)
leaq 0xd58(%rsp), %rax
movq %rax, 0x22d0(%rsp)
movq 0x22d0(%rsp), %rax
movq %rax, 0x38d0(%rsp)
movq 0x38d0(%rsp), %rax
movq %rax, 0x200(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a2137
movq 0x200(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x38cc(%rsp) # imm = 0xFFFFFFFF
movl 0x38cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x38c8(%rsp)
cmpl $0x1, 0x38c8(%rsp)
jne 0x12a2137
movq 0x200(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a2108
movq 0x200(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a2106
jmp 0x12a2135
movq 0x200(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e78(%rsp)
cmpq $0x0, 0x3e78(%rsp)
je 0x12a2133
movq 0x3e78(%rsp), %rdi
callq 0x5f480
jmp 0x12a2135
jmp 0x12a2137
movq 0x200(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a2192
movq %rax, %rdi
callq 0x678a0
movq 0x1f8(%rsp), %rax
movq %rax, 0xda0(%rsp)
movq 0x1cb0(%rsp), %rax
movq %rax, 0x2020(%rsp)
movq 0x2020(%rsp), %rax
movq (%rax), %rax
movl 0xdac(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2668(%rsp)
movq 0x2668(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xd40(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0xdac(%rsp), %eax
leaq 0xcf0(%rsp), %rdx
movq %rdx, 0x23b0(%rsp)
movq %rcx, 0x23a8(%rsp)
movl %eax, 0x23a4(%rsp)
movq 0x23a8(%rsp), %rax
movq %rax, 0x1f0(%rsp)
movb $0x0, 0x23a3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x23a4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xcf0(%rsp), %r10
movq %r10, 0x2dc0(%rsp)
movl %r9d, 0x2dbc(%rsp)
movl %r8d, 0x2db8(%rsp)
movl %edi, 0x2db4(%rsp)
movq %rsi, 0x2da8(%rsp)
movq %rdx, 0x2da0(%rsp)
movl %ecx, 0x2d9c(%rsp)
movq %rax, 0x2d90(%rsp)
movq 0x2dc0(%rsp), %rcx
movq %rcx, 0x1e8(%rsp)
movq 0x2da8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2da0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2d9c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2d90(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2dbc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2db8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2db4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3640(%rsp)
movl $0x10, 0x363c(%rsp)
movq 0x3640(%rsp), %rax
movslq 0x363c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x363c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x1f0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xd18(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12a23a8
movq 0x1f0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd30(%rsp)
movb $0x1, 0x23a3(%rsp)
testb $0x1, 0x23a3(%rsp)
jne 0x12a24e3
leaq 0xcf0(%rsp), %rax
movq %rax, 0x23b8(%rsp)
movq 0x23b8(%rsp), %rax
movq %rax, 0x37f0(%rsp)
movq 0x37f0(%rsp), %rax
movq %rax, 0x1e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a2486
movq 0x1e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x37ec(%rsp) # imm = 0xFFFFFFFF
movl 0x37ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x37e8(%rsp)
cmpl $0x1, 0x37e8(%rsp)
jne 0x12a2486
movq 0x1e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a2457
movq 0x1e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a2455
jmp 0x12a2484
movq 0x1e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ee8(%rsp)
cmpq $0x0, 0x3ee8(%rsp)
je 0x12a2482
movq 0x3ee8(%rsp), %rdi
callq 0x5f480
jmp 0x12a2484
jmp 0x12a2486
movq 0x1e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a24e1
movq %rax, %rdi
callq 0x678a0
jmp 0x12a24e3
leaq 0xcf0(%rsp), %rax
movq %rax, 0x2590(%rsp)
movq 0x2590(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1d0(%rsp)
leaq 0xcf0(%rsp), %rax
movq %rax, 0x22d8(%rsp)
movq 0x22d8(%rsp), %rax
movq %rax, 0x38c0(%rsp)
movq 0x38c0(%rsp), %rax
movq %rax, 0x1d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a25ce
movq 0x1d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x38bc(%rsp) # imm = 0xFFFFFFFF
movl 0x38bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x38b8(%rsp)
cmpl $0x1, 0x38b8(%rsp)
jne 0x12a25ce
movq 0x1d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a259f
movq 0x1d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a259d
jmp 0x12a25cc
movq 0x1d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e80(%rsp)
cmpq $0x0, 0x3e80(%rsp)
je 0x12a25ca
movq 0x3e80(%rsp), %rdi
callq 0x5f480
jmp 0x12a25cc
jmp 0x12a25ce
movq 0x1d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a2629
movq %rax, %rdi
callq 0x678a0
movq 0x1d0(%rsp), %rax
movq %rax, 0xd38(%rsp)
movl $0x0, 0xcec(%rsp)
movl 0xcec(%rsp), %eax
cmpl 0x1c88(%rsp), %eax
jge 0x12a2711
movq 0xda0(%rsp), %rax
movq %rax, 0x2660(%rsp)
movq 0x2660(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xcd0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0xcd0(%rsp), %rsi
leaq 0xd40(%rsp), %rdx
callq 0x12f6b80
movaps %xmm0, 0xcc0(%rsp)
movq 0xd38(%rsp), %rax
movaps 0xcc0(%rsp), %xmm0
movq %rax, 0x2808(%rsp)
movaps %xmm0, 0x27f0(%rsp)
movaps 0x27f0(%rsp), %xmm0
movq 0x2808(%rsp), %rax
movups %xmm0, (%rax)
movq 0xda0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xda0(%rsp)
movq 0xd38(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xd38(%rsp)
movl 0xcec(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xcec(%rsp)
jmp 0x12a2644
jmp 0x12a2713
movl 0xdac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdac(%rsp)
jmp 0x12a1d41
movl $0x0, 0x1cc4(%rsp)
jmp 0x12a5b20
jmp 0x12a5b13
movq 0x1cb8(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x12a41da
movq 0x1cb0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x12a32d4
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c70(%rsp), %ecx
movl 0x1c6c(%rsp), %r8d
movq 0x1c60(%rsp), %r9
movl 0x1c5c(%rsp), %r10d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d00(%rsp)
movq 0x1d00(%rsp), %rcx
movq %rcx, 0x1c0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1cf(%rsp)
je 0x12a2812
movq 0x1c0(%rsp), %rax
movq %rax, 0x2a78(%rsp)
movq 0x2a78(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1cf(%rsp)
movb 0x1cf(%rsp), %al
testb $0x1, %al
jne 0x12a281f
jmp 0x12a282f
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12a5b20
movl $0x0, 0xcbc(%rsp)
movl 0xcbc(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12a32c4
movq 0x1cb8(%rsp), %rcx
movl 0xcbc(%rsp), %eax
movq %rcx, 0x29b8(%rsp)
movl %eax, 0x29b4(%rsp)
movq 0x29b8(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x29b4(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xcb0(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0xcbc(%rsp), %eax
leaq 0xc60(%rsp), %rdx
movq %rdx, 0x1db8(%rsp)
movq %rcx, 0x1db0(%rsp)
movl %eax, 0x1dac(%rsp)
movq 0x1db0(%rsp), %rax
movq %rax, 0x1b8(%rsp)
movb $0x0, 0x1dab(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1dac(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xc60(%rsp), %r10
movq %r10, 0x33a8(%rsp)
movl %r9d, 0x33a4(%rsp)
movl %r8d, 0x33a0(%rsp)
movl %edi, 0x339c(%rsp)
movq %rsi, 0x3390(%rsp)
movq %rdx, 0x3388(%rsp)
movl %ecx, 0x3384(%rsp)
movq %rax, 0x3378(%rsp)
movq 0x33a8(%rsp), %rcx
movq %rcx, 0x1b0(%rsp)
movq 0x3390(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3388(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3384(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3378(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x33a4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x33a0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x339c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3490(%rsp)
movl $0x10, 0x348c(%rsp)
movq 0x3490(%rsp), %rax
movslq 0x348c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x348c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x1b8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc88(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12a2a53
movq 0x1b8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xca0(%rsp)
movb $0x1, 0x1dab(%rsp)
testb $0x1, 0x1dab(%rsp)
jne 0x12a2b8e
leaq 0xc60(%rsp), %rax
movq %rax, 0x21a0(%rsp)
movq 0x21a0(%rsp), %rax
movq %rax, 0x3b30(%rsp)
movq 0x3b30(%rsp), %rax
movq %rax, 0x1a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a2b31
movq 0x1a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b2c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b2c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b28(%rsp)
cmpl $0x1, 0x3b28(%rsp)
jne 0x12a2b31
movq 0x1a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a2b02
movq 0x1a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a2b00
jmp 0x12a2b2f
movq 0x1a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d48(%rsp)
cmpq $0x0, 0x3d48(%rsp)
je 0x12a2b2d
movq 0x3d48(%rsp), %rdi
callq 0x5f480
jmp 0x12a2b2f
jmp 0x12a2b31
movq 0x1a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a2b8c
movq %rax, %rdi
callq 0x678a0
jmp 0x12a2b8e
leaq 0xc60(%rsp), %rax
movq %rax, 0x2018(%rsp)
movq 0x2018(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x198(%rsp)
leaq 0xc60(%rsp), %rax
movq %rax, 0x22e0(%rsp)
movq 0x22e0(%rsp), %rax
movq %rax, 0x38b0(%rsp)
movq 0x38b0(%rsp), %rax
movq %rax, 0x1a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a2c79
movq 0x1a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x38ac(%rsp) # imm = 0xFFFFFFFF
movl 0x38ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x38a8(%rsp)
cmpl $0x1, 0x38a8(%rsp)
jne 0x12a2c79
movq 0x1a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a2c4a
movq 0x1a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a2c48
jmp 0x12a2c77
movq 0x1a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e88(%rsp)
cmpq $0x0, 0x3e88(%rsp)
je 0x12a2c75
movq 0x3e88(%rsp), %rdi
callq 0x5f480
jmp 0x12a2c77
jmp 0x12a2c79
movq 0x1a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a2cd4
movq %rax, %rdi
callq 0x678a0
movq 0x198(%rsp), %rax
movq %rax, 0xca8(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0xcbc(%rsp), %eax
leaq 0xc10(%rsp), %rdx
movq %rdx, 0x2390(%rsp)
movq %rcx, 0x2388(%rsp)
movl %eax, 0x2384(%rsp)
movq 0x2388(%rsp), %rax
movq %rax, 0x190(%rsp)
movb $0x0, 0x2383(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2384(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xc10(%rsp), %r10
movq %r10, 0x2df8(%rsp)
movl %r9d, 0x2df4(%rsp)
movl %r8d, 0x2df0(%rsp)
movl %edi, 0x2dec(%rsp)
movq %rsi, 0x2de0(%rsp)
movq %rdx, 0x2dd8(%rsp)
movl %ecx, 0x2dd4(%rsp)
movq %rax, 0x2dc8(%rsp)
movq 0x2df8(%rsp), %rcx
movq %rcx, 0x188(%rsp)
movq 0x2de0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2dd8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2dd4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2dc8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2df4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2df0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2dec(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3630(%rsp)
movl $0x10, 0x362c(%rsp)
movq 0x3630(%rsp), %rax
movslq 0x362c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x362c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x190(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc38(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12a2ea0
movq 0x190(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xc50(%rsp)
movb $0x1, 0x2383(%rsp)
testb $0x1, 0x2383(%rsp)
jne 0x12a2fdb
leaq 0xc10(%rsp), %rax
movq %rax, 0x2398(%rsp)
movq 0x2398(%rsp), %rax
movq %rax, 0x3800(%rsp)
movq 0x3800(%rsp), %rax
movq %rax, 0x180(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a2f7e
movq 0x180(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x37fc(%rsp) # imm = 0xFFFFFFFF
movl 0x37fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x37f8(%rsp)
cmpl $0x1, 0x37f8(%rsp)
jne 0x12a2f7e
movq 0x180(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a2f4f
movq 0x180(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a2f4d
jmp 0x12a2f7c
movq 0x180(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ee0(%rsp)
cmpq $0x0, 0x3ee0(%rsp)
je 0x12a2f7a
movq 0x3ee0(%rsp), %rdi
callq 0x5f480
jmp 0x12a2f7c
jmp 0x12a2f7e
movq 0x180(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a2fd9
movq %rax, %rdi
callq 0x678a0
jmp 0x12a2fdb
leaq 0xc10(%rsp), %rax
movq %rax, 0x2588(%rsp)
movq 0x2588(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x170(%rsp)
leaq 0xc10(%rsp), %rax
movq %rax, 0x22e8(%rsp)
movq 0x22e8(%rsp), %rax
movq %rax, 0x38a0(%rsp)
movq 0x38a0(%rsp), %rax
movq %rax, 0x178(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a30c6
movq 0x178(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x389c(%rsp) # imm = 0xFFFFFFFF
movl 0x389c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3898(%rsp)
cmpl $0x1, 0x3898(%rsp)
jne 0x12a30c6
movq 0x178(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a3097
movq 0x178(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a3095
jmp 0x12a30c4
movq 0x178(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e90(%rsp)
cmpq $0x0, 0x3e90(%rsp)
je 0x12a30c2
movq 0x3e90(%rsp), %rdi
callq 0x5f480
jmp 0x12a30c4
jmp 0x12a30c6
movq 0x178(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a3121
movq %rax, %rdi
callq 0x678a0
movq 0x170(%rsp), %rax
movq %rax, 0xc58(%rsp)
movl $0x0, 0xc0c(%rsp)
movl 0xc0c(%rsp), %eax
cmpl 0x1c70(%rsp), %eax
jge 0x12a32ac
movq 0xcb0(%rsp), %rax
movq %rax, 0x2658(%rsp)
movq 0x2658(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xbf0(%rsp)
movl $0x0, 0xbec(%rsp)
movl 0xbec(%rsp), %eax
cmpl 0x1c74(%rsp), %eax
jge 0x12a3282
movl $0x0, 0xbe8(%rsp)
movl 0xbe8(%rsp), %eax
cmpl 0x1c78(%rsp), %eax
jge 0x12a326a
movq 0xca8(%rsp), %rax
movq %rax, 0x2650(%rsp)
movq 0x2650(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xbd0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0xbf0(%rsp), %rsi
leaq 0xbd0(%rsp), %rdx
callq 0x12f6b80
movaps %xmm0, 0xbc0(%rsp)
movq 0xc58(%rsp), %rax
movaps 0xbc0(%rsp), %xmm0
movq %rax, 0x27e8(%rsp)
movaps %xmm0, 0x27d0(%rsp)
movaps 0x27d0(%rsp), %xmm0
movq 0x27e8(%rsp), %rax
movups %xmm0, (%rax)
movq 0xca8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xca8(%rsp)
movq 0xc58(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xc58(%rsp)
movl 0xbe8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xbe8(%rsp)
jmp 0x12a319d
jmp 0x12a326c
movl 0xbec(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xbec(%rsp)
jmp 0x12a317e
movq 0xcb0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xcb0(%rsp)
movl 0xc0c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xc0c(%rsp)
jmp 0x12a313c
jmp 0x12a32ae
movl 0xcbc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xcbc(%rsp)
jmp 0x12a283a
movl $0x0, 0x1cc4(%rsp)
jmp 0x12a5b20
movq 0x1cb0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x12a3e14
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c6c(%rsp), %ecx
movq 0x1c60(%rsp), %r8
movl 0x1c5c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1cf8(%rsp)
movq 0x1cf8(%rsp), %rcx
movq %rcx, 0x160(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x16f(%rsp)
je 0x12a3389
movq 0x160(%rsp), %rax
movq %rax, 0x2a80(%rsp)
movq 0x2a80(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x16f(%rsp)
movb 0x16f(%rsp), %al
testb $0x1, %al
jne 0x12a3396
jmp 0x12a33a6
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12a5b20
movl $0x0, 0xbbc(%rsp)
movl 0xbbc(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12a3e04
movq 0x1cb8(%rsp), %rcx
movl 0xbbc(%rsp), %eax
movq %rcx, 0x2a08(%rsp)
movl %eax, 0x2a04(%rsp)
movq 0x2a08(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2a04(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xbb0(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0xbbc(%rsp), %eax
leaq 0xb60(%rsp), %rdx
movq %rdx, 0x1da0(%rsp)
movq %rcx, 0x1d98(%rsp)
movl %eax, 0x1d94(%rsp)
movq 0x1d98(%rsp), %rax
movq %rax, 0x158(%rsp)
movb $0x0, 0x1d93(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1d94(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xb60(%rsp), %r10
movq %r10, 0x33e0(%rsp)
movl %r9d, 0x33dc(%rsp)
movl %r8d, 0x33d8(%rsp)
movl %edi, 0x33d4(%rsp)
movq %rsi, 0x33c8(%rsp)
movq %rdx, 0x33c0(%rsp)
movl %ecx, 0x33bc(%rsp)
movq %rax, 0x33b0(%rsp)
movq 0x33e0(%rsp), %rcx
movq %rcx, 0x150(%rsp)
movq 0x33c8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x33c0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x33bc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x33b0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x33dc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x33d8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x33d4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3480(%rsp)
movl $0x10, 0x347c(%rsp)
movq 0x3480(%rsp), %rax
movslq 0x347c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x347c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x158(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xb88(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12a35ca
movq 0x158(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xba0(%rsp)
movb $0x1, 0x1d93(%rsp)
testb $0x1, 0x1d93(%rsp)
jne 0x12a3705
leaq 0xb60(%rsp), %rax
movq %rax, 0x21a8(%rsp)
movq 0x21a8(%rsp), %rax
movq %rax, 0x3b20(%rsp)
movq 0x3b20(%rsp), %rax
movq %rax, 0x148(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a36a8
movq 0x148(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b1c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b1c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b18(%rsp)
cmpl $0x1, 0x3b18(%rsp)
jne 0x12a36a8
movq 0x148(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a3679
movq 0x148(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a3677
jmp 0x12a36a6
movq 0x148(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d50(%rsp)
cmpq $0x0, 0x3d50(%rsp)
je 0x12a36a4
movq 0x3d50(%rsp), %rdi
callq 0x5f480
jmp 0x12a36a6
jmp 0x12a36a8
movq 0x148(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a3703
movq %rax, %rdi
callq 0x678a0
jmp 0x12a3705
leaq 0xb60(%rsp), %rax
movq %rax, 0x2010(%rsp)
movq 0x2010(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x138(%rsp)
leaq 0xb60(%rsp), %rax
movq %rax, 0x22f0(%rsp)
movq 0x22f0(%rsp), %rax
movq %rax, 0x3890(%rsp)
movq 0x3890(%rsp), %rax
movq %rax, 0x140(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a37f0
movq 0x140(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x388c(%rsp) # imm = 0xFFFFFFFF
movl 0x388c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3888(%rsp)
cmpl $0x1, 0x3888(%rsp)
jne 0x12a37f0
movq 0x140(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a37c1
movq 0x140(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a37bf
jmp 0x12a37ee
movq 0x140(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e98(%rsp)
cmpq $0x0, 0x3e98(%rsp)
je 0x12a37ec
movq 0x3e98(%rsp), %rdi
callq 0x5f480
jmp 0x12a37ee
jmp 0x12a37f0
movq 0x140(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a384b
movq %rax, %rdi
callq 0x678a0
movq 0x138(%rsp), %rax
movq %rax, 0xba8(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0xbbc(%rsp), %eax
leaq 0xb10(%rsp), %rdx
movq %rdx, 0x2370(%rsp)
movq %rcx, 0x2368(%rsp)
movl %eax, 0x2364(%rsp)
movq 0x2368(%rsp), %rax
movq %rax, 0x130(%rsp)
movb $0x0, 0x2363(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2364(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xb10(%rsp), %r10
movq %r10, 0x2e30(%rsp)
movl %r9d, 0x2e2c(%rsp)
movl %r8d, 0x2e28(%rsp)
movl %edi, 0x2e24(%rsp)
movq %rsi, 0x2e18(%rsp)
movq %rdx, 0x2e10(%rsp)
movl %ecx, 0x2e0c(%rsp)
movq %rax, 0x2e00(%rsp)
movq 0x2e30(%rsp), %rcx
movq %rcx, 0x128(%rsp)
movq 0x2e18(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2e10(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2e0c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2e00(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2e2c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2e28(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2e24(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3620(%rsp)
movl $0x10, 0x361c(%rsp)
movq 0x3620(%rsp), %rax
movslq 0x361c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x361c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x130(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xb38(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12a3a17
movq 0x130(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xb50(%rsp)
movb $0x1, 0x2363(%rsp)
testb $0x1, 0x2363(%rsp)
jne 0x12a3b52
leaq 0xb10(%rsp), %rax
movq %rax, 0x2378(%rsp)
movq 0x2378(%rsp), %rax
movq %rax, 0x3810(%rsp)
movq 0x3810(%rsp), %rax
movq %rax, 0x120(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a3af5
movq 0x120(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x380c(%rsp) # imm = 0xFFFFFFFF
movl 0x380c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3808(%rsp)
cmpl $0x1, 0x3808(%rsp)
jne 0x12a3af5
movq 0x120(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a3ac6
movq 0x120(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a3ac4
jmp 0x12a3af3
movq 0x120(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ed8(%rsp)
cmpq $0x0, 0x3ed8(%rsp)
je 0x12a3af1
movq 0x3ed8(%rsp), %rdi
callq 0x5f480
jmp 0x12a3af3
jmp 0x12a3af5
movq 0x120(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a3b50
movq %rax, %rdi
callq 0x678a0
jmp 0x12a3b52
leaq 0xb10(%rsp), %rax
movq %rax, 0x2580(%rsp)
movq 0x2580(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x110(%rsp)
leaq 0xb10(%rsp), %rax
movq %rax, 0x22f8(%rsp)
movq 0x22f8(%rsp), %rax
movq %rax, 0x3880(%rsp)
movq 0x3880(%rsp), %rax
movq %rax, 0x118(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a3c3d
movq 0x118(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x387c(%rsp) # imm = 0xFFFFFFFF
movl 0x387c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3878(%rsp)
cmpl $0x1, 0x3878(%rsp)
jne 0x12a3c3d
movq 0x118(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a3c0e
movq 0x118(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a3c0c
jmp 0x12a3c3b
movq 0x118(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ea0(%rsp)
cmpq $0x0, 0x3ea0(%rsp)
je 0x12a3c39
movq 0x3ea0(%rsp), %rdi
callq 0x5f480
jmp 0x12a3c3b
jmp 0x12a3c3d
movq 0x118(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a3c98
movq %rax, %rdi
callq 0x678a0
movq 0x110(%rsp), %rax
movq %rax, 0xb58(%rsp)
movl $0x0, 0xb0c(%rsp)
movl 0xb0c(%rsp), %eax
cmpl 0x1c74(%rsp), %eax
jge 0x12a3dec
movq 0xbb0(%rsp), %rax
movq %rax, 0x2648(%rsp)
movq 0x2648(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xaf0(%rsp)
movl $0x0, 0xaec(%rsp)
movl 0xaec(%rsp), %eax
cmpl 0x1c78(%rsp), %eax
jge 0x12a3dc2
movq 0xba8(%rsp), %rax
movq %rax, 0x2640(%rsp)
movq 0x2640(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xad0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0xaf0(%rsp), %rsi
leaq 0xad0(%rsp), %rdx
callq 0x12f6b80
movaps %xmm0, 0xac0(%rsp)
movq 0xb58(%rsp), %rax
movaps 0xac0(%rsp), %xmm0
movq %rax, 0x27c8(%rsp)
movaps %xmm0, 0x27b0(%rsp)
movaps 0x27b0(%rsp), %xmm0
movq 0x27c8(%rsp), %rax
movups %xmm0, (%rax)
movq 0xba8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xba8(%rsp)
movq 0xb58(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xb58(%rsp)
movl 0xaec(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xaec(%rsp)
jmp 0x12a3cf5
movq 0xbb0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xbb0(%rsp)
movl 0xb0c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xb0c(%rsp)
jmp 0x12a3cb3
jmp 0x12a3dee
movl 0xbbc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xbbc(%rsp)
jmp 0x12a33b1
movl $0x0, 0x1cc4(%rsp)
jmp 0x12a5b20
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movq 0x1c80(%rsp), %rcx
movl 0x1c7c(%rsp), %r8d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1cf0(%rsp)
movq 0x1cf0(%rsp), %rcx
movq %rcx, 0x100(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x10f(%rsp)
je 0x12a3eac
movq 0x100(%rsp), %rax
movq %rax, 0x2a88(%rsp)
movq 0x2a88(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x10f(%rsp)
movb 0x10f(%rsp), %al
testb $0x1, %al
jne 0x12a3eb9
jmp 0x12a3ec9
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12a5b20
movq 0x1cb0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x12a3f08
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12eaac0
movl %eax, 0x1cc4(%rsp)
jmp 0x12a5b20
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x12a41d5
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movq 0x1c80(%rsp), %rcx
movl 0x1c7c(%rsp), %r8d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1ce8(%rsp)
movq 0x1ce8(%rsp), %rcx
movq %rcx, 0xf0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xff(%rsp)
je 0x12a3fb2
movq 0xf0(%rsp), %rax
movq %rax, 0x2a90(%rsp)
movq 0x2a90(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xff(%rsp)
movb 0xff(%rsp), %al
testb $0x1, %al
jne 0x12a3fbf
jmp 0x12a3fcf
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12a5b20
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x12a4018
cmpl $0x1, 0x1c5c(%rsp)
jne 0x12a4018
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12eba40
movl %eax, 0x1cc4(%rsp)
jmp 0x12a5b20
movq 0x1cb8(%rsp), %rax
movq %rax, 0x2008(%rsp)
movq 0x2008(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xab8(%rsp)
movq 0x1cb0(%rsp), %rax
movq %rax, 0x2000(%rsp)
movq 0x2000(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xab0(%rsp)
movq 0x1ca8(%rsp), %rax
movq %rax, 0x2578(%rsp)
movq 0x2578(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xaa8(%rsp)
movl $0x0, 0xaa4(%rsp)
movl 0xaa4(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jge 0x12a41c5
movq 0xab0(%rsp), %rax
movq %rax, 0x2638(%rsp)
movq 0x2638(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xa90(%rsp)
movl $0x0, 0xa8c(%rsp)
movl 0xa8c(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jge 0x12a419b
movq 0xab8(%rsp), %rax
movq %rax, 0x2630(%rsp)
movq 0x2630(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xa70(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0xa70(%rsp), %rsi
leaq 0xa90(%rsp), %rdx
callq 0x12f6b80
movaps %xmm0, 0xa60(%rsp)
movq 0xaa8(%rsp), %rax
movaps 0xa60(%rsp), %xmm0
movq %rax, 0x27a8(%rsp)
movaps %xmm0, 0x2790(%rsp)
movaps 0x2790(%rsp), %xmm0
movq 0x27a8(%rsp), %rax
movups %xmm0, (%rax)
movq 0xab8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xab8(%rsp)
movq 0xaa8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xaa8(%rsp)
movl 0xa8c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xa8c(%rsp)
jmp 0x12a40ce
movq 0xab0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xab0(%rsp)
movl 0xaa4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xaa4(%rsp)
jmp 0x12a408c
movl $0x0, 0x1cc4(%rsp)
jmp 0x12a5b20
jmp 0x12a5b11
movq 0x1cb8(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x12a5b0f
movq 0x1cb8(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x12a4235
cmpl $0x1, 0x1c7c(%rsp)
jne 0x12a4235
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12ec5b0
movl %eax, 0x1cc4(%rsp)
jmp 0x12a5b20
movq 0x1cb0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x12a4d17
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c70(%rsp), %ecx
movl 0x1c6c(%rsp), %r8d
movq 0x1c60(%rsp), %r9
movl 0x1c5c(%rsp), %r10d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1ce0(%rsp)
movq 0x1ce0(%rsp), %rcx
movq %rcx, 0xe0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xef(%rsp)
je 0x12a42f7
movq 0xe0(%rsp), %rax
movq %rax, 0x2a98(%rsp)
movq 0x2a98(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xef(%rsp)
movb 0xef(%rsp), %al
testb $0x1, %al
jne 0x12a4304
jmp 0x12a4314
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12a5b20
movl $0x0, 0xa5c(%rsp)
movl 0xa5c(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12a4d07
movq 0x1cb8(%rsp), %rax
movq %rax, 0x1ff8(%rsp)
movq 0x1ff8(%rsp), %rax
movq (%rax), %rax
movl 0xa5c(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2628(%rsp)
movq 0x2628(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xa40(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0xa5c(%rsp), %eax
leaq 0x9f0(%rsp), %rdx
movq %rdx, 0x1d88(%rsp)
movq %rcx, 0x1d80(%rsp)
movl %eax, 0x1d7c(%rsp)
movq 0x1d80(%rsp), %rax
movq %rax, 0xd8(%rsp)
movb $0x0, 0x1d7b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1d7c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x9f0(%rsp), %r10
movq %r10, 0x3418(%rsp)
movl %r9d, 0x3414(%rsp)
movl %r8d, 0x3410(%rsp)
movl %edi, 0x340c(%rsp)
movq %rsi, 0x3400(%rsp)
movq %rdx, 0x33f8(%rsp)
movl %ecx, 0x33f4(%rsp)
movq %rax, 0x33e8(%rsp)
movq 0x3418(%rsp), %rcx
movq %rcx, 0xd0(%rsp)
movq 0x3400(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x33f8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x33f4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x33e8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3414(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3410(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x340c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3470(%rsp)
movl $0x10, 0x346c(%rsp)
movq 0x3470(%rsp), %rax
movslq 0x346c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x346c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xd8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xa18(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12a4539
movq 0xd8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xa30(%rsp)
movb $0x1, 0x1d7b(%rsp)
testb $0x1, 0x1d7b(%rsp)
jne 0x12a4674
leaq 0x9f0(%rsp), %rax
movq %rax, 0x21b0(%rsp)
movq 0x21b0(%rsp), %rax
movq %rax, 0x3b10(%rsp)
movq 0x3b10(%rsp), %rax
movq %rax, 0xc8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a4617
movq 0xc8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b0c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b0c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b08(%rsp)
cmpl $0x1, 0x3b08(%rsp)
jne 0x12a4617
movq 0xc8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a45e8
movq 0xc8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a45e6
jmp 0x12a4615
movq 0xc8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d58(%rsp)
cmpq $0x0, 0x3d58(%rsp)
je 0x12a4613
movq 0x3d58(%rsp), %rdi
callq 0x5f480
jmp 0x12a4615
jmp 0x12a4617
movq 0xc8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a4672
movq %rax, %rdi
callq 0x678a0
jmp 0x12a4674
leaq 0x9f0(%rsp), %rax
movq %rax, 0x1ff0(%rsp)
movq 0x1ff0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xb8(%rsp)
leaq 0x9f0(%rsp), %rax
movq %rax, 0x2300(%rsp)
movq 0x2300(%rsp), %rax
movq %rax, 0x3870(%rsp)
movq 0x3870(%rsp), %rax
movq %rax, 0xc0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a475f
movq 0xc0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x386c(%rsp) # imm = 0xFFFFFFFF
movl 0x386c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3868(%rsp)
cmpl $0x1, 0x3868(%rsp)
jne 0x12a475f
movq 0xc0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a4730
movq 0xc0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a472e
jmp 0x12a475d
movq 0xc0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ea8(%rsp)
cmpq $0x0, 0x3ea8(%rsp)
je 0x12a475b
movq 0x3ea8(%rsp), %rdi
callq 0x5f480
jmp 0x12a475d
jmp 0x12a475f
movq 0xc0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a47ba
movq %rax, %rdi
callq 0x678a0
movq 0xb8(%rsp), %rax
movq %rax, 0xa38(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0xa5c(%rsp), %eax
leaq 0x9a0(%rsp), %rdx
movq %rdx, 0x2350(%rsp)
movq %rcx, 0x2348(%rsp)
movl %eax, 0x2344(%rsp)
movq 0x2348(%rsp), %rax
movq %rax, 0xb0(%rsp)
movb $0x0, 0x2343(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2344(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x9a0(%rsp), %r10
movq %r10, 0x2e68(%rsp)
movl %r9d, 0x2e64(%rsp)
movl %r8d, 0x2e60(%rsp)
movl %edi, 0x2e5c(%rsp)
movq %rsi, 0x2e50(%rsp)
movq %rdx, 0x2e48(%rsp)
movl %ecx, 0x2e44(%rsp)
movq %rax, 0x2e38(%rsp)
movq 0x2e68(%rsp), %rcx
movq %rcx, 0xa8(%rsp)
movq 0x2e50(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2e48(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2e44(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2e38(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2e64(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2e60(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2e5c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3610(%rsp)
movl $0x10, 0x360c(%rsp)
movq 0x3610(%rsp), %rax
movslq 0x360c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x360c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xb0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x9c8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12a4986
movq 0xb0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x9e0(%rsp)
movb $0x1, 0x2343(%rsp)
testb $0x1, 0x2343(%rsp)
jne 0x12a4ac1
leaq 0x9a0(%rsp), %rax
movq %rax, 0x2358(%rsp)
movq 0x2358(%rsp), %rax
movq %rax, 0x3820(%rsp)
movq 0x3820(%rsp), %rax
movq %rax, 0xa0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a4a64
movq 0xa0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x381c(%rsp) # imm = 0xFFFFFFFF
movl 0x381c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3818(%rsp)
cmpl $0x1, 0x3818(%rsp)
jne 0x12a4a64
movq 0xa0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a4a35
movq 0xa0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a4a33
jmp 0x12a4a62
movq 0xa0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ed0(%rsp)
cmpq $0x0, 0x3ed0(%rsp)
je 0x12a4a60
movq 0x3ed0(%rsp), %rdi
callq 0x5f480
jmp 0x12a4a62
jmp 0x12a4a64
movq 0xa0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a4abf
movq %rax, %rdi
callq 0x678a0
jmp 0x12a4ac1
leaq 0x9a0(%rsp), %rax
movq %rax, 0x2570(%rsp)
movq 0x2570(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x90(%rsp)
leaq 0x9a0(%rsp), %rax
movq %rax, 0x2308(%rsp)
movq 0x2308(%rsp), %rax
movq %rax, 0x3860(%rsp)
movq 0x3860(%rsp), %rax
movq %rax, 0x98(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a4bac
movq 0x98(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x385c(%rsp) # imm = 0xFFFFFFFF
movl 0x385c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3858(%rsp)
cmpl $0x1, 0x3858(%rsp)
jne 0x12a4bac
movq 0x98(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a4b7d
movq 0x98(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a4b7b
jmp 0x12a4baa
movq 0x98(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3eb0(%rsp)
cmpq $0x0, 0x3eb0(%rsp)
je 0x12a4ba8
movq 0x3eb0(%rsp), %rdi
callq 0x5f480
jmp 0x12a4baa
jmp 0x12a4bac
movq 0x98(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a4c07
movq %rax, %rdi
callq 0x678a0
movq 0x90(%rsp), %rax
movq %rax, 0x9e8(%rsp)
movl $0x0, 0x99c(%rsp)
movl 0x99c(%rsp), %eax
cmpl 0x1c68(%rsp), %eax
jge 0x12a4cef
movq 0xa38(%rsp), %rax
movq %rax, 0x2620(%rsp)
movq 0x2620(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x980(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0xa40(%rsp), %rsi
leaq 0x980(%rsp), %rdx
callq 0x12f6b80
movaps %xmm0, 0x970(%rsp)
movq 0x9e8(%rsp), %rax
movaps 0x970(%rsp), %xmm0
movq %rax, 0x2788(%rsp)
movaps %xmm0, 0x2770(%rsp)
movaps 0x2770(%rsp), %xmm0
movq 0x2788(%rsp), %rax
movups %xmm0, (%rax)
movq 0xa38(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xa38(%rsp)
movq 0x9e8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x9e8(%rsp)
movl 0x99c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x99c(%rsp)
jmp 0x12a4c22
jmp 0x12a4cf1
movl 0xa5c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xa5c(%rsp)
jmp 0x12a431f
movl $0x0, 0x1cc4(%rsp)
jmp 0x12a5b20
movq 0x1cb0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x12a5780
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c6c(%rsp), %ecx
movq 0x1c60(%rsp), %r8
movl 0x1c5c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1cd8(%rsp)
movq 0x1cd8(%rsp), %rcx
movq %rcx, 0x80(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x8f(%rsp)
je 0x12a4dcc
movq 0x80(%rsp), %rax
movq %rax, 0x2aa0(%rsp)
movq 0x2aa0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x8f(%rsp)
movb 0x8f(%rsp), %al
testb $0x1, %al
jne 0x12a4dd9
jmp 0x12a4de9
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12a5b20
movl $0x0, 0x96c(%rsp)
movl 0x96c(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12a5770
movq 0x1cb8(%rsp), %rax
movq %rax, 0x1fe8(%rsp)
movq 0x1fe8(%rsp), %rax
movq (%rax), %rax
movl 0x96c(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2618(%rsp)
movq 0x2618(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x950(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x96c(%rsp), %eax
leaq 0x900(%rsp), %rdx
movq %rdx, 0x1d70(%rsp)
movq %rcx, 0x1d68(%rsp)
movl %eax, 0x1d64(%rsp)
movq 0x1d68(%rsp), %rax
movq %rax, 0x78(%rsp)
movb $0x0, 0x1d63(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1d64(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x900(%rsp), %r10
movq %r10, 0x3450(%rsp)
movl %r9d, 0x344c(%rsp)
movl %r8d, 0x3448(%rsp)
movl %edi, 0x3444(%rsp)
movq %rsi, 0x3438(%rsp)
movq %rdx, 0x3430(%rsp)
movl %ecx, 0x342c(%rsp)
movq %rax, 0x3420(%rsp)
movq 0x3450(%rsp), %rcx
movq %rcx, 0x70(%rsp)
movq 0x3438(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3430(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x342c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3420(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x344c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3448(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3444(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3460(%rsp)
movl $0x10, 0x345c(%rsp)
movq 0x3460(%rsp), %rax
movslq 0x345c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x345c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x78(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x928(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12a5002
movq 0x78(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x940(%rsp)
movb $0x1, 0x1d63(%rsp)
testb $0x1, 0x1d63(%rsp)
jne 0x12a512b
leaq 0x900(%rsp), %rax
movq %rax, 0x21b8(%rsp)
movq 0x21b8(%rsp), %rax
movq %rax, 0x3b00(%rsp)
movq 0x3b00(%rsp), %rax
movq %rax, 0x68(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a50d1
movq 0x68(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3afc(%rsp) # imm = 0xFFFFFFFF
movl 0x3afc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3af8(%rsp)
cmpl $0x1, 0x3af8(%rsp)
jne 0x12a50d1
movq 0x68(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a50a5
movq 0x68(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a50a3
jmp 0x12a50cf
movq 0x68(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d60(%rsp)
cmpq $0x0, 0x3d60(%rsp)
je 0x12a50cd
movq 0x3d60(%rsp), %rdi
callq 0x5f480
jmp 0x12a50cf
jmp 0x12a50d1
movq 0x68(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a5129
movq %rax, %rdi
callq 0x678a0
jmp 0x12a512b
leaq 0x900(%rsp), %rax
movq %rax, 0x1fe0(%rsp)
movq 0x1fe0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x58(%rsp)
leaq 0x900(%rsp), %rax
movq %rax, 0x2310(%rsp)
movq 0x2310(%rsp), %rax
movq %rax, 0x3850(%rsp)
movq 0x3850(%rsp), %rax
movq %rax, 0x60(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a5204
movq 0x60(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x384c(%rsp) # imm = 0xFFFFFFFF
movl 0x384c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3848(%rsp)
cmpl $0x1, 0x3848(%rsp)
jne 0x12a5204
movq 0x60(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a51d8
movq 0x60(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a51d6
jmp 0x12a5202
movq 0x60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3eb8(%rsp)
cmpq $0x0, 0x3eb8(%rsp)
je 0x12a5200
movq 0x3eb8(%rsp), %rdi
callq 0x5f480
jmp 0x12a5202
jmp 0x12a5204
movq 0x60(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a525c
movq %rax, %rdi
callq 0x678a0
movq 0x58(%rsp), %rax
movq %rax, 0x948(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x96c(%rsp), %eax
leaq 0x8b0(%rsp), %rdx
movq %rdx, 0x2330(%rsp)
movq %rcx, 0x2328(%rsp)
movl %eax, 0x2324(%rsp)
movq 0x2328(%rsp), %rax
movq %rax, 0x50(%rsp)
movb $0x0, 0x2323(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2324(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x8b0(%rsp), %r10
movq %r10, 0x2ea0(%rsp)
movl %r9d, 0x2e9c(%rsp)
movl %r8d, 0x2e98(%rsp)
movl %edi, 0x2e94(%rsp)
movq %rsi, 0x2e88(%rsp)
movq %rdx, 0x2e80(%rsp)
movl %ecx, 0x2e7c(%rsp)
movq %rax, 0x2e70(%rsp)
movq 0x2ea0(%rsp), %rcx
movq %rcx, 0x48(%rsp)
movq 0x2e88(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2e80(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2e7c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2e70(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2e9c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2e98(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2e94(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3600(%rsp)
movl $0x10, 0x35fc(%rsp)
movq 0x3600(%rsp), %rax
movslq 0x35fc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x35fc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x50(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x8d8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12a5419
movq 0x50(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x8f0(%rsp)
movb $0x1, 0x2323(%rsp)
testb $0x1, 0x2323(%rsp)
jne 0x12a5542
leaq 0x8b0(%rsp), %rax
movq %rax, 0x2338(%rsp)
movq 0x2338(%rsp), %rax
movq %rax, 0x3830(%rsp)
movq 0x3830(%rsp), %rax
movq %rax, 0x40(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a54e8
movq 0x40(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x382c(%rsp) # imm = 0xFFFFFFFF
movl 0x382c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3828(%rsp)
cmpl $0x1, 0x3828(%rsp)
jne 0x12a54e8
movq 0x40(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a54bc
movq 0x40(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a54ba
jmp 0x12a54e6
movq 0x40(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ec8(%rsp)
cmpq $0x0, 0x3ec8(%rsp)
je 0x12a54e4
movq 0x3ec8(%rsp), %rdi
callq 0x5f480
jmp 0x12a54e6
jmp 0x12a54e8
movq 0x40(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a5540
movq %rax, %rdi
callq 0x678a0
jmp 0x12a5542
leaq 0x8b0(%rsp), %rax
movq %rax, 0x2568(%rsp)
movq 0x2568(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x30(%rsp)
leaq 0x8b0(%rsp), %rax
movq %rax, 0x2318(%rsp)
movq 0x2318(%rsp), %rax
movq %rax, 0x3840(%rsp)
movq 0x3840(%rsp), %rax
movq %rax, 0x38(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a561b
movq 0x38(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x383c(%rsp) # imm = 0xFFFFFFFF
movl 0x383c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3838(%rsp)
cmpl $0x1, 0x3838(%rsp)
jne 0x12a561b
movq 0x38(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a55ef
movq 0x38(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a55ed
jmp 0x12a5619
movq 0x38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ec0(%rsp)
cmpq $0x0, 0x3ec0(%rsp)
je 0x12a5617
movq 0x3ec0(%rsp), %rdi
callq 0x5f480
jmp 0x12a5619
jmp 0x12a561b
movq 0x38(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a5673
movq %rax, %rdi
callq 0x678a0
movq 0x30(%rsp), %rax
movq %rax, 0x8f8(%rsp)
movl $0x0, 0x8ac(%rsp)
movl 0x8ac(%rsp), %eax
cmpl 0x1c68(%rsp), %eax
jge 0x12a5758
movq 0x948(%rsp), %rax
movq %rax, 0x2610(%rsp)
movq 0x2610(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x890(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x950(%rsp), %rsi
leaq 0x890(%rsp), %rdx
callq 0x12f6b80
movaps %xmm0, 0x880(%rsp)
movq 0x8f8(%rsp), %rax
movaps 0x880(%rsp), %xmm0
movq %rax, 0x2768(%rsp)
movaps %xmm0, 0x2750(%rsp)
movaps 0x2750(%rsp), %xmm0
movq 0x2768(%rsp), %rax
movups %xmm0, (%rax)
movq 0x948(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x948(%rsp)
movq 0x8f8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x8f8(%rsp)
movl 0x8ac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x8ac(%rsp)
jmp 0x12a568b
jmp 0x12a575a
movl 0x96c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x96c(%rsp)
jmp 0x12a4df4
movl $0x0, 0x1cc4(%rsp)
jmp 0x12a5b20
movq 0x1cb0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x12a59f5
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movq 0x1c60(%rsp), %rcx
movl 0x1c5c(%rsp), %r8d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1cd0(%rsp)
movq 0x1cd0(%rsp), %rcx
movq %rcx, 0x20(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x2f(%rsp)
je 0x12a581e
movq 0x20(%rsp), %rax
movq %rax, 0x2aa8(%rsp)
movq 0x2aa8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x2f(%rsp)
movb 0x2f(%rsp), %al
testb $0x1, %al
jne 0x12a5828
jmp 0x12a5838
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12a5b20
movq 0x1cb8(%rsp), %rax
movq %rax, 0x1fd8(%rsp)
movq 0x1fd8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x878(%rsp)
movq 0x1cb0(%rsp), %rax
movq %rax, 0x1fd0(%rsp)
movq 0x1fd0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x870(%rsp)
movq 0x1ca8(%rsp), %rax
movq %rax, 0x2560(%rsp)
movq 0x2560(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x868(%rsp)
movl $0x0, 0x864(%rsp)
movl 0x864(%rsp), %eax
cmpl 0x1c74(%rsp), %eax
jge 0x12a59e5
movq 0x878(%rsp), %rax
movq %rax, 0x2608(%rsp)
movq 0x2608(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x850(%rsp)
movl $0x0, 0x84c(%rsp)
movl 0x84c(%rsp), %eax
cmpl 0x1c78(%rsp), %eax
jge 0x12a59bb
movq 0x870(%rsp), %rax
movq %rax, 0x2600(%rsp)
movq 0x2600(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x830(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x850(%rsp), %rsi
leaq 0x830(%rsp), %rdx
callq 0x12f6b80
movaps %xmm0, 0x820(%rsp)
movq 0x868(%rsp), %rax
movaps 0x820(%rsp), %xmm0
movq %rax, 0x2748(%rsp)
movaps %xmm0, 0x2730(%rsp)
movaps 0x2730(%rsp), %xmm0
movq 0x2748(%rsp), %rax
movups %xmm0, (%rax)
movq 0x870(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x870(%rsp)
movq 0x868(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x868(%rsp)
movl 0x84c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x84c(%rsp)
jmp 0x12a58ee
movq 0x878(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x878(%rsp)
movl 0x864(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x864(%rsp)
jmp 0x12a58ac
movl $0x0, 0x1cc4(%rsp)
jmp 0x12a5b20
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x12a5b0d
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movq 0x1c80(%rsp), %rdx
movl 0x1c7c(%rsp), %ecx
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6be00
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1cc8(%rsp)
movq 0x1cc8(%rsp), %rcx
movq %rcx, 0x10(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1f(%rsp)
je 0x12a5a8b
movq 0x10(%rsp), %rax
movq %rax, 0x2ab0(%rsp)
movq 0x2ab0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1f(%rsp)
movb 0x1f(%rsp), %al
testb $0x1, %al
jne 0x12a5a95
jmp 0x12a5aa2
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12a5b20
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x12a5ae8
cmpl $0x1, 0x1c5c(%rsp)
jne 0x12a5ae8
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12eba40
movl %eax, 0x1cc4(%rsp)
jmp 0x12a5b20
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12eaac0
jmp 0x12a5b0f
jmp 0x12a5b11
jmp 0x12a5b13
jmp 0x12a5b15
movl $0x0, 0x1cc4(%rsp)
movl 0x1cc4(%rsp), %eax
addq $0x3f58, %rsp # imm = 0x3F58
retq
nop
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,832
|
int ncnn::binary_op_pack4<ncnn::BinaryOp_x86_functor::binary_op_div>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op_pack4(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int size = w * h * d;
size_t elemsize = a.elemsize;
int elempack = a.elempack;
int w1 = b.w;
int h1 = b.h;
int d1 = b.d;
int channels1 = b.c;
int size1 = w1 * h1 * d1;
size_t elemsize1 = b.elemsize;
int elempack1 = b.elempack;
if (a.dims == 4)
{
if (b.dims == 4)
{
// type 29
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
c.create(w, h, d, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 3)
{
// type 28
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
for (int y = 0; y < h; y++)
{
__m128 _b0 = _mm_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
ptr1 += 4;
}
}
}
return 0;
}
if (b.dims == 2)
{
// type 27
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
__m128 _b0 = _mm_loadu_ps(ptr1);
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
}
ptr1 += 4;
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1 && elempack1 == 1)
{
// type 25
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 26
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
__m128 _b0 = _mm_loadu_ps((const float*)b + q * 4);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
}
return 0;
}
}
else if (a.dims == 3)
{
if (b.dims == 4)
{
// type 23
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
for (int y = 0; y < h1; y++)
{
__m128 _a0 = _mm_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m128 _p = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
ptr += 4;
}
}
}
return 0;
}
if (b.dims == 3)
{
if (w1 == 1 && h1 == 1 && channels1 == channels)
{
// special type 1
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
float* outptr = c.channel(q);
const float* b0 = b.channel(q);
__m128 _b0 = _mm_loadu_ps(b0);
for (int i = 0; i < size; i++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
}
return 0;
}
if (w1 == w && h1 == h && channels1 == 1 && elempack1 == 1)
{
// special type 2
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b;
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _p1 = _mm_set1_ps(*ptr1);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
ptr1 += 1;
outptr += 4;
}
}
return 0;
}
if (w == 1 && h == 1 && channels1 == channels)
{
// special type 3
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* a0 = a.channel(q);
float* outptr = c.channel(q);
const float* ptr1 = b.channel(q);
__m128 _a0 = _mm_loadu_ps(a0);
for (int i = 0; i < size1; i++)
{
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
}
return 0;
}
if (w1 == w && h1 == h && channels == 1 && elempack == 1)
{
// special type 4
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a;
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m128 _p = _mm_set1_ps(*ptr);
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_storeu_ps(outptr, _outp);
ptr += 1;
ptr1 += 4;
outptr += 4;
}
}
return 0;
}
if (w != 1 && w1 == 1 && h1 == h && channels1 == channels)
{
// special type 5
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
__m128 _p1 = _mm_loadu_ps(ptr1 + y * 4);
for (int x = 0; x < w; x++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
}
}
return 0;
}
if (w1 == w && h != 1 && h1 == 1 && channels1 == channels)
{
// special type 6
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _p1 = _mm_loadu_ps(ptr1 + x * 4);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
}
}
return 0;
}
if (w1 != 1 && w == 1 && h1 == h && channels1 == channels)
{
// special type 7
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
__m128 _p = _mm_loadu_ps(ptr + y * 4);
for (int x = 0; x < w1; x++)
{
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
}
}
return 0;
}
if (w1 == w && h1 != 1 && h == 1 && channels1 == channels)
{
// special type 8
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
__m128 _p = _mm_loadu_ps(ptr + x * 4);
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
}
}
return 0;
}
// type 19
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 18
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row<const float>(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
__m128 _b0 = _mm_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
ptr1 += 4;
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1 && elempack1 == 1)
{
// type 16
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 17
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
__m128 _b0 = _mm_loadu_ps((const float*)b + q * 4);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
}
return 0;
}
}
else if (a.dims == 2)
{
if (b.dims == 4)
{
// type 22
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
__m128 _a0 = _mm_loadu_ps(ptr);
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
__m128 _p = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
}
ptr += 4;
}
}
return 0;
}
if (b.dims == 3)
{
// type 14
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row<const float>(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
__m128 _a0 = _mm_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
ptr += 4;
}
}
return 0;
}
c.create(w, h, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 13
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
if (b.dims == 1)
{
c.create(w, h, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1 && elempack1 == 1)
{
// type 11
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 12
const float* ptr = a;
const float* ptr1 = b;
float* outptr = c;
for (int y = 0; y < h; y++)
{
__m128 _b0 = _mm_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
ptr1 += 4;
}
return 0;
}
}
else if (a.dims == 1)
{
if (a.w == 1 && elempack == 1)
{
// type 2 3 4 20
return binary_op_2_3_4_20<Op>(a, b, c, opt);
}
if (b.dims == 4)
{
// type 21
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
__m128 _a0 = _mm_loadu_ps((const float*)a + q * 4);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
}
return 0;
}
if (b.dims == 3)
{
// type 9
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
__m128 _a0 = _mm_loadu_ps((const float*)a + q * 4);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
}
return 0;
}
if (b.dims == 2)
{
// type 8
c.create(w1, h1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
const float* ptr = a;
const float* ptr1 = b;
float* outptr = c;
for (int y = 0; y < h1; y++)
{
__m128 _a0 = _mm_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
ptr += 4;
}
return 0;
}
if (b.dims == 1)
{
c.create(w, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1 && elempack1 == 1)
{
// type 6
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 7
binary_op_7_13_19_29<Op>(a, b, c, opt);
}
}
return 0;
}
|
subq $0x3f58, %rsp # imm = 0x3F58
movq %rdi, 0x1cb8(%rsp)
movq %rsi, 0x1cb0(%rsp)
movq %rdx, 0x1ca8(%rsp)
movq %rcx, 0x1ca0(%rsp)
movq 0x1cb8(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x1c98(%rsp)
movq 0x1cb8(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x1c94(%rsp)
movq 0x1cb8(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x1c90(%rsp)
movq 0x1cb8(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x1c8c(%rsp)
movl 0x1c98(%rsp), %eax
imull 0x1c94(%rsp), %eax
imull 0x1c90(%rsp), %eax
movl %eax, 0x1c88(%rsp)
movq 0x1cb8(%rsp), %rax
movq 0x10(%rax), %rax
movq %rax, 0x1c80(%rsp)
movq 0x1cb8(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x1c7c(%rsp)
movq 0x1cb0(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x1c78(%rsp)
movq 0x1cb0(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x1c74(%rsp)
movq 0x1cb0(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x1c70(%rsp)
movq 0x1cb0(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x1c6c(%rsp)
movl 0x1c78(%rsp), %eax
imull 0x1c74(%rsp), %eax
imull 0x1c70(%rsp), %eax
movl %eax, 0x1c68(%rsp)
movq 0x1cb0(%rsp), %rax
movq 0x10(%rax), %rax
movq %rax, 0x1c60(%rsp)
movq 0x1cb0(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x1c5c(%rsp)
movq 0x1cb8(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x12a8162
movq 0x1cb0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x12a5cc0
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12ed120
movl %eax, 0x1cc4(%rsp)
jmp 0x12b4d30
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movl 0x1c90(%rsp), %ecx
movl 0x1c8c(%rsp), %r8d
movq 0x1c80(%rsp), %r9
movl 0x1c7c(%rsp), %r10d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d58(%rsp)
movq 0x1d58(%rsp), %rcx
movq %rcx, 0x810(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x81f(%rsp)
je 0x12a5d70
movq 0x810(%rsp), %rax
movq %rax, 0x2a20(%rsp)
movq 0x2a20(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x81f(%rsp)
movb 0x81f(%rsp), %al
testb $0x1, %al
jne 0x12a5d7d
jmp 0x12a5d8d
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12b4d30
movq 0x1cb0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x12a6c48
movl $0x0, 0x1c58(%rsp)
movl 0x1c58(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jge 0x12a6c38
movq 0x1cb8(%rsp), %rcx
movl 0x1c58(%rsp), %eax
leaq 0x1c08(%rsp), %rdx
movq %rdx, 0x1fc8(%rsp)
movq %rcx, 0x1fc0(%rsp)
movl %eax, 0x1fbc(%rsp)
movq 0x1fc0(%rsp), %rax
movq %rax, 0x808(%rsp)
movb $0x0, 0x1fbb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1fbc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1c08(%rsp), %r10
movq %r10, 0x2ed8(%rsp)
movl %r9d, 0x2ed4(%rsp)
movl %r8d, 0x2ed0(%rsp)
movl %edi, 0x2ecc(%rsp)
movq %rsi, 0x2ec0(%rsp)
movq %rdx, 0x2eb8(%rsp)
movl %ecx, 0x2eb4(%rsp)
movq %rax, 0x2ea8(%rsp)
movq 0x2ed8(%rsp), %rcx
movq %rcx, 0x800(%rsp)
movq 0x2ec0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2eb8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2eb4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ea8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2ed4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2ed0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2ecc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x35f0(%rsp)
movl $0x10, 0x35ec(%rsp)
movq 0x35f0(%rsp), %rax
movslq 0x35ec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x35ec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x808(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1c30(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12a5f7a
movq 0x808(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1c48(%rsp)
movb $0x1, 0x1fbb(%rsp)
testb $0x1, 0x1fbb(%rsp)
jne 0x12a60b5
leaq 0x1c08(%rsp), %rax
movq %rax, 0x20f0(%rsp)
movq 0x20f0(%rsp), %rax
movq %rax, 0x3c90(%rsp)
movq 0x3c90(%rsp), %rax
movq %rax, 0x7f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a6058
movq 0x7f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c8c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c8c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c88(%rsp)
cmpl $0x1, 0x3c88(%rsp)
jne 0x12a6058
movq 0x7f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a6029
movq 0x7f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a6027
jmp 0x12a6056
movq 0x7f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3c98(%rsp)
cmpq $0x0, 0x3c98(%rsp)
je 0x12a6054
movq 0x3c98(%rsp), %rdi
callq 0x5f480
jmp 0x12a6056
jmp 0x12a6058
movq 0x7f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a60b3
movq %rax, %rdi
callq 0x678a0
jmp 0x12a60b5
leaq 0x1c08(%rsp), %rax
movq %rax, 0x20e8(%rsp)
movq 0x20e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7e8(%rsp)
leaq 0x1c08(%rsp), %rax
movq %rax, 0x21c0(%rsp)
movq 0x21c0(%rsp), %rax
movq %rax, 0x3af0(%rsp)
movq 0x3af0(%rsp), %rax
movq %rax, 0x7f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a61a0
movq 0x7f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3aec(%rsp) # imm = 0xFFFFFFFF
movl 0x3aec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ae8(%rsp)
cmpl $0x1, 0x3ae8(%rsp)
jne 0x12a61a0
movq 0x7f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a6171
movq 0x7f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a616f
jmp 0x12a619e
movq 0x7f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d68(%rsp)
cmpq $0x0, 0x3d68(%rsp)
je 0x12a619c
movq 0x3d68(%rsp), %rdi
callq 0x5f480
jmp 0x12a619e
jmp 0x12a61a0
movq 0x7f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a61fb
movq %rax, %rdi
callq 0x678a0
movq 0x7e8(%rsp), %rax
movq %rax, 0x1c50(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x1c58(%rsp), %eax
leaq 0x1bb8(%rsp), %rdx
movq %rdx, 0x1fb0(%rsp)
movq %rcx, 0x1fa8(%rsp)
movl %eax, 0x1fa4(%rsp)
movq 0x1fa8(%rsp), %rax
movq %rax, 0x7e0(%rsp)
movb $0x0, 0x1fa3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1fa4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1bb8(%rsp), %r10
movq %r10, 0x2f10(%rsp)
movl %r9d, 0x2f0c(%rsp)
movl %r8d, 0x2f08(%rsp)
movl %edi, 0x2f04(%rsp)
movq %rsi, 0x2ef8(%rsp)
movq %rdx, 0x2ef0(%rsp)
movl %ecx, 0x2eec(%rsp)
movq %rax, 0x2ee0(%rsp)
movq 0x2f10(%rsp), %rcx
movq %rcx, 0x7d8(%rsp)
movq 0x2ef8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2ef0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2eec(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ee0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2f0c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f08(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f04(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x35e0(%rsp)
movl $0x10, 0x35dc(%rsp)
movq 0x35e0(%rsp), %rax
movslq 0x35dc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x35dc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7e0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1be0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12a63c7
movq 0x7e0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1bf8(%rsp)
movb $0x1, 0x1fa3(%rsp)
testb $0x1, 0x1fa3(%rsp)
jne 0x12a6502
leaq 0x1bb8(%rsp), %rax
movq %rax, 0x20f8(%rsp)
movq 0x20f8(%rsp), %rax
movq %rax, 0x3c80(%rsp)
movq 0x3c80(%rsp), %rax
movq %rax, 0x7d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a64a5
movq 0x7d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c7c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c7c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c78(%rsp)
cmpl $0x1, 0x3c78(%rsp)
jne 0x12a64a5
movq 0x7d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a6476
movq 0x7d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a6474
jmp 0x12a64a3
movq 0x7d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ca0(%rsp)
cmpq $0x0, 0x3ca0(%rsp)
je 0x12a64a1
movq 0x3ca0(%rsp), %rdi
callq 0x5f480
jmp 0x12a64a3
jmp 0x12a64a5
movq 0x7d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a6500
movq %rax, %rdi
callq 0x678a0
jmp 0x12a6502
leaq 0x1bb8(%rsp), %rax
movq %rax, 0x20e0(%rsp)
movq 0x20e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7c0(%rsp)
leaq 0x1bb8(%rsp), %rax
movq %rax, 0x21c8(%rsp)
movq 0x21c8(%rsp), %rax
movq %rax, 0x3ae0(%rsp)
movq 0x3ae0(%rsp), %rax
movq %rax, 0x7c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a65ed
movq 0x7c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3adc(%rsp) # imm = 0xFFFFFFFF
movl 0x3adc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ad8(%rsp)
cmpl $0x1, 0x3ad8(%rsp)
jne 0x12a65ed
movq 0x7c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a65be
movq 0x7c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a65bc
jmp 0x12a65eb
movq 0x7c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d70(%rsp)
cmpq $0x0, 0x3d70(%rsp)
je 0x12a65e9
movq 0x3d70(%rsp), %rdi
callq 0x5f480
jmp 0x12a65eb
jmp 0x12a65ed
movq 0x7c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a6648
movq %rax, %rdi
callq 0x678a0
movq 0x7c0(%rsp), %rax
movq %rax, 0x1c00(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x1c58(%rsp), %eax
leaq 0x1b68(%rsp), %rdx
movq %rdx, 0x2550(%rsp)
movq %rcx, 0x2548(%rsp)
movl %eax, 0x2544(%rsp)
movq 0x2548(%rsp), %rax
movq %rax, 0x7b8(%rsp)
movb $0x0, 0x2543(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2544(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1b68(%rsp), %r10
movq %r10, 0x2ae8(%rsp)
movl %r9d, 0x2ae4(%rsp)
movl %r8d, 0x2ae0(%rsp)
movl %edi, 0x2adc(%rsp)
movq %rsi, 0x2ad0(%rsp)
movq %rdx, 0x2ac8(%rsp)
movl %ecx, 0x2ac4(%rsp)
movq %rax, 0x2ab8(%rsp)
movq 0x2ae8(%rsp), %rcx
movq %rcx, 0x7b0(%rsp)
movq 0x2ad0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2ac8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2ac4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ab8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2ae4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2ae0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2adc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3710(%rsp)
movl $0x10, 0x370c(%rsp)
movq 0x3710(%rsp), %rax
movslq 0x370c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x370c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7b8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1b90(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12a6814
movq 0x7b8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1ba8(%rsp)
movb $0x1, 0x2543(%rsp)
testb $0x1, 0x2543(%rsp)
jne 0x12a694f
leaq 0x1b68(%rsp), %rax
movq %rax, 0x2558(%rsp)
movq 0x2558(%rsp), %rax
movq %rax, 0x3720(%rsp)
movq 0x3720(%rsp), %rax
movq %rax, 0x7a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a68f2
movq 0x7a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x371c(%rsp) # imm = 0xFFFFFFFF
movl 0x371c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3718(%rsp)
cmpl $0x1, 0x3718(%rsp)
jne 0x12a68f2
movq 0x7a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a68c3
movq 0x7a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a68c1
jmp 0x12a68f0
movq 0x7a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f50(%rsp)
cmpq $0x0, 0x3f50(%rsp)
je 0x12a68ee
movq 0x3f50(%rsp), %rdi
callq 0x5f480
jmp 0x12a68f0
jmp 0x12a68f2
movq 0x7a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a694d
movq %rax, %rdi
callq 0x678a0
jmp 0x12a694f
leaq 0x1b68(%rsp), %rax
movq %rax, 0x25f8(%rsp)
movq 0x25f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x798(%rsp)
leaq 0x1b68(%rsp), %rax
movq %rax, 0x21d0(%rsp)
movq 0x21d0(%rsp), %rax
movq %rax, 0x3ad0(%rsp)
movq 0x3ad0(%rsp), %rax
movq %rax, 0x7a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a6a3a
movq 0x7a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3acc(%rsp) # imm = 0xFFFFFFFF
movl 0x3acc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ac8(%rsp)
cmpl $0x1, 0x3ac8(%rsp)
jne 0x12a6a3a
movq 0x7a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a6a0b
movq 0x7a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a6a09
jmp 0x12a6a38
movq 0x7a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d78(%rsp)
cmpq $0x0, 0x3d78(%rsp)
je 0x12a6a36
movq 0x3d78(%rsp), %rdi
callq 0x5f480
jmp 0x12a6a38
jmp 0x12a6a3a
movq 0x7a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a6a95
movq %rax, %rdi
callq 0x678a0
movq 0x798(%rsp), %rax
movq %rax, 0x1bb0(%rsp)
movl $0x0, 0x1b64(%rsp)
movl 0x1b64(%rsp), %eax
cmpl 0x1c90(%rsp), %eax
jge 0x12a6c20
movl $0x0, 0x1b60(%rsp)
movl 0x1b60(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jge 0x12a6c08
movq 0x1c00(%rsp), %rax
movq %rax, 0x2728(%rsp)
movq 0x2728(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1b50(%rsp)
movl $0x0, 0x1b4c(%rsp)
movl 0x1b4c(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jge 0x12a6bde
movq 0x1c50(%rsp), %rax
movq %rax, 0x2720(%rsp)
movq 0x2720(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1b30(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x1b30(%rsp), %rsi
leaq 0x1b50(%rsp), %rdx
callq 0x12f6bf0
movaps %xmm0, 0x1b20(%rsp)
movq 0x1bb0(%rsp), %rax
movaps 0x1b20(%rsp), %xmm0
movq %rax, 0x29a8(%rsp)
movaps %xmm0, 0x2990(%rsp)
movaps 0x2990(%rsp), %xmm0
movq 0x29a8(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1c50(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1c50(%rsp)
movq 0x1bb0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1bb0(%rsp)
movl 0x1b4c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b4c(%rsp)
jmp 0x12a6b11
movq 0x1c00(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1c00(%rsp)
movl 0x1b60(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b60(%rsp)
jmp 0x12a6acf
jmp 0x12a6c0a
movl 0x1b64(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b64(%rsp)
jmp 0x12a6ab0
jmp 0x12a6c22
movl 0x1c58(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c58(%rsp)
jmp 0x12a5daa
movl $0x0, 0x1cc4(%rsp)
jmp 0x12b4d30
movq 0x1cb0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x12a76ff
movl $0x0, 0x1b1c(%rsp)
movl 0x1b1c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jge 0x12a76ef
movq 0x1cb8(%rsp), %rcx
movl 0x1b1c(%rsp), %eax
leaq 0x1ac8(%rsp), %rdx
movq %rdx, 0x1f98(%rsp)
movq %rcx, 0x1f90(%rsp)
movl %eax, 0x1f8c(%rsp)
movq 0x1f90(%rsp), %rax
movq %rax, 0x790(%rsp)
movb $0x0, 0x1f8b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1f8c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1ac8(%rsp), %r10
movq %r10, 0x2f48(%rsp)
movl %r9d, 0x2f44(%rsp)
movl %r8d, 0x2f40(%rsp)
movl %edi, 0x2f3c(%rsp)
movq %rsi, 0x2f30(%rsp)
movq %rdx, 0x2f28(%rsp)
movl %ecx, 0x2f24(%rsp)
movq %rax, 0x2f18(%rsp)
movq 0x2f48(%rsp), %rcx
movq %rcx, 0x788(%rsp)
movq 0x2f30(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2f28(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2f24(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2f18(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2f44(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f40(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f3c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x35d0(%rsp)
movl $0x10, 0x35cc(%rsp)
movq 0x35d0(%rsp), %rax
movslq 0x35cc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x35cc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x790(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1af0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12a6e35
movq 0x790(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1b08(%rsp)
movb $0x1, 0x1f8b(%rsp)
testb $0x1, 0x1f8b(%rsp)
jne 0x12a6f70
leaq 0x1ac8(%rsp), %rax
movq %rax, 0x2100(%rsp)
movq 0x2100(%rsp), %rax
movq %rax, 0x3c70(%rsp)
movq 0x3c70(%rsp), %rax
movq %rax, 0x780(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a6f13
movq 0x780(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c6c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c6c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c68(%rsp)
cmpl $0x1, 0x3c68(%rsp)
jne 0x12a6f13
movq 0x780(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a6ee4
movq 0x780(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a6ee2
jmp 0x12a6f11
movq 0x780(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ca8(%rsp)
cmpq $0x0, 0x3ca8(%rsp)
je 0x12a6f0f
movq 0x3ca8(%rsp), %rdi
callq 0x5f480
jmp 0x12a6f11
jmp 0x12a6f13
movq 0x780(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a6f6e
movq %rax, %rdi
callq 0x678a0
jmp 0x12a6f70
leaq 0x1ac8(%rsp), %rax
movq %rax, 0x20d8(%rsp)
movq 0x20d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x770(%rsp)
leaq 0x1ac8(%rsp), %rax
movq %rax, 0x21d8(%rsp)
movq 0x21d8(%rsp), %rax
movq %rax, 0x3ac0(%rsp)
movq 0x3ac0(%rsp), %rax
movq %rax, 0x778(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a705b
movq 0x778(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3abc(%rsp) # imm = 0xFFFFFFFF
movl 0x3abc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ab8(%rsp)
cmpl $0x1, 0x3ab8(%rsp)
jne 0x12a705b
movq 0x778(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a702c
movq 0x778(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a702a
jmp 0x12a7059
movq 0x778(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d80(%rsp)
cmpq $0x0, 0x3d80(%rsp)
je 0x12a7057
movq 0x3d80(%rsp), %rdi
callq 0x5f480
jmp 0x12a7059
jmp 0x12a705b
movq 0x778(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a70b6
movq %rax, %rdi
callq 0x678a0
movq 0x770(%rsp), %rax
movq %rax, 0x1b10(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x1b1c(%rsp), %eax
movq %rcx, 0x29c8(%rsp)
movl %eax, 0x29c4(%rsp)
movq 0x29c8(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x29c4(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x1ac0(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x1b1c(%rsp), %eax
leaq 0x1a70(%rsp), %rdx
movq %rdx, 0x2530(%rsp)
movq %rcx, 0x2528(%rsp)
movl %eax, 0x2524(%rsp)
movq 0x2528(%rsp), %rax
movq %rax, 0x768(%rsp)
movb $0x0, 0x2523(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2524(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1a70(%rsp), %r10
movq %r10, 0x2b20(%rsp)
movl %r9d, 0x2b1c(%rsp)
movl %r8d, 0x2b18(%rsp)
movl %edi, 0x2b14(%rsp)
movq %rsi, 0x2b08(%rsp)
movq %rdx, 0x2b00(%rsp)
movl %ecx, 0x2afc(%rsp)
movq %rax, 0x2af0(%rsp)
movq 0x2b20(%rsp), %rcx
movq %rcx, 0x760(%rsp)
movq 0x2b08(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2b00(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2afc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2af0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2b1c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2b18(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2b14(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3700(%rsp)
movl $0x10, 0x36fc(%rsp)
movq 0x3700(%rsp), %rax
movslq 0x36fc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x36fc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x768(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1a98(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12a72cb
movq 0x768(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1ab0(%rsp)
movb $0x1, 0x2523(%rsp)
testb $0x1, 0x2523(%rsp)
jne 0x12a7406
leaq 0x1a70(%rsp), %rax
movq %rax, 0x2538(%rsp)
movq 0x2538(%rsp), %rax
movq %rax, 0x3730(%rsp)
movq 0x3730(%rsp), %rax
movq %rax, 0x758(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a73a9
movq 0x758(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x372c(%rsp) # imm = 0xFFFFFFFF
movl 0x372c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3728(%rsp)
cmpl $0x1, 0x3728(%rsp)
jne 0x12a73a9
movq 0x758(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a737a
movq 0x758(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a7378
jmp 0x12a73a7
movq 0x758(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f48(%rsp)
cmpq $0x0, 0x3f48(%rsp)
je 0x12a73a5
movq 0x3f48(%rsp), %rdi
callq 0x5f480
jmp 0x12a73a7
jmp 0x12a73a9
movq 0x758(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a7404
movq %rax, %rdi
callq 0x678a0
jmp 0x12a7406
leaq 0x1a70(%rsp), %rax
movq %rax, 0x25f0(%rsp)
movq 0x25f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x748(%rsp)
leaq 0x1a70(%rsp), %rax
movq %rax, 0x21e0(%rsp)
movq 0x21e0(%rsp), %rax
movq %rax, 0x3ab0(%rsp)
movq 0x3ab0(%rsp), %rax
movq %rax, 0x750(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a74f1
movq 0x750(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3aac(%rsp) # imm = 0xFFFFFFFF
movl 0x3aac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3aa8(%rsp)
cmpl $0x1, 0x3aa8(%rsp)
jne 0x12a74f1
movq 0x750(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a74c2
movq 0x750(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a74c0
jmp 0x12a74ef
movq 0x750(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d88(%rsp)
cmpq $0x0, 0x3d88(%rsp)
je 0x12a74ed
movq 0x3d88(%rsp), %rdi
callq 0x5f480
jmp 0x12a74ef
jmp 0x12a74f1
movq 0x750(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a754c
movq %rax, %rdi
callq 0x678a0
movq 0x748(%rsp), %rax
movq %rax, 0x1ab8(%rsp)
movl $0x0, 0x1a6c(%rsp)
movl 0x1a6c(%rsp), %eax
cmpl 0x1c90(%rsp), %eax
jge 0x12a76d7
movq 0x1ac0(%rsp), %rax
movq %rax, 0x2718(%rsp)
movq 0x2718(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1a50(%rsp)
movl $0x0, 0x1a4c(%rsp)
movl 0x1a4c(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jge 0x12a76ad
movl $0x0, 0x1a48(%rsp)
movl 0x1a48(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jge 0x12a7695
movq 0x1b10(%rsp), %rax
movq %rax, 0x2710(%rsp)
movq 0x2710(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1a30(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x1a30(%rsp), %rsi
leaq 0x1a50(%rsp), %rdx
callq 0x12f6bf0
movaps %xmm0, 0x1a20(%rsp)
movq 0x1ab8(%rsp), %rax
movaps 0x1a20(%rsp), %xmm0
movq %rax, 0x2988(%rsp)
movaps %xmm0, 0x2970(%rsp)
movaps 0x2970(%rsp), %xmm0
movq 0x2988(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1b10(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1b10(%rsp)
movq 0x1ab8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1ab8(%rsp)
movl 0x1a48(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1a48(%rsp)
jmp 0x12a75c8
jmp 0x12a7697
movl 0x1a4c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1a4c(%rsp)
jmp 0x12a75a9
movq 0x1ac0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1ac0(%rsp)
movl 0x1a6c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1a6c(%rsp)
jmp 0x12a7567
jmp 0x12a76d9
movl 0x1b1c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b1c(%rsp)
jmp 0x12a6c65
movl $0x0, 0x1cc4(%rsp)
jmp 0x12b4d30
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x12a815d
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x12a775a
cmpl $0x1, 0x1c5c(%rsp)
jne 0x12a775a
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12ee0a0
movl %eax, 0x1cc4(%rsp)
jmp 0x12b4d30
movl $0x0, 0x1a1c(%rsp)
movl 0x1a1c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jge 0x12a814d
movq 0x1cb8(%rsp), %rcx
movl 0x1a1c(%rsp), %eax
leaq 0x19c8(%rsp), %rdx
movq %rdx, 0x1f80(%rsp)
movq %rcx, 0x1f78(%rsp)
movl %eax, 0x1f74(%rsp)
movq 0x1f78(%rsp), %rax
movq %rax, 0x740(%rsp)
movb $0x0, 0x1f73(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1f74(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x19c8(%rsp), %r10
movq %r10, 0x2f80(%rsp)
movl %r9d, 0x2f7c(%rsp)
movl %r8d, 0x2f78(%rsp)
movl %edi, 0x2f74(%rsp)
movq %rsi, 0x2f68(%rsp)
movq %rdx, 0x2f60(%rsp)
movl %ecx, 0x2f5c(%rsp)
movq %rax, 0x2f50(%rsp)
movq 0x2f80(%rsp), %rcx
movq %rcx, 0x738(%rsp)
movq 0x2f68(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2f60(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2f5c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2f50(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2f7c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f78(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f74(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x35c0(%rsp)
movl $0x10, 0x35bc(%rsp)
movq 0x35c0(%rsp), %rax
movslq 0x35bc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x35bc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x740(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x19f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12a7935
movq 0x740(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1a08(%rsp)
movb $0x1, 0x1f73(%rsp)
testb $0x1, 0x1f73(%rsp)
jne 0x12a7a70
leaq 0x19c8(%rsp), %rax
movq %rax, 0x2108(%rsp)
movq 0x2108(%rsp), %rax
movq %rax, 0x3c60(%rsp)
movq 0x3c60(%rsp), %rax
movq %rax, 0x730(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a7a13
movq 0x730(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c5c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c5c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c58(%rsp)
cmpl $0x1, 0x3c58(%rsp)
jne 0x12a7a13
movq 0x730(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a79e4
movq 0x730(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a79e2
jmp 0x12a7a11
movq 0x730(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cb0(%rsp)
cmpq $0x0, 0x3cb0(%rsp)
je 0x12a7a0f
movq 0x3cb0(%rsp), %rdi
callq 0x5f480
jmp 0x12a7a11
jmp 0x12a7a13
movq 0x730(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a7a6e
movq %rax, %rdi
callq 0x678a0
jmp 0x12a7a70
leaq 0x19c8(%rsp), %rax
movq %rax, 0x20d0(%rsp)
movq 0x20d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x720(%rsp)
leaq 0x19c8(%rsp), %rax
movq %rax, 0x21e8(%rsp)
movq 0x21e8(%rsp), %rax
movq %rax, 0x3aa0(%rsp)
movq 0x3aa0(%rsp), %rax
movq %rax, 0x728(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a7b5b
movq 0x728(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a9c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a9c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a98(%rsp)
cmpl $0x1, 0x3a98(%rsp)
jne 0x12a7b5b
movq 0x728(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a7b2c
movq 0x728(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a7b2a
jmp 0x12a7b59
movq 0x728(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d90(%rsp)
cmpq $0x0, 0x3d90(%rsp)
je 0x12a7b57
movq 0x3d90(%rsp), %rdi
callq 0x5f480
jmp 0x12a7b59
jmp 0x12a7b5b
movq 0x728(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a7bb6
movq %rax, %rdi
callq 0x678a0
movq 0x720(%rsp), %rax
movq %rax, 0x1a10(%rsp)
movq 0x1cb0(%rsp), %rax
movq %rax, 0x20c8(%rsp)
movq 0x20c8(%rsp), %rax
movq (%rax), %rax
movl 0x1a1c(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2708(%rsp)
movq 0x2708(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x19b0(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x1a1c(%rsp), %eax
leaq 0x1960(%rsp), %rdx
movq %rdx, 0x2510(%rsp)
movq %rcx, 0x2508(%rsp)
movl %eax, 0x2504(%rsp)
movq 0x2508(%rsp), %rax
movq %rax, 0x718(%rsp)
movb $0x0, 0x2503(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2504(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1960(%rsp), %r10
movq %r10, 0x2b58(%rsp)
movl %r9d, 0x2b54(%rsp)
movl %r8d, 0x2b50(%rsp)
movl %edi, 0x2b4c(%rsp)
movq %rsi, 0x2b40(%rsp)
movq %rdx, 0x2b38(%rsp)
movl %ecx, 0x2b34(%rsp)
movq %rax, 0x2b28(%rsp)
movq 0x2b58(%rsp), %rcx
movq %rcx, 0x710(%rsp)
movq 0x2b40(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2b38(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2b34(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2b28(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2b54(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2b50(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2b4c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x36f0(%rsp)
movl $0x10, 0x36ec(%rsp)
movq 0x36f0(%rsp), %rax
movslq 0x36ec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x36ec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x718(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1988(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12a7dcc
movq 0x718(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x19a0(%rsp)
movb $0x1, 0x2503(%rsp)
testb $0x1, 0x2503(%rsp)
jne 0x12a7f07
leaq 0x1960(%rsp), %rax
movq %rax, 0x2518(%rsp)
movq 0x2518(%rsp), %rax
movq %rax, 0x3740(%rsp)
movq 0x3740(%rsp), %rax
movq %rax, 0x708(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a7eaa
movq 0x708(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x373c(%rsp) # imm = 0xFFFFFFFF
movl 0x373c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3738(%rsp)
cmpl $0x1, 0x3738(%rsp)
jne 0x12a7eaa
movq 0x708(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a7e7b
movq 0x708(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a7e79
jmp 0x12a7ea8
movq 0x708(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f40(%rsp)
cmpq $0x0, 0x3f40(%rsp)
je 0x12a7ea6
movq 0x3f40(%rsp), %rdi
callq 0x5f480
jmp 0x12a7ea8
jmp 0x12a7eaa
movq 0x708(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a7f05
movq %rax, %rdi
callq 0x678a0
jmp 0x12a7f07
leaq 0x1960(%rsp), %rax
movq %rax, 0x25e8(%rsp)
movq 0x25e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6f8(%rsp)
leaq 0x1960(%rsp), %rax
movq %rax, 0x21f0(%rsp)
movq 0x21f0(%rsp), %rax
movq %rax, 0x3a90(%rsp)
movq 0x3a90(%rsp), %rax
movq %rax, 0x700(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a7ff2
movq 0x700(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a8c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a8c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a88(%rsp)
cmpl $0x1, 0x3a88(%rsp)
jne 0x12a7ff2
movq 0x700(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a7fc3
movq 0x700(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a7fc1
jmp 0x12a7ff0
movq 0x700(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d98(%rsp)
cmpq $0x0, 0x3d98(%rsp)
je 0x12a7fee
movq 0x3d98(%rsp), %rdi
callq 0x5f480
jmp 0x12a7ff0
jmp 0x12a7ff2
movq 0x700(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a804d
movq %rax, %rdi
callq 0x678a0
movq 0x6f8(%rsp), %rax
movq %rax, 0x19a8(%rsp)
movl $0x0, 0x195c(%rsp)
movl 0x195c(%rsp), %eax
cmpl 0x1c88(%rsp), %eax
jge 0x12a8135
movq 0x1a10(%rsp), %rax
movq %rax, 0x2700(%rsp)
movq 0x2700(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1940(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x1940(%rsp), %rsi
leaq 0x19b0(%rsp), %rdx
callq 0x12f6bf0
movaps %xmm0, 0x1930(%rsp)
movq 0x19a8(%rsp), %rax
movaps 0x1930(%rsp), %xmm0
movq %rax, 0x2968(%rsp)
movaps %xmm0, 0x2950(%rsp)
movaps 0x2950(%rsp), %xmm0
movq 0x2968(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1a10(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1a10(%rsp)
movq 0x19a8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x19a8(%rsp)
movl 0x195c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x195c(%rsp)
jmp 0x12a8068
jmp 0x12a8137
movl 0x1a1c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1a1c(%rsp)
jmp 0x12a7765
movl $0x0, 0x1cc4(%rsp)
jmp 0x12b4d30
jmp 0x12b4d25
movq 0x1cb8(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x12b194e
movq 0x1cb0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x12a90fc
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c70(%rsp), %ecx
movl 0x1c6c(%rsp), %r8d
movq 0x1c60(%rsp), %r9
movl 0x1c5c(%rsp), %r10d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d50(%rsp)
movq 0x1d50(%rsp), %rcx
movq %rcx, 0x6e8(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x6f7(%rsp)
je 0x12a8236
movq 0x6e8(%rsp), %rax
movq %rax, 0x2a28(%rsp)
movq 0x2a28(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x6f7(%rsp)
movb 0x6f7(%rsp), %al
testb $0x1, %al
jne 0x12a8243
jmp 0x12a8253
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12b4d30
movl $0x0, 0x192c(%rsp)
movl 0x192c(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12a90ec
movq 0x1cb8(%rsp), %rcx
movl 0x192c(%rsp), %eax
leaq 0x18d8(%rsp), %rdx
movq %rdx, 0x1f68(%rsp)
movq %rcx, 0x1f60(%rsp)
movl %eax, 0x1f5c(%rsp)
movq 0x1f60(%rsp), %rax
movq %rax, 0x6e0(%rsp)
movb $0x0, 0x1f5b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1f5c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x18d8(%rsp), %r10
movq %r10, 0x2fb8(%rsp)
movl %r9d, 0x2fb4(%rsp)
movl %r8d, 0x2fb0(%rsp)
movl %edi, 0x2fac(%rsp)
movq %rsi, 0x2fa0(%rsp)
movq %rdx, 0x2f98(%rsp)
movl %ecx, 0x2f94(%rsp)
movq %rax, 0x2f88(%rsp)
movq 0x2fb8(%rsp), %rcx
movq %rcx, 0x6d8(%rsp)
movq 0x2fa0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2f98(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2f94(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2f88(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2fb4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2fb0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2fac(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x35b0(%rsp)
movl $0x10, 0x35ac(%rsp)
movq 0x35b0(%rsp), %rax
movslq 0x35ac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x35ac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6e0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1900(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12a842e
movq 0x6e0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1918(%rsp)
movb $0x1, 0x1f5b(%rsp)
testb $0x1, 0x1f5b(%rsp)
jne 0x12a8569
leaq 0x18d8(%rsp), %rax
movq %rax, 0x2110(%rsp)
movq 0x2110(%rsp), %rax
movq %rax, 0x3c50(%rsp)
movq 0x3c50(%rsp), %rax
movq %rax, 0x6d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a850c
movq 0x6d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c4c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c4c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c48(%rsp)
cmpl $0x1, 0x3c48(%rsp)
jne 0x12a850c
movq 0x6d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a84dd
movq 0x6d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a84db
jmp 0x12a850a
movq 0x6d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cb8(%rsp)
cmpq $0x0, 0x3cb8(%rsp)
je 0x12a8508
movq 0x3cb8(%rsp), %rdi
callq 0x5f480
jmp 0x12a850a
jmp 0x12a850c
movq 0x6d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a8567
movq %rax, %rdi
callq 0x678a0
jmp 0x12a8569
leaq 0x18d8(%rsp), %rax
movq %rax, 0x20c0(%rsp)
movq 0x20c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6c0(%rsp)
leaq 0x18d8(%rsp), %rax
movq %rax, 0x21f8(%rsp)
movq 0x21f8(%rsp), %rax
movq %rax, 0x3a80(%rsp)
movq 0x3a80(%rsp), %rax
movq %rax, 0x6c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a8654
movq 0x6c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a7c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a7c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a78(%rsp)
cmpl $0x1, 0x3a78(%rsp)
jne 0x12a8654
movq 0x6c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a8625
movq 0x6c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a8623
jmp 0x12a8652
movq 0x6c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3da0(%rsp)
cmpq $0x0, 0x3da0(%rsp)
je 0x12a8650
movq 0x3da0(%rsp), %rdi
callq 0x5f480
jmp 0x12a8652
jmp 0x12a8654
movq 0x6c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a86af
movq %rax, %rdi
callq 0x678a0
movq 0x6c0(%rsp), %rax
movq %rax, 0x1920(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x192c(%rsp), %eax
leaq 0x1888(%rsp), %rdx
movq %rdx, 0x1f50(%rsp)
movq %rcx, 0x1f48(%rsp)
movl %eax, 0x1f44(%rsp)
movq 0x1f48(%rsp), %rax
movq %rax, 0x6b8(%rsp)
movb $0x0, 0x1f43(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1f44(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1888(%rsp), %r10
movq %r10, 0x2ff0(%rsp)
movl %r9d, 0x2fec(%rsp)
movl %r8d, 0x2fe8(%rsp)
movl %edi, 0x2fe4(%rsp)
movq %rsi, 0x2fd8(%rsp)
movq %rdx, 0x2fd0(%rsp)
movl %ecx, 0x2fcc(%rsp)
movq %rax, 0x2fc0(%rsp)
movq 0x2ff0(%rsp), %rcx
movq %rcx, 0x6b0(%rsp)
movq 0x2fd8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2fd0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2fcc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2fc0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2fec(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2fe8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2fe4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x35a0(%rsp)
movl $0x10, 0x359c(%rsp)
movq 0x35a0(%rsp), %rax
movslq 0x359c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x359c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6b8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x18b0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12a887b
movq 0x6b8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x18c8(%rsp)
movb $0x1, 0x1f43(%rsp)
testb $0x1, 0x1f43(%rsp)
jne 0x12a89b6
leaq 0x1888(%rsp), %rax
movq %rax, 0x2118(%rsp)
movq 0x2118(%rsp), %rax
movq %rax, 0x3c40(%rsp)
movq 0x3c40(%rsp), %rax
movq %rax, 0x6a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a8959
movq 0x6a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c3c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c3c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c38(%rsp)
cmpl $0x1, 0x3c38(%rsp)
jne 0x12a8959
movq 0x6a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a892a
movq 0x6a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a8928
jmp 0x12a8957
movq 0x6a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cc0(%rsp)
cmpq $0x0, 0x3cc0(%rsp)
je 0x12a8955
movq 0x3cc0(%rsp), %rdi
callq 0x5f480
jmp 0x12a8957
jmp 0x12a8959
movq 0x6a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a89b4
movq %rax, %rdi
callq 0x678a0
jmp 0x12a89b6
leaq 0x1888(%rsp), %rax
movq %rax, 0x20b8(%rsp)
movq 0x20b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x698(%rsp)
leaq 0x1888(%rsp), %rax
movq %rax, 0x2200(%rsp)
movq 0x2200(%rsp), %rax
movq %rax, 0x3a70(%rsp)
movq 0x3a70(%rsp), %rax
movq %rax, 0x6a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a8aa1
movq 0x6a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a6c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a6c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a68(%rsp)
cmpl $0x1, 0x3a68(%rsp)
jne 0x12a8aa1
movq 0x6a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a8a72
movq 0x6a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a8a70
jmp 0x12a8a9f
movq 0x6a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3da8(%rsp)
cmpq $0x0, 0x3da8(%rsp)
je 0x12a8a9d
movq 0x3da8(%rsp), %rdi
callq 0x5f480
jmp 0x12a8a9f
jmp 0x12a8aa1
movq 0x6a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a8afc
movq %rax, %rdi
callq 0x678a0
movq 0x698(%rsp), %rax
movq %rax, 0x18d0(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x192c(%rsp), %eax
leaq 0x1838(%rsp), %rdx
movq %rdx, 0x24f0(%rsp)
movq %rcx, 0x24e8(%rsp)
movl %eax, 0x24e4(%rsp)
movq 0x24e8(%rsp), %rax
movq %rax, 0x690(%rsp)
movb $0x0, 0x24e3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x24e4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1838(%rsp), %r10
movq %r10, 0x2b90(%rsp)
movl %r9d, 0x2b8c(%rsp)
movl %r8d, 0x2b88(%rsp)
movl %edi, 0x2b84(%rsp)
movq %rsi, 0x2b78(%rsp)
movq %rdx, 0x2b70(%rsp)
movl %ecx, 0x2b6c(%rsp)
movq %rax, 0x2b60(%rsp)
movq 0x2b90(%rsp), %rcx
movq %rcx, 0x688(%rsp)
movq 0x2b78(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2b70(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2b6c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2b60(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2b8c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2b88(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2b84(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x36e0(%rsp)
movl $0x10, 0x36dc(%rsp)
movq 0x36e0(%rsp), %rax
movslq 0x36dc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x36dc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x690(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1860(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12a8cc8
movq 0x690(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1878(%rsp)
movb $0x1, 0x24e3(%rsp)
testb $0x1, 0x24e3(%rsp)
jne 0x12a8e03
leaq 0x1838(%rsp), %rax
movq %rax, 0x24f8(%rsp)
movq 0x24f8(%rsp), %rax
movq %rax, 0x3750(%rsp)
movq 0x3750(%rsp), %rax
movq %rax, 0x680(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a8da6
movq 0x680(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x374c(%rsp) # imm = 0xFFFFFFFF
movl 0x374c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3748(%rsp)
cmpl $0x1, 0x3748(%rsp)
jne 0x12a8da6
movq 0x680(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a8d77
movq 0x680(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a8d75
jmp 0x12a8da4
movq 0x680(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f38(%rsp)
cmpq $0x0, 0x3f38(%rsp)
je 0x12a8da2
movq 0x3f38(%rsp), %rdi
callq 0x5f480
jmp 0x12a8da4
jmp 0x12a8da6
movq 0x680(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a8e01
movq %rax, %rdi
callq 0x678a0
jmp 0x12a8e03
leaq 0x1838(%rsp), %rax
movq %rax, 0x25e0(%rsp)
movq 0x25e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x670(%rsp)
leaq 0x1838(%rsp), %rax
movq %rax, 0x2208(%rsp)
movq 0x2208(%rsp), %rax
movq %rax, 0x3a60(%rsp)
movq 0x3a60(%rsp), %rax
movq %rax, 0x678(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a8eee
movq 0x678(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a5c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a5c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a58(%rsp)
cmpl $0x1, 0x3a58(%rsp)
jne 0x12a8eee
movq 0x678(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a8ebf
movq 0x678(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a8ebd
jmp 0x12a8eec
movq 0x678(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3db0(%rsp)
cmpq $0x0, 0x3db0(%rsp)
je 0x12a8eea
movq 0x3db0(%rsp), %rdi
callq 0x5f480
jmp 0x12a8eec
jmp 0x12a8eee
movq 0x678(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a8f49
movq %rax, %rdi
callq 0x678a0
movq 0x670(%rsp), %rax
movq %rax, 0x1880(%rsp)
movl $0x0, 0x1834(%rsp)
movl 0x1834(%rsp), %eax
cmpl 0x1c70(%rsp), %eax
jge 0x12a90d4
movl $0x0, 0x1830(%rsp)
movl 0x1830(%rsp), %eax
cmpl 0x1c74(%rsp), %eax
jge 0x12a90bc
movq 0x1920(%rsp), %rax
movq %rax, 0x26f8(%rsp)
movq 0x26f8(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1820(%rsp)
movl $0x0, 0x181c(%rsp)
movl 0x181c(%rsp), %eax
cmpl 0x1c78(%rsp), %eax
jge 0x12a9092
movq 0x18d0(%rsp), %rax
movq %rax, 0x26f0(%rsp)
movq 0x26f0(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1800(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x1820(%rsp), %rsi
leaq 0x1800(%rsp), %rdx
callq 0x12f6bf0
movaps %xmm0, 0x17f0(%rsp)
movq 0x1880(%rsp), %rax
movaps 0x17f0(%rsp), %xmm0
movq %rax, 0x2948(%rsp)
movaps %xmm0, 0x2930(%rsp)
movaps 0x2930(%rsp), %xmm0
movq 0x2948(%rsp), %rax
movups %xmm0, (%rax)
movq 0x18d0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x18d0(%rsp)
movq 0x1880(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1880(%rsp)
movl 0x181c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x181c(%rsp)
jmp 0x12a8fc5
movq 0x1920(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1920(%rsp)
movl 0x1830(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1830(%rsp)
jmp 0x12a8f83
jmp 0x12a90be
movl 0x1834(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1834(%rsp)
jmp 0x12a8f64
jmp 0x12a90d6
movl 0x192c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x192c(%rsp)
jmp 0x12a825e
movl $0x0, 0x1cc4(%rsp)
jmp 0x12b4d30
movq 0x1cb0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x12b03ab
cmpl $0x1, 0x1c78(%rsp)
jne 0x12aa027
cmpl $0x1, 0x1c74(%rsp)
jne 0x12aa027
movl 0x1c6c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jne 0x12aa027
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movl 0x1c8c(%rsp), %ecx
movq 0x1c80(%rsp), %r8
movl 0x1c7c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d48(%rsp)
movq 0x1d48(%rsp), %rcx
movq %rcx, 0x660(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x66f(%rsp)
je 0x12a91e1
movq 0x660(%rsp), %rax
movq %rax, 0x2a30(%rsp)
movq 0x2a30(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x66f(%rsp)
movb 0x66f(%rsp), %al
testb $0x1, %al
jne 0x12a91ee
jmp 0x12a91fe
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12b4d30
movl $0x0, 0x17ec(%rsp)
movl 0x17ec(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jge 0x12aa017
movq 0x1cb8(%rsp), %rcx
movl 0x17ec(%rsp), %eax
leaq 0x1798(%rsp), %rdx
movq %rdx, 0x1f38(%rsp)
movq %rcx, 0x1f30(%rsp)
movl %eax, 0x1f2c(%rsp)
movq 0x1f30(%rsp), %rax
movq %rax, 0x658(%rsp)
movb $0x0, 0x1f2b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1f2c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1798(%rsp), %r10
movq %r10, 0x3028(%rsp)
movl %r9d, 0x3024(%rsp)
movl %r8d, 0x3020(%rsp)
movl %edi, 0x301c(%rsp)
movq %rsi, 0x3010(%rsp)
movq %rdx, 0x3008(%rsp)
movl %ecx, 0x3004(%rsp)
movq %rax, 0x2ff8(%rsp)
movq 0x3028(%rsp), %rcx
movq %rcx, 0x650(%rsp)
movq 0x3010(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3008(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3004(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ff8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3024(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3020(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x301c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3590(%rsp)
movl $0x10, 0x358c(%rsp)
movq 0x3590(%rsp), %rax
movslq 0x358c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x358c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x658(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x17c0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12a93d9
movq 0x658(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x17d8(%rsp)
movb $0x1, 0x1f2b(%rsp)
testb $0x1, 0x1f2b(%rsp)
jne 0x12a9514
leaq 0x1798(%rsp), %rax
movq %rax, 0x2120(%rsp)
movq 0x2120(%rsp), %rax
movq %rax, 0x3c30(%rsp)
movq 0x3c30(%rsp), %rax
movq %rax, 0x648(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a94b7
movq 0x648(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c2c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c2c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c28(%rsp)
cmpl $0x1, 0x3c28(%rsp)
jne 0x12a94b7
movq 0x648(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a9488
movq 0x648(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a9486
jmp 0x12a94b5
movq 0x648(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cc8(%rsp)
cmpq $0x0, 0x3cc8(%rsp)
je 0x12a94b3
movq 0x3cc8(%rsp), %rdi
callq 0x5f480
jmp 0x12a94b5
jmp 0x12a94b7
movq 0x648(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a9512
movq %rax, %rdi
callq 0x678a0
jmp 0x12a9514
leaq 0x1798(%rsp), %rax
movq %rax, 0x20b0(%rsp)
movq 0x20b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x638(%rsp)
leaq 0x1798(%rsp), %rax
movq %rax, 0x2210(%rsp)
movq 0x2210(%rsp), %rax
movq %rax, 0x3a50(%rsp)
movq 0x3a50(%rsp), %rax
movq %rax, 0x640(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a95ff
movq 0x640(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a4c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a4c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a48(%rsp)
cmpl $0x1, 0x3a48(%rsp)
jne 0x12a95ff
movq 0x640(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a95d0
movq 0x640(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a95ce
jmp 0x12a95fd
movq 0x640(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3db8(%rsp)
cmpq $0x0, 0x3db8(%rsp)
je 0x12a95fb
movq 0x3db8(%rsp), %rdi
callq 0x5f480
jmp 0x12a95fd
jmp 0x12a95ff
movq 0x640(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a965a
movq %rax, %rdi
callq 0x678a0
movq 0x638(%rsp), %rax
movq %rax, 0x17e0(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x17ec(%rsp), %eax
leaq 0x1748(%rsp), %rdx
movq %rdx, 0x24d0(%rsp)
movq %rcx, 0x24c8(%rsp)
movl %eax, 0x24c4(%rsp)
movq 0x24c8(%rsp), %rax
movq %rax, 0x630(%rsp)
movb $0x0, 0x24c3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x24c4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1748(%rsp), %r10
movq %r10, 0x2bc8(%rsp)
movl %r9d, 0x2bc4(%rsp)
movl %r8d, 0x2bc0(%rsp)
movl %edi, 0x2bbc(%rsp)
movq %rsi, 0x2bb0(%rsp)
movq %rdx, 0x2ba8(%rsp)
movl %ecx, 0x2ba4(%rsp)
movq %rax, 0x2b98(%rsp)
movq 0x2bc8(%rsp), %rcx
movq %rcx, 0x628(%rsp)
movq 0x2bb0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2ba8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2ba4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2b98(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2bc4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2bc0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2bbc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x36d0(%rsp)
movl $0x10, 0x36cc(%rsp)
movq 0x36d0(%rsp), %rax
movslq 0x36cc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x36cc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x630(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1770(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12a9826
movq 0x630(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1788(%rsp)
movb $0x1, 0x24c3(%rsp)
testb $0x1, 0x24c3(%rsp)
jne 0x12a9961
leaq 0x1748(%rsp), %rax
movq %rax, 0x24d8(%rsp)
movq 0x24d8(%rsp), %rax
movq %rax, 0x3760(%rsp)
movq 0x3760(%rsp), %rax
movq %rax, 0x620(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a9904
movq 0x620(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x375c(%rsp) # imm = 0xFFFFFFFF
movl 0x375c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3758(%rsp)
cmpl $0x1, 0x3758(%rsp)
jne 0x12a9904
movq 0x620(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a98d5
movq 0x620(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a98d3
jmp 0x12a9902
movq 0x620(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f30(%rsp)
cmpq $0x0, 0x3f30(%rsp)
je 0x12a9900
movq 0x3f30(%rsp), %rdi
callq 0x5f480
jmp 0x12a9902
jmp 0x12a9904
movq 0x620(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a995f
movq %rax, %rdi
callq 0x678a0
jmp 0x12a9961
leaq 0x1748(%rsp), %rax
movq %rax, 0x25d8(%rsp)
movq 0x25d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x610(%rsp)
leaq 0x1748(%rsp), %rax
movq %rax, 0x2218(%rsp)
movq 0x2218(%rsp), %rax
movq %rax, 0x3a40(%rsp)
movq 0x3a40(%rsp), %rax
movq %rax, 0x618(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a9a4c
movq 0x618(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a3c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a3c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a38(%rsp)
cmpl $0x1, 0x3a38(%rsp)
jne 0x12a9a4c
movq 0x618(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a9a1d
movq 0x618(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a9a1b
jmp 0x12a9a4a
movq 0x618(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3dc0(%rsp)
cmpq $0x0, 0x3dc0(%rsp)
je 0x12a9a48
movq 0x3dc0(%rsp), %rdi
callq 0x5f480
jmp 0x12a9a4a
jmp 0x12a9a4c
movq 0x618(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a9aa7
movq %rax, %rdi
callq 0x678a0
movq 0x610(%rsp), %rax
movq %rax, 0x1790(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x17ec(%rsp), %eax
leaq 0x16f8(%rsp), %rdx
movq %rdx, 0x1f20(%rsp)
movq %rcx, 0x1f18(%rsp)
movl %eax, 0x1f14(%rsp)
movq 0x1f18(%rsp), %rax
movq %rax, 0x608(%rsp)
movb $0x0, 0x1f13(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1f14(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x16f8(%rsp), %r10
movq %r10, 0x3060(%rsp)
movl %r9d, 0x305c(%rsp)
movl %r8d, 0x3058(%rsp)
movl %edi, 0x3054(%rsp)
movq %rsi, 0x3048(%rsp)
movq %rdx, 0x3040(%rsp)
movl %ecx, 0x303c(%rsp)
movq %rax, 0x3030(%rsp)
movq 0x3060(%rsp), %rcx
movq %rcx, 0x600(%rsp)
movq 0x3048(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3040(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x303c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3030(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x305c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3058(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3054(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3580(%rsp)
movl $0x10, 0x357c(%rsp)
movq 0x3580(%rsp), %rax
movslq 0x357c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x357c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x608(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1720(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12a9c73
movq 0x608(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1738(%rsp)
movb $0x1, 0x1f13(%rsp)
testb $0x1, 0x1f13(%rsp)
jne 0x12a9dae
leaq 0x16f8(%rsp), %rax
movq %rax, 0x2128(%rsp)
movq 0x2128(%rsp), %rax
movq %rax, 0x3c20(%rsp)
movq 0x3c20(%rsp), %rax
movq %rax, 0x5f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a9d51
movq 0x5f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c1c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c1c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c18(%rsp)
cmpl $0x1, 0x3c18(%rsp)
jne 0x12a9d51
movq 0x5f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a9d22
movq 0x5f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a9d20
jmp 0x12a9d4f
movq 0x5f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cd0(%rsp)
cmpq $0x0, 0x3cd0(%rsp)
je 0x12a9d4d
movq 0x3cd0(%rsp), %rdi
callq 0x5f480
jmp 0x12a9d4f
jmp 0x12a9d51
movq 0x5f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a9dac
movq %rax, %rdi
callq 0x678a0
jmp 0x12a9dae
leaq 0x16f8(%rsp), %rax
movq %rax, 0x20a8(%rsp)
movq 0x20a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5e8(%rsp)
leaq 0x16f8(%rsp), %rax
movq %rax, 0x2220(%rsp)
movq 0x2220(%rsp), %rax
movq %rax, 0x3a30(%rsp)
movq 0x3a30(%rsp), %rax
movq %rax, 0x5f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12a9e99
movq 0x5f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a2c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a2c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a28(%rsp)
cmpl $0x1, 0x3a28(%rsp)
jne 0x12a9e99
movq 0x5f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12a9e6a
movq 0x5f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12a9e68
jmp 0x12a9e97
movq 0x5f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3dc8(%rsp)
cmpq $0x0, 0x3dc8(%rsp)
je 0x12a9e95
movq 0x3dc8(%rsp), %rdi
callq 0x5f480
jmp 0x12a9e97
jmp 0x12a9e99
movq 0x5f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12a9ef4
movq %rax, %rdi
callq 0x678a0
movq 0x5e8(%rsp), %rax
movq %rax, 0x1740(%rsp)
movq 0x1740(%rsp), %rax
movq %rax, 0x26e8(%rsp)
movq 0x26e8(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x16e0(%rsp)
movl $0x0, 0x16dc(%rsp)
movl 0x16dc(%rsp), %eax
cmpl 0x1c88(%rsp), %eax
jge 0x12a9fff
movq 0x17e0(%rsp), %rax
movq %rax, 0x26e0(%rsp)
movq 0x26e0(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x16c0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x16c0(%rsp), %rsi
leaq 0x16e0(%rsp), %rdx
callq 0x12f6bf0
movaps %xmm0, 0x16b0(%rsp)
movq 0x1790(%rsp), %rax
movaps 0x16b0(%rsp), %xmm0
movq %rax, 0x2928(%rsp)
movaps %xmm0, 0x2910(%rsp)
movaps 0x2910(%rsp), %xmm0
movq 0x2928(%rsp), %rax
movups %xmm0, (%rax)
movq 0x17e0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x17e0(%rsp)
movq 0x1790(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1790(%rsp)
movl 0x16dc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x16dc(%rsp)
jmp 0x12a9f32
jmp 0x12aa001
movl 0x17ec(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x17ec(%rsp)
jmp 0x12a9209
movl $0x0, 0x1cc4(%rsp)
jmp 0x12b4d30
movl 0x1c78(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jne 0x12aab54
movl 0x1c74(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jne 0x12aab54
cmpl $0x1, 0x1c6c(%rsp)
jne 0x12aab54
cmpl $0x1, 0x1c5c(%rsp)
jne 0x12aab54
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movl 0x1c8c(%rsp), %ecx
movq 0x1c80(%rsp), %r8
movl 0x1c7c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d40(%rsp)
movq 0x1d40(%rsp), %rcx
movq %rcx, 0x5d8(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x5e7(%rsp)
je 0x12aa10e
movq 0x5d8(%rsp), %rax
movq %rax, 0x2a38(%rsp)
movq 0x2a38(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x5e7(%rsp)
movb 0x5e7(%rsp), %al
testb $0x1, %al
jne 0x12aa11b
jmp 0x12aa12b
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12b4d30
movl $0x0, 0x16ac(%rsp)
movl 0x16ac(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jge 0x12aab44
movq 0x1cb8(%rsp), %rcx
movl 0x16ac(%rsp), %eax
leaq 0x1658(%rsp), %rdx
movq %rdx, 0x1f08(%rsp)
movq %rcx, 0x1f00(%rsp)
movl %eax, 0x1efc(%rsp)
movq 0x1f00(%rsp), %rax
movq %rax, 0x5d0(%rsp)
movb $0x0, 0x1efb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1efc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1658(%rsp), %r10
movq %r10, 0x3098(%rsp)
movl %r9d, 0x3094(%rsp)
movl %r8d, 0x3090(%rsp)
movl %edi, 0x308c(%rsp)
movq %rsi, 0x3080(%rsp)
movq %rdx, 0x3078(%rsp)
movl %ecx, 0x3074(%rsp)
movq %rax, 0x3068(%rsp)
movq 0x3098(%rsp), %rcx
movq %rcx, 0x5c8(%rsp)
movq 0x3080(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3078(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3074(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3068(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3094(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3090(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x308c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3570(%rsp)
movl $0x10, 0x356c(%rsp)
movq 0x3570(%rsp), %rax
movslq 0x356c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x356c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5d0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1680(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12aa306
movq 0x5d0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1698(%rsp)
movb $0x1, 0x1efb(%rsp)
testb $0x1, 0x1efb(%rsp)
jne 0x12aa441
leaq 0x1658(%rsp), %rax
movq %rax, 0x2130(%rsp)
movq 0x2130(%rsp), %rax
movq %rax, 0x3c10(%rsp)
movq 0x3c10(%rsp), %rax
movq %rax, 0x5c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12aa3e4
movq 0x5c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c0c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c0c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c08(%rsp)
cmpl $0x1, 0x3c08(%rsp)
jne 0x12aa3e4
movq 0x5c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12aa3b5
movq 0x5c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12aa3b3
jmp 0x12aa3e2
movq 0x5c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cd8(%rsp)
cmpq $0x0, 0x3cd8(%rsp)
je 0x12aa3e0
movq 0x3cd8(%rsp), %rdi
callq 0x5f480
jmp 0x12aa3e2
jmp 0x12aa3e4
movq 0x5c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12aa43f
movq %rax, %rdi
callq 0x678a0
jmp 0x12aa441
leaq 0x1658(%rsp), %rax
movq %rax, 0x20a0(%rsp)
movq 0x20a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5b0(%rsp)
leaq 0x1658(%rsp), %rax
movq %rax, 0x2228(%rsp)
movq 0x2228(%rsp), %rax
movq %rax, 0x3a20(%rsp)
movq 0x3a20(%rsp), %rax
movq %rax, 0x5b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12aa52c
movq 0x5b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a1c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a1c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a18(%rsp)
cmpl $0x1, 0x3a18(%rsp)
jne 0x12aa52c
movq 0x5b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12aa4fd
movq 0x5b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12aa4fb
jmp 0x12aa52a
movq 0x5b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3dd0(%rsp)
cmpq $0x0, 0x3dd0(%rsp)
je 0x12aa528
movq 0x3dd0(%rsp), %rdi
callq 0x5f480
jmp 0x12aa52a
jmp 0x12aa52c
movq 0x5b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12aa587
movq %rax, %rdi
callq 0x678a0
movq 0x5b0(%rsp), %rax
movq %rax, 0x16a0(%rsp)
movq 0x1cb0(%rsp), %rax
movq %rax, 0x2098(%rsp)
movq 0x2098(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1650(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x16ac(%rsp), %eax
leaq 0x1600(%rsp), %rdx
movq %rdx, 0x24b0(%rsp)
movq %rcx, 0x24a8(%rsp)
movl %eax, 0x24a4(%rsp)
movq 0x24a8(%rsp), %rax
movq %rax, 0x5a8(%rsp)
movb $0x0, 0x24a3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x24a4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1600(%rsp), %r10
movq %r10, 0x2c00(%rsp)
movl %r9d, 0x2bfc(%rsp)
movl %r8d, 0x2bf8(%rsp)
movl %edi, 0x2bf4(%rsp)
movq %rsi, 0x2be8(%rsp)
movq %rdx, 0x2be0(%rsp)
movl %ecx, 0x2bdc(%rsp)
movq %rax, 0x2bd0(%rsp)
movq 0x2c00(%rsp), %rcx
movq %rcx, 0x5a0(%rsp)
movq 0x2be8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2be0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2bdc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2bd0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2bfc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2bf8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2bf4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x36c0(%rsp)
movl $0x10, 0x36bc(%rsp)
movq 0x36c0(%rsp), %rax
movslq 0x36bc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x36bc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5a8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1628(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12aa776
movq 0x5a8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1640(%rsp)
movb $0x1, 0x24a3(%rsp)
testb $0x1, 0x24a3(%rsp)
jne 0x12aa8b1
leaq 0x1600(%rsp), %rax
movq %rax, 0x24b8(%rsp)
movq 0x24b8(%rsp), %rax
movq %rax, 0x3770(%rsp)
movq 0x3770(%rsp), %rax
movq %rax, 0x598(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12aa854
movq 0x598(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x376c(%rsp) # imm = 0xFFFFFFFF
movl 0x376c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3768(%rsp)
cmpl $0x1, 0x3768(%rsp)
jne 0x12aa854
movq 0x598(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12aa825
movq 0x598(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12aa823
jmp 0x12aa852
movq 0x598(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f28(%rsp)
cmpq $0x0, 0x3f28(%rsp)
je 0x12aa850
movq 0x3f28(%rsp), %rdi
callq 0x5f480
jmp 0x12aa852
jmp 0x12aa854
movq 0x598(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12aa8af
movq %rax, %rdi
callq 0x678a0
jmp 0x12aa8b1
leaq 0x1600(%rsp), %rax
movq %rax, 0x25d0(%rsp)
movq 0x25d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x588(%rsp)
leaq 0x1600(%rsp), %rax
movq %rax, 0x2230(%rsp)
movq 0x2230(%rsp), %rax
movq %rax, 0x3a10(%rsp)
movq 0x3a10(%rsp), %rax
movq %rax, 0x590(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12aa99c
movq 0x590(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a0c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a0c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a08(%rsp)
cmpl $0x1, 0x3a08(%rsp)
jne 0x12aa99c
movq 0x590(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12aa96d
movq 0x590(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12aa96b
jmp 0x12aa99a
movq 0x590(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3dd8(%rsp)
cmpq $0x0, 0x3dd8(%rsp)
je 0x12aa998
movq 0x3dd8(%rsp), %rdi
callq 0x5f480
jmp 0x12aa99a
jmp 0x12aa99c
movq 0x590(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12aa9f7
movq %rax, %rdi
callq 0x678a0
movq 0x588(%rsp), %rax
movq %rax, 0x1648(%rsp)
movl $0x0, 0x15fc(%rsp)
movl 0x15fc(%rsp), %eax
cmpl 0x1c88(%rsp), %eax
jge 0x12aab2c
movq 0x16a0(%rsp), %rax
movq %rax, 0x26d8(%rsp)
movq 0x26d8(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x15e0(%rsp)
movq 0x1650(%rsp), %rax
movss (%rax), %xmm0
movss %xmm0, 0x2a00(%rsp)
movaps 0x2a00(%rsp), %xmm0
shufps $0x0, %xmm0, %xmm0 # xmm0 = xmm0[0,0,0,0]
movaps %xmm0, 0x29f0(%rsp)
movaps 0x29f0(%rsp), %xmm0
movaps %xmm0, 0x15d0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x15e0(%rsp), %rsi
leaq 0x15d0(%rsp), %rdx
callq 0x12f6bf0
movaps %xmm0, 0x15c0(%rsp)
movq 0x1648(%rsp), %rax
movaps 0x15c0(%rsp), %xmm0
movq %rax, 0x2908(%rsp)
movaps %xmm0, 0x28f0(%rsp)
movaps 0x28f0(%rsp), %xmm0
movq 0x2908(%rsp), %rax
movups %xmm0, (%rax)
movq 0x16a0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x16a0(%rsp)
movq 0x1650(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x1650(%rsp)
movq 0x1648(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1648(%rsp)
movl 0x15fc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x15fc(%rsp)
jmp 0x12aaa12
jmp 0x12aab2e
movl 0x16ac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x16ac(%rsp)
jmp 0x12aa136
movl $0x0, 0x1cc4(%rsp)
jmp 0x12b4d30
cmpl $0x1, 0x1c98(%rsp)
jne 0x12aba6d
cmpl $0x1, 0x1c94(%rsp)
jne 0x12aba6d
movl 0x1c6c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jne 0x12aba6d
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c6c(%rsp), %ecx
movq 0x1c60(%rsp), %r8
movl 0x1c5c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d38(%rsp)
movq 0x1d38(%rsp), %rcx
movq %rcx, 0x578(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x587(%rsp)
je 0x12aac27
movq 0x578(%rsp), %rax
movq %rax, 0x2a40(%rsp)
movq 0x2a40(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x587(%rsp)
movb 0x587(%rsp), %al
testb $0x1, %al
jne 0x12aac34
jmp 0x12aac44
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12b4d30
movl $0x0, 0x15bc(%rsp)
movl 0x15bc(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12aba5d
movq 0x1cb8(%rsp), %rcx
movl 0x15bc(%rsp), %eax
leaq 0x1568(%rsp), %rdx
movq %rdx, 0x1ef0(%rsp)
movq %rcx, 0x1ee8(%rsp)
movl %eax, 0x1ee4(%rsp)
movq 0x1ee8(%rsp), %rax
movq %rax, 0x570(%rsp)
movb $0x0, 0x1ee3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1ee4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1568(%rsp), %r10
movq %r10, 0x30d0(%rsp)
movl %r9d, 0x30cc(%rsp)
movl %r8d, 0x30c8(%rsp)
movl %edi, 0x30c4(%rsp)
movq %rsi, 0x30b8(%rsp)
movq %rdx, 0x30b0(%rsp)
movl %ecx, 0x30ac(%rsp)
movq %rax, 0x30a0(%rsp)
movq 0x30d0(%rsp), %rcx
movq %rcx, 0x568(%rsp)
movq 0x30b8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x30b0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x30ac(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x30a0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x30cc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x30c8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x30c4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3560(%rsp)
movl $0x10, 0x355c(%rsp)
movq 0x3560(%rsp), %rax
movslq 0x355c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x355c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x570(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1590(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12aae1f
movq 0x570(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x15a8(%rsp)
movb $0x1, 0x1ee3(%rsp)
testb $0x1, 0x1ee3(%rsp)
jne 0x12aaf5a
leaq 0x1568(%rsp), %rax
movq %rax, 0x2138(%rsp)
movq 0x2138(%rsp), %rax
movq %rax, 0x3c00(%rsp)
movq 0x3c00(%rsp), %rax
movq %rax, 0x560(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12aaefd
movq 0x560(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bfc(%rsp) # imm = 0xFFFFFFFF
movl 0x3bfc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3bf8(%rsp)
cmpl $0x1, 0x3bf8(%rsp)
jne 0x12aaefd
movq 0x560(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12aaece
movq 0x560(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12aaecc
jmp 0x12aaefb
movq 0x560(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ce0(%rsp)
cmpq $0x0, 0x3ce0(%rsp)
je 0x12aaef9
movq 0x3ce0(%rsp), %rdi
callq 0x5f480
jmp 0x12aaefb
jmp 0x12aaefd
movq 0x560(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12aaf58
movq %rax, %rdi
callq 0x678a0
jmp 0x12aaf5a
leaq 0x1568(%rsp), %rax
movq %rax, 0x2090(%rsp)
movq 0x2090(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x550(%rsp)
leaq 0x1568(%rsp), %rax
movq %rax, 0x2238(%rsp)
movq 0x2238(%rsp), %rax
movq %rax, 0x3a00(%rsp)
movq 0x3a00(%rsp), %rax
movq %rax, 0x558(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ab045
movq 0x558(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x39fc(%rsp) # imm = 0xFFFFFFFF
movl 0x39fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x39f8(%rsp)
cmpl $0x1, 0x39f8(%rsp)
jne 0x12ab045
movq 0x558(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ab016
movq 0x558(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ab014
jmp 0x12ab043
movq 0x558(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3de0(%rsp)
cmpq $0x0, 0x3de0(%rsp)
je 0x12ab041
movq 0x3de0(%rsp), %rdi
callq 0x5f480
jmp 0x12ab043
jmp 0x12ab045
movq 0x558(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ab0a0
movq %rax, %rdi
callq 0x678a0
movq 0x550(%rsp), %rax
movq %rax, 0x15b0(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x15bc(%rsp), %eax
leaq 0x1518(%rsp), %rdx
movq %rdx, 0x2490(%rsp)
movq %rcx, 0x2488(%rsp)
movl %eax, 0x2484(%rsp)
movq 0x2488(%rsp), %rax
movq %rax, 0x548(%rsp)
movb $0x0, 0x2483(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2484(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1518(%rsp), %r10
movq %r10, 0x2c38(%rsp)
movl %r9d, 0x2c34(%rsp)
movl %r8d, 0x2c30(%rsp)
movl %edi, 0x2c2c(%rsp)
movq %rsi, 0x2c20(%rsp)
movq %rdx, 0x2c18(%rsp)
movl %ecx, 0x2c14(%rsp)
movq %rax, 0x2c08(%rsp)
movq 0x2c38(%rsp), %rcx
movq %rcx, 0x540(%rsp)
movq 0x2c20(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2c18(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2c14(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2c08(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2c34(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2c30(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2c2c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x36b0(%rsp)
movl $0x10, 0x36ac(%rsp)
movq 0x36b0(%rsp), %rax
movslq 0x36ac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x36ac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x548(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1540(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12ab26c
movq 0x548(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1558(%rsp)
movb $0x1, 0x2483(%rsp)
testb $0x1, 0x2483(%rsp)
jne 0x12ab3a7
leaq 0x1518(%rsp), %rax
movq %rax, 0x2498(%rsp)
movq 0x2498(%rsp), %rax
movq %rax, 0x3780(%rsp)
movq 0x3780(%rsp), %rax
movq %rax, 0x538(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ab34a
movq 0x538(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x377c(%rsp) # imm = 0xFFFFFFFF
movl 0x377c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3778(%rsp)
cmpl $0x1, 0x3778(%rsp)
jne 0x12ab34a
movq 0x538(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ab31b
movq 0x538(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ab319
jmp 0x12ab348
movq 0x538(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f20(%rsp)
cmpq $0x0, 0x3f20(%rsp)
je 0x12ab346
movq 0x3f20(%rsp), %rdi
callq 0x5f480
jmp 0x12ab348
jmp 0x12ab34a
movq 0x538(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ab3a5
movq %rax, %rdi
callq 0x678a0
jmp 0x12ab3a7
leaq 0x1518(%rsp), %rax
movq %rax, 0x25c8(%rsp)
movq 0x25c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x528(%rsp)
leaq 0x1518(%rsp), %rax
movq %rax, 0x2240(%rsp)
movq 0x2240(%rsp), %rax
movq %rax, 0x39f0(%rsp)
movq 0x39f0(%rsp), %rax
movq %rax, 0x530(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ab492
movq 0x530(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x39ec(%rsp) # imm = 0xFFFFFFFF
movl 0x39ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x39e8(%rsp)
cmpl $0x1, 0x39e8(%rsp)
jne 0x12ab492
movq 0x530(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ab463
movq 0x530(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ab461
jmp 0x12ab490
movq 0x530(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3de8(%rsp)
cmpq $0x0, 0x3de8(%rsp)
je 0x12ab48e
movq 0x3de8(%rsp), %rdi
callq 0x5f480
jmp 0x12ab490
jmp 0x12ab492
movq 0x530(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ab4ed
movq %rax, %rdi
callq 0x678a0
movq 0x528(%rsp), %rax
movq %rax, 0x1560(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x15bc(%rsp), %eax
leaq 0x14c8(%rsp), %rdx
movq %rdx, 0x1ed8(%rsp)
movq %rcx, 0x1ed0(%rsp)
movl %eax, 0x1ecc(%rsp)
movq 0x1ed0(%rsp), %rax
movq %rax, 0x520(%rsp)
movb $0x0, 0x1ecb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1ecc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x14c8(%rsp), %r10
movq %r10, 0x3108(%rsp)
movl %r9d, 0x3104(%rsp)
movl %r8d, 0x3100(%rsp)
movl %edi, 0x30fc(%rsp)
movq %rsi, 0x30f0(%rsp)
movq %rdx, 0x30e8(%rsp)
movl %ecx, 0x30e4(%rsp)
movq %rax, 0x30d8(%rsp)
movq 0x3108(%rsp), %rcx
movq %rcx, 0x518(%rsp)
movq 0x30f0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x30e8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x30e4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x30d8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3104(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3100(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x30fc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3550(%rsp)
movl $0x10, 0x354c(%rsp)
movq 0x3550(%rsp), %rax
movslq 0x354c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x354c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x520(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x14f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12ab6b9
movq 0x520(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1508(%rsp)
movb $0x1, 0x1ecb(%rsp)
testb $0x1, 0x1ecb(%rsp)
jne 0x12ab7f4
leaq 0x14c8(%rsp), %rax
movq %rax, 0x2140(%rsp)
movq 0x2140(%rsp), %rax
movq %rax, 0x3bf0(%rsp)
movq 0x3bf0(%rsp), %rax
movq %rax, 0x510(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ab797
movq 0x510(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bec(%rsp) # imm = 0xFFFFFFFF
movl 0x3bec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3be8(%rsp)
cmpl $0x1, 0x3be8(%rsp)
jne 0x12ab797
movq 0x510(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ab768
movq 0x510(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ab766
jmp 0x12ab795
movq 0x510(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ce8(%rsp)
cmpq $0x0, 0x3ce8(%rsp)
je 0x12ab793
movq 0x3ce8(%rsp), %rdi
callq 0x5f480
jmp 0x12ab795
jmp 0x12ab797
movq 0x510(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ab7f2
movq %rax, %rdi
callq 0x678a0
jmp 0x12ab7f4
leaq 0x14c8(%rsp), %rax
movq %rax, 0x2088(%rsp)
movq 0x2088(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x500(%rsp)
leaq 0x14c8(%rsp), %rax
movq %rax, 0x2248(%rsp)
movq 0x2248(%rsp), %rax
movq %rax, 0x39e0(%rsp)
movq 0x39e0(%rsp), %rax
movq %rax, 0x508(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ab8df
movq 0x508(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x39dc(%rsp) # imm = 0xFFFFFFFF
movl 0x39dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x39d8(%rsp)
cmpl $0x1, 0x39d8(%rsp)
jne 0x12ab8df
movq 0x508(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ab8b0
movq 0x508(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ab8ae
jmp 0x12ab8dd
movq 0x508(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3df0(%rsp)
cmpq $0x0, 0x3df0(%rsp)
je 0x12ab8db
movq 0x3df0(%rsp), %rdi
callq 0x5f480
jmp 0x12ab8dd
jmp 0x12ab8df
movq 0x508(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ab93a
movq %rax, %rdi
callq 0x678a0
movq 0x500(%rsp), %rax
movq %rax, 0x1510(%rsp)
movq 0x15b0(%rsp), %rax
movq %rax, 0x26d0(%rsp)
movq 0x26d0(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x14b0(%rsp)
movl $0x0, 0x14ac(%rsp)
movl 0x14ac(%rsp), %eax
cmpl 0x1c68(%rsp), %eax
jge 0x12aba45
movq 0x1510(%rsp), %rax
movq %rax, 0x26c8(%rsp)
movq 0x26c8(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1490(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x14b0(%rsp), %rsi
leaq 0x1490(%rsp), %rdx
callq 0x12f6bf0
movaps %xmm0, 0x1480(%rsp)
movq 0x1560(%rsp), %rax
movaps 0x1480(%rsp), %xmm0
movq %rax, 0x28e8(%rsp)
movaps %xmm0, 0x28d0(%rsp)
movaps 0x28d0(%rsp), %xmm0
movq 0x28e8(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1510(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1510(%rsp)
movq 0x1560(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1560(%rsp)
movl 0x14ac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x14ac(%rsp)
jmp 0x12ab978
jmp 0x12aba47
movl 0x15bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x15bc(%rsp)
jmp 0x12aac4f
movl $0x0, 0x1cc4(%rsp)
jmp 0x12b4d30
movl 0x1c78(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jne 0x12ac59a
movl 0x1c74(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jne 0x12ac59a
cmpl $0x1, 0x1c8c(%rsp)
jne 0x12ac59a
cmpl $0x1, 0x1c7c(%rsp)
jne 0x12ac59a
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c6c(%rsp), %ecx
movq 0x1c60(%rsp), %r8
movl 0x1c5c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d30(%rsp)
movq 0x1d30(%rsp), %rcx
movq %rcx, 0x4f0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x4ff(%rsp)
je 0x12abb54
movq 0x4f0(%rsp), %rax
movq %rax, 0x2a48(%rsp)
movq 0x2a48(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x4ff(%rsp)
movb 0x4ff(%rsp), %al
testb $0x1, %al
jne 0x12abb61
jmp 0x12abb71
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12b4d30
movl $0x0, 0x147c(%rsp)
movl 0x147c(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12ac58a
movq 0x1cb8(%rsp), %rax
movq %rax, 0x2080(%rsp)
movq 0x2080(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1470(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x147c(%rsp), %eax
leaq 0x1420(%rsp), %rdx
movq %rdx, 0x1ec0(%rsp)
movq %rcx, 0x1eb8(%rsp)
movl %eax, 0x1eb4(%rsp)
movq 0x1eb8(%rsp), %rax
movq %rax, 0x4e8(%rsp)
movb $0x0, 0x1eb3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1eb4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1420(%rsp), %r10
movq %r10, 0x3140(%rsp)
movl %r9d, 0x313c(%rsp)
movl %r8d, 0x3138(%rsp)
movl %edi, 0x3134(%rsp)
movq %rsi, 0x3128(%rsp)
movq %rdx, 0x3120(%rsp)
movl %ecx, 0x311c(%rsp)
movq %rax, 0x3110(%rsp)
movq 0x3140(%rsp), %rcx
movq %rcx, 0x4e0(%rsp)
movq 0x3128(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3120(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x311c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3110(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x313c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3138(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3134(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3540(%rsp)
movl $0x10, 0x353c(%rsp)
movq 0x3540(%rsp), %rax
movslq 0x353c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x353c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4e8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1448(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12abd6f
movq 0x4e8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1460(%rsp)
movb $0x1, 0x1eb3(%rsp)
testb $0x1, 0x1eb3(%rsp)
jne 0x12abeaa
leaq 0x1420(%rsp), %rax
movq %rax, 0x2148(%rsp)
movq 0x2148(%rsp), %rax
movq %rax, 0x3be0(%rsp)
movq 0x3be0(%rsp), %rax
movq %rax, 0x4d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12abe4d
movq 0x4d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bdc(%rsp) # imm = 0xFFFFFFFF
movl 0x3bdc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3bd8(%rsp)
cmpl $0x1, 0x3bd8(%rsp)
jne 0x12abe4d
movq 0x4d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12abe1e
movq 0x4d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12abe1c
jmp 0x12abe4b
movq 0x4d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cf0(%rsp)
cmpq $0x0, 0x3cf0(%rsp)
je 0x12abe49
movq 0x3cf0(%rsp), %rdi
callq 0x5f480
jmp 0x12abe4b
jmp 0x12abe4d
movq 0x4d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12abea8
movq %rax, %rdi
callq 0x678a0
jmp 0x12abeaa
leaq 0x1420(%rsp), %rax
movq %rax, 0x2078(%rsp)
movq 0x2078(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4c8(%rsp)
leaq 0x1420(%rsp), %rax
movq %rax, 0x2250(%rsp)
movq 0x2250(%rsp), %rax
movq %rax, 0x39d0(%rsp)
movq 0x39d0(%rsp), %rax
movq %rax, 0x4d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12abf95
movq 0x4d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x39cc(%rsp) # imm = 0xFFFFFFFF
movl 0x39cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x39c8(%rsp)
cmpl $0x1, 0x39c8(%rsp)
jne 0x12abf95
movq 0x4d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12abf66
movq 0x4d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12abf64
jmp 0x12abf93
movq 0x4d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3df8(%rsp)
cmpq $0x0, 0x3df8(%rsp)
je 0x12abf91
movq 0x3df8(%rsp), %rdi
callq 0x5f480
jmp 0x12abf93
jmp 0x12abf95
movq 0x4d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12abff0
movq %rax, %rdi
callq 0x678a0
movq 0x4c8(%rsp), %rax
movq %rax, 0x1468(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x147c(%rsp), %eax
leaq 0x13d0(%rsp), %rdx
movq %rdx, 0x2470(%rsp)
movq %rcx, 0x2468(%rsp)
movl %eax, 0x2464(%rsp)
movq 0x2468(%rsp), %rax
movq %rax, 0x4c0(%rsp)
movb $0x0, 0x2463(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2464(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x13d0(%rsp), %r10
movq %r10, 0x2c70(%rsp)
movl %r9d, 0x2c6c(%rsp)
movl %r8d, 0x2c68(%rsp)
movl %edi, 0x2c64(%rsp)
movq %rsi, 0x2c58(%rsp)
movq %rdx, 0x2c50(%rsp)
movl %ecx, 0x2c4c(%rsp)
movq %rax, 0x2c40(%rsp)
movq 0x2c70(%rsp), %rcx
movq %rcx, 0x4b8(%rsp)
movq 0x2c58(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2c50(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2c4c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2c40(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2c6c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2c68(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2c64(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x36a0(%rsp)
movl $0x10, 0x369c(%rsp)
movq 0x36a0(%rsp), %rax
movslq 0x369c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x369c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4c0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x13f8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12ac1bc
movq 0x4c0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1410(%rsp)
movb $0x1, 0x2463(%rsp)
testb $0x1, 0x2463(%rsp)
jne 0x12ac2f7
leaq 0x13d0(%rsp), %rax
movq %rax, 0x2478(%rsp)
movq 0x2478(%rsp), %rax
movq %rax, 0x3790(%rsp)
movq 0x3790(%rsp), %rax
movq %rax, 0x4b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ac29a
movq 0x4b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x378c(%rsp) # imm = 0xFFFFFFFF
movl 0x378c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3788(%rsp)
cmpl $0x1, 0x3788(%rsp)
jne 0x12ac29a
movq 0x4b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ac26b
movq 0x4b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ac269
jmp 0x12ac298
movq 0x4b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f18(%rsp)
cmpq $0x0, 0x3f18(%rsp)
je 0x12ac296
movq 0x3f18(%rsp), %rdi
callq 0x5f480
jmp 0x12ac298
jmp 0x12ac29a
movq 0x4b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ac2f5
movq %rax, %rdi
callq 0x678a0
jmp 0x12ac2f7
leaq 0x13d0(%rsp), %rax
movq %rax, 0x25c0(%rsp)
movq 0x25c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4a0(%rsp)
leaq 0x13d0(%rsp), %rax
movq %rax, 0x2258(%rsp)
movq 0x2258(%rsp), %rax
movq %rax, 0x39c0(%rsp)
movq 0x39c0(%rsp), %rax
movq %rax, 0x4a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ac3e2
movq 0x4a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x39bc(%rsp) # imm = 0xFFFFFFFF
movl 0x39bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x39b8(%rsp)
cmpl $0x1, 0x39b8(%rsp)
jne 0x12ac3e2
movq 0x4a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ac3b3
movq 0x4a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ac3b1
jmp 0x12ac3e0
movq 0x4a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e00(%rsp)
cmpq $0x0, 0x3e00(%rsp)
je 0x12ac3de
movq 0x3e00(%rsp), %rdi
callq 0x5f480
jmp 0x12ac3e0
jmp 0x12ac3e2
movq 0x4a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ac43d
movq %rax, %rdi
callq 0x678a0
movq 0x4a0(%rsp), %rax
movq %rax, 0x1418(%rsp)
movl $0x0, 0x13cc(%rsp)
movl 0x13cc(%rsp), %eax
cmpl 0x1c68(%rsp), %eax
jge 0x12ac572
movq 0x1470(%rsp), %rax
movss (%rax), %xmm0
movss %xmm0, 0x29e0(%rsp)
movaps 0x29e0(%rsp), %xmm0
shufps $0x0, %xmm0, %xmm0 # xmm0 = xmm0[0,0,0,0]
movaps %xmm0, 0x29d0(%rsp)
movaps 0x29d0(%rsp), %xmm0
movaps %xmm0, 0x13b0(%rsp)
movq 0x1468(%rsp), %rax
movq %rax, 0x26c0(%rsp)
movq 0x26c0(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x13a0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x13b0(%rsp), %rsi
leaq 0x13a0(%rsp), %rdx
callq 0x12f6bf0
movaps %xmm0, 0x1390(%rsp)
movq 0x1418(%rsp), %rax
movaps 0x1390(%rsp), %xmm0
movq %rax, 0x28c8(%rsp)
movaps %xmm0, 0x28b0(%rsp)
movaps 0x28b0(%rsp), %xmm0
movq 0x28c8(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1470(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x1470(%rsp)
movq 0x1468(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1468(%rsp)
movq 0x1418(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1418(%rsp)
movl 0x13cc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x13cc(%rsp)
jmp 0x12ac458
jmp 0x12ac574
movl 0x147c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x147c(%rsp)
jmp 0x12abb7c
movl $0x0, 0x1cc4(%rsp)
jmp 0x12b4d30
cmpl $0x1, 0x1c98(%rsp)
je 0x12ad512
cmpl $0x1, 0x1c78(%rsp)
jne 0x12ad512
movl 0x1c74(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jne 0x12ad512
movl 0x1c6c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jne 0x12ad512
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movl 0x1c8c(%rsp), %ecx
movq 0x1c80(%rsp), %r8
movl 0x1c7c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d28(%rsp)
movq 0x1d28(%rsp), %rcx
movq %rcx, 0x490(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x49f(%rsp)
je 0x12ac681
movq 0x490(%rsp), %rax
movq %rax, 0x2a50(%rsp)
movq 0x2a50(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x49f(%rsp)
movb 0x49f(%rsp), %al
testb $0x1, %al
jne 0x12ac68e
jmp 0x12ac69e
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12b4d30
movl $0x0, 0x138c(%rsp)
movl 0x138c(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12ad502
movq 0x1cb8(%rsp), %rcx
movl 0x138c(%rsp), %eax
leaq 0x1338(%rsp), %rdx
movq %rdx, 0x1ea8(%rsp)
movq %rcx, 0x1ea0(%rsp)
movl %eax, 0x1e9c(%rsp)
movq 0x1ea0(%rsp), %rax
movq %rax, 0x488(%rsp)
movb $0x0, 0x1e9b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e9c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1338(%rsp), %r10
movq %r10, 0x3178(%rsp)
movl %r9d, 0x3174(%rsp)
movl %r8d, 0x3170(%rsp)
movl %edi, 0x316c(%rsp)
movq %rsi, 0x3160(%rsp)
movq %rdx, 0x3158(%rsp)
movl %ecx, 0x3154(%rsp)
movq %rax, 0x3148(%rsp)
movq 0x3178(%rsp), %rcx
movq %rcx, 0x480(%rsp)
movq 0x3160(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3158(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3154(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3148(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3174(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3170(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x316c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3530(%rsp)
movl $0x10, 0x352c(%rsp)
movq 0x3530(%rsp), %rax
movslq 0x352c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x352c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x488(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1360(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12ac879
movq 0x488(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1378(%rsp)
movb $0x1, 0x1e9b(%rsp)
testb $0x1, 0x1e9b(%rsp)
jne 0x12ac9b4
leaq 0x1338(%rsp), %rax
movq %rax, 0x2150(%rsp)
movq 0x2150(%rsp), %rax
movq %rax, 0x3bd0(%rsp)
movq 0x3bd0(%rsp), %rax
movq %rax, 0x478(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ac957
movq 0x478(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bcc(%rsp) # imm = 0xFFFFFFFF
movl 0x3bcc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3bc8(%rsp)
cmpl $0x1, 0x3bc8(%rsp)
jne 0x12ac957
movq 0x478(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ac928
movq 0x478(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ac926
jmp 0x12ac955
movq 0x478(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cf8(%rsp)
cmpq $0x0, 0x3cf8(%rsp)
je 0x12ac953
movq 0x3cf8(%rsp), %rdi
callq 0x5f480
jmp 0x12ac955
jmp 0x12ac957
movq 0x478(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ac9b2
movq %rax, %rdi
callq 0x678a0
jmp 0x12ac9b4
leaq 0x1338(%rsp), %rax
movq %rax, 0x2070(%rsp)
movq 0x2070(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x468(%rsp)
leaq 0x1338(%rsp), %rax
movq %rax, 0x2260(%rsp)
movq 0x2260(%rsp), %rax
movq %rax, 0x39b0(%rsp)
movq 0x39b0(%rsp), %rax
movq %rax, 0x470(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12aca9f
movq 0x470(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x39ac(%rsp) # imm = 0xFFFFFFFF
movl 0x39ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x39a8(%rsp)
cmpl $0x1, 0x39a8(%rsp)
jne 0x12aca9f
movq 0x470(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12aca70
movq 0x470(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12aca6e
jmp 0x12aca9d
movq 0x470(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e08(%rsp)
cmpq $0x0, 0x3e08(%rsp)
je 0x12aca9b
movq 0x3e08(%rsp), %rdi
callq 0x5f480
jmp 0x12aca9d
jmp 0x12aca9f
movq 0x470(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12acafa
movq %rax, %rdi
callq 0x678a0
movq 0x468(%rsp), %rax
movq %rax, 0x1380(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x138c(%rsp), %eax
leaq 0x12e8(%rsp), %rdx
movq %rdx, 0x1e90(%rsp)
movq %rcx, 0x1e88(%rsp)
movl %eax, 0x1e84(%rsp)
movq 0x1e88(%rsp), %rax
movq %rax, 0x460(%rsp)
movb $0x0, 0x1e83(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e84(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x12e8(%rsp), %r10
movq %r10, 0x31b0(%rsp)
movl %r9d, 0x31ac(%rsp)
movl %r8d, 0x31a8(%rsp)
movl %edi, 0x31a4(%rsp)
movq %rsi, 0x3198(%rsp)
movq %rdx, 0x3190(%rsp)
movl %ecx, 0x318c(%rsp)
movq %rax, 0x3180(%rsp)
movq 0x31b0(%rsp), %rcx
movq %rcx, 0x458(%rsp)
movq 0x3198(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3190(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x318c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3180(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x31ac(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x31a8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x31a4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3520(%rsp)
movl $0x10, 0x351c(%rsp)
movq 0x3520(%rsp), %rax
movslq 0x351c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x351c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x460(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1310(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12accc6
movq 0x460(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1328(%rsp)
movb $0x1, 0x1e83(%rsp)
testb $0x1, 0x1e83(%rsp)
jne 0x12ace01
leaq 0x12e8(%rsp), %rax
movq %rax, 0x2158(%rsp)
movq 0x2158(%rsp), %rax
movq %rax, 0x3bc0(%rsp)
movq 0x3bc0(%rsp), %rax
movq %rax, 0x450(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12acda4
movq 0x450(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bbc(%rsp) # imm = 0xFFFFFFFF
movl 0x3bbc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3bb8(%rsp)
cmpl $0x1, 0x3bb8(%rsp)
jne 0x12acda4
movq 0x450(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12acd75
movq 0x450(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12acd73
jmp 0x12acda2
movq 0x450(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d00(%rsp)
cmpq $0x0, 0x3d00(%rsp)
je 0x12acda0
movq 0x3d00(%rsp), %rdi
callq 0x5f480
jmp 0x12acda2
jmp 0x12acda4
movq 0x450(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12acdff
movq %rax, %rdi
callq 0x678a0
jmp 0x12ace01
leaq 0x12e8(%rsp), %rax
movq %rax, 0x2068(%rsp)
movq 0x2068(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x440(%rsp)
leaq 0x12e8(%rsp), %rax
movq %rax, 0x2268(%rsp)
movq 0x2268(%rsp), %rax
movq %rax, 0x39a0(%rsp)
movq 0x39a0(%rsp), %rax
movq %rax, 0x448(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12aceec
movq 0x448(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x399c(%rsp) # imm = 0xFFFFFFFF
movl 0x399c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3998(%rsp)
cmpl $0x1, 0x3998(%rsp)
jne 0x12aceec
movq 0x448(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12acebd
movq 0x448(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12acebb
jmp 0x12aceea
movq 0x448(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e10(%rsp)
cmpq $0x0, 0x3e10(%rsp)
je 0x12acee8
movq 0x3e10(%rsp), %rdi
callq 0x5f480
jmp 0x12aceea
jmp 0x12aceec
movq 0x448(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12acf47
movq %rax, %rdi
callq 0x678a0
movq 0x440(%rsp), %rax
movq %rax, 0x1330(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x138c(%rsp), %eax
leaq 0x1298(%rsp), %rdx
movq %rdx, 0x2450(%rsp)
movq %rcx, 0x2448(%rsp)
movl %eax, 0x2444(%rsp)
movq 0x2448(%rsp), %rax
movq %rax, 0x438(%rsp)
movb $0x0, 0x2443(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2444(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1298(%rsp), %r10
movq %r10, 0x2ca8(%rsp)
movl %r9d, 0x2ca4(%rsp)
movl %r8d, 0x2ca0(%rsp)
movl %edi, 0x2c9c(%rsp)
movq %rsi, 0x2c90(%rsp)
movq %rdx, 0x2c88(%rsp)
movl %ecx, 0x2c84(%rsp)
movq %rax, 0x2c78(%rsp)
movq 0x2ca8(%rsp), %rcx
movq %rcx, 0x430(%rsp)
movq 0x2c90(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2c88(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2c84(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2c78(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2ca4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2ca0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2c9c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3690(%rsp)
movl $0x10, 0x368c(%rsp)
movq 0x3690(%rsp), %rax
movslq 0x368c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x368c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x438(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x12c0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12ad113
movq 0x438(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x12d8(%rsp)
movb $0x1, 0x2443(%rsp)
testb $0x1, 0x2443(%rsp)
jne 0x12ad24e
leaq 0x1298(%rsp), %rax
movq %rax, 0x2458(%rsp)
movq 0x2458(%rsp), %rax
movq %rax, 0x37a0(%rsp)
movq 0x37a0(%rsp), %rax
movq %rax, 0x428(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ad1f1
movq 0x428(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x379c(%rsp) # imm = 0xFFFFFFFF
movl 0x379c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3798(%rsp)
cmpl $0x1, 0x3798(%rsp)
jne 0x12ad1f1
movq 0x428(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ad1c2
movq 0x428(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ad1c0
jmp 0x12ad1ef
movq 0x428(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f10(%rsp)
cmpq $0x0, 0x3f10(%rsp)
je 0x12ad1ed
movq 0x3f10(%rsp), %rdi
callq 0x5f480
jmp 0x12ad1ef
jmp 0x12ad1f1
movq 0x428(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ad24c
movq %rax, %rdi
callq 0x678a0
jmp 0x12ad24e
leaq 0x1298(%rsp), %rax
movq %rax, 0x25b8(%rsp)
movq 0x25b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x418(%rsp)
leaq 0x1298(%rsp), %rax
movq %rax, 0x2270(%rsp)
movq 0x2270(%rsp), %rax
movq %rax, 0x3990(%rsp)
movq 0x3990(%rsp), %rax
movq %rax, 0x420(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ad339
movq 0x420(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x398c(%rsp) # imm = 0xFFFFFFFF
movl 0x398c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3988(%rsp)
cmpl $0x1, 0x3988(%rsp)
jne 0x12ad339
movq 0x420(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ad30a
movq 0x420(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ad308
jmp 0x12ad337
movq 0x420(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e18(%rsp)
cmpq $0x0, 0x3e18(%rsp)
je 0x12ad335
movq 0x3e18(%rsp), %rdi
callq 0x5f480
jmp 0x12ad337
jmp 0x12ad339
movq 0x420(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ad394
movq %rax, %rdi
callq 0x678a0
movq 0x418(%rsp), %rax
movq %rax, 0x12e0(%rsp)
movl $0x0, 0x1294(%rsp)
movl 0x1294(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jge 0x12ad4ea
movq 0x1330(%rsp), %rax
movl 0x1294(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x26b8(%rsp)
movq 0x26b8(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1280(%rsp)
movl $0x0, 0x127c(%rsp)
movl 0x127c(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jge 0x12ad4d2
movq 0x1380(%rsp), %rax
movq %rax, 0x26b0(%rsp)
movq 0x26b0(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1260(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x1260(%rsp), %rsi
leaq 0x1280(%rsp), %rdx
callq 0x12f6bf0
movaps %xmm0, 0x1250(%rsp)
movq 0x12e0(%rsp), %rax
movaps 0x1250(%rsp), %xmm0
movq %rax, 0x28a8(%rsp)
movaps %xmm0, 0x2890(%rsp)
movaps 0x2890(%rsp), %xmm0
movq 0x28a8(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1380(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1380(%rsp)
movq 0x12e0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x12e0(%rsp)
movl 0x127c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x127c(%rsp)
jmp 0x12ad405
jmp 0x12ad4d4
movl 0x1294(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1294(%rsp)
jmp 0x12ad3af
jmp 0x12ad4ec
movl 0x138c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x138c(%rsp)
jmp 0x12ac6a9
movl $0x0, 0x1cc4(%rsp)
jmp 0x12b4d30
movl 0x1c78(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jne 0x12ae48a
cmpl $0x1, 0x1c94(%rsp)
je 0x12ae48a
cmpl $0x1, 0x1c74(%rsp)
jne 0x12ae48a
movl 0x1c6c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jne 0x12ae48a
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movl 0x1c8c(%rsp), %ecx
movq 0x1c80(%rsp), %r8
movl 0x1c7c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d20(%rsp)
movq 0x1d20(%rsp), %rcx
movq %rcx, 0x408(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x417(%rsp)
je 0x12ad5f9
movq 0x408(%rsp), %rax
movq %rax, 0x2a58(%rsp)
movq 0x2a58(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x417(%rsp)
movb 0x417(%rsp), %al
testb $0x1, %al
jne 0x12ad606
jmp 0x12ad616
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12b4d30
movl $0x0, 0x124c(%rsp)
movl 0x124c(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12ae47a
movq 0x1cb8(%rsp), %rcx
movl 0x124c(%rsp), %eax
leaq 0x11f8(%rsp), %rdx
movq %rdx, 0x1e78(%rsp)
movq %rcx, 0x1e70(%rsp)
movl %eax, 0x1e6c(%rsp)
movq 0x1e70(%rsp), %rax
movq %rax, 0x400(%rsp)
movb $0x0, 0x1e6b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e6c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x11f8(%rsp), %r10
movq %r10, 0x31e8(%rsp)
movl %r9d, 0x31e4(%rsp)
movl %r8d, 0x31e0(%rsp)
movl %edi, 0x31dc(%rsp)
movq %rsi, 0x31d0(%rsp)
movq %rdx, 0x31c8(%rsp)
movl %ecx, 0x31c4(%rsp)
movq %rax, 0x31b8(%rsp)
movq 0x31e8(%rsp), %rcx
movq %rcx, 0x3f8(%rsp)
movq 0x31d0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x31c8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x31c4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x31b8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x31e4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x31e0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x31dc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3510(%rsp)
movl $0x10, 0x350c(%rsp)
movq 0x3510(%rsp), %rax
movslq 0x350c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x350c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x400(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1220(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12ad7f1
movq 0x400(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1238(%rsp)
movb $0x1, 0x1e6b(%rsp)
testb $0x1, 0x1e6b(%rsp)
jne 0x12ad92c
leaq 0x11f8(%rsp), %rax
movq %rax, 0x2160(%rsp)
movq 0x2160(%rsp), %rax
movq %rax, 0x3bb0(%rsp)
movq 0x3bb0(%rsp), %rax
movq %rax, 0x3f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ad8cf
movq 0x3f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bac(%rsp) # imm = 0xFFFFFFFF
movl 0x3bac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ba8(%rsp)
cmpl $0x1, 0x3ba8(%rsp)
jne 0x12ad8cf
movq 0x3f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ad8a0
movq 0x3f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ad89e
jmp 0x12ad8cd
movq 0x3f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d08(%rsp)
cmpq $0x0, 0x3d08(%rsp)
je 0x12ad8cb
movq 0x3d08(%rsp), %rdi
callq 0x5f480
jmp 0x12ad8cd
jmp 0x12ad8cf
movq 0x3f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ad92a
movq %rax, %rdi
callq 0x678a0
jmp 0x12ad92c
leaq 0x11f8(%rsp), %rax
movq %rax, 0x2060(%rsp)
movq 0x2060(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e0(%rsp)
leaq 0x11f8(%rsp), %rax
movq %rax, 0x2278(%rsp)
movq 0x2278(%rsp), %rax
movq %rax, 0x3980(%rsp)
movq 0x3980(%rsp), %rax
movq %rax, 0x3e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ada17
movq 0x3e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x397c(%rsp) # imm = 0xFFFFFFFF
movl 0x397c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3978(%rsp)
cmpl $0x1, 0x3978(%rsp)
jne 0x12ada17
movq 0x3e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ad9e8
movq 0x3e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ad9e6
jmp 0x12ada15
movq 0x3e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e20(%rsp)
cmpq $0x0, 0x3e20(%rsp)
je 0x12ada13
movq 0x3e20(%rsp), %rdi
callq 0x5f480
jmp 0x12ada15
jmp 0x12ada17
movq 0x3e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ada72
movq %rax, %rdi
callq 0x678a0
movq 0x3e0(%rsp), %rax
movq %rax, 0x1240(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x124c(%rsp), %eax
leaq 0x11a8(%rsp), %rdx
movq %rdx, 0x1e60(%rsp)
movq %rcx, 0x1e58(%rsp)
movl %eax, 0x1e54(%rsp)
movq 0x1e58(%rsp), %rax
movq %rax, 0x3d8(%rsp)
movb $0x0, 0x1e53(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e54(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x11a8(%rsp), %r10
movq %r10, 0x3220(%rsp)
movl %r9d, 0x321c(%rsp)
movl %r8d, 0x3218(%rsp)
movl %edi, 0x3214(%rsp)
movq %rsi, 0x3208(%rsp)
movq %rdx, 0x3200(%rsp)
movl %ecx, 0x31fc(%rsp)
movq %rax, 0x31f0(%rsp)
movq 0x3220(%rsp), %rcx
movq %rcx, 0x3d0(%rsp)
movq 0x3208(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3200(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x31fc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x31f0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x321c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3218(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3214(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3500(%rsp)
movl $0x10, 0x34fc(%rsp)
movq 0x3500(%rsp), %rax
movslq 0x34fc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x34fc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3d8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x11d0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12adc3e
movq 0x3d8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x11e8(%rsp)
movb $0x1, 0x1e53(%rsp)
testb $0x1, 0x1e53(%rsp)
jne 0x12add79
leaq 0x11a8(%rsp), %rax
movq %rax, 0x2168(%rsp)
movq 0x2168(%rsp), %rax
movq %rax, 0x3ba0(%rsp)
movq 0x3ba0(%rsp), %rax
movq %rax, 0x3c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12add1c
movq 0x3c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b9c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b9c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b98(%rsp)
cmpl $0x1, 0x3b98(%rsp)
jne 0x12add1c
movq 0x3c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12adced
movq 0x3c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12adceb
jmp 0x12add1a
movq 0x3c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d10(%rsp)
cmpq $0x0, 0x3d10(%rsp)
je 0x12add18
movq 0x3d10(%rsp), %rdi
callq 0x5f480
jmp 0x12add1a
jmp 0x12add1c
movq 0x3c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12add77
movq %rax, %rdi
callq 0x678a0
jmp 0x12add79
leaq 0x11a8(%rsp), %rax
movq %rax, 0x2058(%rsp)
movq 0x2058(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3b8(%rsp)
leaq 0x11a8(%rsp), %rax
movq %rax, 0x2280(%rsp)
movq 0x2280(%rsp), %rax
movq %rax, 0x3970(%rsp)
movq 0x3970(%rsp), %rax
movq %rax, 0x3c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ade64
movq 0x3c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x396c(%rsp) # imm = 0xFFFFFFFF
movl 0x396c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3968(%rsp)
cmpl $0x1, 0x3968(%rsp)
jne 0x12ade64
movq 0x3c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ade35
movq 0x3c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ade33
jmp 0x12ade62
movq 0x3c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e28(%rsp)
cmpq $0x0, 0x3e28(%rsp)
je 0x12ade60
movq 0x3e28(%rsp), %rdi
callq 0x5f480
jmp 0x12ade62
jmp 0x12ade64
movq 0x3c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12adebf
movq %rax, %rdi
callq 0x678a0
movq 0x3b8(%rsp), %rax
movq %rax, 0x11f0(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x124c(%rsp), %eax
leaq 0x1158(%rsp), %rdx
movq %rdx, 0x2430(%rsp)
movq %rcx, 0x2428(%rsp)
movl %eax, 0x2424(%rsp)
movq 0x2428(%rsp), %rax
movq %rax, 0x3b0(%rsp)
movb $0x0, 0x2423(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2424(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1158(%rsp), %r10
movq %r10, 0x2ce0(%rsp)
movl %r9d, 0x2cdc(%rsp)
movl %r8d, 0x2cd8(%rsp)
movl %edi, 0x2cd4(%rsp)
movq %rsi, 0x2cc8(%rsp)
movq %rdx, 0x2cc0(%rsp)
movl %ecx, 0x2cbc(%rsp)
movq %rax, 0x2cb0(%rsp)
movq 0x2ce0(%rsp), %rcx
movq %rcx, 0x3a8(%rsp)
movq 0x2cc8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2cc0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2cbc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2cb0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2cdc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2cd8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2cd4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3680(%rsp)
movl $0x10, 0x367c(%rsp)
movq 0x3680(%rsp), %rax
movslq 0x367c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x367c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3b0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1180(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12ae08b
movq 0x3b0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1198(%rsp)
movb $0x1, 0x2423(%rsp)
testb $0x1, 0x2423(%rsp)
jne 0x12ae1c6
leaq 0x1158(%rsp), %rax
movq %rax, 0x2438(%rsp)
movq 0x2438(%rsp), %rax
movq %rax, 0x37b0(%rsp)
movq 0x37b0(%rsp), %rax
movq %rax, 0x3a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ae169
movq 0x3a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x37ac(%rsp) # imm = 0xFFFFFFFF
movl 0x37ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x37a8(%rsp)
cmpl $0x1, 0x37a8(%rsp)
jne 0x12ae169
movq 0x3a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ae13a
movq 0x3a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ae138
jmp 0x12ae167
movq 0x3a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f08(%rsp)
cmpq $0x0, 0x3f08(%rsp)
je 0x12ae165
movq 0x3f08(%rsp), %rdi
callq 0x5f480
jmp 0x12ae167
jmp 0x12ae169
movq 0x3a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ae1c4
movq %rax, %rdi
callq 0x678a0
jmp 0x12ae1c6
leaq 0x1158(%rsp), %rax
movq %rax, 0x25b0(%rsp)
movq 0x25b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x390(%rsp)
leaq 0x1158(%rsp), %rax
movq %rax, 0x2288(%rsp)
movq 0x2288(%rsp), %rax
movq %rax, 0x3960(%rsp)
movq 0x3960(%rsp), %rax
movq %rax, 0x398(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ae2b1
movq 0x398(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x395c(%rsp) # imm = 0xFFFFFFFF
movl 0x395c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3958(%rsp)
cmpl $0x1, 0x3958(%rsp)
jne 0x12ae2b1
movq 0x398(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ae282
movq 0x398(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ae280
jmp 0x12ae2af
movq 0x398(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e30(%rsp)
cmpq $0x0, 0x3e30(%rsp)
je 0x12ae2ad
movq 0x3e30(%rsp), %rdi
callq 0x5f480
jmp 0x12ae2af
jmp 0x12ae2b1
movq 0x398(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ae30c
movq %rax, %rdi
callq 0x678a0
movq 0x390(%rsp), %rax
movq %rax, 0x11a0(%rsp)
movl $0x0, 0x1154(%rsp)
movl 0x1154(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jge 0x12ae462
movl $0x0, 0x1150(%rsp)
movl 0x1150(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jge 0x12ae44a
movq 0x1240(%rsp), %rax
movq %rax, 0x26a8(%rsp)
movq 0x26a8(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1140(%rsp)
movq 0x11f0(%rsp), %rax
movl 0x1150(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x26a0(%rsp)
movq 0x26a0(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1130(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x1140(%rsp), %rsi
leaq 0x1130(%rsp), %rdx
callq 0x12f6bf0
movaps %xmm0, 0x1120(%rsp)
movq 0x11a0(%rsp), %rax
movaps 0x1120(%rsp), %xmm0
movq %rax, 0x2888(%rsp)
movaps %xmm0, 0x2870(%rsp)
movaps 0x2870(%rsp), %xmm0
movq 0x2888(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1240(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1240(%rsp)
movq 0x11a0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x11a0(%rsp)
movl 0x1150(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1150(%rsp)
jmp 0x12ae346
jmp 0x12ae44c
movl 0x1154(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1154(%rsp)
jmp 0x12ae327
jmp 0x12ae464
movl 0x124c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x124c(%rsp)
jmp 0x12ad621
movl $0x0, 0x1cc4(%rsp)
jmp 0x12b4d30
cmpl $0x1, 0x1c78(%rsp)
je 0x12af402
cmpl $0x1, 0x1c98(%rsp)
jne 0x12af402
movl 0x1c74(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jne 0x12af402
movl 0x1c6c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jne 0x12af402
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c6c(%rsp), %ecx
movq 0x1c60(%rsp), %r8
movl 0x1c5c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d18(%rsp)
movq 0x1d18(%rsp), %rcx
movq %rcx, 0x380(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x38f(%rsp)
je 0x12ae571
movq 0x380(%rsp), %rax
movq %rax, 0x2a60(%rsp)
movq 0x2a60(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x38f(%rsp)
movb 0x38f(%rsp), %al
testb $0x1, %al
jne 0x12ae57e
jmp 0x12ae58e
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12b4d30
movl $0x0, 0x111c(%rsp)
movl 0x111c(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12af3f2
movq 0x1cb8(%rsp), %rcx
movl 0x111c(%rsp), %eax
leaq 0x10c8(%rsp), %rdx
movq %rdx, 0x1e48(%rsp)
movq %rcx, 0x1e40(%rsp)
movl %eax, 0x1e3c(%rsp)
movq 0x1e40(%rsp), %rax
movq %rax, 0x378(%rsp)
movb $0x0, 0x1e3b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e3c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x10c8(%rsp), %r10
movq %r10, 0x3258(%rsp)
movl %r9d, 0x3254(%rsp)
movl %r8d, 0x3250(%rsp)
movl %edi, 0x324c(%rsp)
movq %rsi, 0x3240(%rsp)
movq %rdx, 0x3238(%rsp)
movl %ecx, 0x3234(%rsp)
movq %rax, 0x3228(%rsp)
movq 0x3258(%rsp), %rcx
movq %rcx, 0x370(%rsp)
movq 0x3240(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3238(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3234(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3228(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3254(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3250(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x324c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x34f0(%rsp)
movl $0x10, 0x34ec(%rsp)
movq 0x34f0(%rsp), %rax
movslq 0x34ec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x34ec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x378(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x10f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12ae769
movq 0x378(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1108(%rsp)
movb $0x1, 0x1e3b(%rsp)
testb $0x1, 0x1e3b(%rsp)
jne 0x12ae8a4
leaq 0x10c8(%rsp), %rax
movq %rax, 0x2170(%rsp)
movq 0x2170(%rsp), %rax
movq %rax, 0x3b90(%rsp)
movq 0x3b90(%rsp), %rax
movq %rax, 0x368(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ae847
movq 0x368(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b8c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b8c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b88(%rsp)
cmpl $0x1, 0x3b88(%rsp)
jne 0x12ae847
movq 0x368(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ae818
movq 0x368(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ae816
jmp 0x12ae845
movq 0x368(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d18(%rsp)
cmpq $0x0, 0x3d18(%rsp)
je 0x12ae843
movq 0x3d18(%rsp), %rdi
callq 0x5f480
jmp 0x12ae845
jmp 0x12ae847
movq 0x368(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ae8a2
movq %rax, %rdi
callq 0x678a0
jmp 0x12ae8a4
leaq 0x10c8(%rsp), %rax
movq %rax, 0x2050(%rsp)
movq 0x2050(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x358(%rsp)
leaq 0x10c8(%rsp), %rax
movq %rax, 0x2290(%rsp)
movq 0x2290(%rsp), %rax
movq %rax, 0x3950(%rsp)
movq 0x3950(%rsp), %rax
movq %rax, 0x360(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ae98f
movq 0x360(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x394c(%rsp) # imm = 0xFFFFFFFF
movl 0x394c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3948(%rsp)
cmpl $0x1, 0x3948(%rsp)
jne 0x12ae98f
movq 0x360(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ae960
movq 0x360(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ae95e
jmp 0x12ae98d
movq 0x360(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e38(%rsp)
cmpq $0x0, 0x3e38(%rsp)
je 0x12ae98b
movq 0x3e38(%rsp), %rdi
callq 0x5f480
jmp 0x12ae98d
jmp 0x12ae98f
movq 0x360(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ae9ea
movq %rax, %rdi
callq 0x678a0
movq 0x358(%rsp), %rax
movq %rax, 0x1110(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x111c(%rsp), %eax
leaq 0x1078(%rsp), %rdx
movq %rdx, 0x1e30(%rsp)
movq %rcx, 0x1e28(%rsp)
movl %eax, 0x1e24(%rsp)
movq 0x1e28(%rsp), %rax
movq %rax, 0x350(%rsp)
movb $0x0, 0x1e23(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e24(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1078(%rsp), %r10
movq %r10, 0x3290(%rsp)
movl %r9d, 0x328c(%rsp)
movl %r8d, 0x3288(%rsp)
movl %edi, 0x3284(%rsp)
movq %rsi, 0x3278(%rsp)
movq %rdx, 0x3270(%rsp)
movl %ecx, 0x326c(%rsp)
movq %rax, 0x3260(%rsp)
movq 0x3290(%rsp), %rcx
movq %rcx, 0x348(%rsp)
movq 0x3278(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3270(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x326c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3260(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x328c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3288(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3284(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x34e0(%rsp)
movl $0x10, 0x34dc(%rsp)
movq 0x34e0(%rsp), %rax
movslq 0x34dc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x34dc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x350(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x10a0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12aebb6
movq 0x350(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x10b8(%rsp)
movb $0x1, 0x1e23(%rsp)
testb $0x1, 0x1e23(%rsp)
jne 0x12aecf1
leaq 0x1078(%rsp), %rax
movq %rax, 0x2178(%rsp)
movq 0x2178(%rsp), %rax
movq %rax, 0x3b80(%rsp)
movq 0x3b80(%rsp), %rax
movq %rax, 0x340(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12aec94
movq 0x340(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b7c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b7c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b78(%rsp)
cmpl $0x1, 0x3b78(%rsp)
jne 0x12aec94
movq 0x340(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12aec65
movq 0x340(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12aec63
jmp 0x12aec92
movq 0x340(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d20(%rsp)
cmpq $0x0, 0x3d20(%rsp)
je 0x12aec90
movq 0x3d20(%rsp), %rdi
callq 0x5f480
jmp 0x12aec92
jmp 0x12aec94
movq 0x340(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12aecef
movq %rax, %rdi
callq 0x678a0
jmp 0x12aecf1
leaq 0x1078(%rsp), %rax
movq %rax, 0x2048(%rsp)
movq 0x2048(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x330(%rsp)
leaq 0x1078(%rsp), %rax
movq %rax, 0x2298(%rsp)
movq 0x2298(%rsp), %rax
movq %rax, 0x3940(%rsp)
movq 0x3940(%rsp), %rax
movq %rax, 0x338(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12aeddc
movq 0x338(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x393c(%rsp) # imm = 0xFFFFFFFF
movl 0x393c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3938(%rsp)
cmpl $0x1, 0x3938(%rsp)
jne 0x12aeddc
movq 0x338(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12aedad
movq 0x338(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12aedab
jmp 0x12aedda
movq 0x338(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e40(%rsp)
cmpq $0x0, 0x3e40(%rsp)
je 0x12aedd8
movq 0x3e40(%rsp), %rdi
callq 0x5f480
jmp 0x12aedda
jmp 0x12aeddc
movq 0x338(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12aee37
movq %rax, %rdi
callq 0x678a0
movq 0x330(%rsp), %rax
movq %rax, 0x10c0(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x111c(%rsp), %eax
leaq 0x1028(%rsp), %rdx
movq %rdx, 0x2410(%rsp)
movq %rcx, 0x2408(%rsp)
movl %eax, 0x2404(%rsp)
movq 0x2408(%rsp), %rax
movq %rax, 0x328(%rsp)
movb $0x0, 0x2403(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2404(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1028(%rsp), %r10
movq %r10, 0x2d18(%rsp)
movl %r9d, 0x2d14(%rsp)
movl %r8d, 0x2d10(%rsp)
movl %edi, 0x2d0c(%rsp)
movq %rsi, 0x2d00(%rsp)
movq %rdx, 0x2cf8(%rsp)
movl %ecx, 0x2cf4(%rsp)
movq %rax, 0x2ce8(%rsp)
movq 0x2d18(%rsp), %rcx
movq %rcx, 0x320(%rsp)
movq 0x2d00(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2cf8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2cf4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ce8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2d14(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2d10(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2d0c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3670(%rsp)
movl $0x10, 0x366c(%rsp)
movq 0x3670(%rsp), %rax
movslq 0x366c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x366c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x328(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1050(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12af003
movq 0x328(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1068(%rsp)
movb $0x1, 0x2403(%rsp)
testb $0x1, 0x2403(%rsp)
jne 0x12af13e
leaq 0x1028(%rsp), %rax
movq %rax, 0x2418(%rsp)
movq 0x2418(%rsp), %rax
movq %rax, 0x37c0(%rsp)
movq 0x37c0(%rsp), %rax
movq %rax, 0x318(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12af0e1
movq 0x318(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x37bc(%rsp) # imm = 0xFFFFFFFF
movl 0x37bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x37b8(%rsp)
cmpl $0x1, 0x37b8(%rsp)
jne 0x12af0e1
movq 0x318(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12af0b2
movq 0x318(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12af0b0
jmp 0x12af0df
movq 0x318(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f00(%rsp)
cmpq $0x0, 0x3f00(%rsp)
je 0x12af0dd
movq 0x3f00(%rsp), %rdi
callq 0x5f480
jmp 0x12af0df
jmp 0x12af0e1
movq 0x318(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12af13c
movq %rax, %rdi
callq 0x678a0
jmp 0x12af13e
leaq 0x1028(%rsp), %rax
movq %rax, 0x25a8(%rsp)
movq 0x25a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x308(%rsp)
leaq 0x1028(%rsp), %rax
movq %rax, 0x22a0(%rsp)
movq 0x22a0(%rsp), %rax
movq %rax, 0x3930(%rsp)
movq 0x3930(%rsp), %rax
movq %rax, 0x310(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12af229
movq 0x310(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x392c(%rsp) # imm = 0xFFFFFFFF
movl 0x392c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3928(%rsp)
cmpl $0x1, 0x3928(%rsp)
jne 0x12af229
movq 0x310(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12af1fa
movq 0x310(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12af1f8
jmp 0x12af227
movq 0x310(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e48(%rsp)
cmpq $0x0, 0x3e48(%rsp)
je 0x12af225
movq 0x3e48(%rsp), %rdi
callq 0x5f480
jmp 0x12af227
jmp 0x12af229
movq 0x310(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12af284
movq %rax, %rdi
callq 0x678a0
movq 0x308(%rsp), %rax
movq %rax, 0x1070(%rsp)
movl $0x0, 0x1024(%rsp)
movl 0x1024(%rsp), %eax
cmpl 0x1c74(%rsp), %eax
jge 0x12af3da
movq 0x1110(%rsp), %rax
movl 0x1024(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2698(%rsp)
movq 0x2698(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1010(%rsp)
movl $0x0, 0x100c(%rsp)
movl 0x100c(%rsp), %eax
cmpl 0x1c78(%rsp), %eax
jge 0x12af3c2
movq 0x10c0(%rsp), %rax
movq %rax, 0x2690(%rsp)
movq 0x2690(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xff0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x1010(%rsp), %rsi
leaq 0xff0(%rsp), %rdx
callq 0x12f6bf0
movaps %xmm0, 0xfe0(%rsp)
movq 0x1070(%rsp), %rax
movaps 0xfe0(%rsp), %xmm0
movq %rax, 0x2868(%rsp)
movaps %xmm0, 0x2850(%rsp)
movaps 0x2850(%rsp), %xmm0
movq 0x2868(%rsp), %rax
movups %xmm0, (%rax)
movq 0x10c0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x10c0(%rsp)
movq 0x1070(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1070(%rsp)
movl 0x100c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x100c(%rsp)
jmp 0x12af2f5
jmp 0x12af3c4
movl 0x1024(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1024(%rsp)
jmp 0x12af29f
jmp 0x12af3dc
movl 0x111c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x111c(%rsp)
jmp 0x12ae599
movl $0x0, 0x1cc4(%rsp)
jmp 0x12b4d30
movl 0x1c78(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jne 0x12b037a
cmpl $0x1, 0x1c74(%rsp)
je 0x12b037a
cmpl $0x1, 0x1c94(%rsp)
jne 0x12b037a
movl 0x1c6c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jne 0x12b037a
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c6c(%rsp), %ecx
movq 0x1c60(%rsp), %r8
movl 0x1c5c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d10(%rsp)
movq 0x1d10(%rsp), %rcx
movq %rcx, 0x2f8(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x307(%rsp)
je 0x12af4e9
movq 0x2f8(%rsp), %rax
movq %rax, 0x2a68(%rsp)
movq 0x2a68(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x307(%rsp)
movb 0x307(%rsp), %al
testb $0x1, %al
jne 0x12af4f6
jmp 0x12af506
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12b4d30
movl $0x0, 0xfdc(%rsp)
movl 0xfdc(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12b036a
movq 0x1cb8(%rsp), %rcx
movl 0xfdc(%rsp), %eax
leaq 0xf88(%rsp), %rdx
movq %rdx, 0x1e18(%rsp)
movq %rcx, 0x1e10(%rsp)
movl %eax, 0x1e0c(%rsp)
movq 0x1e10(%rsp), %rax
movq %rax, 0x2f0(%rsp)
movb $0x0, 0x1e0b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e0c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xf88(%rsp), %r10
movq %r10, 0x32c8(%rsp)
movl %r9d, 0x32c4(%rsp)
movl %r8d, 0x32c0(%rsp)
movl %edi, 0x32bc(%rsp)
movq %rsi, 0x32b0(%rsp)
movq %rdx, 0x32a8(%rsp)
movl %ecx, 0x32a4(%rsp)
movq %rax, 0x3298(%rsp)
movq 0x32c8(%rsp), %rcx
movq %rcx, 0x2e8(%rsp)
movq 0x32b0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x32a8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x32a4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3298(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x32c4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x32c0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x32bc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x34d0(%rsp)
movl $0x10, 0x34cc(%rsp)
movq 0x34d0(%rsp), %rax
movslq 0x34cc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x34cc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2f0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xfb0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12af6e1
movq 0x2f0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xfc8(%rsp)
movb $0x1, 0x1e0b(%rsp)
testb $0x1, 0x1e0b(%rsp)
jne 0x12af81c
leaq 0xf88(%rsp), %rax
movq %rax, 0x2180(%rsp)
movq 0x2180(%rsp), %rax
movq %rax, 0x3b70(%rsp)
movq 0x3b70(%rsp), %rax
movq %rax, 0x2e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12af7bf
movq 0x2e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b6c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b6c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b68(%rsp)
cmpl $0x1, 0x3b68(%rsp)
jne 0x12af7bf
movq 0x2e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12af790
movq 0x2e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12af78e
jmp 0x12af7bd
movq 0x2e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d28(%rsp)
cmpq $0x0, 0x3d28(%rsp)
je 0x12af7bb
movq 0x3d28(%rsp), %rdi
callq 0x5f480
jmp 0x12af7bd
jmp 0x12af7bf
movq 0x2e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12af81a
movq %rax, %rdi
callq 0x678a0
jmp 0x12af81c
leaq 0xf88(%rsp), %rax
movq %rax, 0x2040(%rsp)
movq 0x2040(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2d0(%rsp)
leaq 0xf88(%rsp), %rax
movq %rax, 0x22a8(%rsp)
movq 0x22a8(%rsp), %rax
movq %rax, 0x3920(%rsp)
movq 0x3920(%rsp), %rax
movq %rax, 0x2d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12af907
movq 0x2d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x391c(%rsp) # imm = 0xFFFFFFFF
movl 0x391c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3918(%rsp)
cmpl $0x1, 0x3918(%rsp)
jne 0x12af907
movq 0x2d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12af8d8
movq 0x2d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12af8d6
jmp 0x12af905
movq 0x2d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e50(%rsp)
cmpq $0x0, 0x3e50(%rsp)
je 0x12af903
movq 0x3e50(%rsp), %rdi
callq 0x5f480
jmp 0x12af905
jmp 0x12af907
movq 0x2d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12af962
movq %rax, %rdi
callq 0x678a0
movq 0x2d0(%rsp), %rax
movq %rax, 0xfd0(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0xfdc(%rsp), %eax
leaq 0xf38(%rsp), %rdx
movq %rdx, 0x1e00(%rsp)
movq %rcx, 0x1df8(%rsp)
movl %eax, 0x1df4(%rsp)
movq 0x1df8(%rsp), %rax
movq %rax, 0x2c8(%rsp)
movb $0x0, 0x1df3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1df4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xf38(%rsp), %r10
movq %r10, 0x3300(%rsp)
movl %r9d, 0x32fc(%rsp)
movl %r8d, 0x32f8(%rsp)
movl %edi, 0x32f4(%rsp)
movq %rsi, 0x32e8(%rsp)
movq %rdx, 0x32e0(%rsp)
movl %ecx, 0x32dc(%rsp)
movq %rax, 0x32d0(%rsp)
movq 0x3300(%rsp), %rcx
movq %rcx, 0x2c0(%rsp)
movq 0x32e8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x32e0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x32dc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x32d0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x32fc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x32f8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x32f4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x34c0(%rsp)
movl $0x10, 0x34bc(%rsp)
movq 0x34c0(%rsp), %rax
movslq 0x34bc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x34bc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2c8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf60(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12afb2e
movq 0x2c8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xf78(%rsp)
movb $0x1, 0x1df3(%rsp)
testb $0x1, 0x1df3(%rsp)
jne 0x12afc69
leaq 0xf38(%rsp), %rax
movq %rax, 0x2188(%rsp)
movq 0x2188(%rsp), %rax
movq %rax, 0x3b60(%rsp)
movq 0x3b60(%rsp), %rax
movq %rax, 0x2b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12afc0c
movq 0x2b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b5c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b5c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b58(%rsp)
cmpl $0x1, 0x3b58(%rsp)
jne 0x12afc0c
movq 0x2b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12afbdd
movq 0x2b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12afbdb
jmp 0x12afc0a
movq 0x2b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d30(%rsp)
cmpq $0x0, 0x3d30(%rsp)
je 0x12afc08
movq 0x3d30(%rsp), %rdi
callq 0x5f480
jmp 0x12afc0a
jmp 0x12afc0c
movq 0x2b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12afc67
movq %rax, %rdi
callq 0x678a0
jmp 0x12afc69
leaq 0xf38(%rsp), %rax
movq %rax, 0x2038(%rsp)
movq 0x2038(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2a8(%rsp)
leaq 0xf38(%rsp), %rax
movq %rax, 0x22b0(%rsp)
movq 0x22b0(%rsp), %rax
movq %rax, 0x3910(%rsp)
movq 0x3910(%rsp), %rax
movq %rax, 0x2b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12afd54
movq 0x2b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x390c(%rsp) # imm = 0xFFFFFFFF
movl 0x390c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3908(%rsp)
cmpl $0x1, 0x3908(%rsp)
jne 0x12afd54
movq 0x2b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12afd25
movq 0x2b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12afd23
jmp 0x12afd52
movq 0x2b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e58(%rsp)
cmpq $0x0, 0x3e58(%rsp)
je 0x12afd50
movq 0x3e58(%rsp), %rdi
callq 0x5f480
jmp 0x12afd52
jmp 0x12afd54
movq 0x2b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12afdaf
movq %rax, %rdi
callq 0x678a0
movq 0x2a8(%rsp), %rax
movq %rax, 0xf80(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0xfdc(%rsp), %eax
leaq 0xee8(%rsp), %rdx
movq %rdx, 0x23f0(%rsp)
movq %rcx, 0x23e8(%rsp)
movl %eax, 0x23e4(%rsp)
movq 0x23e8(%rsp), %rax
movq %rax, 0x2a0(%rsp)
movb $0x0, 0x23e3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x23e4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xee8(%rsp), %r10
movq %r10, 0x2d50(%rsp)
movl %r9d, 0x2d4c(%rsp)
movl %r8d, 0x2d48(%rsp)
movl %edi, 0x2d44(%rsp)
movq %rsi, 0x2d38(%rsp)
movq %rdx, 0x2d30(%rsp)
movl %ecx, 0x2d2c(%rsp)
movq %rax, 0x2d20(%rsp)
movq 0x2d50(%rsp), %rcx
movq %rcx, 0x298(%rsp)
movq 0x2d38(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2d30(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2d2c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2d20(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2d4c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2d48(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2d44(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3660(%rsp)
movl $0x10, 0x365c(%rsp)
movq 0x3660(%rsp), %rax
movslq 0x365c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x365c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2a0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf10(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12aff7b
movq 0x2a0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xf28(%rsp)
movb $0x1, 0x23e3(%rsp)
testb $0x1, 0x23e3(%rsp)
jne 0x12b00b6
leaq 0xee8(%rsp), %rax
movq %rax, 0x23f8(%rsp)
movq 0x23f8(%rsp), %rax
movq %rax, 0x37d0(%rsp)
movq 0x37d0(%rsp), %rax
movq %rax, 0x290(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b0059
movq 0x290(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x37cc(%rsp) # imm = 0xFFFFFFFF
movl 0x37cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x37c8(%rsp)
cmpl $0x1, 0x37c8(%rsp)
jne 0x12b0059
movq 0x290(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b002a
movq 0x290(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b0028
jmp 0x12b0057
movq 0x290(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ef8(%rsp)
cmpq $0x0, 0x3ef8(%rsp)
je 0x12b0055
movq 0x3ef8(%rsp), %rdi
callq 0x5f480
jmp 0x12b0057
jmp 0x12b0059
movq 0x290(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b00b4
movq %rax, %rdi
callq 0x678a0
jmp 0x12b00b6
leaq 0xee8(%rsp), %rax
movq %rax, 0x25a0(%rsp)
movq 0x25a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x280(%rsp)
leaq 0xee8(%rsp), %rax
movq %rax, 0x22b8(%rsp)
movq 0x22b8(%rsp), %rax
movq %rax, 0x3900(%rsp)
movq 0x3900(%rsp), %rax
movq %rax, 0x288(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b01a1
movq 0x288(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x38fc(%rsp) # imm = 0xFFFFFFFF
movl 0x38fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x38f8(%rsp)
cmpl $0x1, 0x38f8(%rsp)
jne 0x12b01a1
movq 0x288(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b0172
movq 0x288(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b0170
jmp 0x12b019f
movq 0x288(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e60(%rsp)
cmpq $0x0, 0x3e60(%rsp)
je 0x12b019d
movq 0x3e60(%rsp), %rdi
callq 0x5f480
jmp 0x12b019f
jmp 0x12b01a1
movq 0x288(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b01fc
movq %rax, %rdi
callq 0x678a0
movq 0x280(%rsp), %rax
movq %rax, 0xf30(%rsp)
movl $0x0, 0xee4(%rsp)
movl 0xee4(%rsp), %eax
cmpl 0x1c74(%rsp), %eax
jge 0x12b0352
movl $0x0, 0xee0(%rsp)
movl 0xee0(%rsp), %eax
cmpl 0x1c78(%rsp), %eax
jge 0x12b033a
movq 0xfd0(%rsp), %rax
movl 0xee0(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2688(%rsp)
movq 0x2688(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xed0(%rsp)
movq 0xf80(%rsp), %rax
movq %rax, 0x2680(%rsp)
movq 0x2680(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xec0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0xed0(%rsp), %rsi
leaq 0xec0(%rsp), %rdx
callq 0x12f6bf0
movaps %xmm0, 0xeb0(%rsp)
movq 0xf30(%rsp), %rax
movaps 0xeb0(%rsp), %xmm0
movq %rax, 0x2848(%rsp)
movaps %xmm0, 0x2830(%rsp)
movaps 0x2830(%rsp), %xmm0
movq 0x2848(%rsp), %rax
movups %xmm0, (%rax)
movq 0xf80(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xf80(%rsp)
movq 0xf30(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xf30(%rsp)
movl 0xee0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xee0(%rsp)
jmp 0x12b0236
jmp 0x12b033c
movl 0xee4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xee4(%rsp)
jmp 0x12b0217
jmp 0x12b0354
movl 0xfdc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xfdc(%rsp)
jmp 0x12af511
movl $0x0, 0x1cc4(%rsp)
jmp 0x12b4d30
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12ed120
movl %eax, 0x1cc4(%rsp)
jmp 0x12b4d30
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movl 0x1c8c(%rsp), %ecx
movq 0x1c80(%rsp), %r8
movl 0x1c7c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d08(%rsp)
movq 0x1d08(%rsp), %rcx
movq %rcx, 0x270(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x27f(%rsp)
je 0x12b044e
movq 0x270(%rsp), %rax
movq %rax, 0x2a70(%rsp)
movq 0x2a70(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x27f(%rsp)
movb 0x27f(%rsp), %al
testb $0x1, %al
jne 0x12b045b
jmp 0x12b046b
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12b4d30
movq 0x1cb0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x12b0eeb
movl $0x0, 0xeac(%rsp)
movl 0xeac(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jge 0x12b0edb
movq 0x1cb8(%rsp), %rcx
movl 0xeac(%rsp), %eax
leaq 0xe58(%rsp), %rdx
movq %rdx, 0x1de8(%rsp)
movq %rcx, 0x1de0(%rsp)
movl %eax, 0x1ddc(%rsp)
movq 0x1de0(%rsp), %rax
movq %rax, 0x268(%rsp)
movb $0x0, 0x1ddb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1ddc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xe58(%rsp), %r10
movq %r10, 0x3338(%rsp)
movl %r9d, 0x3334(%rsp)
movl %r8d, 0x3330(%rsp)
movl %edi, 0x332c(%rsp)
movq %rsi, 0x3320(%rsp)
movq %rdx, 0x3318(%rsp)
movl %ecx, 0x3314(%rsp)
movq %rax, 0x3308(%rsp)
movq 0x3338(%rsp), %rcx
movq %rcx, 0x260(%rsp)
movq 0x3320(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3318(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3314(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3308(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3334(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3330(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x332c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x34b0(%rsp)
movl $0x10, 0x34ac(%rsp)
movq 0x34b0(%rsp), %rax
movslq 0x34ac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x34ac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x268(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xe80(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12b0658
movq 0x268(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xe98(%rsp)
movb $0x1, 0x1ddb(%rsp)
testb $0x1, 0x1ddb(%rsp)
jne 0x12b0793
leaq 0xe58(%rsp), %rax
movq %rax, 0x2190(%rsp)
movq 0x2190(%rsp), %rax
movq %rax, 0x3b50(%rsp)
movq 0x3b50(%rsp), %rax
movq %rax, 0x258(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b0736
movq 0x258(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b4c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b4c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b48(%rsp)
cmpl $0x1, 0x3b48(%rsp)
jne 0x12b0736
movq 0x258(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b0707
movq 0x258(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b0705
jmp 0x12b0734
movq 0x258(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d38(%rsp)
cmpq $0x0, 0x3d38(%rsp)
je 0x12b0732
movq 0x3d38(%rsp), %rdi
callq 0x5f480
jmp 0x12b0734
jmp 0x12b0736
movq 0x258(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b0791
movq %rax, %rdi
callq 0x678a0
jmp 0x12b0793
leaq 0xe58(%rsp), %rax
movq %rax, 0x2030(%rsp)
movq 0x2030(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x248(%rsp)
leaq 0xe58(%rsp), %rax
movq %rax, 0x22c0(%rsp)
movq 0x22c0(%rsp), %rax
movq %rax, 0x38f0(%rsp)
movq 0x38f0(%rsp), %rax
movq %rax, 0x250(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b087e
movq 0x250(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x38ec(%rsp) # imm = 0xFFFFFFFF
movl 0x38ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x38e8(%rsp)
cmpl $0x1, 0x38e8(%rsp)
jne 0x12b087e
movq 0x250(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b084f
movq 0x250(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b084d
jmp 0x12b087c
movq 0x250(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e68(%rsp)
cmpq $0x0, 0x3e68(%rsp)
je 0x12b087a
movq 0x3e68(%rsp), %rdi
callq 0x5f480
jmp 0x12b087c
jmp 0x12b087e
movq 0x250(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b08d9
movq %rax, %rdi
callq 0x678a0
movq 0x248(%rsp), %rax
movq %rax, 0xea0(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0xeac(%rsp), %eax
movq %rcx, 0x2a18(%rsp)
movl %eax, 0x2a14(%rsp)
movq 0x2a18(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2a14(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xe50(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0xeac(%rsp), %eax
leaq 0xe00(%rsp), %rdx
movq %rdx, 0x23d0(%rsp)
movq %rcx, 0x23c8(%rsp)
movl %eax, 0x23c4(%rsp)
movq 0x23c8(%rsp), %rax
movq %rax, 0x240(%rsp)
movb $0x0, 0x23c3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x23c4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xe00(%rsp), %r10
movq %r10, 0x2d88(%rsp)
movl %r9d, 0x2d84(%rsp)
movl %r8d, 0x2d80(%rsp)
movl %edi, 0x2d7c(%rsp)
movq %rsi, 0x2d70(%rsp)
movq %rdx, 0x2d68(%rsp)
movl %ecx, 0x2d64(%rsp)
movq %rax, 0x2d58(%rsp)
movq 0x2d88(%rsp), %rcx
movq %rcx, 0x238(%rsp)
movq 0x2d70(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2d68(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2d64(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2d58(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2d84(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2d80(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2d7c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3650(%rsp)
movl $0x10, 0x364c(%rsp)
movq 0x3650(%rsp), %rax
movslq 0x364c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x364c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x240(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xe28(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12b0aee
movq 0x240(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xe40(%rsp)
movb $0x1, 0x23c3(%rsp)
testb $0x1, 0x23c3(%rsp)
jne 0x12b0c29
leaq 0xe00(%rsp), %rax
movq %rax, 0x23d8(%rsp)
movq 0x23d8(%rsp), %rax
movq %rax, 0x37e0(%rsp)
movq 0x37e0(%rsp), %rax
movq %rax, 0x230(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b0bcc
movq 0x230(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x37dc(%rsp) # imm = 0xFFFFFFFF
movl 0x37dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x37d8(%rsp)
cmpl $0x1, 0x37d8(%rsp)
jne 0x12b0bcc
movq 0x230(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b0b9d
movq 0x230(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b0b9b
jmp 0x12b0bca
movq 0x230(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ef0(%rsp)
cmpq $0x0, 0x3ef0(%rsp)
je 0x12b0bc8
movq 0x3ef0(%rsp), %rdi
callq 0x5f480
jmp 0x12b0bca
jmp 0x12b0bcc
movq 0x230(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b0c27
movq %rax, %rdi
callq 0x678a0
jmp 0x12b0c29
leaq 0xe00(%rsp), %rax
movq %rax, 0x2598(%rsp)
movq 0x2598(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x220(%rsp)
leaq 0xe00(%rsp), %rax
movq %rax, 0x22c8(%rsp)
movq 0x22c8(%rsp), %rax
movq %rax, 0x38e0(%rsp)
movq 0x38e0(%rsp), %rax
movq %rax, 0x228(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b0d14
movq 0x228(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x38dc(%rsp) # imm = 0xFFFFFFFF
movl 0x38dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x38d8(%rsp)
cmpl $0x1, 0x38d8(%rsp)
jne 0x12b0d14
movq 0x228(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b0ce5
movq 0x228(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b0ce3
jmp 0x12b0d12
movq 0x228(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e70(%rsp)
cmpq $0x0, 0x3e70(%rsp)
je 0x12b0d10
movq 0x3e70(%rsp), %rdi
callq 0x5f480
jmp 0x12b0d12
jmp 0x12b0d14
movq 0x228(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b0d6f
movq %rax, %rdi
callq 0x678a0
movq 0x220(%rsp), %rax
movq %rax, 0xe48(%rsp)
movl $0x0, 0xdfc(%rsp)
movl 0xdfc(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jge 0x12b0ec3
movq 0xe50(%rsp), %rax
movq %rax, 0x2678(%rsp)
movq 0x2678(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xde0(%rsp)
movl $0x0, 0xddc(%rsp)
movl 0xddc(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jge 0x12b0e99
movq 0xea0(%rsp), %rax
movq %rax, 0x2670(%rsp)
movq 0x2670(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xdc0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0xdc0(%rsp), %rsi
leaq 0xde0(%rsp), %rdx
callq 0x12f6bf0
movaps %xmm0, 0xdb0(%rsp)
movq 0xe48(%rsp), %rax
movaps 0xdb0(%rsp), %xmm0
movq %rax, 0x2828(%rsp)
movaps %xmm0, 0x2810(%rsp)
movaps 0x2810(%rsp), %xmm0
movq 0x2828(%rsp), %rax
movups %xmm0, (%rax)
movq 0xea0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xea0(%rsp)
movq 0xe48(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xe48(%rsp)
movl 0xddc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xddc(%rsp)
jmp 0x12b0dcc
movq 0xe50(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xe50(%rsp)
movl 0xdfc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdfc(%rsp)
jmp 0x12b0d8a
jmp 0x12b0ec5
movl 0xeac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xeac(%rsp)
jmp 0x12b0488
movl $0x0, 0x1cc4(%rsp)
jmp 0x12b4d30
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x12b1949
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x12b0f46
cmpl $0x1, 0x1c5c(%rsp)
jne 0x12b0f46
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12ee0a0
movl %eax, 0x1cc4(%rsp)
jmp 0x12b4d30
movl $0x0, 0xdac(%rsp)
movl 0xdac(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jge 0x12b1939
movq 0x1cb8(%rsp), %rcx
movl 0xdac(%rsp), %eax
leaq 0xd58(%rsp), %rdx
movq %rdx, 0x1dd0(%rsp)
movq %rcx, 0x1dc8(%rsp)
movl %eax, 0x1dc4(%rsp)
movq 0x1dc8(%rsp), %rax
movq %rax, 0x218(%rsp)
movb $0x0, 0x1dc3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1dc4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xd58(%rsp), %r10
movq %r10, 0x3370(%rsp)
movl %r9d, 0x336c(%rsp)
movl %r8d, 0x3368(%rsp)
movl %edi, 0x3364(%rsp)
movq %rsi, 0x3358(%rsp)
movq %rdx, 0x3350(%rsp)
movl %ecx, 0x334c(%rsp)
movq %rax, 0x3340(%rsp)
movq 0x3370(%rsp), %rcx
movq %rcx, 0x210(%rsp)
movq 0x3358(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3350(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x334c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3340(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x336c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3368(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3364(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x34a0(%rsp)
movl $0x10, 0x349c(%rsp)
movq 0x34a0(%rsp), %rax
movslq 0x349c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x349c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x218(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xd80(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12b1121
movq 0x218(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd98(%rsp)
movb $0x1, 0x1dc3(%rsp)
testb $0x1, 0x1dc3(%rsp)
jne 0x12b125c
leaq 0xd58(%rsp), %rax
movq %rax, 0x2198(%rsp)
movq 0x2198(%rsp), %rax
movq %rax, 0x3b40(%rsp)
movq 0x3b40(%rsp), %rax
movq %rax, 0x208(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b11ff
movq 0x208(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b3c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b3c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b38(%rsp)
cmpl $0x1, 0x3b38(%rsp)
jne 0x12b11ff
movq 0x208(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b11d0
movq 0x208(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b11ce
jmp 0x12b11fd
movq 0x208(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d40(%rsp)
cmpq $0x0, 0x3d40(%rsp)
je 0x12b11fb
movq 0x3d40(%rsp), %rdi
callq 0x5f480
jmp 0x12b11fd
jmp 0x12b11ff
movq 0x208(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b125a
movq %rax, %rdi
callq 0x678a0
jmp 0x12b125c
leaq 0xd58(%rsp), %rax
movq %rax, 0x2028(%rsp)
movq 0x2028(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1f8(%rsp)
leaq 0xd58(%rsp), %rax
movq %rax, 0x22d0(%rsp)
movq 0x22d0(%rsp), %rax
movq %rax, 0x38d0(%rsp)
movq 0x38d0(%rsp), %rax
movq %rax, 0x200(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b1347
movq 0x200(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x38cc(%rsp) # imm = 0xFFFFFFFF
movl 0x38cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x38c8(%rsp)
cmpl $0x1, 0x38c8(%rsp)
jne 0x12b1347
movq 0x200(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b1318
movq 0x200(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b1316
jmp 0x12b1345
movq 0x200(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e78(%rsp)
cmpq $0x0, 0x3e78(%rsp)
je 0x12b1343
movq 0x3e78(%rsp), %rdi
callq 0x5f480
jmp 0x12b1345
jmp 0x12b1347
movq 0x200(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b13a2
movq %rax, %rdi
callq 0x678a0
movq 0x1f8(%rsp), %rax
movq %rax, 0xda0(%rsp)
movq 0x1cb0(%rsp), %rax
movq %rax, 0x2020(%rsp)
movq 0x2020(%rsp), %rax
movq (%rax), %rax
movl 0xdac(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2668(%rsp)
movq 0x2668(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xd40(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0xdac(%rsp), %eax
leaq 0xcf0(%rsp), %rdx
movq %rdx, 0x23b0(%rsp)
movq %rcx, 0x23a8(%rsp)
movl %eax, 0x23a4(%rsp)
movq 0x23a8(%rsp), %rax
movq %rax, 0x1f0(%rsp)
movb $0x0, 0x23a3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x23a4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xcf0(%rsp), %r10
movq %r10, 0x2dc0(%rsp)
movl %r9d, 0x2dbc(%rsp)
movl %r8d, 0x2db8(%rsp)
movl %edi, 0x2db4(%rsp)
movq %rsi, 0x2da8(%rsp)
movq %rdx, 0x2da0(%rsp)
movl %ecx, 0x2d9c(%rsp)
movq %rax, 0x2d90(%rsp)
movq 0x2dc0(%rsp), %rcx
movq %rcx, 0x1e8(%rsp)
movq 0x2da8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2da0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2d9c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2d90(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2dbc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2db8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2db4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3640(%rsp)
movl $0x10, 0x363c(%rsp)
movq 0x3640(%rsp), %rax
movslq 0x363c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x363c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x1f0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xd18(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12b15b8
movq 0x1f0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd30(%rsp)
movb $0x1, 0x23a3(%rsp)
testb $0x1, 0x23a3(%rsp)
jne 0x12b16f3
leaq 0xcf0(%rsp), %rax
movq %rax, 0x23b8(%rsp)
movq 0x23b8(%rsp), %rax
movq %rax, 0x37f0(%rsp)
movq 0x37f0(%rsp), %rax
movq %rax, 0x1e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b1696
movq 0x1e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x37ec(%rsp) # imm = 0xFFFFFFFF
movl 0x37ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x37e8(%rsp)
cmpl $0x1, 0x37e8(%rsp)
jne 0x12b1696
movq 0x1e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b1667
movq 0x1e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b1665
jmp 0x12b1694
movq 0x1e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ee8(%rsp)
cmpq $0x0, 0x3ee8(%rsp)
je 0x12b1692
movq 0x3ee8(%rsp), %rdi
callq 0x5f480
jmp 0x12b1694
jmp 0x12b1696
movq 0x1e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b16f1
movq %rax, %rdi
callq 0x678a0
jmp 0x12b16f3
leaq 0xcf0(%rsp), %rax
movq %rax, 0x2590(%rsp)
movq 0x2590(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1d0(%rsp)
leaq 0xcf0(%rsp), %rax
movq %rax, 0x22d8(%rsp)
movq 0x22d8(%rsp), %rax
movq %rax, 0x38c0(%rsp)
movq 0x38c0(%rsp), %rax
movq %rax, 0x1d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b17de
movq 0x1d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x38bc(%rsp) # imm = 0xFFFFFFFF
movl 0x38bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x38b8(%rsp)
cmpl $0x1, 0x38b8(%rsp)
jne 0x12b17de
movq 0x1d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b17af
movq 0x1d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b17ad
jmp 0x12b17dc
movq 0x1d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e80(%rsp)
cmpq $0x0, 0x3e80(%rsp)
je 0x12b17da
movq 0x3e80(%rsp), %rdi
callq 0x5f480
jmp 0x12b17dc
jmp 0x12b17de
movq 0x1d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b1839
movq %rax, %rdi
callq 0x678a0
movq 0x1d0(%rsp), %rax
movq %rax, 0xd38(%rsp)
movl $0x0, 0xcec(%rsp)
movl 0xcec(%rsp), %eax
cmpl 0x1c88(%rsp), %eax
jge 0x12b1921
movq 0xda0(%rsp), %rax
movq %rax, 0x2660(%rsp)
movq 0x2660(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xcd0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0xcd0(%rsp), %rsi
leaq 0xd40(%rsp), %rdx
callq 0x12f6bf0
movaps %xmm0, 0xcc0(%rsp)
movq 0xd38(%rsp), %rax
movaps 0xcc0(%rsp), %xmm0
movq %rax, 0x2808(%rsp)
movaps %xmm0, 0x27f0(%rsp)
movaps 0x27f0(%rsp), %xmm0
movq 0x2808(%rsp), %rax
movups %xmm0, (%rax)
movq 0xda0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xda0(%rsp)
movq 0xd38(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xd38(%rsp)
movl 0xcec(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xcec(%rsp)
jmp 0x12b1854
jmp 0x12b1923
movl 0xdac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdac(%rsp)
jmp 0x12b0f51
movl $0x0, 0x1cc4(%rsp)
jmp 0x12b4d30
jmp 0x12b4d23
movq 0x1cb8(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x12b33ea
movq 0x1cb0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x12b24e4
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c70(%rsp), %ecx
movl 0x1c6c(%rsp), %r8d
movq 0x1c60(%rsp), %r9
movl 0x1c5c(%rsp), %r10d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d00(%rsp)
movq 0x1d00(%rsp), %rcx
movq %rcx, 0x1c0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1cf(%rsp)
je 0x12b1a22
movq 0x1c0(%rsp), %rax
movq %rax, 0x2a78(%rsp)
movq 0x2a78(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1cf(%rsp)
movb 0x1cf(%rsp), %al
testb $0x1, %al
jne 0x12b1a2f
jmp 0x12b1a3f
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12b4d30
movl $0x0, 0xcbc(%rsp)
movl 0xcbc(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12b24d4
movq 0x1cb8(%rsp), %rcx
movl 0xcbc(%rsp), %eax
movq %rcx, 0x29b8(%rsp)
movl %eax, 0x29b4(%rsp)
movq 0x29b8(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x29b4(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xcb0(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0xcbc(%rsp), %eax
leaq 0xc60(%rsp), %rdx
movq %rdx, 0x1db8(%rsp)
movq %rcx, 0x1db0(%rsp)
movl %eax, 0x1dac(%rsp)
movq 0x1db0(%rsp), %rax
movq %rax, 0x1b8(%rsp)
movb $0x0, 0x1dab(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1dac(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xc60(%rsp), %r10
movq %r10, 0x33a8(%rsp)
movl %r9d, 0x33a4(%rsp)
movl %r8d, 0x33a0(%rsp)
movl %edi, 0x339c(%rsp)
movq %rsi, 0x3390(%rsp)
movq %rdx, 0x3388(%rsp)
movl %ecx, 0x3384(%rsp)
movq %rax, 0x3378(%rsp)
movq 0x33a8(%rsp), %rcx
movq %rcx, 0x1b0(%rsp)
movq 0x3390(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3388(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3384(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3378(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x33a4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x33a0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x339c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3490(%rsp)
movl $0x10, 0x348c(%rsp)
movq 0x3490(%rsp), %rax
movslq 0x348c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x348c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x1b8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc88(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12b1c63
movq 0x1b8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xca0(%rsp)
movb $0x1, 0x1dab(%rsp)
testb $0x1, 0x1dab(%rsp)
jne 0x12b1d9e
leaq 0xc60(%rsp), %rax
movq %rax, 0x21a0(%rsp)
movq 0x21a0(%rsp), %rax
movq %rax, 0x3b30(%rsp)
movq 0x3b30(%rsp), %rax
movq %rax, 0x1a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b1d41
movq 0x1a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b2c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b2c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b28(%rsp)
cmpl $0x1, 0x3b28(%rsp)
jne 0x12b1d41
movq 0x1a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b1d12
movq 0x1a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b1d10
jmp 0x12b1d3f
movq 0x1a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d48(%rsp)
cmpq $0x0, 0x3d48(%rsp)
je 0x12b1d3d
movq 0x3d48(%rsp), %rdi
callq 0x5f480
jmp 0x12b1d3f
jmp 0x12b1d41
movq 0x1a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b1d9c
movq %rax, %rdi
callq 0x678a0
jmp 0x12b1d9e
leaq 0xc60(%rsp), %rax
movq %rax, 0x2018(%rsp)
movq 0x2018(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x198(%rsp)
leaq 0xc60(%rsp), %rax
movq %rax, 0x22e0(%rsp)
movq 0x22e0(%rsp), %rax
movq %rax, 0x38b0(%rsp)
movq 0x38b0(%rsp), %rax
movq %rax, 0x1a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b1e89
movq 0x1a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x38ac(%rsp) # imm = 0xFFFFFFFF
movl 0x38ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x38a8(%rsp)
cmpl $0x1, 0x38a8(%rsp)
jne 0x12b1e89
movq 0x1a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b1e5a
movq 0x1a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b1e58
jmp 0x12b1e87
movq 0x1a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e88(%rsp)
cmpq $0x0, 0x3e88(%rsp)
je 0x12b1e85
movq 0x3e88(%rsp), %rdi
callq 0x5f480
jmp 0x12b1e87
jmp 0x12b1e89
movq 0x1a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b1ee4
movq %rax, %rdi
callq 0x678a0
movq 0x198(%rsp), %rax
movq %rax, 0xca8(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0xcbc(%rsp), %eax
leaq 0xc10(%rsp), %rdx
movq %rdx, 0x2390(%rsp)
movq %rcx, 0x2388(%rsp)
movl %eax, 0x2384(%rsp)
movq 0x2388(%rsp), %rax
movq %rax, 0x190(%rsp)
movb $0x0, 0x2383(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2384(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xc10(%rsp), %r10
movq %r10, 0x2df8(%rsp)
movl %r9d, 0x2df4(%rsp)
movl %r8d, 0x2df0(%rsp)
movl %edi, 0x2dec(%rsp)
movq %rsi, 0x2de0(%rsp)
movq %rdx, 0x2dd8(%rsp)
movl %ecx, 0x2dd4(%rsp)
movq %rax, 0x2dc8(%rsp)
movq 0x2df8(%rsp), %rcx
movq %rcx, 0x188(%rsp)
movq 0x2de0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2dd8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2dd4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2dc8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2df4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2df0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2dec(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3630(%rsp)
movl $0x10, 0x362c(%rsp)
movq 0x3630(%rsp), %rax
movslq 0x362c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x362c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x190(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc38(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12b20b0
movq 0x190(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xc50(%rsp)
movb $0x1, 0x2383(%rsp)
testb $0x1, 0x2383(%rsp)
jne 0x12b21eb
leaq 0xc10(%rsp), %rax
movq %rax, 0x2398(%rsp)
movq 0x2398(%rsp), %rax
movq %rax, 0x3800(%rsp)
movq 0x3800(%rsp), %rax
movq %rax, 0x180(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b218e
movq 0x180(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x37fc(%rsp) # imm = 0xFFFFFFFF
movl 0x37fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x37f8(%rsp)
cmpl $0x1, 0x37f8(%rsp)
jne 0x12b218e
movq 0x180(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b215f
movq 0x180(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b215d
jmp 0x12b218c
movq 0x180(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ee0(%rsp)
cmpq $0x0, 0x3ee0(%rsp)
je 0x12b218a
movq 0x3ee0(%rsp), %rdi
callq 0x5f480
jmp 0x12b218c
jmp 0x12b218e
movq 0x180(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b21e9
movq %rax, %rdi
callq 0x678a0
jmp 0x12b21eb
leaq 0xc10(%rsp), %rax
movq %rax, 0x2588(%rsp)
movq 0x2588(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x170(%rsp)
leaq 0xc10(%rsp), %rax
movq %rax, 0x22e8(%rsp)
movq 0x22e8(%rsp), %rax
movq %rax, 0x38a0(%rsp)
movq 0x38a0(%rsp), %rax
movq %rax, 0x178(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b22d6
movq 0x178(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x389c(%rsp) # imm = 0xFFFFFFFF
movl 0x389c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3898(%rsp)
cmpl $0x1, 0x3898(%rsp)
jne 0x12b22d6
movq 0x178(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b22a7
movq 0x178(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b22a5
jmp 0x12b22d4
movq 0x178(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e90(%rsp)
cmpq $0x0, 0x3e90(%rsp)
je 0x12b22d2
movq 0x3e90(%rsp), %rdi
callq 0x5f480
jmp 0x12b22d4
jmp 0x12b22d6
movq 0x178(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b2331
movq %rax, %rdi
callq 0x678a0
movq 0x170(%rsp), %rax
movq %rax, 0xc58(%rsp)
movl $0x0, 0xc0c(%rsp)
movl 0xc0c(%rsp), %eax
cmpl 0x1c70(%rsp), %eax
jge 0x12b24bc
movq 0xcb0(%rsp), %rax
movq %rax, 0x2658(%rsp)
movq 0x2658(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xbf0(%rsp)
movl $0x0, 0xbec(%rsp)
movl 0xbec(%rsp), %eax
cmpl 0x1c74(%rsp), %eax
jge 0x12b2492
movl $0x0, 0xbe8(%rsp)
movl 0xbe8(%rsp), %eax
cmpl 0x1c78(%rsp), %eax
jge 0x12b247a
movq 0xca8(%rsp), %rax
movq %rax, 0x2650(%rsp)
movq 0x2650(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xbd0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0xbf0(%rsp), %rsi
leaq 0xbd0(%rsp), %rdx
callq 0x12f6bf0
movaps %xmm0, 0xbc0(%rsp)
movq 0xc58(%rsp), %rax
movaps 0xbc0(%rsp), %xmm0
movq %rax, 0x27e8(%rsp)
movaps %xmm0, 0x27d0(%rsp)
movaps 0x27d0(%rsp), %xmm0
movq 0x27e8(%rsp), %rax
movups %xmm0, (%rax)
movq 0xca8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xca8(%rsp)
movq 0xc58(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xc58(%rsp)
movl 0xbe8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xbe8(%rsp)
jmp 0x12b23ad
jmp 0x12b247c
movl 0xbec(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xbec(%rsp)
jmp 0x12b238e
movq 0xcb0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xcb0(%rsp)
movl 0xc0c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xc0c(%rsp)
jmp 0x12b234c
jmp 0x12b24be
movl 0xcbc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xcbc(%rsp)
jmp 0x12b1a4a
movl $0x0, 0x1cc4(%rsp)
jmp 0x12b4d30
movq 0x1cb0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x12b3024
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c6c(%rsp), %ecx
movq 0x1c60(%rsp), %r8
movl 0x1c5c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1cf8(%rsp)
movq 0x1cf8(%rsp), %rcx
movq %rcx, 0x160(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x16f(%rsp)
je 0x12b2599
movq 0x160(%rsp), %rax
movq %rax, 0x2a80(%rsp)
movq 0x2a80(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x16f(%rsp)
movb 0x16f(%rsp), %al
testb $0x1, %al
jne 0x12b25a6
jmp 0x12b25b6
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12b4d30
movl $0x0, 0xbbc(%rsp)
movl 0xbbc(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12b3014
movq 0x1cb8(%rsp), %rcx
movl 0xbbc(%rsp), %eax
movq %rcx, 0x2a08(%rsp)
movl %eax, 0x2a04(%rsp)
movq 0x2a08(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2a04(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xbb0(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0xbbc(%rsp), %eax
leaq 0xb60(%rsp), %rdx
movq %rdx, 0x1da0(%rsp)
movq %rcx, 0x1d98(%rsp)
movl %eax, 0x1d94(%rsp)
movq 0x1d98(%rsp), %rax
movq %rax, 0x158(%rsp)
movb $0x0, 0x1d93(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1d94(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xb60(%rsp), %r10
movq %r10, 0x33e0(%rsp)
movl %r9d, 0x33dc(%rsp)
movl %r8d, 0x33d8(%rsp)
movl %edi, 0x33d4(%rsp)
movq %rsi, 0x33c8(%rsp)
movq %rdx, 0x33c0(%rsp)
movl %ecx, 0x33bc(%rsp)
movq %rax, 0x33b0(%rsp)
movq 0x33e0(%rsp), %rcx
movq %rcx, 0x150(%rsp)
movq 0x33c8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x33c0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x33bc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x33b0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x33dc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x33d8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x33d4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3480(%rsp)
movl $0x10, 0x347c(%rsp)
movq 0x3480(%rsp), %rax
movslq 0x347c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x347c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x158(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xb88(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12b27da
movq 0x158(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xba0(%rsp)
movb $0x1, 0x1d93(%rsp)
testb $0x1, 0x1d93(%rsp)
jne 0x12b2915
leaq 0xb60(%rsp), %rax
movq %rax, 0x21a8(%rsp)
movq 0x21a8(%rsp), %rax
movq %rax, 0x3b20(%rsp)
movq 0x3b20(%rsp), %rax
movq %rax, 0x148(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b28b8
movq 0x148(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b1c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b1c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b18(%rsp)
cmpl $0x1, 0x3b18(%rsp)
jne 0x12b28b8
movq 0x148(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b2889
movq 0x148(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b2887
jmp 0x12b28b6
movq 0x148(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d50(%rsp)
cmpq $0x0, 0x3d50(%rsp)
je 0x12b28b4
movq 0x3d50(%rsp), %rdi
callq 0x5f480
jmp 0x12b28b6
jmp 0x12b28b8
movq 0x148(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b2913
movq %rax, %rdi
callq 0x678a0
jmp 0x12b2915
leaq 0xb60(%rsp), %rax
movq %rax, 0x2010(%rsp)
movq 0x2010(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x138(%rsp)
leaq 0xb60(%rsp), %rax
movq %rax, 0x22f0(%rsp)
movq 0x22f0(%rsp), %rax
movq %rax, 0x3890(%rsp)
movq 0x3890(%rsp), %rax
movq %rax, 0x140(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b2a00
movq 0x140(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x388c(%rsp) # imm = 0xFFFFFFFF
movl 0x388c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3888(%rsp)
cmpl $0x1, 0x3888(%rsp)
jne 0x12b2a00
movq 0x140(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b29d1
movq 0x140(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b29cf
jmp 0x12b29fe
movq 0x140(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e98(%rsp)
cmpq $0x0, 0x3e98(%rsp)
je 0x12b29fc
movq 0x3e98(%rsp), %rdi
callq 0x5f480
jmp 0x12b29fe
jmp 0x12b2a00
movq 0x140(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b2a5b
movq %rax, %rdi
callq 0x678a0
movq 0x138(%rsp), %rax
movq %rax, 0xba8(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0xbbc(%rsp), %eax
leaq 0xb10(%rsp), %rdx
movq %rdx, 0x2370(%rsp)
movq %rcx, 0x2368(%rsp)
movl %eax, 0x2364(%rsp)
movq 0x2368(%rsp), %rax
movq %rax, 0x130(%rsp)
movb $0x0, 0x2363(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2364(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xb10(%rsp), %r10
movq %r10, 0x2e30(%rsp)
movl %r9d, 0x2e2c(%rsp)
movl %r8d, 0x2e28(%rsp)
movl %edi, 0x2e24(%rsp)
movq %rsi, 0x2e18(%rsp)
movq %rdx, 0x2e10(%rsp)
movl %ecx, 0x2e0c(%rsp)
movq %rax, 0x2e00(%rsp)
movq 0x2e30(%rsp), %rcx
movq %rcx, 0x128(%rsp)
movq 0x2e18(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2e10(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2e0c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2e00(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2e2c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2e28(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2e24(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3620(%rsp)
movl $0x10, 0x361c(%rsp)
movq 0x3620(%rsp), %rax
movslq 0x361c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x361c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x130(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xb38(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12b2c27
movq 0x130(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xb50(%rsp)
movb $0x1, 0x2363(%rsp)
testb $0x1, 0x2363(%rsp)
jne 0x12b2d62
leaq 0xb10(%rsp), %rax
movq %rax, 0x2378(%rsp)
movq 0x2378(%rsp), %rax
movq %rax, 0x3810(%rsp)
movq 0x3810(%rsp), %rax
movq %rax, 0x120(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b2d05
movq 0x120(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x380c(%rsp) # imm = 0xFFFFFFFF
movl 0x380c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3808(%rsp)
cmpl $0x1, 0x3808(%rsp)
jne 0x12b2d05
movq 0x120(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b2cd6
movq 0x120(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b2cd4
jmp 0x12b2d03
movq 0x120(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ed8(%rsp)
cmpq $0x0, 0x3ed8(%rsp)
je 0x12b2d01
movq 0x3ed8(%rsp), %rdi
callq 0x5f480
jmp 0x12b2d03
jmp 0x12b2d05
movq 0x120(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b2d60
movq %rax, %rdi
callq 0x678a0
jmp 0x12b2d62
leaq 0xb10(%rsp), %rax
movq %rax, 0x2580(%rsp)
movq 0x2580(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x110(%rsp)
leaq 0xb10(%rsp), %rax
movq %rax, 0x22f8(%rsp)
movq 0x22f8(%rsp), %rax
movq %rax, 0x3880(%rsp)
movq 0x3880(%rsp), %rax
movq %rax, 0x118(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b2e4d
movq 0x118(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x387c(%rsp) # imm = 0xFFFFFFFF
movl 0x387c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3878(%rsp)
cmpl $0x1, 0x3878(%rsp)
jne 0x12b2e4d
movq 0x118(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b2e1e
movq 0x118(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b2e1c
jmp 0x12b2e4b
movq 0x118(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ea0(%rsp)
cmpq $0x0, 0x3ea0(%rsp)
je 0x12b2e49
movq 0x3ea0(%rsp), %rdi
callq 0x5f480
jmp 0x12b2e4b
jmp 0x12b2e4d
movq 0x118(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b2ea8
movq %rax, %rdi
callq 0x678a0
movq 0x110(%rsp), %rax
movq %rax, 0xb58(%rsp)
movl $0x0, 0xb0c(%rsp)
movl 0xb0c(%rsp), %eax
cmpl 0x1c74(%rsp), %eax
jge 0x12b2ffc
movq 0xbb0(%rsp), %rax
movq %rax, 0x2648(%rsp)
movq 0x2648(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xaf0(%rsp)
movl $0x0, 0xaec(%rsp)
movl 0xaec(%rsp), %eax
cmpl 0x1c78(%rsp), %eax
jge 0x12b2fd2
movq 0xba8(%rsp), %rax
movq %rax, 0x2640(%rsp)
movq 0x2640(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xad0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0xaf0(%rsp), %rsi
leaq 0xad0(%rsp), %rdx
callq 0x12f6bf0
movaps %xmm0, 0xac0(%rsp)
movq 0xb58(%rsp), %rax
movaps 0xac0(%rsp), %xmm0
movq %rax, 0x27c8(%rsp)
movaps %xmm0, 0x27b0(%rsp)
movaps 0x27b0(%rsp), %xmm0
movq 0x27c8(%rsp), %rax
movups %xmm0, (%rax)
movq 0xba8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xba8(%rsp)
movq 0xb58(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xb58(%rsp)
movl 0xaec(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xaec(%rsp)
jmp 0x12b2f05
movq 0xbb0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xbb0(%rsp)
movl 0xb0c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xb0c(%rsp)
jmp 0x12b2ec3
jmp 0x12b2ffe
movl 0xbbc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xbbc(%rsp)
jmp 0x12b25c1
movl $0x0, 0x1cc4(%rsp)
jmp 0x12b4d30
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movq 0x1c80(%rsp), %rcx
movl 0x1c7c(%rsp), %r8d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1cf0(%rsp)
movq 0x1cf0(%rsp), %rcx
movq %rcx, 0x100(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x10f(%rsp)
je 0x12b30bc
movq 0x100(%rsp), %rax
movq %rax, 0x2a88(%rsp)
movq 0x2a88(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x10f(%rsp)
movb 0x10f(%rsp), %al
testb $0x1, %al
jne 0x12b30c9
jmp 0x12b30d9
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12b4d30
movq 0x1cb0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x12b3118
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12ed120
movl %eax, 0x1cc4(%rsp)
jmp 0x12b4d30
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x12b33e5
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movq 0x1c80(%rsp), %rcx
movl 0x1c7c(%rsp), %r8d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1ce8(%rsp)
movq 0x1ce8(%rsp), %rcx
movq %rcx, 0xf0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xff(%rsp)
je 0x12b31c2
movq 0xf0(%rsp), %rax
movq %rax, 0x2a90(%rsp)
movq 0x2a90(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xff(%rsp)
movb 0xff(%rsp), %al
testb $0x1, %al
jne 0x12b31cf
jmp 0x12b31df
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12b4d30
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x12b3228
cmpl $0x1, 0x1c5c(%rsp)
jne 0x12b3228
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12ee0a0
movl %eax, 0x1cc4(%rsp)
jmp 0x12b4d30
movq 0x1cb8(%rsp), %rax
movq %rax, 0x2008(%rsp)
movq 0x2008(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xab8(%rsp)
movq 0x1cb0(%rsp), %rax
movq %rax, 0x2000(%rsp)
movq 0x2000(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xab0(%rsp)
movq 0x1ca8(%rsp), %rax
movq %rax, 0x2578(%rsp)
movq 0x2578(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xaa8(%rsp)
movl $0x0, 0xaa4(%rsp)
movl 0xaa4(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jge 0x12b33d5
movq 0xab0(%rsp), %rax
movq %rax, 0x2638(%rsp)
movq 0x2638(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xa90(%rsp)
movl $0x0, 0xa8c(%rsp)
movl 0xa8c(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jge 0x12b33ab
movq 0xab8(%rsp), %rax
movq %rax, 0x2630(%rsp)
movq 0x2630(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xa70(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0xa70(%rsp), %rsi
leaq 0xa90(%rsp), %rdx
callq 0x12f6bf0
movaps %xmm0, 0xa60(%rsp)
movq 0xaa8(%rsp), %rax
movaps 0xa60(%rsp), %xmm0
movq %rax, 0x27a8(%rsp)
movaps %xmm0, 0x2790(%rsp)
movaps 0x2790(%rsp), %xmm0
movq 0x27a8(%rsp), %rax
movups %xmm0, (%rax)
movq 0xab8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xab8(%rsp)
movq 0xaa8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xaa8(%rsp)
movl 0xa8c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xa8c(%rsp)
jmp 0x12b32de
movq 0xab0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xab0(%rsp)
movl 0xaa4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xaa4(%rsp)
jmp 0x12b329c
movl $0x0, 0x1cc4(%rsp)
jmp 0x12b4d30
jmp 0x12b4d21
movq 0x1cb8(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x12b4d1f
movq 0x1cb8(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x12b3445
cmpl $0x1, 0x1c7c(%rsp)
jne 0x12b3445
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12eec10
movl %eax, 0x1cc4(%rsp)
jmp 0x12b4d30
movq 0x1cb0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x12b3f27
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c70(%rsp), %ecx
movl 0x1c6c(%rsp), %r8d
movq 0x1c60(%rsp), %r9
movl 0x1c5c(%rsp), %r10d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1ce0(%rsp)
movq 0x1ce0(%rsp), %rcx
movq %rcx, 0xe0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xef(%rsp)
je 0x12b3507
movq 0xe0(%rsp), %rax
movq %rax, 0x2a98(%rsp)
movq 0x2a98(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xef(%rsp)
movb 0xef(%rsp), %al
testb $0x1, %al
jne 0x12b3514
jmp 0x12b3524
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12b4d30
movl $0x0, 0xa5c(%rsp)
movl 0xa5c(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12b3f17
movq 0x1cb8(%rsp), %rax
movq %rax, 0x1ff8(%rsp)
movq 0x1ff8(%rsp), %rax
movq (%rax), %rax
movl 0xa5c(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2628(%rsp)
movq 0x2628(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xa40(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0xa5c(%rsp), %eax
leaq 0x9f0(%rsp), %rdx
movq %rdx, 0x1d88(%rsp)
movq %rcx, 0x1d80(%rsp)
movl %eax, 0x1d7c(%rsp)
movq 0x1d80(%rsp), %rax
movq %rax, 0xd8(%rsp)
movb $0x0, 0x1d7b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1d7c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x9f0(%rsp), %r10
movq %r10, 0x3418(%rsp)
movl %r9d, 0x3414(%rsp)
movl %r8d, 0x3410(%rsp)
movl %edi, 0x340c(%rsp)
movq %rsi, 0x3400(%rsp)
movq %rdx, 0x33f8(%rsp)
movl %ecx, 0x33f4(%rsp)
movq %rax, 0x33e8(%rsp)
movq 0x3418(%rsp), %rcx
movq %rcx, 0xd0(%rsp)
movq 0x3400(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x33f8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x33f4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x33e8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3414(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3410(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x340c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3470(%rsp)
movl $0x10, 0x346c(%rsp)
movq 0x3470(%rsp), %rax
movslq 0x346c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x346c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xd8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xa18(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12b3749
movq 0xd8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xa30(%rsp)
movb $0x1, 0x1d7b(%rsp)
testb $0x1, 0x1d7b(%rsp)
jne 0x12b3884
leaq 0x9f0(%rsp), %rax
movq %rax, 0x21b0(%rsp)
movq 0x21b0(%rsp), %rax
movq %rax, 0x3b10(%rsp)
movq 0x3b10(%rsp), %rax
movq %rax, 0xc8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b3827
movq 0xc8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b0c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b0c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b08(%rsp)
cmpl $0x1, 0x3b08(%rsp)
jne 0x12b3827
movq 0xc8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b37f8
movq 0xc8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b37f6
jmp 0x12b3825
movq 0xc8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d58(%rsp)
cmpq $0x0, 0x3d58(%rsp)
je 0x12b3823
movq 0x3d58(%rsp), %rdi
callq 0x5f480
jmp 0x12b3825
jmp 0x12b3827
movq 0xc8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b3882
movq %rax, %rdi
callq 0x678a0
jmp 0x12b3884
leaq 0x9f0(%rsp), %rax
movq %rax, 0x1ff0(%rsp)
movq 0x1ff0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xb8(%rsp)
leaq 0x9f0(%rsp), %rax
movq %rax, 0x2300(%rsp)
movq 0x2300(%rsp), %rax
movq %rax, 0x3870(%rsp)
movq 0x3870(%rsp), %rax
movq %rax, 0xc0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b396f
movq 0xc0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x386c(%rsp) # imm = 0xFFFFFFFF
movl 0x386c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3868(%rsp)
cmpl $0x1, 0x3868(%rsp)
jne 0x12b396f
movq 0xc0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b3940
movq 0xc0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b393e
jmp 0x12b396d
movq 0xc0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ea8(%rsp)
cmpq $0x0, 0x3ea8(%rsp)
je 0x12b396b
movq 0x3ea8(%rsp), %rdi
callq 0x5f480
jmp 0x12b396d
jmp 0x12b396f
movq 0xc0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b39ca
movq %rax, %rdi
callq 0x678a0
movq 0xb8(%rsp), %rax
movq %rax, 0xa38(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0xa5c(%rsp), %eax
leaq 0x9a0(%rsp), %rdx
movq %rdx, 0x2350(%rsp)
movq %rcx, 0x2348(%rsp)
movl %eax, 0x2344(%rsp)
movq 0x2348(%rsp), %rax
movq %rax, 0xb0(%rsp)
movb $0x0, 0x2343(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2344(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x9a0(%rsp), %r10
movq %r10, 0x2e68(%rsp)
movl %r9d, 0x2e64(%rsp)
movl %r8d, 0x2e60(%rsp)
movl %edi, 0x2e5c(%rsp)
movq %rsi, 0x2e50(%rsp)
movq %rdx, 0x2e48(%rsp)
movl %ecx, 0x2e44(%rsp)
movq %rax, 0x2e38(%rsp)
movq 0x2e68(%rsp), %rcx
movq %rcx, 0xa8(%rsp)
movq 0x2e50(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2e48(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2e44(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2e38(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2e64(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2e60(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2e5c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3610(%rsp)
movl $0x10, 0x360c(%rsp)
movq 0x3610(%rsp), %rax
movslq 0x360c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x360c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xb0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x9c8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12b3b96
movq 0xb0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x9e0(%rsp)
movb $0x1, 0x2343(%rsp)
testb $0x1, 0x2343(%rsp)
jne 0x12b3cd1
leaq 0x9a0(%rsp), %rax
movq %rax, 0x2358(%rsp)
movq 0x2358(%rsp), %rax
movq %rax, 0x3820(%rsp)
movq 0x3820(%rsp), %rax
movq %rax, 0xa0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b3c74
movq 0xa0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x381c(%rsp) # imm = 0xFFFFFFFF
movl 0x381c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3818(%rsp)
cmpl $0x1, 0x3818(%rsp)
jne 0x12b3c74
movq 0xa0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b3c45
movq 0xa0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b3c43
jmp 0x12b3c72
movq 0xa0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ed0(%rsp)
cmpq $0x0, 0x3ed0(%rsp)
je 0x12b3c70
movq 0x3ed0(%rsp), %rdi
callq 0x5f480
jmp 0x12b3c72
jmp 0x12b3c74
movq 0xa0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b3ccf
movq %rax, %rdi
callq 0x678a0
jmp 0x12b3cd1
leaq 0x9a0(%rsp), %rax
movq %rax, 0x2570(%rsp)
movq 0x2570(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x90(%rsp)
leaq 0x9a0(%rsp), %rax
movq %rax, 0x2308(%rsp)
movq 0x2308(%rsp), %rax
movq %rax, 0x3860(%rsp)
movq 0x3860(%rsp), %rax
movq %rax, 0x98(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b3dbc
movq 0x98(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x385c(%rsp) # imm = 0xFFFFFFFF
movl 0x385c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3858(%rsp)
cmpl $0x1, 0x3858(%rsp)
jne 0x12b3dbc
movq 0x98(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b3d8d
movq 0x98(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b3d8b
jmp 0x12b3dba
movq 0x98(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3eb0(%rsp)
cmpq $0x0, 0x3eb0(%rsp)
je 0x12b3db8
movq 0x3eb0(%rsp), %rdi
callq 0x5f480
jmp 0x12b3dba
jmp 0x12b3dbc
movq 0x98(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b3e17
movq %rax, %rdi
callq 0x678a0
movq 0x90(%rsp), %rax
movq %rax, 0x9e8(%rsp)
movl $0x0, 0x99c(%rsp)
movl 0x99c(%rsp), %eax
cmpl 0x1c68(%rsp), %eax
jge 0x12b3eff
movq 0xa38(%rsp), %rax
movq %rax, 0x2620(%rsp)
movq 0x2620(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x980(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0xa40(%rsp), %rsi
leaq 0x980(%rsp), %rdx
callq 0x12f6bf0
movaps %xmm0, 0x970(%rsp)
movq 0x9e8(%rsp), %rax
movaps 0x970(%rsp), %xmm0
movq %rax, 0x2788(%rsp)
movaps %xmm0, 0x2770(%rsp)
movaps 0x2770(%rsp), %xmm0
movq 0x2788(%rsp), %rax
movups %xmm0, (%rax)
movq 0xa38(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xa38(%rsp)
movq 0x9e8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x9e8(%rsp)
movl 0x99c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x99c(%rsp)
jmp 0x12b3e32
jmp 0x12b3f01
movl 0xa5c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xa5c(%rsp)
jmp 0x12b352f
movl $0x0, 0x1cc4(%rsp)
jmp 0x12b4d30
movq 0x1cb0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x12b4990
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c6c(%rsp), %ecx
movq 0x1c60(%rsp), %r8
movl 0x1c5c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1cd8(%rsp)
movq 0x1cd8(%rsp), %rcx
movq %rcx, 0x80(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x8f(%rsp)
je 0x12b3fdc
movq 0x80(%rsp), %rax
movq %rax, 0x2aa0(%rsp)
movq 0x2aa0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x8f(%rsp)
movb 0x8f(%rsp), %al
testb $0x1, %al
jne 0x12b3fe9
jmp 0x12b3ff9
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12b4d30
movl $0x0, 0x96c(%rsp)
movl 0x96c(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12b4980
movq 0x1cb8(%rsp), %rax
movq %rax, 0x1fe8(%rsp)
movq 0x1fe8(%rsp), %rax
movq (%rax), %rax
movl 0x96c(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2618(%rsp)
movq 0x2618(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x950(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x96c(%rsp), %eax
leaq 0x900(%rsp), %rdx
movq %rdx, 0x1d70(%rsp)
movq %rcx, 0x1d68(%rsp)
movl %eax, 0x1d64(%rsp)
movq 0x1d68(%rsp), %rax
movq %rax, 0x78(%rsp)
movb $0x0, 0x1d63(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1d64(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x900(%rsp), %r10
movq %r10, 0x3450(%rsp)
movl %r9d, 0x344c(%rsp)
movl %r8d, 0x3448(%rsp)
movl %edi, 0x3444(%rsp)
movq %rsi, 0x3438(%rsp)
movq %rdx, 0x3430(%rsp)
movl %ecx, 0x342c(%rsp)
movq %rax, 0x3420(%rsp)
movq 0x3450(%rsp), %rcx
movq %rcx, 0x70(%rsp)
movq 0x3438(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3430(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x342c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3420(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x344c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3448(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3444(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3460(%rsp)
movl $0x10, 0x345c(%rsp)
movq 0x3460(%rsp), %rax
movslq 0x345c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x345c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x78(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x928(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12b4212
movq 0x78(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x940(%rsp)
movb $0x1, 0x1d63(%rsp)
testb $0x1, 0x1d63(%rsp)
jne 0x12b433b
leaq 0x900(%rsp), %rax
movq %rax, 0x21b8(%rsp)
movq 0x21b8(%rsp), %rax
movq %rax, 0x3b00(%rsp)
movq 0x3b00(%rsp), %rax
movq %rax, 0x68(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b42e1
movq 0x68(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3afc(%rsp) # imm = 0xFFFFFFFF
movl 0x3afc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3af8(%rsp)
cmpl $0x1, 0x3af8(%rsp)
jne 0x12b42e1
movq 0x68(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b42b5
movq 0x68(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b42b3
jmp 0x12b42df
movq 0x68(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d60(%rsp)
cmpq $0x0, 0x3d60(%rsp)
je 0x12b42dd
movq 0x3d60(%rsp), %rdi
callq 0x5f480
jmp 0x12b42df
jmp 0x12b42e1
movq 0x68(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b4339
movq %rax, %rdi
callq 0x678a0
jmp 0x12b433b
leaq 0x900(%rsp), %rax
movq %rax, 0x1fe0(%rsp)
movq 0x1fe0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x58(%rsp)
leaq 0x900(%rsp), %rax
movq %rax, 0x2310(%rsp)
movq 0x2310(%rsp), %rax
movq %rax, 0x3850(%rsp)
movq 0x3850(%rsp), %rax
movq %rax, 0x60(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b4414
movq 0x60(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x384c(%rsp) # imm = 0xFFFFFFFF
movl 0x384c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3848(%rsp)
cmpl $0x1, 0x3848(%rsp)
jne 0x12b4414
movq 0x60(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b43e8
movq 0x60(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b43e6
jmp 0x12b4412
movq 0x60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3eb8(%rsp)
cmpq $0x0, 0x3eb8(%rsp)
je 0x12b4410
movq 0x3eb8(%rsp), %rdi
callq 0x5f480
jmp 0x12b4412
jmp 0x12b4414
movq 0x60(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b446c
movq %rax, %rdi
callq 0x678a0
movq 0x58(%rsp), %rax
movq %rax, 0x948(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x96c(%rsp), %eax
leaq 0x8b0(%rsp), %rdx
movq %rdx, 0x2330(%rsp)
movq %rcx, 0x2328(%rsp)
movl %eax, 0x2324(%rsp)
movq 0x2328(%rsp), %rax
movq %rax, 0x50(%rsp)
movb $0x0, 0x2323(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2324(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x8b0(%rsp), %r10
movq %r10, 0x2ea0(%rsp)
movl %r9d, 0x2e9c(%rsp)
movl %r8d, 0x2e98(%rsp)
movl %edi, 0x2e94(%rsp)
movq %rsi, 0x2e88(%rsp)
movq %rdx, 0x2e80(%rsp)
movl %ecx, 0x2e7c(%rsp)
movq %rax, 0x2e70(%rsp)
movq 0x2ea0(%rsp), %rcx
movq %rcx, 0x48(%rsp)
movq 0x2e88(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2e80(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2e7c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2e70(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2e9c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2e98(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2e94(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3600(%rsp)
movl $0x10, 0x35fc(%rsp)
movq 0x3600(%rsp), %rax
movslq 0x35fc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x35fc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x50(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x8d8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12b4629
movq 0x50(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x8f0(%rsp)
movb $0x1, 0x2323(%rsp)
testb $0x1, 0x2323(%rsp)
jne 0x12b4752
leaq 0x8b0(%rsp), %rax
movq %rax, 0x2338(%rsp)
movq 0x2338(%rsp), %rax
movq %rax, 0x3830(%rsp)
movq 0x3830(%rsp), %rax
movq %rax, 0x40(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b46f8
movq 0x40(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x382c(%rsp) # imm = 0xFFFFFFFF
movl 0x382c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3828(%rsp)
cmpl $0x1, 0x3828(%rsp)
jne 0x12b46f8
movq 0x40(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b46cc
movq 0x40(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b46ca
jmp 0x12b46f6
movq 0x40(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ec8(%rsp)
cmpq $0x0, 0x3ec8(%rsp)
je 0x12b46f4
movq 0x3ec8(%rsp), %rdi
callq 0x5f480
jmp 0x12b46f6
jmp 0x12b46f8
movq 0x40(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b4750
movq %rax, %rdi
callq 0x678a0
jmp 0x12b4752
leaq 0x8b0(%rsp), %rax
movq %rax, 0x2568(%rsp)
movq 0x2568(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x30(%rsp)
leaq 0x8b0(%rsp), %rax
movq %rax, 0x2318(%rsp)
movq 0x2318(%rsp), %rax
movq %rax, 0x3840(%rsp)
movq 0x3840(%rsp), %rax
movq %rax, 0x38(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b482b
movq 0x38(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x383c(%rsp) # imm = 0xFFFFFFFF
movl 0x383c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3838(%rsp)
cmpl $0x1, 0x3838(%rsp)
jne 0x12b482b
movq 0x38(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b47ff
movq 0x38(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b47fd
jmp 0x12b4829
movq 0x38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ec0(%rsp)
cmpq $0x0, 0x3ec0(%rsp)
je 0x12b4827
movq 0x3ec0(%rsp), %rdi
callq 0x5f480
jmp 0x12b4829
jmp 0x12b482b
movq 0x38(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b4883
movq %rax, %rdi
callq 0x678a0
movq 0x30(%rsp), %rax
movq %rax, 0x8f8(%rsp)
movl $0x0, 0x8ac(%rsp)
movl 0x8ac(%rsp), %eax
cmpl 0x1c68(%rsp), %eax
jge 0x12b4968
movq 0x948(%rsp), %rax
movq %rax, 0x2610(%rsp)
movq 0x2610(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x890(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x950(%rsp), %rsi
leaq 0x890(%rsp), %rdx
callq 0x12f6bf0
movaps %xmm0, 0x880(%rsp)
movq 0x8f8(%rsp), %rax
movaps 0x880(%rsp), %xmm0
movq %rax, 0x2768(%rsp)
movaps %xmm0, 0x2750(%rsp)
movaps 0x2750(%rsp), %xmm0
movq 0x2768(%rsp), %rax
movups %xmm0, (%rax)
movq 0x948(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x948(%rsp)
movq 0x8f8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x8f8(%rsp)
movl 0x8ac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x8ac(%rsp)
jmp 0x12b489b
jmp 0x12b496a
movl 0x96c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x96c(%rsp)
jmp 0x12b4004
movl $0x0, 0x1cc4(%rsp)
jmp 0x12b4d30
movq 0x1cb0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x12b4c05
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movq 0x1c60(%rsp), %rcx
movl 0x1c5c(%rsp), %r8d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1cd0(%rsp)
movq 0x1cd0(%rsp), %rcx
movq %rcx, 0x20(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x2f(%rsp)
je 0x12b4a2e
movq 0x20(%rsp), %rax
movq %rax, 0x2aa8(%rsp)
movq 0x2aa8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x2f(%rsp)
movb 0x2f(%rsp), %al
testb $0x1, %al
jne 0x12b4a38
jmp 0x12b4a48
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12b4d30
movq 0x1cb8(%rsp), %rax
movq %rax, 0x1fd8(%rsp)
movq 0x1fd8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x878(%rsp)
movq 0x1cb0(%rsp), %rax
movq %rax, 0x1fd0(%rsp)
movq 0x1fd0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x870(%rsp)
movq 0x1ca8(%rsp), %rax
movq %rax, 0x2560(%rsp)
movq 0x2560(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x868(%rsp)
movl $0x0, 0x864(%rsp)
movl 0x864(%rsp), %eax
cmpl 0x1c74(%rsp), %eax
jge 0x12b4bf5
movq 0x878(%rsp), %rax
movq %rax, 0x2608(%rsp)
movq 0x2608(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x850(%rsp)
movl $0x0, 0x84c(%rsp)
movl 0x84c(%rsp), %eax
cmpl 0x1c78(%rsp), %eax
jge 0x12b4bcb
movq 0x870(%rsp), %rax
movq %rax, 0x2600(%rsp)
movq 0x2600(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x830(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x850(%rsp), %rsi
leaq 0x830(%rsp), %rdx
callq 0x12f6bf0
movaps %xmm0, 0x820(%rsp)
movq 0x868(%rsp), %rax
movaps 0x820(%rsp), %xmm0
movq %rax, 0x2748(%rsp)
movaps %xmm0, 0x2730(%rsp)
movaps 0x2730(%rsp), %xmm0
movq 0x2748(%rsp), %rax
movups %xmm0, (%rax)
movq 0x870(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x870(%rsp)
movq 0x868(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x868(%rsp)
movl 0x84c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x84c(%rsp)
jmp 0x12b4afe
movq 0x878(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x878(%rsp)
movl 0x864(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x864(%rsp)
jmp 0x12b4abc
movl $0x0, 0x1cc4(%rsp)
jmp 0x12b4d30
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x12b4d1d
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movq 0x1c80(%rsp), %rdx
movl 0x1c7c(%rsp), %ecx
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6be00
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1cc8(%rsp)
movq 0x1cc8(%rsp), %rcx
movq %rcx, 0x10(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1f(%rsp)
je 0x12b4c9b
movq 0x10(%rsp), %rax
movq %rax, 0x2ab0(%rsp)
movq 0x2ab0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1f(%rsp)
movb 0x1f(%rsp), %al
testb $0x1, %al
jne 0x12b4ca5
jmp 0x12b4cb2
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12b4d30
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x12b4cf8
cmpl $0x1, 0x1c5c(%rsp)
jne 0x12b4cf8
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12ee0a0
movl %eax, 0x1cc4(%rsp)
jmp 0x12b4d30
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12ed120
jmp 0x12b4d1f
jmp 0x12b4d21
jmp 0x12b4d23
jmp 0x12b4d25
movl $0x0, 0x1cc4(%rsp)
movl 0x1cc4(%rsp), %eax
addq $0x3f58, %rsp # imm = 0x3F58
retq
nop
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,833
|
int ncnn::binary_op_pack4<ncnn::BinaryOp_x86_functor::binary_op_max>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op_pack4(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int size = w * h * d;
size_t elemsize = a.elemsize;
int elempack = a.elempack;
int w1 = b.w;
int h1 = b.h;
int d1 = b.d;
int channels1 = b.c;
int size1 = w1 * h1 * d1;
size_t elemsize1 = b.elemsize;
int elempack1 = b.elempack;
if (a.dims == 4)
{
if (b.dims == 4)
{
// type 29
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
c.create(w, h, d, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 3)
{
// type 28
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
for (int y = 0; y < h; y++)
{
__m128 _b0 = _mm_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
ptr1 += 4;
}
}
}
return 0;
}
if (b.dims == 2)
{
// type 27
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
__m128 _b0 = _mm_loadu_ps(ptr1);
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
}
ptr1 += 4;
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1 && elempack1 == 1)
{
// type 25
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 26
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
__m128 _b0 = _mm_loadu_ps((const float*)b + q * 4);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
}
return 0;
}
}
else if (a.dims == 3)
{
if (b.dims == 4)
{
// type 23
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
for (int y = 0; y < h1; y++)
{
__m128 _a0 = _mm_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m128 _p = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
ptr += 4;
}
}
}
return 0;
}
if (b.dims == 3)
{
if (w1 == 1 && h1 == 1 && channels1 == channels)
{
// special type 1
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
float* outptr = c.channel(q);
const float* b0 = b.channel(q);
__m128 _b0 = _mm_loadu_ps(b0);
for (int i = 0; i < size; i++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
}
return 0;
}
if (w1 == w && h1 == h && channels1 == 1 && elempack1 == 1)
{
// special type 2
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b;
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _p1 = _mm_set1_ps(*ptr1);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
ptr1 += 1;
outptr += 4;
}
}
return 0;
}
if (w == 1 && h == 1 && channels1 == channels)
{
// special type 3
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* a0 = a.channel(q);
float* outptr = c.channel(q);
const float* ptr1 = b.channel(q);
__m128 _a0 = _mm_loadu_ps(a0);
for (int i = 0; i < size1; i++)
{
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
}
return 0;
}
if (w1 == w && h1 == h && channels == 1 && elempack == 1)
{
// special type 4
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a;
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m128 _p = _mm_set1_ps(*ptr);
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_storeu_ps(outptr, _outp);
ptr += 1;
ptr1 += 4;
outptr += 4;
}
}
return 0;
}
if (w != 1 && w1 == 1 && h1 == h && channels1 == channels)
{
// special type 5
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
__m128 _p1 = _mm_loadu_ps(ptr1 + y * 4);
for (int x = 0; x < w; x++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
}
}
return 0;
}
if (w1 == w && h != 1 && h1 == 1 && channels1 == channels)
{
// special type 6
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _p1 = _mm_loadu_ps(ptr1 + x * 4);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
}
}
return 0;
}
if (w1 != 1 && w == 1 && h1 == h && channels1 == channels)
{
// special type 7
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
__m128 _p = _mm_loadu_ps(ptr + y * 4);
for (int x = 0; x < w1; x++)
{
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
}
}
return 0;
}
if (w1 == w && h1 != 1 && h == 1 && channels1 == channels)
{
// special type 8
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
__m128 _p = _mm_loadu_ps(ptr + x * 4);
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
}
}
return 0;
}
// type 19
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 18
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row<const float>(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
__m128 _b0 = _mm_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
ptr1 += 4;
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1 && elempack1 == 1)
{
// type 16
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 17
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
__m128 _b0 = _mm_loadu_ps((const float*)b + q * 4);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
}
return 0;
}
}
else if (a.dims == 2)
{
if (b.dims == 4)
{
// type 22
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
__m128 _a0 = _mm_loadu_ps(ptr);
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
__m128 _p = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
}
ptr += 4;
}
}
return 0;
}
if (b.dims == 3)
{
// type 14
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row<const float>(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
__m128 _a0 = _mm_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
ptr += 4;
}
}
return 0;
}
c.create(w, h, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 13
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
if (b.dims == 1)
{
c.create(w, h, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1 && elempack1 == 1)
{
// type 11
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 12
const float* ptr = a;
const float* ptr1 = b;
float* outptr = c;
for (int y = 0; y < h; y++)
{
__m128 _b0 = _mm_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
ptr1 += 4;
}
return 0;
}
}
else if (a.dims == 1)
{
if (a.w == 1 && elempack == 1)
{
// type 2 3 4 20
return binary_op_2_3_4_20<Op>(a, b, c, opt);
}
if (b.dims == 4)
{
// type 21
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
__m128 _a0 = _mm_loadu_ps((const float*)a + q * 4);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
}
return 0;
}
if (b.dims == 3)
{
// type 9
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
__m128 _a0 = _mm_loadu_ps((const float*)a + q * 4);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
}
return 0;
}
if (b.dims == 2)
{
// type 8
c.create(w1, h1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
const float* ptr = a;
const float* ptr1 = b;
float* outptr = c;
for (int y = 0; y < h1; y++)
{
__m128 _a0 = _mm_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
ptr += 4;
}
return 0;
}
if (b.dims == 1)
{
c.create(w, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1 && elempack1 == 1)
{
// type 6
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 7
binary_op_7_13_19_29<Op>(a, b, c, opt);
}
}
return 0;
}
|
subq $0x3f58, %rsp # imm = 0x3F58
movq %rdi, 0x1cb8(%rsp)
movq %rsi, 0x1cb0(%rsp)
movq %rdx, 0x1ca8(%rsp)
movq %rcx, 0x1ca0(%rsp)
movq 0x1cb8(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x1c98(%rsp)
movq 0x1cb8(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x1c94(%rsp)
movq 0x1cb8(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x1c90(%rsp)
movq 0x1cb8(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x1c8c(%rsp)
movl 0x1c98(%rsp), %eax
imull 0x1c94(%rsp), %eax
imull 0x1c90(%rsp), %eax
movl %eax, 0x1c88(%rsp)
movq 0x1cb8(%rsp), %rax
movq 0x10(%rax), %rax
movq %rax, 0x1c80(%rsp)
movq 0x1cb8(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x1c7c(%rsp)
movq 0x1cb0(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x1c78(%rsp)
movq 0x1cb0(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x1c74(%rsp)
movq 0x1cb0(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x1c70(%rsp)
movq 0x1cb0(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x1c6c(%rsp)
movl 0x1c78(%rsp), %eax
imull 0x1c74(%rsp), %eax
imull 0x1c70(%rsp), %eax
movl %eax, 0x1c68(%rsp)
movq 0x1cb0(%rsp), %rax
movq 0x10(%rax), %rax
movq %rax, 0x1c60(%rsp)
movq 0x1cb0(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x1c5c(%rsp)
movq 0x1cb8(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x12b7372
movq 0x1cb0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x12b4ed0
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12ef780
movl %eax, 0x1cc4(%rsp)
jmp 0x12c3f40
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movl 0x1c90(%rsp), %ecx
movl 0x1c8c(%rsp), %r8d
movq 0x1c80(%rsp), %r9
movl 0x1c7c(%rsp), %r10d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d58(%rsp)
movq 0x1d58(%rsp), %rcx
movq %rcx, 0x810(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x81f(%rsp)
je 0x12b4f80
movq 0x810(%rsp), %rax
movq %rax, 0x2a20(%rsp)
movq 0x2a20(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x81f(%rsp)
movb 0x81f(%rsp), %al
testb $0x1, %al
jne 0x12b4f8d
jmp 0x12b4f9d
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12c3f40
movq 0x1cb0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x12b5e58
movl $0x0, 0x1c58(%rsp)
movl 0x1c58(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jge 0x12b5e48
movq 0x1cb8(%rsp), %rcx
movl 0x1c58(%rsp), %eax
leaq 0x1c08(%rsp), %rdx
movq %rdx, 0x1fc8(%rsp)
movq %rcx, 0x1fc0(%rsp)
movl %eax, 0x1fbc(%rsp)
movq 0x1fc0(%rsp), %rax
movq %rax, 0x808(%rsp)
movb $0x0, 0x1fbb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1fbc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1c08(%rsp), %r10
movq %r10, 0x2ed8(%rsp)
movl %r9d, 0x2ed4(%rsp)
movl %r8d, 0x2ed0(%rsp)
movl %edi, 0x2ecc(%rsp)
movq %rsi, 0x2ec0(%rsp)
movq %rdx, 0x2eb8(%rsp)
movl %ecx, 0x2eb4(%rsp)
movq %rax, 0x2ea8(%rsp)
movq 0x2ed8(%rsp), %rcx
movq %rcx, 0x800(%rsp)
movq 0x2ec0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2eb8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2eb4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ea8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2ed4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2ed0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2ecc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x35f0(%rsp)
movl $0x10, 0x35ec(%rsp)
movq 0x35f0(%rsp), %rax
movslq 0x35ec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x35ec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x808(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1c30(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12b518a
movq 0x808(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1c48(%rsp)
movb $0x1, 0x1fbb(%rsp)
testb $0x1, 0x1fbb(%rsp)
jne 0x12b52c5
leaq 0x1c08(%rsp), %rax
movq %rax, 0x20f0(%rsp)
movq 0x20f0(%rsp), %rax
movq %rax, 0x3c90(%rsp)
movq 0x3c90(%rsp), %rax
movq %rax, 0x7f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b5268
movq 0x7f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c8c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c8c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c88(%rsp)
cmpl $0x1, 0x3c88(%rsp)
jne 0x12b5268
movq 0x7f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b5239
movq 0x7f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b5237
jmp 0x12b5266
movq 0x7f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3c98(%rsp)
cmpq $0x0, 0x3c98(%rsp)
je 0x12b5264
movq 0x3c98(%rsp), %rdi
callq 0x5f480
jmp 0x12b5266
jmp 0x12b5268
movq 0x7f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b52c3
movq %rax, %rdi
callq 0x678a0
jmp 0x12b52c5
leaq 0x1c08(%rsp), %rax
movq %rax, 0x20e8(%rsp)
movq 0x20e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7e8(%rsp)
leaq 0x1c08(%rsp), %rax
movq %rax, 0x21c0(%rsp)
movq 0x21c0(%rsp), %rax
movq %rax, 0x3af0(%rsp)
movq 0x3af0(%rsp), %rax
movq %rax, 0x7f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b53b0
movq 0x7f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3aec(%rsp) # imm = 0xFFFFFFFF
movl 0x3aec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ae8(%rsp)
cmpl $0x1, 0x3ae8(%rsp)
jne 0x12b53b0
movq 0x7f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b5381
movq 0x7f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b537f
jmp 0x12b53ae
movq 0x7f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d68(%rsp)
cmpq $0x0, 0x3d68(%rsp)
je 0x12b53ac
movq 0x3d68(%rsp), %rdi
callq 0x5f480
jmp 0x12b53ae
jmp 0x12b53b0
movq 0x7f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b540b
movq %rax, %rdi
callq 0x678a0
movq 0x7e8(%rsp), %rax
movq %rax, 0x1c50(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x1c58(%rsp), %eax
leaq 0x1bb8(%rsp), %rdx
movq %rdx, 0x1fb0(%rsp)
movq %rcx, 0x1fa8(%rsp)
movl %eax, 0x1fa4(%rsp)
movq 0x1fa8(%rsp), %rax
movq %rax, 0x7e0(%rsp)
movb $0x0, 0x1fa3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1fa4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1bb8(%rsp), %r10
movq %r10, 0x2f10(%rsp)
movl %r9d, 0x2f0c(%rsp)
movl %r8d, 0x2f08(%rsp)
movl %edi, 0x2f04(%rsp)
movq %rsi, 0x2ef8(%rsp)
movq %rdx, 0x2ef0(%rsp)
movl %ecx, 0x2eec(%rsp)
movq %rax, 0x2ee0(%rsp)
movq 0x2f10(%rsp), %rcx
movq %rcx, 0x7d8(%rsp)
movq 0x2ef8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2ef0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2eec(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ee0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2f0c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f08(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f04(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x35e0(%rsp)
movl $0x10, 0x35dc(%rsp)
movq 0x35e0(%rsp), %rax
movslq 0x35dc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x35dc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7e0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1be0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12b55d7
movq 0x7e0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1bf8(%rsp)
movb $0x1, 0x1fa3(%rsp)
testb $0x1, 0x1fa3(%rsp)
jne 0x12b5712
leaq 0x1bb8(%rsp), %rax
movq %rax, 0x20f8(%rsp)
movq 0x20f8(%rsp), %rax
movq %rax, 0x3c80(%rsp)
movq 0x3c80(%rsp), %rax
movq %rax, 0x7d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b56b5
movq 0x7d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c7c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c7c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c78(%rsp)
cmpl $0x1, 0x3c78(%rsp)
jne 0x12b56b5
movq 0x7d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b5686
movq 0x7d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b5684
jmp 0x12b56b3
movq 0x7d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ca0(%rsp)
cmpq $0x0, 0x3ca0(%rsp)
je 0x12b56b1
movq 0x3ca0(%rsp), %rdi
callq 0x5f480
jmp 0x12b56b3
jmp 0x12b56b5
movq 0x7d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b5710
movq %rax, %rdi
callq 0x678a0
jmp 0x12b5712
leaq 0x1bb8(%rsp), %rax
movq %rax, 0x20e0(%rsp)
movq 0x20e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7c0(%rsp)
leaq 0x1bb8(%rsp), %rax
movq %rax, 0x21c8(%rsp)
movq 0x21c8(%rsp), %rax
movq %rax, 0x3ae0(%rsp)
movq 0x3ae0(%rsp), %rax
movq %rax, 0x7c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b57fd
movq 0x7c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3adc(%rsp) # imm = 0xFFFFFFFF
movl 0x3adc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ad8(%rsp)
cmpl $0x1, 0x3ad8(%rsp)
jne 0x12b57fd
movq 0x7c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b57ce
movq 0x7c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b57cc
jmp 0x12b57fb
movq 0x7c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d70(%rsp)
cmpq $0x0, 0x3d70(%rsp)
je 0x12b57f9
movq 0x3d70(%rsp), %rdi
callq 0x5f480
jmp 0x12b57fb
jmp 0x12b57fd
movq 0x7c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b5858
movq %rax, %rdi
callq 0x678a0
movq 0x7c0(%rsp), %rax
movq %rax, 0x1c00(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x1c58(%rsp), %eax
leaq 0x1b68(%rsp), %rdx
movq %rdx, 0x2550(%rsp)
movq %rcx, 0x2548(%rsp)
movl %eax, 0x2544(%rsp)
movq 0x2548(%rsp), %rax
movq %rax, 0x7b8(%rsp)
movb $0x0, 0x2543(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2544(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1b68(%rsp), %r10
movq %r10, 0x2ae8(%rsp)
movl %r9d, 0x2ae4(%rsp)
movl %r8d, 0x2ae0(%rsp)
movl %edi, 0x2adc(%rsp)
movq %rsi, 0x2ad0(%rsp)
movq %rdx, 0x2ac8(%rsp)
movl %ecx, 0x2ac4(%rsp)
movq %rax, 0x2ab8(%rsp)
movq 0x2ae8(%rsp), %rcx
movq %rcx, 0x7b0(%rsp)
movq 0x2ad0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2ac8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2ac4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ab8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2ae4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2ae0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2adc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3710(%rsp)
movl $0x10, 0x370c(%rsp)
movq 0x3710(%rsp), %rax
movslq 0x370c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x370c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7b8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1b90(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12b5a24
movq 0x7b8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1ba8(%rsp)
movb $0x1, 0x2543(%rsp)
testb $0x1, 0x2543(%rsp)
jne 0x12b5b5f
leaq 0x1b68(%rsp), %rax
movq %rax, 0x2558(%rsp)
movq 0x2558(%rsp), %rax
movq %rax, 0x3720(%rsp)
movq 0x3720(%rsp), %rax
movq %rax, 0x7a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b5b02
movq 0x7a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x371c(%rsp) # imm = 0xFFFFFFFF
movl 0x371c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3718(%rsp)
cmpl $0x1, 0x3718(%rsp)
jne 0x12b5b02
movq 0x7a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b5ad3
movq 0x7a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b5ad1
jmp 0x12b5b00
movq 0x7a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f50(%rsp)
cmpq $0x0, 0x3f50(%rsp)
je 0x12b5afe
movq 0x3f50(%rsp), %rdi
callq 0x5f480
jmp 0x12b5b00
jmp 0x12b5b02
movq 0x7a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b5b5d
movq %rax, %rdi
callq 0x678a0
jmp 0x12b5b5f
leaq 0x1b68(%rsp), %rax
movq %rax, 0x25f8(%rsp)
movq 0x25f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x798(%rsp)
leaq 0x1b68(%rsp), %rax
movq %rax, 0x21d0(%rsp)
movq 0x21d0(%rsp), %rax
movq %rax, 0x3ad0(%rsp)
movq 0x3ad0(%rsp), %rax
movq %rax, 0x7a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b5c4a
movq 0x7a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3acc(%rsp) # imm = 0xFFFFFFFF
movl 0x3acc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ac8(%rsp)
cmpl $0x1, 0x3ac8(%rsp)
jne 0x12b5c4a
movq 0x7a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b5c1b
movq 0x7a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b5c19
jmp 0x12b5c48
movq 0x7a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d78(%rsp)
cmpq $0x0, 0x3d78(%rsp)
je 0x12b5c46
movq 0x3d78(%rsp), %rdi
callq 0x5f480
jmp 0x12b5c48
jmp 0x12b5c4a
movq 0x7a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b5ca5
movq %rax, %rdi
callq 0x678a0
movq 0x798(%rsp), %rax
movq %rax, 0x1bb0(%rsp)
movl $0x0, 0x1b64(%rsp)
movl 0x1b64(%rsp), %eax
cmpl 0x1c90(%rsp), %eax
jge 0x12b5e30
movl $0x0, 0x1b60(%rsp)
movl 0x1b60(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jge 0x12b5e18
movq 0x1c00(%rsp), %rax
movq %rax, 0x2728(%rsp)
movq 0x2728(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1b50(%rsp)
movl $0x0, 0x1b4c(%rsp)
movl 0x1b4c(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jge 0x12b5dee
movq 0x1c50(%rsp), %rax
movq %rax, 0x2720(%rsp)
movq 0x2720(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1b30(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x1b30(%rsp), %rsi
leaq 0x1b50(%rsp), %rdx
callq 0x12f6c60
movaps %xmm0, 0x1b20(%rsp)
movq 0x1bb0(%rsp), %rax
movaps 0x1b20(%rsp), %xmm0
movq %rax, 0x29a8(%rsp)
movaps %xmm0, 0x2990(%rsp)
movaps 0x2990(%rsp), %xmm0
movq 0x29a8(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1c50(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1c50(%rsp)
movq 0x1bb0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1bb0(%rsp)
movl 0x1b4c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b4c(%rsp)
jmp 0x12b5d21
movq 0x1c00(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1c00(%rsp)
movl 0x1b60(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b60(%rsp)
jmp 0x12b5cdf
jmp 0x12b5e1a
movl 0x1b64(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b64(%rsp)
jmp 0x12b5cc0
jmp 0x12b5e32
movl 0x1c58(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c58(%rsp)
jmp 0x12b4fba
movl $0x0, 0x1cc4(%rsp)
jmp 0x12c3f40
movq 0x1cb0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x12b690f
movl $0x0, 0x1b1c(%rsp)
movl 0x1b1c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jge 0x12b68ff
movq 0x1cb8(%rsp), %rcx
movl 0x1b1c(%rsp), %eax
leaq 0x1ac8(%rsp), %rdx
movq %rdx, 0x1f98(%rsp)
movq %rcx, 0x1f90(%rsp)
movl %eax, 0x1f8c(%rsp)
movq 0x1f90(%rsp), %rax
movq %rax, 0x790(%rsp)
movb $0x0, 0x1f8b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1f8c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1ac8(%rsp), %r10
movq %r10, 0x2f48(%rsp)
movl %r9d, 0x2f44(%rsp)
movl %r8d, 0x2f40(%rsp)
movl %edi, 0x2f3c(%rsp)
movq %rsi, 0x2f30(%rsp)
movq %rdx, 0x2f28(%rsp)
movl %ecx, 0x2f24(%rsp)
movq %rax, 0x2f18(%rsp)
movq 0x2f48(%rsp), %rcx
movq %rcx, 0x788(%rsp)
movq 0x2f30(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2f28(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2f24(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2f18(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2f44(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f40(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f3c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x35d0(%rsp)
movl $0x10, 0x35cc(%rsp)
movq 0x35d0(%rsp), %rax
movslq 0x35cc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x35cc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x790(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1af0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12b6045
movq 0x790(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1b08(%rsp)
movb $0x1, 0x1f8b(%rsp)
testb $0x1, 0x1f8b(%rsp)
jne 0x12b6180
leaq 0x1ac8(%rsp), %rax
movq %rax, 0x2100(%rsp)
movq 0x2100(%rsp), %rax
movq %rax, 0x3c70(%rsp)
movq 0x3c70(%rsp), %rax
movq %rax, 0x780(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b6123
movq 0x780(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c6c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c6c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c68(%rsp)
cmpl $0x1, 0x3c68(%rsp)
jne 0x12b6123
movq 0x780(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b60f4
movq 0x780(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b60f2
jmp 0x12b6121
movq 0x780(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ca8(%rsp)
cmpq $0x0, 0x3ca8(%rsp)
je 0x12b611f
movq 0x3ca8(%rsp), %rdi
callq 0x5f480
jmp 0x12b6121
jmp 0x12b6123
movq 0x780(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b617e
movq %rax, %rdi
callq 0x678a0
jmp 0x12b6180
leaq 0x1ac8(%rsp), %rax
movq %rax, 0x20d8(%rsp)
movq 0x20d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x770(%rsp)
leaq 0x1ac8(%rsp), %rax
movq %rax, 0x21d8(%rsp)
movq 0x21d8(%rsp), %rax
movq %rax, 0x3ac0(%rsp)
movq 0x3ac0(%rsp), %rax
movq %rax, 0x778(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b626b
movq 0x778(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3abc(%rsp) # imm = 0xFFFFFFFF
movl 0x3abc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ab8(%rsp)
cmpl $0x1, 0x3ab8(%rsp)
jne 0x12b626b
movq 0x778(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b623c
movq 0x778(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b623a
jmp 0x12b6269
movq 0x778(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d80(%rsp)
cmpq $0x0, 0x3d80(%rsp)
je 0x12b6267
movq 0x3d80(%rsp), %rdi
callq 0x5f480
jmp 0x12b6269
jmp 0x12b626b
movq 0x778(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b62c6
movq %rax, %rdi
callq 0x678a0
movq 0x770(%rsp), %rax
movq %rax, 0x1b10(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x1b1c(%rsp), %eax
movq %rcx, 0x29c8(%rsp)
movl %eax, 0x29c4(%rsp)
movq 0x29c8(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x29c4(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x1ac0(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x1b1c(%rsp), %eax
leaq 0x1a70(%rsp), %rdx
movq %rdx, 0x2530(%rsp)
movq %rcx, 0x2528(%rsp)
movl %eax, 0x2524(%rsp)
movq 0x2528(%rsp), %rax
movq %rax, 0x768(%rsp)
movb $0x0, 0x2523(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2524(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1a70(%rsp), %r10
movq %r10, 0x2b20(%rsp)
movl %r9d, 0x2b1c(%rsp)
movl %r8d, 0x2b18(%rsp)
movl %edi, 0x2b14(%rsp)
movq %rsi, 0x2b08(%rsp)
movq %rdx, 0x2b00(%rsp)
movl %ecx, 0x2afc(%rsp)
movq %rax, 0x2af0(%rsp)
movq 0x2b20(%rsp), %rcx
movq %rcx, 0x760(%rsp)
movq 0x2b08(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2b00(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2afc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2af0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2b1c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2b18(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2b14(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3700(%rsp)
movl $0x10, 0x36fc(%rsp)
movq 0x3700(%rsp), %rax
movslq 0x36fc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x36fc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x768(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1a98(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12b64db
movq 0x768(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1ab0(%rsp)
movb $0x1, 0x2523(%rsp)
testb $0x1, 0x2523(%rsp)
jne 0x12b6616
leaq 0x1a70(%rsp), %rax
movq %rax, 0x2538(%rsp)
movq 0x2538(%rsp), %rax
movq %rax, 0x3730(%rsp)
movq 0x3730(%rsp), %rax
movq %rax, 0x758(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b65b9
movq 0x758(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x372c(%rsp) # imm = 0xFFFFFFFF
movl 0x372c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3728(%rsp)
cmpl $0x1, 0x3728(%rsp)
jne 0x12b65b9
movq 0x758(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b658a
movq 0x758(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b6588
jmp 0x12b65b7
movq 0x758(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f48(%rsp)
cmpq $0x0, 0x3f48(%rsp)
je 0x12b65b5
movq 0x3f48(%rsp), %rdi
callq 0x5f480
jmp 0x12b65b7
jmp 0x12b65b9
movq 0x758(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b6614
movq %rax, %rdi
callq 0x678a0
jmp 0x12b6616
leaq 0x1a70(%rsp), %rax
movq %rax, 0x25f0(%rsp)
movq 0x25f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x748(%rsp)
leaq 0x1a70(%rsp), %rax
movq %rax, 0x21e0(%rsp)
movq 0x21e0(%rsp), %rax
movq %rax, 0x3ab0(%rsp)
movq 0x3ab0(%rsp), %rax
movq %rax, 0x750(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b6701
movq 0x750(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3aac(%rsp) # imm = 0xFFFFFFFF
movl 0x3aac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3aa8(%rsp)
cmpl $0x1, 0x3aa8(%rsp)
jne 0x12b6701
movq 0x750(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b66d2
movq 0x750(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b66d0
jmp 0x12b66ff
movq 0x750(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d88(%rsp)
cmpq $0x0, 0x3d88(%rsp)
je 0x12b66fd
movq 0x3d88(%rsp), %rdi
callq 0x5f480
jmp 0x12b66ff
jmp 0x12b6701
movq 0x750(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b675c
movq %rax, %rdi
callq 0x678a0
movq 0x748(%rsp), %rax
movq %rax, 0x1ab8(%rsp)
movl $0x0, 0x1a6c(%rsp)
movl 0x1a6c(%rsp), %eax
cmpl 0x1c90(%rsp), %eax
jge 0x12b68e7
movq 0x1ac0(%rsp), %rax
movq %rax, 0x2718(%rsp)
movq 0x2718(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1a50(%rsp)
movl $0x0, 0x1a4c(%rsp)
movl 0x1a4c(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jge 0x12b68bd
movl $0x0, 0x1a48(%rsp)
movl 0x1a48(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jge 0x12b68a5
movq 0x1b10(%rsp), %rax
movq %rax, 0x2710(%rsp)
movq 0x2710(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1a30(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x1a30(%rsp), %rsi
leaq 0x1a50(%rsp), %rdx
callq 0x12f6c60
movaps %xmm0, 0x1a20(%rsp)
movq 0x1ab8(%rsp), %rax
movaps 0x1a20(%rsp), %xmm0
movq %rax, 0x2988(%rsp)
movaps %xmm0, 0x2970(%rsp)
movaps 0x2970(%rsp), %xmm0
movq 0x2988(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1b10(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1b10(%rsp)
movq 0x1ab8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1ab8(%rsp)
movl 0x1a48(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1a48(%rsp)
jmp 0x12b67d8
jmp 0x12b68a7
movl 0x1a4c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1a4c(%rsp)
jmp 0x12b67b9
movq 0x1ac0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1ac0(%rsp)
movl 0x1a6c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1a6c(%rsp)
jmp 0x12b6777
jmp 0x12b68e9
movl 0x1b1c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b1c(%rsp)
jmp 0x12b5e75
movl $0x0, 0x1cc4(%rsp)
jmp 0x12c3f40
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x12b736d
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x12b696a
cmpl $0x1, 0x1c5c(%rsp)
jne 0x12b696a
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12f0700
movl %eax, 0x1cc4(%rsp)
jmp 0x12c3f40
movl $0x0, 0x1a1c(%rsp)
movl 0x1a1c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jge 0x12b735d
movq 0x1cb8(%rsp), %rcx
movl 0x1a1c(%rsp), %eax
leaq 0x19c8(%rsp), %rdx
movq %rdx, 0x1f80(%rsp)
movq %rcx, 0x1f78(%rsp)
movl %eax, 0x1f74(%rsp)
movq 0x1f78(%rsp), %rax
movq %rax, 0x740(%rsp)
movb $0x0, 0x1f73(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1f74(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x19c8(%rsp), %r10
movq %r10, 0x2f80(%rsp)
movl %r9d, 0x2f7c(%rsp)
movl %r8d, 0x2f78(%rsp)
movl %edi, 0x2f74(%rsp)
movq %rsi, 0x2f68(%rsp)
movq %rdx, 0x2f60(%rsp)
movl %ecx, 0x2f5c(%rsp)
movq %rax, 0x2f50(%rsp)
movq 0x2f80(%rsp), %rcx
movq %rcx, 0x738(%rsp)
movq 0x2f68(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2f60(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2f5c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2f50(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2f7c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f78(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f74(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x35c0(%rsp)
movl $0x10, 0x35bc(%rsp)
movq 0x35c0(%rsp), %rax
movslq 0x35bc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x35bc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x740(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x19f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12b6b45
movq 0x740(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1a08(%rsp)
movb $0x1, 0x1f73(%rsp)
testb $0x1, 0x1f73(%rsp)
jne 0x12b6c80
leaq 0x19c8(%rsp), %rax
movq %rax, 0x2108(%rsp)
movq 0x2108(%rsp), %rax
movq %rax, 0x3c60(%rsp)
movq 0x3c60(%rsp), %rax
movq %rax, 0x730(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b6c23
movq 0x730(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c5c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c5c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c58(%rsp)
cmpl $0x1, 0x3c58(%rsp)
jne 0x12b6c23
movq 0x730(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b6bf4
movq 0x730(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b6bf2
jmp 0x12b6c21
movq 0x730(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cb0(%rsp)
cmpq $0x0, 0x3cb0(%rsp)
je 0x12b6c1f
movq 0x3cb0(%rsp), %rdi
callq 0x5f480
jmp 0x12b6c21
jmp 0x12b6c23
movq 0x730(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b6c7e
movq %rax, %rdi
callq 0x678a0
jmp 0x12b6c80
leaq 0x19c8(%rsp), %rax
movq %rax, 0x20d0(%rsp)
movq 0x20d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x720(%rsp)
leaq 0x19c8(%rsp), %rax
movq %rax, 0x21e8(%rsp)
movq 0x21e8(%rsp), %rax
movq %rax, 0x3aa0(%rsp)
movq 0x3aa0(%rsp), %rax
movq %rax, 0x728(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b6d6b
movq 0x728(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a9c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a9c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a98(%rsp)
cmpl $0x1, 0x3a98(%rsp)
jne 0x12b6d6b
movq 0x728(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b6d3c
movq 0x728(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b6d3a
jmp 0x12b6d69
movq 0x728(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d90(%rsp)
cmpq $0x0, 0x3d90(%rsp)
je 0x12b6d67
movq 0x3d90(%rsp), %rdi
callq 0x5f480
jmp 0x12b6d69
jmp 0x12b6d6b
movq 0x728(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b6dc6
movq %rax, %rdi
callq 0x678a0
movq 0x720(%rsp), %rax
movq %rax, 0x1a10(%rsp)
movq 0x1cb0(%rsp), %rax
movq %rax, 0x20c8(%rsp)
movq 0x20c8(%rsp), %rax
movq (%rax), %rax
movl 0x1a1c(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2708(%rsp)
movq 0x2708(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x19b0(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x1a1c(%rsp), %eax
leaq 0x1960(%rsp), %rdx
movq %rdx, 0x2510(%rsp)
movq %rcx, 0x2508(%rsp)
movl %eax, 0x2504(%rsp)
movq 0x2508(%rsp), %rax
movq %rax, 0x718(%rsp)
movb $0x0, 0x2503(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2504(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1960(%rsp), %r10
movq %r10, 0x2b58(%rsp)
movl %r9d, 0x2b54(%rsp)
movl %r8d, 0x2b50(%rsp)
movl %edi, 0x2b4c(%rsp)
movq %rsi, 0x2b40(%rsp)
movq %rdx, 0x2b38(%rsp)
movl %ecx, 0x2b34(%rsp)
movq %rax, 0x2b28(%rsp)
movq 0x2b58(%rsp), %rcx
movq %rcx, 0x710(%rsp)
movq 0x2b40(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2b38(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2b34(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2b28(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2b54(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2b50(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2b4c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x36f0(%rsp)
movl $0x10, 0x36ec(%rsp)
movq 0x36f0(%rsp), %rax
movslq 0x36ec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x36ec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x718(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1988(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12b6fdc
movq 0x718(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x19a0(%rsp)
movb $0x1, 0x2503(%rsp)
testb $0x1, 0x2503(%rsp)
jne 0x12b7117
leaq 0x1960(%rsp), %rax
movq %rax, 0x2518(%rsp)
movq 0x2518(%rsp), %rax
movq %rax, 0x3740(%rsp)
movq 0x3740(%rsp), %rax
movq %rax, 0x708(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b70ba
movq 0x708(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x373c(%rsp) # imm = 0xFFFFFFFF
movl 0x373c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3738(%rsp)
cmpl $0x1, 0x3738(%rsp)
jne 0x12b70ba
movq 0x708(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b708b
movq 0x708(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b7089
jmp 0x12b70b8
movq 0x708(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f40(%rsp)
cmpq $0x0, 0x3f40(%rsp)
je 0x12b70b6
movq 0x3f40(%rsp), %rdi
callq 0x5f480
jmp 0x12b70b8
jmp 0x12b70ba
movq 0x708(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b7115
movq %rax, %rdi
callq 0x678a0
jmp 0x12b7117
leaq 0x1960(%rsp), %rax
movq %rax, 0x25e8(%rsp)
movq 0x25e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6f8(%rsp)
leaq 0x1960(%rsp), %rax
movq %rax, 0x21f0(%rsp)
movq 0x21f0(%rsp), %rax
movq %rax, 0x3a90(%rsp)
movq 0x3a90(%rsp), %rax
movq %rax, 0x700(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b7202
movq 0x700(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a8c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a8c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a88(%rsp)
cmpl $0x1, 0x3a88(%rsp)
jne 0x12b7202
movq 0x700(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b71d3
movq 0x700(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b71d1
jmp 0x12b7200
movq 0x700(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d98(%rsp)
cmpq $0x0, 0x3d98(%rsp)
je 0x12b71fe
movq 0x3d98(%rsp), %rdi
callq 0x5f480
jmp 0x12b7200
jmp 0x12b7202
movq 0x700(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b725d
movq %rax, %rdi
callq 0x678a0
movq 0x6f8(%rsp), %rax
movq %rax, 0x19a8(%rsp)
movl $0x0, 0x195c(%rsp)
movl 0x195c(%rsp), %eax
cmpl 0x1c88(%rsp), %eax
jge 0x12b7345
movq 0x1a10(%rsp), %rax
movq %rax, 0x2700(%rsp)
movq 0x2700(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1940(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x1940(%rsp), %rsi
leaq 0x19b0(%rsp), %rdx
callq 0x12f6c60
movaps %xmm0, 0x1930(%rsp)
movq 0x19a8(%rsp), %rax
movaps 0x1930(%rsp), %xmm0
movq %rax, 0x2968(%rsp)
movaps %xmm0, 0x2950(%rsp)
movaps 0x2950(%rsp), %xmm0
movq 0x2968(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1a10(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1a10(%rsp)
movq 0x19a8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x19a8(%rsp)
movl 0x195c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x195c(%rsp)
jmp 0x12b7278
jmp 0x12b7347
movl 0x1a1c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1a1c(%rsp)
jmp 0x12b6975
movl $0x0, 0x1cc4(%rsp)
jmp 0x12c3f40
jmp 0x12c3f35
movq 0x1cb8(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x12c0b5e
movq 0x1cb0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x12b830c
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c70(%rsp), %ecx
movl 0x1c6c(%rsp), %r8d
movq 0x1c60(%rsp), %r9
movl 0x1c5c(%rsp), %r10d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d50(%rsp)
movq 0x1d50(%rsp), %rcx
movq %rcx, 0x6e8(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x6f7(%rsp)
je 0x12b7446
movq 0x6e8(%rsp), %rax
movq %rax, 0x2a28(%rsp)
movq 0x2a28(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x6f7(%rsp)
movb 0x6f7(%rsp), %al
testb $0x1, %al
jne 0x12b7453
jmp 0x12b7463
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12c3f40
movl $0x0, 0x192c(%rsp)
movl 0x192c(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12b82fc
movq 0x1cb8(%rsp), %rcx
movl 0x192c(%rsp), %eax
leaq 0x18d8(%rsp), %rdx
movq %rdx, 0x1f68(%rsp)
movq %rcx, 0x1f60(%rsp)
movl %eax, 0x1f5c(%rsp)
movq 0x1f60(%rsp), %rax
movq %rax, 0x6e0(%rsp)
movb $0x0, 0x1f5b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1f5c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x18d8(%rsp), %r10
movq %r10, 0x2fb8(%rsp)
movl %r9d, 0x2fb4(%rsp)
movl %r8d, 0x2fb0(%rsp)
movl %edi, 0x2fac(%rsp)
movq %rsi, 0x2fa0(%rsp)
movq %rdx, 0x2f98(%rsp)
movl %ecx, 0x2f94(%rsp)
movq %rax, 0x2f88(%rsp)
movq 0x2fb8(%rsp), %rcx
movq %rcx, 0x6d8(%rsp)
movq 0x2fa0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2f98(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2f94(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2f88(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2fb4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2fb0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2fac(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x35b0(%rsp)
movl $0x10, 0x35ac(%rsp)
movq 0x35b0(%rsp), %rax
movslq 0x35ac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x35ac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6e0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1900(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12b763e
movq 0x6e0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1918(%rsp)
movb $0x1, 0x1f5b(%rsp)
testb $0x1, 0x1f5b(%rsp)
jne 0x12b7779
leaq 0x18d8(%rsp), %rax
movq %rax, 0x2110(%rsp)
movq 0x2110(%rsp), %rax
movq %rax, 0x3c50(%rsp)
movq 0x3c50(%rsp), %rax
movq %rax, 0x6d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b771c
movq 0x6d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c4c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c4c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c48(%rsp)
cmpl $0x1, 0x3c48(%rsp)
jne 0x12b771c
movq 0x6d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b76ed
movq 0x6d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b76eb
jmp 0x12b771a
movq 0x6d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cb8(%rsp)
cmpq $0x0, 0x3cb8(%rsp)
je 0x12b7718
movq 0x3cb8(%rsp), %rdi
callq 0x5f480
jmp 0x12b771a
jmp 0x12b771c
movq 0x6d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b7777
movq %rax, %rdi
callq 0x678a0
jmp 0x12b7779
leaq 0x18d8(%rsp), %rax
movq %rax, 0x20c0(%rsp)
movq 0x20c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6c0(%rsp)
leaq 0x18d8(%rsp), %rax
movq %rax, 0x21f8(%rsp)
movq 0x21f8(%rsp), %rax
movq %rax, 0x3a80(%rsp)
movq 0x3a80(%rsp), %rax
movq %rax, 0x6c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b7864
movq 0x6c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a7c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a7c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a78(%rsp)
cmpl $0x1, 0x3a78(%rsp)
jne 0x12b7864
movq 0x6c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b7835
movq 0x6c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b7833
jmp 0x12b7862
movq 0x6c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3da0(%rsp)
cmpq $0x0, 0x3da0(%rsp)
je 0x12b7860
movq 0x3da0(%rsp), %rdi
callq 0x5f480
jmp 0x12b7862
jmp 0x12b7864
movq 0x6c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b78bf
movq %rax, %rdi
callq 0x678a0
movq 0x6c0(%rsp), %rax
movq %rax, 0x1920(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x192c(%rsp), %eax
leaq 0x1888(%rsp), %rdx
movq %rdx, 0x1f50(%rsp)
movq %rcx, 0x1f48(%rsp)
movl %eax, 0x1f44(%rsp)
movq 0x1f48(%rsp), %rax
movq %rax, 0x6b8(%rsp)
movb $0x0, 0x1f43(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1f44(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1888(%rsp), %r10
movq %r10, 0x2ff0(%rsp)
movl %r9d, 0x2fec(%rsp)
movl %r8d, 0x2fe8(%rsp)
movl %edi, 0x2fe4(%rsp)
movq %rsi, 0x2fd8(%rsp)
movq %rdx, 0x2fd0(%rsp)
movl %ecx, 0x2fcc(%rsp)
movq %rax, 0x2fc0(%rsp)
movq 0x2ff0(%rsp), %rcx
movq %rcx, 0x6b0(%rsp)
movq 0x2fd8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2fd0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2fcc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2fc0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2fec(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2fe8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2fe4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x35a0(%rsp)
movl $0x10, 0x359c(%rsp)
movq 0x35a0(%rsp), %rax
movslq 0x359c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x359c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6b8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x18b0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12b7a8b
movq 0x6b8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x18c8(%rsp)
movb $0x1, 0x1f43(%rsp)
testb $0x1, 0x1f43(%rsp)
jne 0x12b7bc6
leaq 0x1888(%rsp), %rax
movq %rax, 0x2118(%rsp)
movq 0x2118(%rsp), %rax
movq %rax, 0x3c40(%rsp)
movq 0x3c40(%rsp), %rax
movq %rax, 0x6a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b7b69
movq 0x6a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c3c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c3c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c38(%rsp)
cmpl $0x1, 0x3c38(%rsp)
jne 0x12b7b69
movq 0x6a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b7b3a
movq 0x6a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b7b38
jmp 0x12b7b67
movq 0x6a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cc0(%rsp)
cmpq $0x0, 0x3cc0(%rsp)
je 0x12b7b65
movq 0x3cc0(%rsp), %rdi
callq 0x5f480
jmp 0x12b7b67
jmp 0x12b7b69
movq 0x6a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b7bc4
movq %rax, %rdi
callq 0x678a0
jmp 0x12b7bc6
leaq 0x1888(%rsp), %rax
movq %rax, 0x20b8(%rsp)
movq 0x20b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x698(%rsp)
leaq 0x1888(%rsp), %rax
movq %rax, 0x2200(%rsp)
movq 0x2200(%rsp), %rax
movq %rax, 0x3a70(%rsp)
movq 0x3a70(%rsp), %rax
movq %rax, 0x6a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b7cb1
movq 0x6a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a6c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a6c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a68(%rsp)
cmpl $0x1, 0x3a68(%rsp)
jne 0x12b7cb1
movq 0x6a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b7c82
movq 0x6a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b7c80
jmp 0x12b7caf
movq 0x6a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3da8(%rsp)
cmpq $0x0, 0x3da8(%rsp)
je 0x12b7cad
movq 0x3da8(%rsp), %rdi
callq 0x5f480
jmp 0x12b7caf
jmp 0x12b7cb1
movq 0x6a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b7d0c
movq %rax, %rdi
callq 0x678a0
movq 0x698(%rsp), %rax
movq %rax, 0x18d0(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x192c(%rsp), %eax
leaq 0x1838(%rsp), %rdx
movq %rdx, 0x24f0(%rsp)
movq %rcx, 0x24e8(%rsp)
movl %eax, 0x24e4(%rsp)
movq 0x24e8(%rsp), %rax
movq %rax, 0x690(%rsp)
movb $0x0, 0x24e3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x24e4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1838(%rsp), %r10
movq %r10, 0x2b90(%rsp)
movl %r9d, 0x2b8c(%rsp)
movl %r8d, 0x2b88(%rsp)
movl %edi, 0x2b84(%rsp)
movq %rsi, 0x2b78(%rsp)
movq %rdx, 0x2b70(%rsp)
movl %ecx, 0x2b6c(%rsp)
movq %rax, 0x2b60(%rsp)
movq 0x2b90(%rsp), %rcx
movq %rcx, 0x688(%rsp)
movq 0x2b78(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2b70(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2b6c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2b60(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2b8c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2b88(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2b84(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x36e0(%rsp)
movl $0x10, 0x36dc(%rsp)
movq 0x36e0(%rsp), %rax
movslq 0x36dc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x36dc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x690(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1860(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12b7ed8
movq 0x690(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1878(%rsp)
movb $0x1, 0x24e3(%rsp)
testb $0x1, 0x24e3(%rsp)
jne 0x12b8013
leaq 0x1838(%rsp), %rax
movq %rax, 0x24f8(%rsp)
movq 0x24f8(%rsp), %rax
movq %rax, 0x3750(%rsp)
movq 0x3750(%rsp), %rax
movq %rax, 0x680(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b7fb6
movq 0x680(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x374c(%rsp) # imm = 0xFFFFFFFF
movl 0x374c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3748(%rsp)
cmpl $0x1, 0x3748(%rsp)
jne 0x12b7fb6
movq 0x680(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b7f87
movq 0x680(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b7f85
jmp 0x12b7fb4
movq 0x680(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f38(%rsp)
cmpq $0x0, 0x3f38(%rsp)
je 0x12b7fb2
movq 0x3f38(%rsp), %rdi
callq 0x5f480
jmp 0x12b7fb4
jmp 0x12b7fb6
movq 0x680(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b8011
movq %rax, %rdi
callq 0x678a0
jmp 0x12b8013
leaq 0x1838(%rsp), %rax
movq %rax, 0x25e0(%rsp)
movq 0x25e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x670(%rsp)
leaq 0x1838(%rsp), %rax
movq %rax, 0x2208(%rsp)
movq 0x2208(%rsp), %rax
movq %rax, 0x3a60(%rsp)
movq 0x3a60(%rsp), %rax
movq %rax, 0x678(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b80fe
movq 0x678(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a5c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a5c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a58(%rsp)
cmpl $0x1, 0x3a58(%rsp)
jne 0x12b80fe
movq 0x678(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b80cf
movq 0x678(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b80cd
jmp 0x12b80fc
movq 0x678(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3db0(%rsp)
cmpq $0x0, 0x3db0(%rsp)
je 0x12b80fa
movq 0x3db0(%rsp), %rdi
callq 0x5f480
jmp 0x12b80fc
jmp 0x12b80fe
movq 0x678(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b8159
movq %rax, %rdi
callq 0x678a0
movq 0x670(%rsp), %rax
movq %rax, 0x1880(%rsp)
movl $0x0, 0x1834(%rsp)
movl 0x1834(%rsp), %eax
cmpl 0x1c70(%rsp), %eax
jge 0x12b82e4
movl $0x0, 0x1830(%rsp)
movl 0x1830(%rsp), %eax
cmpl 0x1c74(%rsp), %eax
jge 0x12b82cc
movq 0x1920(%rsp), %rax
movq %rax, 0x26f8(%rsp)
movq 0x26f8(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1820(%rsp)
movl $0x0, 0x181c(%rsp)
movl 0x181c(%rsp), %eax
cmpl 0x1c78(%rsp), %eax
jge 0x12b82a2
movq 0x18d0(%rsp), %rax
movq %rax, 0x26f0(%rsp)
movq 0x26f0(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1800(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x1820(%rsp), %rsi
leaq 0x1800(%rsp), %rdx
callq 0x12f6c60
movaps %xmm0, 0x17f0(%rsp)
movq 0x1880(%rsp), %rax
movaps 0x17f0(%rsp), %xmm0
movq %rax, 0x2948(%rsp)
movaps %xmm0, 0x2930(%rsp)
movaps 0x2930(%rsp), %xmm0
movq 0x2948(%rsp), %rax
movups %xmm0, (%rax)
movq 0x18d0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x18d0(%rsp)
movq 0x1880(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1880(%rsp)
movl 0x181c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x181c(%rsp)
jmp 0x12b81d5
movq 0x1920(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1920(%rsp)
movl 0x1830(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1830(%rsp)
jmp 0x12b8193
jmp 0x12b82ce
movl 0x1834(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1834(%rsp)
jmp 0x12b8174
jmp 0x12b82e6
movl 0x192c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x192c(%rsp)
jmp 0x12b746e
movl $0x0, 0x1cc4(%rsp)
jmp 0x12c3f40
movq 0x1cb0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x12bf5bb
cmpl $0x1, 0x1c78(%rsp)
jne 0x12b9237
cmpl $0x1, 0x1c74(%rsp)
jne 0x12b9237
movl 0x1c6c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jne 0x12b9237
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movl 0x1c8c(%rsp), %ecx
movq 0x1c80(%rsp), %r8
movl 0x1c7c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d48(%rsp)
movq 0x1d48(%rsp), %rcx
movq %rcx, 0x660(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x66f(%rsp)
je 0x12b83f1
movq 0x660(%rsp), %rax
movq %rax, 0x2a30(%rsp)
movq 0x2a30(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x66f(%rsp)
movb 0x66f(%rsp), %al
testb $0x1, %al
jne 0x12b83fe
jmp 0x12b840e
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12c3f40
movl $0x0, 0x17ec(%rsp)
movl 0x17ec(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jge 0x12b9227
movq 0x1cb8(%rsp), %rcx
movl 0x17ec(%rsp), %eax
leaq 0x1798(%rsp), %rdx
movq %rdx, 0x1f38(%rsp)
movq %rcx, 0x1f30(%rsp)
movl %eax, 0x1f2c(%rsp)
movq 0x1f30(%rsp), %rax
movq %rax, 0x658(%rsp)
movb $0x0, 0x1f2b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1f2c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1798(%rsp), %r10
movq %r10, 0x3028(%rsp)
movl %r9d, 0x3024(%rsp)
movl %r8d, 0x3020(%rsp)
movl %edi, 0x301c(%rsp)
movq %rsi, 0x3010(%rsp)
movq %rdx, 0x3008(%rsp)
movl %ecx, 0x3004(%rsp)
movq %rax, 0x2ff8(%rsp)
movq 0x3028(%rsp), %rcx
movq %rcx, 0x650(%rsp)
movq 0x3010(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3008(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3004(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ff8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3024(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3020(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x301c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3590(%rsp)
movl $0x10, 0x358c(%rsp)
movq 0x3590(%rsp), %rax
movslq 0x358c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x358c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x658(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x17c0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12b85e9
movq 0x658(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x17d8(%rsp)
movb $0x1, 0x1f2b(%rsp)
testb $0x1, 0x1f2b(%rsp)
jne 0x12b8724
leaq 0x1798(%rsp), %rax
movq %rax, 0x2120(%rsp)
movq 0x2120(%rsp), %rax
movq %rax, 0x3c30(%rsp)
movq 0x3c30(%rsp), %rax
movq %rax, 0x648(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b86c7
movq 0x648(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c2c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c2c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c28(%rsp)
cmpl $0x1, 0x3c28(%rsp)
jne 0x12b86c7
movq 0x648(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b8698
movq 0x648(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b8696
jmp 0x12b86c5
movq 0x648(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cc8(%rsp)
cmpq $0x0, 0x3cc8(%rsp)
je 0x12b86c3
movq 0x3cc8(%rsp), %rdi
callq 0x5f480
jmp 0x12b86c5
jmp 0x12b86c7
movq 0x648(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b8722
movq %rax, %rdi
callq 0x678a0
jmp 0x12b8724
leaq 0x1798(%rsp), %rax
movq %rax, 0x20b0(%rsp)
movq 0x20b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x638(%rsp)
leaq 0x1798(%rsp), %rax
movq %rax, 0x2210(%rsp)
movq 0x2210(%rsp), %rax
movq %rax, 0x3a50(%rsp)
movq 0x3a50(%rsp), %rax
movq %rax, 0x640(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b880f
movq 0x640(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a4c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a4c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a48(%rsp)
cmpl $0x1, 0x3a48(%rsp)
jne 0x12b880f
movq 0x640(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b87e0
movq 0x640(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b87de
jmp 0x12b880d
movq 0x640(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3db8(%rsp)
cmpq $0x0, 0x3db8(%rsp)
je 0x12b880b
movq 0x3db8(%rsp), %rdi
callq 0x5f480
jmp 0x12b880d
jmp 0x12b880f
movq 0x640(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b886a
movq %rax, %rdi
callq 0x678a0
movq 0x638(%rsp), %rax
movq %rax, 0x17e0(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x17ec(%rsp), %eax
leaq 0x1748(%rsp), %rdx
movq %rdx, 0x24d0(%rsp)
movq %rcx, 0x24c8(%rsp)
movl %eax, 0x24c4(%rsp)
movq 0x24c8(%rsp), %rax
movq %rax, 0x630(%rsp)
movb $0x0, 0x24c3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x24c4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1748(%rsp), %r10
movq %r10, 0x2bc8(%rsp)
movl %r9d, 0x2bc4(%rsp)
movl %r8d, 0x2bc0(%rsp)
movl %edi, 0x2bbc(%rsp)
movq %rsi, 0x2bb0(%rsp)
movq %rdx, 0x2ba8(%rsp)
movl %ecx, 0x2ba4(%rsp)
movq %rax, 0x2b98(%rsp)
movq 0x2bc8(%rsp), %rcx
movq %rcx, 0x628(%rsp)
movq 0x2bb0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2ba8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2ba4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2b98(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2bc4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2bc0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2bbc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x36d0(%rsp)
movl $0x10, 0x36cc(%rsp)
movq 0x36d0(%rsp), %rax
movslq 0x36cc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x36cc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x630(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1770(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12b8a36
movq 0x630(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1788(%rsp)
movb $0x1, 0x24c3(%rsp)
testb $0x1, 0x24c3(%rsp)
jne 0x12b8b71
leaq 0x1748(%rsp), %rax
movq %rax, 0x24d8(%rsp)
movq 0x24d8(%rsp), %rax
movq %rax, 0x3760(%rsp)
movq 0x3760(%rsp), %rax
movq %rax, 0x620(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b8b14
movq 0x620(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x375c(%rsp) # imm = 0xFFFFFFFF
movl 0x375c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3758(%rsp)
cmpl $0x1, 0x3758(%rsp)
jne 0x12b8b14
movq 0x620(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b8ae5
movq 0x620(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b8ae3
jmp 0x12b8b12
movq 0x620(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f30(%rsp)
cmpq $0x0, 0x3f30(%rsp)
je 0x12b8b10
movq 0x3f30(%rsp), %rdi
callq 0x5f480
jmp 0x12b8b12
jmp 0x12b8b14
movq 0x620(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b8b6f
movq %rax, %rdi
callq 0x678a0
jmp 0x12b8b71
leaq 0x1748(%rsp), %rax
movq %rax, 0x25d8(%rsp)
movq 0x25d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x610(%rsp)
leaq 0x1748(%rsp), %rax
movq %rax, 0x2218(%rsp)
movq 0x2218(%rsp), %rax
movq %rax, 0x3a40(%rsp)
movq 0x3a40(%rsp), %rax
movq %rax, 0x618(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b8c5c
movq 0x618(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a3c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a3c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a38(%rsp)
cmpl $0x1, 0x3a38(%rsp)
jne 0x12b8c5c
movq 0x618(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b8c2d
movq 0x618(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b8c2b
jmp 0x12b8c5a
movq 0x618(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3dc0(%rsp)
cmpq $0x0, 0x3dc0(%rsp)
je 0x12b8c58
movq 0x3dc0(%rsp), %rdi
callq 0x5f480
jmp 0x12b8c5a
jmp 0x12b8c5c
movq 0x618(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b8cb7
movq %rax, %rdi
callq 0x678a0
movq 0x610(%rsp), %rax
movq %rax, 0x1790(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x17ec(%rsp), %eax
leaq 0x16f8(%rsp), %rdx
movq %rdx, 0x1f20(%rsp)
movq %rcx, 0x1f18(%rsp)
movl %eax, 0x1f14(%rsp)
movq 0x1f18(%rsp), %rax
movq %rax, 0x608(%rsp)
movb $0x0, 0x1f13(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1f14(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x16f8(%rsp), %r10
movq %r10, 0x3060(%rsp)
movl %r9d, 0x305c(%rsp)
movl %r8d, 0x3058(%rsp)
movl %edi, 0x3054(%rsp)
movq %rsi, 0x3048(%rsp)
movq %rdx, 0x3040(%rsp)
movl %ecx, 0x303c(%rsp)
movq %rax, 0x3030(%rsp)
movq 0x3060(%rsp), %rcx
movq %rcx, 0x600(%rsp)
movq 0x3048(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3040(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x303c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3030(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x305c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3058(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3054(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3580(%rsp)
movl $0x10, 0x357c(%rsp)
movq 0x3580(%rsp), %rax
movslq 0x357c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x357c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x608(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1720(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12b8e83
movq 0x608(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1738(%rsp)
movb $0x1, 0x1f13(%rsp)
testb $0x1, 0x1f13(%rsp)
jne 0x12b8fbe
leaq 0x16f8(%rsp), %rax
movq %rax, 0x2128(%rsp)
movq 0x2128(%rsp), %rax
movq %rax, 0x3c20(%rsp)
movq 0x3c20(%rsp), %rax
movq %rax, 0x5f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b8f61
movq 0x5f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c1c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c1c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c18(%rsp)
cmpl $0x1, 0x3c18(%rsp)
jne 0x12b8f61
movq 0x5f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b8f32
movq 0x5f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b8f30
jmp 0x12b8f5f
movq 0x5f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cd0(%rsp)
cmpq $0x0, 0x3cd0(%rsp)
je 0x12b8f5d
movq 0x3cd0(%rsp), %rdi
callq 0x5f480
jmp 0x12b8f5f
jmp 0x12b8f61
movq 0x5f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b8fbc
movq %rax, %rdi
callq 0x678a0
jmp 0x12b8fbe
leaq 0x16f8(%rsp), %rax
movq %rax, 0x20a8(%rsp)
movq 0x20a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5e8(%rsp)
leaq 0x16f8(%rsp), %rax
movq %rax, 0x2220(%rsp)
movq 0x2220(%rsp), %rax
movq %rax, 0x3a30(%rsp)
movq 0x3a30(%rsp), %rax
movq %rax, 0x5f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b90a9
movq 0x5f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a2c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a2c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a28(%rsp)
cmpl $0x1, 0x3a28(%rsp)
jne 0x12b90a9
movq 0x5f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b907a
movq 0x5f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b9078
jmp 0x12b90a7
movq 0x5f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3dc8(%rsp)
cmpq $0x0, 0x3dc8(%rsp)
je 0x12b90a5
movq 0x3dc8(%rsp), %rdi
callq 0x5f480
jmp 0x12b90a7
jmp 0x12b90a9
movq 0x5f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b9104
movq %rax, %rdi
callq 0x678a0
movq 0x5e8(%rsp), %rax
movq %rax, 0x1740(%rsp)
movq 0x1740(%rsp), %rax
movq %rax, 0x26e8(%rsp)
movq 0x26e8(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x16e0(%rsp)
movl $0x0, 0x16dc(%rsp)
movl 0x16dc(%rsp), %eax
cmpl 0x1c88(%rsp), %eax
jge 0x12b920f
movq 0x17e0(%rsp), %rax
movq %rax, 0x26e0(%rsp)
movq 0x26e0(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x16c0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x16c0(%rsp), %rsi
leaq 0x16e0(%rsp), %rdx
callq 0x12f6c60
movaps %xmm0, 0x16b0(%rsp)
movq 0x1790(%rsp), %rax
movaps 0x16b0(%rsp), %xmm0
movq %rax, 0x2928(%rsp)
movaps %xmm0, 0x2910(%rsp)
movaps 0x2910(%rsp), %xmm0
movq 0x2928(%rsp), %rax
movups %xmm0, (%rax)
movq 0x17e0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x17e0(%rsp)
movq 0x1790(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1790(%rsp)
movl 0x16dc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x16dc(%rsp)
jmp 0x12b9142
jmp 0x12b9211
movl 0x17ec(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x17ec(%rsp)
jmp 0x12b8419
movl $0x0, 0x1cc4(%rsp)
jmp 0x12c3f40
movl 0x1c78(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jne 0x12b9d64
movl 0x1c74(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jne 0x12b9d64
cmpl $0x1, 0x1c6c(%rsp)
jne 0x12b9d64
cmpl $0x1, 0x1c5c(%rsp)
jne 0x12b9d64
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movl 0x1c8c(%rsp), %ecx
movq 0x1c80(%rsp), %r8
movl 0x1c7c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d40(%rsp)
movq 0x1d40(%rsp), %rcx
movq %rcx, 0x5d8(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x5e7(%rsp)
je 0x12b931e
movq 0x5d8(%rsp), %rax
movq %rax, 0x2a38(%rsp)
movq 0x2a38(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x5e7(%rsp)
movb 0x5e7(%rsp), %al
testb $0x1, %al
jne 0x12b932b
jmp 0x12b933b
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12c3f40
movl $0x0, 0x16ac(%rsp)
movl 0x16ac(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jge 0x12b9d54
movq 0x1cb8(%rsp), %rcx
movl 0x16ac(%rsp), %eax
leaq 0x1658(%rsp), %rdx
movq %rdx, 0x1f08(%rsp)
movq %rcx, 0x1f00(%rsp)
movl %eax, 0x1efc(%rsp)
movq 0x1f00(%rsp), %rax
movq %rax, 0x5d0(%rsp)
movb $0x0, 0x1efb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1efc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1658(%rsp), %r10
movq %r10, 0x3098(%rsp)
movl %r9d, 0x3094(%rsp)
movl %r8d, 0x3090(%rsp)
movl %edi, 0x308c(%rsp)
movq %rsi, 0x3080(%rsp)
movq %rdx, 0x3078(%rsp)
movl %ecx, 0x3074(%rsp)
movq %rax, 0x3068(%rsp)
movq 0x3098(%rsp), %rcx
movq %rcx, 0x5c8(%rsp)
movq 0x3080(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3078(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3074(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3068(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3094(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3090(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x308c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3570(%rsp)
movl $0x10, 0x356c(%rsp)
movq 0x3570(%rsp), %rax
movslq 0x356c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x356c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5d0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1680(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12b9516
movq 0x5d0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1698(%rsp)
movb $0x1, 0x1efb(%rsp)
testb $0x1, 0x1efb(%rsp)
jne 0x12b9651
leaq 0x1658(%rsp), %rax
movq %rax, 0x2130(%rsp)
movq 0x2130(%rsp), %rax
movq %rax, 0x3c10(%rsp)
movq 0x3c10(%rsp), %rax
movq %rax, 0x5c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b95f4
movq 0x5c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c0c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c0c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c08(%rsp)
cmpl $0x1, 0x3c08(%rsp)
jne 0x12b95f4
movq 0x5c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b95c5
movq 0x5c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b95c3
jmp 0x12b95f2
movq 0x5c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cd8(%rsp)
cmpq $0x0, 0x3cd8(%rsp)
je 0x12b95f0
movq 0x3cd8(%rsp), %rdi
callq 0x5f480
jmp 0x12b95f2
jmp 0x12b95f4
movq 0x5c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b964f
movq %rax, %rdi
callq 0x678a0
jmp 0x12b9651
leaq 0x1658(%rsp), %rax
movq %rax, 0x20a0(%rsp)
movq 0x20a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5b0(%rsp)
leaq 0x1658(%rsp), %rax
movq %rax, 0x2228(%rsp)
movq 0x2228(%rsp), %rax
movq %rax, 0x3a20(%rsp)
movq 0x3a20(%rsp), %rax
movq %rax, 0x5b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b973c
movq 0x5b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a1c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a1c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a18(%rsp)
cmpl $0x1, 0x3a18(%rsp)
jne 0x12b973c
movq 0x5b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b970d
movq 0x5b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b970b
jmp 0x12b973a
movq 0x5b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3dd0(%rsp)
cmpq $0x0, 0x3dd0(%rsp)
je 0x12b9738
movq 0x3dd0(%rsp), %rdi
callq 0x5f480
jmp 0x12b973a
jmp 0x12b973c
movq 0x5b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b9797
movq %rax, %rdi
callq 0x678a0
movq 0x5b0(%rsp), %rax
movq %rax, 0x16a0(%rsp)
movq 0x1cb0(%rsp), %rax
movq %rax, 0x2098(%rsp)
movq 0x2098(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1650(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x16ac(%rsp), %eax
leaq 0x1600(%rsp), %rdx
movq %rdx, 0x24b0(%rsp)
movq %rcx, 0x24a8(%rsp)
movl %eax, 0x24a4(%rsp)
movq 0x24a8(%rsp), %rax
movq %rax, 0x5a8(%rsp)
movb $0x0, 0x24a3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x24a4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1600(%rsp), %r10
movq %r10, 0x2c00(%rsp)
movl %r9d, 0x2bfc(%rsp)
movl %r8d, 0x2bf8(%rsp)
movl %edi, 0x2bf4(%rsp)
movq %rsi, 0x2be8(%rsp)
movq %rdx, 0x2be0(%rsp)
movl %ecx, 0x2bdc(%rsp)
movq %rax, 0x2bd0(%rsp)
movq 0x2c00(%rsp), %rcx
movq %rcx, 0x5a0(%rsp)
movq 0x2be8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2be0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2bdc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2bd0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2bfc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2bf8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2bf4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x36c0(%rsp)
movl $0x10, 0x36bc(%rsp)
movq 0x36c0(%rsp), %rax
movslq 0x36bc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x36bc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5a8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1628(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12b9986
movq 0x5a8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1640(%rsp)
movb $0x1, 0x24a3(%rsp)
testb $0x1, 0x24a3(%rsp)
jne 0x12b9ac1
leaq 0x1600(%rsp), %rax
movq %rax, 0x24b8(%rsp)
movq 0x24b8(%rsp), %rax
movq %rax, 0x3770(%rsp)
movq 0x3770(%rsp), %rax
movq %rax, 0x598(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b9a64
movq 0x598(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x376c(%rsp) # imm = 0xFFFFFFFF
movl 0x376c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3768(%rsp)
cmpl $0x1, 0x3768(%rsp)
jne 0x12b9a64
movq 0x598(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b9a35
movq 0x598(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b9a33
jmp 0x12b9a62
movq 0x598(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f28(%rsp)
cmpq $0x0, 0x3f28(%rsp)
je 0x12b9a60
movq 0x3f28(%rsp), %rdi
callq 0x5f480
jmp 0x12b9a62
jmp 0x12b9a64
movq 0x598(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b9abf
movq %rax, %rdi
callq 0x678a0
jmp 0x12b9ac1
leaq 0x1600(%rsp), %rax
movq %rax, 0x25d0(%rsp)
movq 0x25d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x588(%rsp)
leaq 0x1600(%rsp), %rax
movq %rax, 0x2230(%rsp)
movq 0x2230(%rsp), %rax
movq %rax, 0x3a10(%rsp)
movq 0x3a10(%rsp), %rax
movq %rax, 0x590(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12b9bac
movq 0x590(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a0c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a0c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a08(%rsp)
cmpl $0x1, 0x3a08(%rsp)
jne 0x12b9bac
movq 0x590(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12b9b7d
movq 0x590(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12b9b7b
jmp 0x12b9baa
movq 0x590(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3dd8(%rsp)
cmpq $0x0, 0x3dd8(%rsp)
je 0x12b9ba8
movq 0x3dd8(%rsp), %rdi
callq 0x5f480
jmp 0x12b9baa
jmp 0x12b9bac
movq 0x590(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12b9c07
movq %rax, %rdi
callq 0x678a0
movq 0x588(%rsp), %rax
movq %rax, 0x1648(%rsp)
movl $0x0, 0x15fc(%rsp)
movl 0x15fc(%rsp), %eax
cmpl 0x1c88(%rsp), %eax
jge 0x12b9d3c
movq 0x16a0(%rsp), %rax
movq %rax, 0x26d8(%rsp)
movq 0x26d8(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x15e0(%rsp)
movq 0x1650(%rsp), %rax
movss (%rax), %xmm0
movss %xmm0, 0x2a00(%rsp)
movaps 0x2a00(%rsp), %xmm0
shufps $0x0, %xmm0, %xmm0 # xmm0 = xmm0[0,0,0,0]
movaps %xmm0, 0x29f0(%rsp)
movaps 0x29f0(%rsp), %xmm0
movaps %xmm0, 0x15d0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x15e0(%rsp), %rsi
leaq 0x15d0(%rsp), %rdx
callq 0x12f6c60
movaps %xmm0, 0x15c0(%rsp)
movq 0x1648(%rsp), %rax
movaps 0x15c0(%rsp), %xmm0
movq %rax, 0x2908(%rsp)
movaps %xmm0, 0x28f0(%rsp)
movaps 0x28f0(%rsp), %xmm0
movq 0x2908(%rsp), %rax
movups %xmm0, (%rax)
movq 0x16a0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x16a0(%rsp)
movq 0x1650(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x1650(%rsp)
movq 0x1648(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1648(%rsp)
movl 0x15fc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x15fc(%rsp)
jmp 0x12b9c22
jmp 0x12b9d3e
movl 0x16ac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x16ac(%rsp)
jmp 0x12b9346
movl $0x0, 0x1cc4(%rsp)
jmp 0x12c3f40
cmpl $0x1, 0x1c98(%rsp)
jne 0x12bac7d
cmpl $0x1, 0x1c94(%rsp)
jne 0x12bac7d
movl 0x1c6c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jne 0x12bac7d
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c6c(%rsp), %ecx
movq 0x1c60(%rsp), %r8
movl 0x1c5c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d38(%rsp)
movq 0x1d38(%rsp), %rcx
movq %rcx, 0x578(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x587(%rsp)
je 0x12b9e37
movq 0x578(%rsp), %rax
movq %rax, 0x2a40(%rsp)
movq 0x2a40(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x587(%rsp)
movb 0x587(%rsp), %al
testb $0x1, %al
jne 0x12b9e44
jmp 0x12b9e54
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12c3f40
movl $0x0, 0x15bc(%rsp)
movl 0x15bc(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12bac6d
movq 0x1cb8(%rsp), %rcx
movl 0x15bc(%rsp), %eax
leaq 0x1568(%rsp), %rdx
movq %rdx, 0x1ef0(%rsp)
movq %rcx, 0x1ee8(%rsp)
movl %eax, 0x1ee4(%rsp)
movq 0x1ee8(%rsp), %rax
movq %rax, 0x570(%rsp)
movb $0x0, 0x1ee3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1ee4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1568(%rsp), %r10
movq %r10, 0x30d0(%rsp)
movl %r9d, 0x30cc(%rsp)
movl %r8d, 0x30c8(%rsp)
movl %edi, 0x30c4(%rsp)
movq %rsi, 0x30b8(%rsp)
movq %rdx, 0x30b0(%rsp)
movl %ecx, 0x30ac(%rsp)
movq %rax, 0x30a0(%rsp)
movq 0x30d0(%rsp), %rcx
movq %rcx, 0x568(%rsp)
movq 0x30b8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x30b0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x30ac(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x30a0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x30cc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x30c8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x30c4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3560(%rsp)
movl $0x10, 0x355c(%rsp)
movq 0x3560(%rsp), %rax
movslq 0x355c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x355c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x570(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1590(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12ba02f
movq 0x570(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x15a8(%rsp)
movb $0x1, 0x1ee3(%rsp)
testb $0x1, 0x1ee3(%rsp)
jne 0x12ba16a
leaq 0x1568(%rsp), %rax
movq %rax, 0x2138(%rsp)
movq 0x2138(%rsp), %rax
movq %rax, 0x3c00(%rsp)
movq 0x3c00(%rsp), %rax
movq %rax, 0x560(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ba10d
movq 0x560(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bfc(%rsp) # imm = 0xFFFFFFFF
movl 0x3bfc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3bf8(%rsp)
cmpl $0x1, 0x3bf8(%rsp)
jne 0x12ba10d
movq 0x560(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ba0de
movq 0x560(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ba0dc
jmp 0x12ba10b
movq 0x560(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ce0(%rsp)
cmpq $0x0, 0x3ce0(%rsp)
je 0x12ba109
movq 0x3ce0(%rsp), %rdi
callq 0x5f480
jmp 0x12ba10b
jmp 0x12ba10d
movq 0x560(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ba168
movq %rax, %rdi
callq 0x678a0
jmp 0x12ba16a
leaq 0x1568(%rsp), %rax
movq %rax, 0x2090(%rsp)
movq 0x2090(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x550(%rsp)
leaq 0x1568(%rsp), %rax
movq %rax, 0x2238(%rsp)
movq 0x2238(%rsp), %rax
movq %rax, 0x3a00(%rsp)
movq 0x3a00(%rsp), %rax
movq %rax, 0x558(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ba255
movq 0x558(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x39fc(%rsp) # imm = 0xFFFFFFFF
movl 0x39fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x39f8(%rsp)
cmpl $0x1, 0x39f8(%rsp)
jne 0x12ba255
movq 0x558(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ba226
movq 0x558(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ba224
jmp 0x12ba253
movq 0x558(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3de0(%rsp)
cmpq $0x0, 0x3de0(%rsp)
je 0x12ba251
movq 0x3de0(%rsp), %rdi
callq 0x5f480
jmp 0x12ba253
jmp 0x12ba255
movq 0x558(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ba2b0
movq %rax, %rdi
callq 0x678a0
movq 0x550(%rsp), %rax
movq %rax, 0x15b0(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x15bc(%rsp), %eax
leaq 0x1518(%rsp), %rdx
movq %rdx, 0x2490(%rsp)
movq %rcx, 0x2488(%rsp)
movl %eax, 0x2484(%rsp)
movq 0x2488(%rsp), %rax
movq %rax, 0x548(%rsp)
movb $0x0, 0x2483(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2484(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1518(%rsp), %r10
movq %r10, 0x2c38(%rsp)
movl %r9d, 0x2c34(%rsp)
movl %r8d, 0x2c30(%rsp)
movl %edi, 0x2c2c(%rsp)
movq %rsi, 0x2c20(%rsp)
movq %rdx, 0x2c18(%rsp)
movl %ecx, 0x2c14(%rsp)
movq %rax, 0x2c08(%rsp)
movq 0x2c38(%rsp), %rcx
movq %rcx, 0x540(%rsp)
movq 0x2c20(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2c18(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2c14(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2c08(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2c34(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2c30(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2c2c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x36b0(%rsp)
movl $0x10, 0x36ac(%rsp)
movq 0x36b0(%rsp), %rax
movslq 0x36ac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x36ac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x548(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1540(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12ba47c
movq 0x548(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1558(%rsp)
movb $0x1, 0x2483(%rsp)
testb $0x1, 0x2483(%rsp)
jne 0x12ba5b7
leaq 0x1518(%rsp), %rax
movq %rax, 0x2498(%rsp)
movq 0x2498(%rsp), %rax
movq %rax, 0x3780(%rsp)
movq 0x3780(%rsp), %rax
movq %rax, 0x538(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ba55a
movq 0x538(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x377c(%rsp) # imm = 0xFFFFFFFF
movl 0x377c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3778(%rsp)
cmpl $0x1, 0x3778(%rsp)
jne 0x12ba55a
movq 0x538(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ba52b
movq 0x538(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ba529
jmp 0x12ba558
movq 0x538(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f20(%rsp)
cmpq $0x0, 0x3f20(%rsp)
je 0x12ba556
movq 0x3f20(%rsp), %rdi
callq 0x5f480
jmp 0x12ba558
jmp 0x12ba55a
movq 0x538(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ba5b5
movq %rax, %rdi
callq 0x678a0
jmp 0x12ba5b7
leaq 0x1518(%rsp), %rax
movq %rax, 0x25c8(%rsp)
movq 0x25c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x528(%rsp)
leaq 0x1518(%rsp), %rax
movq %rax, 0x2240(%rsp)
movq 0x2240(%rsp), %rax
movq %rax, 0x39f0(%rsp)
movq 0x39f0(%rsp), %rax
movq %rax, 0x530(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ba6a2
movq 0x530(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x39ec(%rsp) # imm = 0xFFFFFFFF
movl 0x39ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x39e8(%rsp)
cmpl $0x1, 0x39e8(%rsp)
jne 0x12ba6a2
movq 0x530(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ba673
movq 0x530(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ba671
jmp 0x12ba6a0
movq 0x530(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3de8(%rsp)
cmpq $0x0, 0x3de8(%rsp)
je 0x12ba69e
movq 0x3de8(%rsp), %rdi
callq 0x5f480
jmp 0x12ba6a0
jmp 0x12ba6a2
movq 0x530(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ba6fd
movq %rax, %rdi
callq 0x678a0
movq 0x528(%rsp), %rax
movq %rax, 0x1560(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x15bc(%rsp), %eax
leaq 0x14c8(%rsp), %rdx
movq %rdx, 0x1ed8(%rsp)
movq %rcx, 0x1ed0(%rsp)
movl %eax, 0x1ecc(%rsp)
movq 0x1ed0(%rsp), %rax
movq %rax, 0x520(%rsp)
movb $0x0, 0x1ecb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1ecc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x14c8(%rsp), %r10
movq %r10, 0x3108(%rsp)
movl %r9d, 0x3104(%rsp)
movl %r8d, 0x3100(%rsp)
movl %edi, 0x30fc(%rsp)
movq %rsi, 0x30f0(%rsp)
movq %rdx, 0x30e8(%rsp)
movl %ecx, 0x30e4(%rsp)
movq %rax, 0x30d8(%rsp)
movq 0x3108(%rsp), %rcx
movq %rcx, 0x518(%rsp)
movq 0x30f0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x30e8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x30e4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x30d8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3104(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3100(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x30fc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3550(%rsp)
movl $0x10, 0x354c(%rsp)
movq 0x3550(%rsp), %rax
movslq 0x354c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x354c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x520(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x14f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12ba8c9
movq 0x520(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1508(%rsp)
movb $0x1, 0x1ecb(%rsp)
testb $0x1, 0x1ecb(%rsp)
jne 0x12baa04
leaq 0x14c8(%rsp), %rax
movq %rax, 0x2140(%rsp)
movq 0x2140(%rsp), %rax
movq %rax, 0x3bf0(%rsp)
movq 0x3bf0(%rsp), %rax
movq %rax, 0x510(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ba9a7
movq 0x510(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bec(%rsp) # imm = 0xFFFFFFFF
movl 0x3bec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3be8(%rsp)
cmpl $0x1, 0x3be8(%rsp)
jne 0x12ba9a7
movq 0x510(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ba978
movq 0x510(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ba976
jmp 0x12ba9a5
movq 0x510(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ce8(%rsp)
cmpq $0x0, 0x3ce8(%rsp)
je 0x12ba9a3
movq 0x3ce8(%rsp), %rdi
callq 0x5f480
jmp 0x12ba9a5
jmp 0x12ba9a7
movq 0x510(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12baa02
movq %rax, %rdi
callq 0x678a0
jmp 0x12baa04
leaq 0x14c8(%rsp), %rax
movq %rax, 0x2088(%rsp)
movq 0x2088(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x500(%rsp)
leaq 0x14c8(%rsp), %rax
movq %rax, 0x2248(%rsp)
movq 0x2248(%rsp), %rax
movq %rax, 0x39e0(%rsp)
movq 0x39e0(%rsp), %rax
movq %rax, 0x508(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12baaef
movq 0x508(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x39dc(%rsp) # imm = 0xFFFFFFFF
movl 0x39dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x39d8(%rsp)
cmpl $0x1, 0x39d8(%rsp)
jne 0x12baaef
movq 0x508(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12baac0
movq 0x508(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12baabe
jmp 0x12baaed
movq 0x508(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3df0(%rsp)
cmpq $0x0, 0x3df0(%rsp)
je 0x12baaeb
movq 0x3df0(%rsp), %rdi
callq 0x5f480
jmp 0x12baaed
jmp 0x12baaef
movq 0x508(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12bab4a
movq %rax, %rdi
callq 0x678a0
movq 0x500(%rsp), %rax
movq %rax, 0x1510(%rsp)
movq 0x15b0(%rsp), %rax
movq %rax, 0x26d0(%rsp)
movq 0x26d0(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x14b0(%rsp)
movl $0x0, 0x14ac(%rsp)
movl 0x14ac(%rsp), %eax
cmpl 0x1c68(%rsp), %eax
jge 0x12bac55
movq 0x1510(%rsp), %rax
movq %rax, 0x26c8(%rsp)
movq 0x26c8(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1490(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x14b0(%rsp), %rsi
leaq 0x1490(%rsp), %rdx
callq 0x12f6c60
movaps %xmm0, 0x1480(%rsp)
movq 0x1560(%rsp), %rax
movaps 0x1480(%rsp), %xmm0
movq %rax, 0x28e8(%rsp)
movaps %xmm0, 0x28d0(%rsp)
movaps 0x28d0(%rsp), %xmm0
movq 0x28e8(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1510(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1510(%rsp)
movq 0x1560(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1560(%rsp)
movl 0x14ac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x14ac(%rsp)
jmp 0x12bab88
jmp 0x12bac57
movl 0x15bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x15bc(%rsp)
jmp 0x12b9e5f
movl $0x0, 0x1cc4(%rsp)
jmp 0x12c3f40
movl 0x1c78(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jne 0x12bb7aa
movl 0x1c74(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jne 0x12bb7aa
cmpl $0x1, 0x1c8c(%rsp)
jne 0x12bb7aa
cmpl $0x1, 0x1c7c(%rsp)
jne 0x12bb7aa
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c6c(%rsp), %ecx
movq 0x1c60(%rsp), %r8
movl 0x1c5c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d30(%rsp)
movq 0x1d30(%rsp), %rcx
movq %rcx, 0x4f0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x4ff(%rsp)
je 0x12bad64
movq 0x4f0(%rsp), %rax
movq %rax, 0x2a48(%rsp)
movq 0x2a48(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x4ff(%rsp)
movb 0x4ff(%rsp), %al
testb $0x1, %al
jne 0x12bad71
jmp 0x12bad81
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12c3f40
movl $0x0, 0x147c(%rsp)
movl 0x147c(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12bb79a
movq 0x1cb8(%rsp), %rax
movq %rax, 0x2080(%rsp)
movq 0x2080(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1470(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x147c(%rsp), %eax
leaq 0x1420(%rsp), %rdx
movq %rdx, 0x1ec0(%rsp)
movq %rcx, 0x1eb8(%rsp)
movl %eax, 0x1eb4(%rsp)
movq 0x1eb8(%rsp), %rax
movq %rax, 0x4e8(%rsp)
movb $0x0, 0x1eb3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1eb4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1420(%rsp), %r10
movq %r10, 0x3140(%rsp)
movl %r9d, 0x313c(%rsp)
movl %r8d, 0x3138(%rsp)
movl %edi, 0x3134(%rsp)
movq %rsi, 0x3128(%rsp)
movq %rdx, 0x3120(%rsp)
movl %ecx, 0x311c(%rsp)
movq %rax, 0x3110(%rsp)
movq 0x3140(%rsp), %rcx
movq %rcx, 0x4e0(%rsp)
movq 0x3128(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3120(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x311c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3110(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x313c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3138(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3134(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3540(%rsp)
movl $0x10, 0x353c(%rsp)
movq 0x3540(%rsp), %rax
movslq 0x353c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x353c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4e8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1448(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12baf7f
movq 0x4e8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1460(%rsp)
movb $0x1, 0x1eb3(%rsp)
testb $0x1, 0x1eb3(%rsp)
jne 0x12bb0ba
leaq 0x1420(%rsp), %rax
movq %rax, 0x2148(%rsp)
movq 0x2148(%rsp), %rax
movq %rax, 0x3be0(%rsp)
movq 0x3be0(%rsp), %rax
movq %rax, 0x4d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12bb05d
movq 0x4d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bdc(%rsp) # imm = 0xFFFFFFFF
movl 0x3bdc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3bd8(%rsp)
cmpl $0x1, 0x3bd8(%rsp)
jne 0x12bb05d
movq 0x4d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12bb02e
movq 0x4d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12bb02c
jmp 0x12bb05b
movq 0x4d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cf0(%rsp)
cmpq $0x0, 0x3cf0(%rsp)
je 0x12bb059
movq 0x3cf0(%rsp), %rdi
callq 0x5f480
jmp 0x12bb05b
jmp 0x12bb05d
movq 0x4d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12bb0b8
movq %rax, %rdi
callq 0x678a0
jmp 0x12bb0ba
leaq 0x1420(%rsp), %rax
movq %rax, 0x2078(%rsp)
movq 0x2078(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4c8(%rsp)
leaq 0x1420(%rsp), %rax
movq %rax, 0x2250(%rsp)
movq 0x2250(%rsp), %rax
movq %rax, 0x39d0(%rsp)
movq 0x39d0(%rsp), %rax
movq %rax, 0x4d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12bb1a5
movq 0x4d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x39cc(%rsp) # imm = 0xFFFFFFFF
movl 0x39cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x39c8(%rsp)
cmpl $0x1, 0x39c8(%rsp)
jne 0x12bb1a5
movq 0x4d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12bb176
movq 0x4d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12bb174
jmp 0x12bb1a3
movq 0x4d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3df8(%rsp)
cmpq $0x0, 0x3df8(%rsp)
je 0x12bb1a1
movq 0x3df8(%rsp), %rdi
callq 0x5f480
jmp 0x12bb1a3
jmp 0x12bb1a5
movq 0x4d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12bb200
movq %rax, %rdi
callq 0x678a0
movq 0x4c8(%rsp), %rax
movq %rax, 0x1468(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x147c(%rsp), %eax
leaq 0x13d0(%rsp), %rdx
movq %rdx, 0x2470(%rsp)
movq %rcx, 0x2468(%rsp)
movl %eax, 0x2464(%rsp)
movq 0x2468(%rsp), %rax
movq %rax, 0x4c0(%rsp)
movb $0x0, 0x2463(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2464(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x13d0(%rsp), %r10
movq %r10, 0x2c70(%rsp)
movl %r9d, 0x2c6c(%rsp)
movl %r8d, 0x2c68(%rsp)
movl %edi, 0x2c64(%rsp)
movq %rsi, 0x2c58(%rsp)
movq %rdx, 0x2c50(%rsp)
movl %ecx, 0x2c4c(%rsp)
movq %rax, 0x2c40(%rsp)
movq 0x2c70(%rsp), %rcx
movq %rcx, 0x4b8(%rsp)
movq 0x2c58(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2c50(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2c4c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2c40(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2c6c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2c68(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2c64(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x36a0(%rsp)
movl $0x10, 0x369c(%rsp)
movq 0x36a0(%rsp), %rax
movslq 0x369c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x369c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4c0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x13f8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12bb3cc
movq 0x4c0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1410(%rsp)
movb $0x1, 0x2463(%rsp)
testb $0x1, 0x2463(%rsp)
jne 0x12bb507
leaq 0x13d0(%rsp), %rax
movq %rax, 0x2478(%rsp)
movq 0x2478(%rsp), %rax
movq %rax, 0x3790(%rsp)
movq 0x3790(%rsp), %rax
movq %rax, 0x4b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12bb4aa
movq 0x4b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x378c(%rsp) # imm = 0xFFFFFFFF
movl 0x378c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3788(%rsp)
cmpl $0x1, 0x3788(%rsp)
jne 0x12bb4aa
movq 0x4b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12bb47b
movq 0x4b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12bb479
jmp 0x12bb4a8
movq 0x4b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f18(%rsp)
cmpq $0x0, 0x3f18(%rsp)
je 0x12bb4a6
movq 0x3f18(%rsp), %rdi
callq 0x5f480
jmp 0x12bb4a8
jmp 0x12bb4aa
movq 0x4b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12bb505
movq %rax, %rdi
callq 0x678a0
jmp 0x12bb507
leaq 0x13d0(%rsp), %rax
movq %rax, 0x25c0(%rsp)
movq 0x25c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4a0(%rsp)
leaq 0x13d0(%rsp), %rax
movq %rax, 0x2258(%rsp)
movq 0x2258(%rsp), %rax
movq %rax, 0x39c0(%rsp)
movq 0x39c0(%rsp), %rax
movq %rax, 0x4a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12bb5f2
movq 0x4a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x39bc(%rsp) # imm = 0xFFFFFFFF
movl 0x39bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x39b8(%rsp)
cmpl $0x1, 0x39b8(%rsp)
jne 0x12bb5f2
movq 0x4a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12bb5c3
movq 0x4a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12bb5c1
jmp 0x12bb5f0
movq 0x4a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e00(%rsp)
cmpq $0x0, 0x3e00(%rsp)
je 0x12bb5ee
movq 0x3e00(%rsp), %rdi
callq 0x5f480
jmp 0x12bb5f0
jmp 0x12bb5f2
movq 0x4a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12bb64d
movq %rax, %rdi
callq 0x678a0
movq 0x4a0(%rsp), %rax
movq %rax, 0x1418(%rsp)
movl $0x0, 0x13cc(%rsp)
movl 0x13cc(%rsp), %eax
cmpl 0x1c68(%rsp), %eax
jge 0x12bb782
movq 0x1470(%rsp), %rax
movss (%rax), %xmm0
movss %xmm0, 0x29e0(%rsp)
movaps 0x29e0(%rsp), %xmm0
shufps $0x0, %xmm0, %xmm0 # xmm0 = xmm0[0,0,0,0]
movaps %xmm0, 0x29d0(%rsp)
movaps 0x29d0(%rsp), %xmm0
movaps %xmm0, 0x13b0(%rsp)
movq 0x1468(%rsp), %rax
movq %rax, 0x26c0(%rsp)
movq 0x26c0(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x13a0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x13b0(%rsp), %rsi
leaq 0x13a0(%rsp), %rdx
callq 0x12f6c60
movaps %xmm0, 0x1390(%rsp)
movq 0x1418(%rsp), %rax
movaps 0x1390(%rsp), %xmm0
movq %rax, 0x28c8(%rsp)
movaps %xmm0, 0x28b0(%rsp)
movaps 0x28b0(%rsp), %xmm0
movq 0x28c8(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1470(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x1470(%rsp)
movq 0x1468(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1468(%rsp)
movq 0x1418(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1418(%rsp)
movl 0x13cc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x13cc(%rsp)
jmp 0x12bb668
jmp 0x12bb784
movl 0x147c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x147c(%rsp)
jmp 0x12bad8c
movl $0x0, 0x1cc4(%rsp)
jmp 0x12c3f40
cmpl $0x1, 0x1c98(%rsp)
je 0x12bc722
cmpl $0x1, 0x1c78(%rsp)
jne 0x12bc722
movl 0x1c74(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jne 0x12bc722
movl 0x1c6c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jne 0x12bc722
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movl 0x1c8c(%rsp), %ecx
movq 0x1c80(%rsp), %r8
movl 0x1c7c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d28(%rsp)
movq 0x1d28(%rsp), %rcx
movq %rcx, 0x490(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x49f(%rsp)
je 0x12bb891
movq 0x490(%rsp), %rax
movq %rax, 0x2a50(%rsp)
movq 0x2a50(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x49f(%rsp)
movb 0x49f(%rsp), %al
testb $0x1, %al
jne 0x12bb89e
jmp 0x12bb8ae
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12c3f40
movl $0x0, 0x138c(%rsp)
movl 0x138c(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12bc712
movq 0x1cb8(%rsp), %rcx
movl 0x138c(%rsp), %eax
leaq 0x1338(%rsp), %rdx
movq %rdx, 0x1ea8(%rsp)
movq %rcx, 0x1ea0(%rsp)
movl %eax, 0x1e9c(%rsp)
movq 0x1ea0(%rsp), %rax
movq %rax, 0x488(%rsp)
movb $0x0, 0x1e9b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e9c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1338(%rsp), %r10
movq %r10, 0x3178(%rsp)
movl %r9d, 0x3174(%rsp)
movl %r8d, 0x3170(%rsp)
movl %edi, 0x316c(%rsp)
movq %rsi, 0x3160(%rsp)
movq %rdx, 0x3158(%rsp)
movl %ecx, 0x3154(%rsp)
movq %rax, 0x3148(%rsp)
movq 0x3178(%rsp), %rcx
movq %rcx, 0x480(%rsp)
movq 0x3160(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3158(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3154(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3148(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3174(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3170(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x316c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3530(%rsp)
movl $0x10, 0x352c(%rsp)
movq 0x3530(%rsp), %rax
movslq 0x352c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x352c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x488(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1360(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12bba89
movq 0x488(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1378(%rsp)
movb $0x1, 0x1e9b(%rsp)
testb $0x1, 0x1e9b(%rsp)
jne 0x12bbbc4
leaq 0x1338(%rsp), %rax
movq %rax, 0x2150(%rsp)
movq 0x2150(%rsp), %rax
movq %rax, 0x3bd0(%rsp)
movq 0x3bd0(%rsp), %rax
movq %rax, 0x478(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12bbb67
movq 0x478(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bcc(%rsp) # imm = 0xFFFFFFFF
movl 0x3bcc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3bc8(%rsp)
cmpl $0x1, 0x3bc8(%rsp)
jne 0x12bbb67
movq 0x478(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12bbb38
movq 0x478(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12bbb36
jmp 0x12bbb65
movq 0x478(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cf8(%rsp)
cmpq $0x0, 0x3cf8(%rsp)
je 0x12bbb63
movq 0x3cf8(%rsp), %rdi
callq 0x5f480
jmp 0x12bbb65
jmp 0x12bbb67
movq 0x478(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12bbbc2
movq %rax, %rdi
callq 0x678a0
jmp 0x12bbbc4
leaq 0x1338(%rsp), %rax
movq %rax, 0x2070(%rsp)
movq 0x2070(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x468(%rsp)
leaq 0x1338(%rsp), %rax
movq %rax, 0x2260(%rsp)
movq 0x2260(%rsp), %rax
movq %rax, 0x39b0(%rsp)
movq 0x39b0(%rsp), %rax
movq %rax, 0x470(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12bbcaf
movq 0x470(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x39ac(%rsp) # imm = 0xFFFFFFFF
movl 0x39ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x39a8(%rsp)
cmpl $0x1, 0x39a8(%rsp)
jne 0x12bbcaf
movq 0x470(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12bbc80
movq 0x470(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12bbc7e
jmp 0x12bbcad
movq 0x470(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e08(%rsp)
cmpq $0x0, 0x3e08(%rsp)
je 0x12bbcab
movq 0x3e08(%rsp), %rdi
callq 0x5f480
jmp 0x12bbcad
jmp 0x12bbcaf
movq 0x470(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12bbd0a
movq %rax, %rdi
callq 0x678a0
movq 0x468(%rsp), %rax
movq %rax, 0x1380(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x138c(%rsp), %eax
leaq 0x12e8(%rsp), %rdx
movq %rdx, 0x1e90(%rsp)
movq %rcx, 0x1e88(%rsp)
movl %eax, 0x1e84(%rsp)
movq 0x1e88(%rsp), %rax
movq %rax, 0x460(%rsp)
movb $0x0, 0x1e83(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e84(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x12e8(%rsp), %r10
movq %r10, 0x31b0(%rsp)
movl %r9d, 0x31ac(%rsp)
movl %r8d, 0x31a8(%rsp)
movl %edi, 0x31a4(%rsp)
movq %rsi, 0x3198(%rsp)
movq %rdx, 0x3190(%rsp)
movl %ecx, 0x318c(%rsp)
movq %rax, 0x3180(%rsp)
movq 0x31b0(%rsp), %rcx
movq %rcx, 0x458(%rsp)
movq 0x3198(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3190(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x318c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3180(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x31ac(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x31a8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x31a4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3520(%rsp)
movl $0x10, 0x351c(%rsp)
movq 0x3520(%rsp), %rax
movslq 0x351c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x351c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x460(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1310(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12bbed6
movq 0x460(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1328(%rsp)
movb $0x1, 0x1e83(%rsp)
testb $0x1, 0x1e83(%rsp)
jne 0x12bc011
leaq 0x12e8(%rsp), %rax
movq %rax, 0x2158(%rsp)
movq 0x2158(%rsp), %rax
movq %rax, 0x3bc0(%rsp)
movq 0x3bc0(%rsp), %rax
movq %rax, 0x450(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12bbfb4
movq 0x450(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bbc(%rsp) # imm = 0xFFFFFFFF
movl 0x3bbc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3bb8(%rsp)
cmpl $0x1, 0x3bb8(%rsp)
jne 0x12bbfb4
movq 0x450(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12bbf85
movq 0x450(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12bbf83
jmp 0x12bbfb2
movq 0x450(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d00(%rsp)
cmpq $0x0, 0x3d00(%rsp)
je 0x12bbfb0
movq 0x3d00(%rsp), %rdi
callq 0x5f480
jmp 0x12bbfb2
jmp 0x12bbfb4
movq 0x450(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12bc00f
movq %rax, %rdi
callq 0x678a0
jmp 0x12bc011
leaq 0x12e8(%rsp), %rax
movq %rax, 0x2068(%rsp)
movq 0x2068(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x440(%rsp)
leaq 0x12e8(%rsp), %rax
movq %rax, 0x2268(%rsp)
movq 0x2268(%rsp), %rax
movq %rax, 0x39a0(%rsp)
movq 0x39a0(%rsp), %rax
movq %rax, 0x448(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12bc0fc
movq 0x448(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x399c(%rsp) # imm = 0xFFFFFFFF
movl 0x399c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3998(%rsp)
cmpl $0x1, 0x3998(%rsp)
jne 0x12bc0fc
movq 0x448(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12bc0cd
movq 0x448(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12bc0cb
jmp 0x12bc0fa
movq 0x448(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e10(%rsp)
cmpq $0x0, 0x3e10(%rsp)
je 0x12bc0f8
movq 0x3e10(%rsp), %rdi
callq 0x5f480
jmp 0x12bc0fa
jmp 0x12bc0fc
movq 0x448(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12bc157
movq %rax, %rdi
callq 0x678a0
movq 0x440(%rsp), %rax
movq %rax, 0x1330(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x138c(%rsp), %eax
leaq 0x1298(%rsp), %rdx
movq %rdx, 0x2450(%rsp)
movq %rcx, 0x2448(%rsp)
movl %eax, 0x2444(%rsp)
movq 0x2448(%rsp), %rax
movq %rax, 0x438(%rsp)
movb $0x0, 0x2443(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2444(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1298(%rsp), %r10
movq %r10, 0x2ca8(%rsp)
movl %r9d, 0x2ca4(%rsp)
movl %r8d, 0x2ca0(%rsp)
movl %edi, 0x2c9c(%rsp)
movq %rsi, 0x2c90(%rsp)
movq %rdx, 0x2c88(%rsp)
movl %ecx, 0x2c84(%rsp)
movq %rax, 0x2c78(%rsp)
movq 0x2ca8(%rsp), %rcx
movq %rcx, 0x430(%rsp)
movq 0x2c90(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2c88(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2c84(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2c78(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2ca4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2ca0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2c9c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3690(%rsp)
movl $0x10, 0x368c(%rsp)
movq 0x3690(%rsp), %rax
movslq 0x368c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x368c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x438(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x12c0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12bc323
movq 0x438(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x12d8(%rsp)
movb $0x1, 0x2443(%rsp)
testb $0x1, 0x2443(%rsp)
jne 0x12bc45e
leaq 0x1298(%rsp), %rax
movq %rax, 0x2458(%rsp)
movq 0x2458(%rsp), %rax
movq %rax, 0x37a0(%rsp)
movq 0x37a0(%rsp), %rax
movq %rax, 0x428(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12bc401
movq 0x428(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x379c(%rsp) # imm = 0xFFFFFFFF
movl 0x379c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3798(%rsp)
cmpl $0x1, 0x3798(%rsp)
jne 0x12bc401
movq 0x428(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12bc3d2
movq 0x428(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12bc3d0
jmp 0x12bc3ff
movq 0x428(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f10(%rsp)
cmpq $0x0, 0x3f10(%rsp)
je 0x12bc3fd
movq 0x3f10(%rsp), %rdi
callq 0x5f480
jmp 0x12bc3ff
jmp 0x12bc401
movq 0x428(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12bc45c
movq %rax, %rdi
callq 0x678a0
jmp 0x12bc45e
leaq 0x1298(%rsp), %rax
movq %rax, 0x25b8(%rsp)
movq 0x25b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x418(%rsp)
leaq 0x1298(%rsp), %rax
movq %rax, 0x2270(%rsp)
movq 0x2270(%rsp), %rax
movq %rax, 0x3990(%rsp)
movq 0x3990(%rsp), %rax
movq %rax, 0x420(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12bc549
movq 0x420(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x398c(%rsp) # imm = 0xFFFFFFFF
movl 0x398c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3988(%rsp)
cmpl $0x1, 0x3988(%rsp)
jne 0x12bc549
movq 0x420(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12bc51a
movq 0x420(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12bc518
jmp 0x12bc547
movq 0x420(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e18(%rsp)
cmpq $0x0, 0x3e18(%rsp)
je 0x12bc545
movq 0x3e18(%rsp), %rdi
callq 0x5f480
jmp 0x12bc547
jmp 0x12bc549
movq 0x420(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12bc5a4
movq %rax, %rdi
callq 0x678a0
movq 0x418(%rsp), %rax
movq %rax, 0x12e0(%rsp)
movl $0x0, 0x1294(%rsp)
movl 0x1294(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jge 0x12bc6fa
movq 0x1330(%rsp), %rax
movl 0x1294(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x26b8(%rsp)
movq 0x26b8(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1280(%rsp)
movl $0x0, 0x127c(%rsp)
movl 0x127c(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jge 0x12bc6e2
movq 0x1380(%rsp), %rax
movq %rax, 0x26b0(%rsp)
movq 0x26b0(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1260(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x1260(%rsp), %rsi
leaq 0x1280(%rsp), %rdx
callq 0x12f6c60
movaps %xmm0, 0x1250(%rsp)
movq 0x12e0(%rsp), %rax
movaps 0x1250(%rsp), %xmm0
movq %rax, 0x28a8(%rsp)
movaps %xmm0, 0x2890(%rsp)
movaps 0x2890(%rsp), %xmm0
movq 0x28a8(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1380(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1380(%rsp)
movq 0x12e0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x12e0(%rsp)
movl 0x127c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x127c(%rsp)
jmp 0x12bc615
jmp 0x12bc6e4
movl 0x1294(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1294(%rsp)
jmp 0x12bc5bf
jmp 0x12bc6fc
movl 0x138c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x138c(%rsp)
jmp 0x12bb8b9
movl $0x0, 0x1cc4(%rsp)
jmp 0x12c3f40
movl 0x1c78(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jne 0x12bd69a
cmpl $0x1, 0x1c94(%rsp)
je 0x12bd69a
cmpl $0x1, 0x1c74(%rsp)
jne 0x12bd69a
movl 0x1c6c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jne 0x12bd69a
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movl 0x1c8c(%rsp), %ecx
movq 0x1c80(%rsp), %r8
movl 0x1c7c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d20(%rsp)
movq 0x1d20(%rsp), %rcx
movq %rcx, 0x408(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x417(%rsp)
je 0x12bc809
movq 0x408(%rsp), %rax
movq %rax, 0x2a58(%rsp)
movq 0x2a58(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x417(%rsp)
movb 0x417(%rsp), %al
testb $0x1, %al
jne 0x12bc816
jmp 0x12bc826
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12c3f40
movl $0x0, 0x124c(%rsp)
movl 0x124c(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12bd68a
movq 0x1cb8(%rsp), %rcx
movl 0x124c(%rsp), %eax
leaq 0x11f8(%rsp), %rdx
movq %rdx, 0x1e78(%rsp)
movq %rcx, 0x1e70(%rsp)
movl %eax, 0x1e6c(%rsp)
movq 0x1e70(%rsp), %rax
movq %rax, 0x400(%rsp)
movb $0x0, 0x1e6b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e6c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x11f8(%rsp), %r10
movq %r10, 0x31e8(%rsp)
movl %r9d, 0x31e4(%rsp)
movl %r8d, 0x31e0(%rsp)
movl %edi, 0x31dc(%rsp)
movq %rsi, 0x31d0(%rsp)
movq %rdx, 0x31c8(%rsp)
movl %ecx, 0x31c4(%rsp)
movq %rax, 0x31b8(%rsp)
movq 0x31e8(%rsp), %rcx
movq %rcx, 0x3f8(%rsp)
movq 0x31d0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x31c8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x31c4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x31b8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x31e4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x31e0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x31dc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3510(%rsp)
movl $0x10, 0x350c(%rsp)
movq 0x3510(%rsp), %rax
movslq 0x350c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x350c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x400(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1220(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12bca01
movq 0x400(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1238(%rsp)
movb $0x1, 0x1e6b(%rsp)
testb $0x1, 0x1e6b(%rsp)
jne 0x12bcb3c
leaq 0x11f8(%rsp), %rax
movq %rax, 0x2160(%rsp)
movq 0x2160(%rsp), %rax
movq %rax, 0x3bb0(%rsp)
movq 0x3bb0(%rsp), %rax
movq %rax, 0x3f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12bcadf
movq 0x3f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bac(%rsp) # imm = 0xFFFFFFFF
movl 0x3bac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ba8(%rsp)
cmpl $0x1, 0x3ba8(%rsp)
jne 0x12bcadf
movq 0x3f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12bcab0
movq 0x3f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12bcaae
jmp 0x12bcadd
movq 0x3f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d08(%rsp)
cmpq $0x0, 0x3d08(%rsp)
je 0x12bcadb
movq 0x3d08(%rsp), %rdi
callq 0x5f480
jmp 0x12bcadd
jmp 0x12bcadf
movq 0x3f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12bcb3a
movq %rax, %rdi
callq 0x678a0
jmp 0x12bcb3c
leaq 0x11f8(%rsp), %rax
movq %rax, 0x2060(%rsp)
movq 0x2060(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e0(%rsp)
leaq 0x11f8(%rsp), %rax
movq %rax, 0x2278(%rsp)
movq 0x2278(%rsp), %rax
movq %rax, 0x3980(%rsp)
movq 0x3980(%rsp), %rax
movq %rax, 0x3e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12bcc27
movq 0x3e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x397c(%rsp) # imm = 0xFFFFFFFF
movl 0x397c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3978(%rsp)
cmpl $0x1, 0x3978(%rsp)
jne 0x12bcc27
movq 0x3e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12bcbf8
movq 0x3e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12bcbf6
jmp 0x12bcc25
movq 0x3e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e20(%rsp)
cmpq $0x0, 0x3e20(%rsp)
je 0x12bcc23
movq 0x3e20(%rsp), %rdi
callq 0x5f480
jmp 0x12bcc25
jmp 0x12bcc27
movq 0x3e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12bcc82
movq %rax, %rdi
callq 0x678a0
movq 0x3e0(%rsp), %rax
movq %rax, 0x1240(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x124c(%rsp), %eax
leaq 0x11a8(%rsp), %rdx
movq %rdx, 0x1e60(%rsp)
movq %rcx, 0x1e58(%rsp)
movl %eax, 0x1e54(%rsp)
movq 0x1e58(%rsp), %rax
movq %rax, 0x3d8(%rsp)
movb $0x0, 0x1e53(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e54(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x11a8(%rsp), %r10
movq %r10, 0x3220(%rsp)
movl %r9d, 0x321c(%rsp)
movl %r8d, 0x3218(%rsp)
movl %edi, 0x3214(%rsp)
movq %rsi, 0x3208(%rsp)
movq %rdx, 0x3200(%rsp)
movl %ecx, 0x31fc(%rsp)
movq %rax, 0x31f0(%rsp)
movq 0x3220(%rsp), %rcx
movq %rcx, 0x3d0(%rsp)
movq 0x3208(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3200(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x31fc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x31f0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x321c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3218(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3214(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3500(%rsp)
movl $0x10, 0x34fc(%rsp)
movq 0x3500(%rsp), %rax
movslq 0x34fc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x34fc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3d8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x11d0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12bce4e
movq 0x3d8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x11e8(%rsp)
movb $0x1, 0x1e53(%rsp)
testb $0x1, 0x1e53(%rsp)
jne 0x12bcf89
leaq 0x11a8(%rsp), %rax
movq %rax, 0x2168(%rsp)
movq 0x2168(%rsp), %rax
movq %rax, 0x3ba0(%rsp)
movq 0x3ba0(%rsp), %rax
movq %rax, 0x3c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12bcf2c
movq 0x3c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b9c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b9c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b98(%rsp)
cmpl $0x1, 0x3b98(%rsp)
jne 0x12bcf2c
movq 0x3c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12bcefd
movq 0x3c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12bcefb
jmp 0x12bcf2a
movq 0x3c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d10(%rsp)
cmpq $0x0, 0x3d10(%rsp)
je 0x12bcf28
movq 0x3d10(%rsp), %rdi
callq 0x5f480
jmp 0x12bcf2a
jmp 0x12bcf2c
movq 0x3c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12bcf87
movq %rax, %rdi
callq 0x678a0
jmp 0x12bcf89
leaq 0x11a8(%rsp), %rax
movq %rax, 0x2058(%rsp)
movq 0x2058(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3b8(%rsp)
leaq 0x11a8(%rsp), %rax
movq %rax, 0x2280(%rsp)
movq 0x2280(%rsp), %rax
movq %rax, 0x3970(%rsp)
movq 0x3970(%rsp), %rax
movq %rax, 0x3c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12bd074
movq 0x3c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x396c(%rsp) # imm = 0xFFFFFFFF
movl 0x396c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3968(%rsp)
cmpl $0x1, 0x3968(%rsp)
jne 0x12bd074
movq 0x3c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12bd045
movq 0x3c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12bd043
jmp 0x12bd072
movq 0x3c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e28(%rsp)
cmpq $0x0, 0x3e28(%rsp)
je 0x12bd070
movq 0x3e28(%rsp), %rdi
callq 0x5f480
jmp 0x12bd072
jmp 0x12bd074
movq 0x3c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12bd0cf
movq %rax, %rdi
callq 0x678a0
movq 0x3b8(%rsp), %rax
movq %rax, 0x11f0(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x124c(%rsp), %eax
leaq 0x1158(%rsp), %rdx
movq %rdx, 0x2430(%rsp)
movq %rcx, 0x2428(%rsp)
movl %eax, 0x2424(%rsp)
movq 0x2428(%rsp), %rax
movq %rax, 0x3b0(%rsp)
movb $0x0, 0x2423(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2424(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1158(%rsp), %r10
movq %r10, 0x2ce0(%rsp)
movl %r9d, 0x2cdc(%rsp)
movl %r8d, 0x2cd8(%rsp)
movl %edi, 0x2cd4(%rsp)
movq %rsi, 0x2cc8(%rsp)
movq %rdx, 0x2cc0(%rsp)
movl %ecx, 0x2cbc(%rsp)
movq %rax, 0x2cb0(%rsp)
movq 0x2ce0(%rsp), %rcx
movq %rcx, 0x3a8(%rsp)
movq 0x2cc8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2cc0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2cbc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2cb0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2cdc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2cd8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2cd4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3680(%rsp)
movl $0x10, 0x367c(%rsp)
movq 0x3680(%rsp), %rax
movslq 0x367c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x367c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3b0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1180(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12bd29b
movq 0x3b0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1198(%rsp)
movb $0x1, 0x2423(%rsp)
testb $0x1, 0x2423(%rsp)
jne 0x12bd3d6
leaq 0x1158(%rsp), %rax
movq %rax, 0x2438(%rsp)
movq 0x2438(%rsp), %rax
movq %rax, 0x37b0(%rsp)
movq 0x37b0(%rsp), %rax
movq %rax, 0x3a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12bd379
movq 0x3a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x37ac(%rsp) # imm = 0xFFFFFFFF
movl 0x37ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x37a8(%rsp)
cmpl $0x1, 0x37a8(%rsp)
jne 0x12bd379
movq 0x3a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12bd34a
movq 0x3a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12bd348
jmp 0x12bd377
movq 0x3a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f08(%rsp)
cmpq $0x0, 0x3f08(%rsp)
je 0x12bd375
movq 0x3f08(%rsp), %rdi
callq 0x5f480
jmp 0x12bd377
jmp 0x12bd379
movq 0x3a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12bd3d4
movq %rax, %rdi
callq 0x678a0
jmp 0x12bd3d6
leaq 0x1158(%rsp), %rax
movq %rax, 0x25b0(%rsp)
movq 0x25b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x390(%rsp)
leaq 0x1158(%rsp), %rax
movq %rax, 0x2288(%rsp)
movq 0x2288(%rsp), %rax
movq %rax, 0x3960(%rsp)
movq 0x3960(%rsp), %rax
movq %rax, 0x398(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12bd4c1
movq 0x398(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x395c(%rsp) # imm = 0xFFFFFFFF
movl 0x395c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3958(%rsp)
cmpl $0x1, 0x3958(%rsp)
jne 0x12bd4c1
movq 0x398(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12bd492
movq 0x398(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12bd490
jmp 0x12bd4bf
movq 0x398(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e30(%rsp)
cmpq $0x0, 0x3e30(%rsp)
je 0x12bd4bd
movq 0x3e30(%rsp), %rdi
callq 0x5f480
jmp 0x12bd4bf
jmp 0x12bd4c1
movq 0x398(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12bd51c
movq %rax, %rdi
callq 0x678a0
movq 0x390(%rsp), %rax
movq %rax, 0x11a0(%rsp)
movl $0x0, 0x1154(%rsp)
movl 0x1154(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jge 0x12bd672
movl $0x0, 0x1150(%rsp)
movl 0x1150(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jge 0x12bd65a
movq 0x1240(%rsp), %rax
movq %rax, 0x26a8(%rsp)
movq 0x26a8(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1140(%rsp)
movq 0x11f0(%rsp), %rax
movl 0x1150(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x26a0(%rsp)
movq 0x26a0(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1130(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x1140(%rsp), %rsi
leaq 0x1130(%rsp), %rdx
callq 0x12f6c60
movaps %xmm0, 0x1120(%rsp)
movq 0x11a0(%rsp), %rax
movaps 0x1120(%rsp), %xmm0
movq %rax, 0x2888(%rsp)
movaps %xmm0, 0x2870(%rsp)
movaps 0x2870(%rsp), %xmm0
movq 0x2888(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1240(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1240(%rsp)
movq 0x11a0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x11a0(%rsp)
movl 0x1150(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1150(%rsp)
jmp 0x12bd556
jmp 0x12bd65c
movl 0x1154(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1154(%rsp)
jmp 0x12bd537
jmp 0x12bd674
movl 0x124c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x124c(%rsp)
jmp 0x12bc831
movl $0x0, 0x1cc4(%rsp)
jmp 0x12c3f40
cmpl $0x1, 0x1c78(%rsp)
je 0x12be612
cmpl $0x1, 0x1c98(%rsp)
jne 0x12be612
movl 0x1c74(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jne 0x12be612
movl 0x1c6c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jne 0x12be612
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c6c(%rsp), %ecx
movq 0x1c60(%rsp), %r8
movl 0x1c5c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d18(%rsp)
movq 0x1d18(%rsp), %rcx
movq %rcx, 0x380(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x38f(%rsp)
je 0x12bd781
movq 0x380(%rsp), %rax
movq %rax, 0x2a60(%rsp)
movq 0x2a60(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x38f(%rsp)
movb 0x38f(%rsp), %al
testb $0x1, %al
jne 0x12bd78e
jmp 0x12bd79e
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12c3f40
movl $0x0, 0x111c(%rsp)
movl 0x111c(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12be602
movq 0x1cb8(%rsp), %rcx
movl 0x111c(%rsp), %eax
leaq 0x10c8(%rsp), %rdx
movq %rdx, 0x1e48(%rsp)
movq %rcx, 0x1e40(%rsp)
movl %eax, 0x1e3c(%rsp)
movq 0x1e40(%rsp), %rax
movq %rax, 0x378(%rsp)
movb $0x0, 0x1e3b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e3c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x10c8(%rsp), %r10
movq %r10, 0x3258(%rsp)
movl %r9d, 0x3254(%rsp)
movl %r8d, 0x3250(%rsp)
movl %edi, 0x324c(%rsp)
movq %rsi, 0x3240(%rsp)
movq %rdx, 0x3238(%rsp)
movl %ecx, 0x3234(%rsp)
movq %rax, 0x3228(%rsp)
movq 0x3258(%rsp), %rcx
movq %rcx, 0x370(%rsp)
movq 0x3240(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3238(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3234(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3228(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3254(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3250(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x324c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x34f0(%rsp)
movl $0x10, 0x34ec(%rsp)
movq 0x34f0(%rsp), %rax
movslq 0x34ec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x34ec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x378(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x10f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12bd979
movq 0x378(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1108(%rsp)
movb $0x1, 0x1e3b(%rsp)
testb $0x1, 0x1e3b(%rsp)
jne 0x12bdab4
leaq 0x10c8(%rsp), %rax
movq %rax, 0x2170(%rsp)
movq 0x2170(%rsp), %rax
movq %rax, 0x3b90(%rsp)
movq 0x3b90(%rsp), %rax
movq %rax, 0x368(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12bda57
movq 0x368(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b8c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b8c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b88(%rsp)
cmpl $0x1, 0x3b88(%rsp)
jne 0x12bda57
movq 0x368(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12bda28
movq 0x368(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12bda26
jmp 0x12bda55
movq 0x368(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d18(%rsp)
cmpq $0x0, 0x3d18(%rsp)
je 0x12bda53
movq 0x3d18(%rsp), %rdi
callq 0x5f480
jmp 0x12bda55
jmp 0x12bda57
movq 0x368(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12bdab2
movq %rax, %rdi
callq 0x678a0
jmp 0x12bdab4
leaq 0x10c8(%rsp), %rax
movq %rax, 0x2050(%rsp)
movq 0x2050(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x358(%rsp)
leaq 0x10c8(%rsp), %rax
movq %rax, 0x2290(%rsp)
movq 0x2290(%rsp), %rax
movq %rax, 0x3950(%rsp)
movq 0x3950(%rsp), %rax
movq %rax, 0x360(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12bdb9f
movq 0x360(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x394c(%rsp) # imm = 0xFFFFFFFF
movl 0x394c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3948(%rsp)
cmpl $0x1, 0x3948(%rsp)
jne 0x12bdb9f
movq 0x360(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12bdb70
movq 0x360(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12bdb6e
jmp 0x12bdb9d
movq 0x360(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e38(%rsp)
cmpq $0x0, 0x3e38(%rsp)
je 0x12bdb9b
movq 0x3e38(%rsp), %rdi
callq 0x5f480
jmp 0x12bdb9d
jmp 0x12bdb9f
movq 0x360(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12bdbfa
movq %rax, %rdi
callq 0x678a0
movq 0x358(%rsp), %rax
movq %rax, 0x1110(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x111c(%rsp), %eax
leaq 0x1078(%rsp), %rdx
movq %rdx, 0x1e30(%rsp)
movq %rcx, 0x1e28(%rsp)
movl %eax, 0x1e24(%rsp)
movq 0x1e28(%rsp), %rax
movq %rax, 0x350(%rsp)
movb $0x0, 0x1e23(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e24(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1078(%rsp), %r10
movq %r10, 0x3290(%rsp)
movl %r9d, 0x328c(%rsp)
movl %r8d, 0x3288(%rsp)
movl %edi, 0x3284(%rsp)
movq %rsi, 0x3278(%rsp)
movq %rdx, 0x3270(%rsp)
movl %ecx, 0x326c(%rsp)
movq %rax, 0x3260(%rsp)
movq 0x3290(%rsp), %rcx
movq %rcx, 0x348(%rsp)
movq 0x3278(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3270(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x326c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3260(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x328c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3288(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3284(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x34e0(%rsp)
movl $0x10, 0x34dc(%rsp)
movq 0x34e0(%rsp), %rax
movslq 0x34dc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x34dc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x350(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x10a0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12bddc6
movq 0x350(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x10b8(%rsp)
movb $0x1, 0x1e23(%rsp)
testb $0x1, 0x1e23(%rsp)
jne 0x12bdf01
leaq 0x1078(%rsp), %rax
movq %rax, 0x2178(%rsp)
movq 0x2178(%rsp), %rax
movq %rax, 0x3b80(%rsp)
movq 0x3b80(%rsp), %rax
movq %rax, 0x340(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12bdea4
movq 0x340(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b7c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b7c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b78(%rsp)
cmpl $0x1, 0x3b78(%rsp)
jne 0x12bdea4
movq 0x340(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12bde75
movq 0x340(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12bde73
jmp 0x12bdea2
movq 0x340(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d20(%rsp)
cmpq $0x0, 0x3d20(%rsp)
je 0x12bdea0
movq 0x3d20(%rsp), %rdi
callq 0x5f480
jmp 0x12bdea2
jmp 0x12bdea4
movq 0x340(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12bdeff
movq %rax, %rdi
callq 0x678a0
jmp 0x12bdf01
leaq 0x1078(%rsp), %rax
movq %rax, 0x2048(%rsp)
movq 0x2048(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x330(%rsp)
leaq 0x1078(%rsp), %rax
movq %rax, 0x2298(%rsp)
movq 0x2298(%rsp), %rax
movq %rax, 0x3940(%rsp)
movq 0x3940(%rsp), %rax
movq %rax, 0x338(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12bdfec
movq 0x338(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x393c(%rsp) # imm = 0xFFFFFFFF
movl 0x393c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3938(%rsp)
cmpl $0x1, 0x3938(%rsp)
jne 0x12bdfec
movq 0x338(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12bdfbd
movq 0x338(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12bdfbb
jmp 0x12bdfea
movq 0x338(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e40(%rsp)
cmpq $0x0, 0x3e40(%rsp)
je 0x12bdfe8
movq 0x3e40(%rsp), %rdi
callq 0x5f480
jmp 0x12bdfea
jmp 0x12bdfec
movq 0x338(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12be047
movq %rax, %rdi
callq 0x678a0
movq 0x330(%rsp), %rax
movq %rax, 0x10c0(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x111c(%rsp), %eax
leaq 0x1028(%rsp), %rdx
movq %rdx, 0x2410(%rsp)
movq %rcx, 0x2408(%rsp)
movl %eax, 0x2404(%rsp)
movq 0x2408(%rsp), %rax
movq %rax, 0x328(%rsp)
movb $0x0, 0x2403(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2404(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1028(%rsp), %r10
movq %r10, 0x2d18(%rsp)
movl %r9d, 0x2d14(%rsp)
movl %r8d, 0x2d10(%rsp)
movl %edi, 0x2d0c(%rsp)
movq %rsi, 0x2d00(%rsp)
movq %rdx, 0x2cf8(%rsp)
movl %ecx, 0x2cf4(%rsp)
movq %rax, 0x2ce8(%rsp)
movq 0x2d18(%rsp), %rcx
movq %rcx, 0x320(%rsp)
movq 0x2d00(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2cf8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2cf4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ce8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2d14(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2d10(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2d0c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3670(%rsp)
movl $0x10, 0x366c(%rsp)
movq 0x3670(%rsp), %rax
movslq 0x366c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x366c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x328(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1050(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12be213
movq 0x328(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1068(%rsp)
movb $0x1, 0x2403(%rsp)
testb $0x1, 0x2403(%rsp)
jne 0x12be34e
leaq 0x1028(%rsp), %rax
movq %rax, 0x2418(%rsp)
movq 0x2418(%rsp), %rax
movq %rax, 0x37c0(%rsp)
movq 0x37c0(%rsp), %rax
movq %rax, 0x318(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12be2f1
movq 0x318(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x37bc(%rsp) # imm = 0xFFFFFFFF
movl 0x37bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x37b8(%rsp)
cmpl $0x1, 0x37b8(%rsp)
jne 0x12be2f1
movq 0x318(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12be2c2
movq 0x318(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12be2c0
jmp 0x12be2ef
movq 0x318(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f00(%rsp)
cmpq $0x0, 0x3f00(%rsp)
je 0x12be2ed
movq 0x3f00(%rsp), %rdi
callq 0x5f480
jmp 0x12be2ef
jmp 0x12be2f1
movq 0x318(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12be34c
movq %rax, %rdi
callq 0x678a0
jmp 0x12be34e
leaq 0x1028(%rsp), %rax
movq %rax, 0x25a8(%rsp)
movq 0x25a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x308(%rsp)
leaq 0x1028(%rsp), %rax
movq %rax, 0x22a0(%rsp)
movq 0x22a0(%rsp), %rax
movq %rax, 0x3930(%rsp)
movq 0x3930(%rsp), %rax
movq %rax, 0x310(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12be439
movq 0x310(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x392c(%rsp) # imm = 0xFFFFFFFF
movl 0x392c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3928(%rsp)
cmpl $0x1, 0x3928(%rsp)
jne 0x12be439
movq 0x310(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12be40a
movq 0x310(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12be408
jmp 0x12be437
movq 0x310(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e48(%rsp)
cmpq $0x0, 0x3e48(%rsp)
je 0x12be435
movq 0x3e48(%rsp), %rdi
callq 0x5f480
jmp 0x12be437
jmp 0x12be439
movq 0x310(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12be494
movq %rax, %rdi
callq 0x678a0
movq 0x308(%rsp), %rax
movq %rax, 0x1070(%rsp)
movl $0x0, 0x1024(%rsp)
movl 0x1024(%rsp), %eax
cmpl 0x1c74(%rsp), %eax
jge 0x12be5ea
movq 0x1110(%rsp), %rax
movl 0x1024(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2698(%rsp)
movq 0x2698(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1010(%rsp)
movl $0x0, 0x100c(%rsp)
movl 0x100c(%rsp), %eax
cmpl 0x1c78(%rsp), %eax
jge 0x12be5d2
movq 0x10c0(%rsp), %rax
movq %rax, 0x2690(%rsp)
movq 0x2690(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xff0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x1010(%rsp), %rsi
leaq 0xff0(%rsp), %rdx
callq 0x12f6c60
movaps %xmm0, 0xfe0(%rsp)
movq 0x1070(%rsp), %rax
movaps 0xfe0(%rsp), %xmm0
movq %rax, 0x2868(%rsp)
movaps %xmm0, 0x2850(%rsp)
movaps 0x2850(%rsp), %xmm0
movq 0x2868(%rsp), %rax
movups %xmm0, (%rax)
movq 0x10c0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x10c0(%rsp)
movq 0x1070(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1070(%rsp)
movl 0x100c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x100c(%rsp)
jmp 0x12be505
jmp 0x12be5d4
movl 0x1024(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1024(%rsp)
jmp 0x12be4af
jmp 0x12be5ec
movl 0x111c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x111c(%rsp)
jmp 0x12bd7a9
movl $0x0, 0x1cc4(%rsp)
jmp 0x12c3f40
movl 0x1c78(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jne 0x12bf58a
cmpl $0x1, 0x1c74(%rsp)
je 0x12bf58a
cmpl $0x1, 0x1c94(%rsp)
jne 0x12bf58a
movl 0x1c6c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jne 0x12bf58a
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c6c(%rsp), %ecx
movq 0x1c60(%rsp), %r8
movl 0x1c5c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d10(%rsp)
movq 0x1d10(%rsp), %rcx
movq %rcx, 0x2f8(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x307(%rsp)
je 0x12be6f9
movq 0x2f8(%rsp), %rax
movq %rax, 0x2a68(%rsp)
movq 0x2a68(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x307(%rsp)
movb 0x307(%rsp), %al
testb $0x1, %al
jne 0x12be706
jmp 0x12be716
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12c3f40
movl $0x0, 0xfdc(%rsp)
movl 0xfdc(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12bf57a
movq 0x1cb8(%rsp), %rcx
movl 0xfdc(%rsp), %eax
leaq 0xf88(%rsp), %rdx
movq %rdx, 0x1e18(%rsp)
movq %rcx, 0x1e10(%rsp)
movl %eax, 0x1e0c(%rsp)
movq 0x1e10(%rsp), %rax
movq %rax, 0x2f0(%rsp)
movb $0x0, 0x1e0b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e0c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xf88(%rsp), %r10
movq %r10, 0x32c8(%rsp)
movl %r9d, 0x32c4(%rsp)
movl %r8d, 0x32c0(%rsp)
movl %edi, 0x32bc(%rsp)
movq %rsi, 0x32b0(%rsp)
movq %rdx, 0x32a8(%rsp)
movl %ecx, 0x32a4(%rsp)
movq %rax, 0x3298(%rsp)
movq 0x32c8(%rsp), %rcx
movq %rcx, 0x2e8(%rsp)
movq 0x32b0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x32a8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x32a4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3298(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x32c4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x32c0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x32bc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x34d0(%rsp)
movl $0x10, 0x34cc(%rsp)
movq 0x34d0(%rsp), %rax
movslq 0x34cc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x34cc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2f0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xfb0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12be8f1
movq 0x2f0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xfc8(%rsp)
movb $0x1, 0x1e0b(%rsp)
testb $0x1, 0x1e0b(%rsp)
jne 0x12bea2c
leaq 0xf88(%rsp), %rax
movq %rax, 0x2180(%rsp)
movq 0x2180(%rsp), %rax
movq %rax, 0x3b70(%rsp)
movq 0x3b70(%rsp), %rax
movq %rax, 0x2e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12be9cf
movq 0x2e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b6c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b6c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b68(%rsp)
cmpl $0x1, 0x3b68(%rsp)
jne 0x12be9cf
movq 0x2e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12be9a0
movq 0x2e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12be99e
jmp 0x12be9cd
movq 0x2e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d28(%rsp)
cmpq $0x0, 0x3d28(%rsp)
je 0x12be9cb
movq 0x3d28(%rsp), %rdi
callq 0x5f480
jmp 0x12be9cd
jmp 0x12be9cf
movq 0x2e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12bea2a
movq %rax, %rdi
callq 0x678a0
jmp 0x12bea2c
leaq 0xf88(%rsp), %rax
movq %rax, 0x2040(%rsp)
movq 0x2040(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2d0(%rsp)
leaq 0xf88(%rsp), %rax
movq %rax, 0x22a8(%rsp)
movq 0x22a8(%rsp), %rax
movq %rax, 0x3920(%rsp)
movq 0x3920(%rsp), %rax
movq %rax, 0x2d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12beb17
movq 0x2d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x391c(%rsp) # imm = 0xFFFFFFFF
movl 0x391c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3918(%rsp)
cmpl $0x1, 0x3918(%rsp)
jne 0x12beb17
movq 0x2d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12beae8
movq 0x2d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12beae6
jmp 0x12beb15
movq 0x2d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e50(%rsp)
cmpq $0x0, 0x3e50(%rsp)
je 0x12beb13
movq 0x3e50(%rsp), %rdi
callq 0x5f480
jmp 0x12beb15
jmp 0x12beb17
movq 0x2d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12beb72
movq %rax, %rdi
callq 0x678a0
movq 0x2d0(%rsp), %rax
movq %rax, 0xfd0(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0xfdc(%rsp), %eax
leaq 0xf38(%rsp), %rdx
movq %rdx, 0x1e00(%rsp)
movq %rcx, 0x1df8(%rsp)
movl %eax, 0x1df4(%rsp)
movq 0x1df8(%rsp), %rax
movq %rax, 0x2c8(%rsp)
movb $0x0, 0x1df3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1df4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xf38(%rsp), %r10
movq %r10, 0x3300(%rsp)
movl %r9d, 0x32fc(%rsp)
movl %r8d, 0x32f8(%rsp)
movl %edi, 0x32f4(%rsp)
movq %rsi, 0x32e8(%rsp)
movq %rdx, 0x32e0(%rsp)
movl %ecx, 0x32dc(%rsp)
movq %rax, 0x32d0(%rsp)
movq 0x3300(%rsp), %rcx
movq %rcx, 0x2c0(%rsp)
movq 0x32e8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x32e0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x32dc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x32d0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x32fc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x32f8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x32f4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x34c0(%rsp)
movl $0x10, 0x34bc(%rsp)
movq 0x34c0(%rsp), %rax
movslq 0x34bc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x34bc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2c8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf60(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12bed3e
movq 0x2c8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xf78(%rsp)
movb $0x1, 0x1df3(%rsp)
testb $0x1, 0x1df3(%rsp)
jne 0x12bee79
leaq 0xf38(%rsp), %rax
movq %rax, 0x2188(%rsp)
movq 0x2188(%rsp), %rax
movq %rax, 0x3b60(%rsp)
movq 0x3b60(%rsp), %rax
movq %rax, 0x2b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12bee1c
movq 0x2b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b5c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b5c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b58(%rsp)
cmpl $0x1, 0x3b58(%rsp)
jne 0x12bee1c
movq 0x2b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12beded
movq 0x2b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12bedeb
jmp 0x12bee1a
movq 0x2b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d30(%rsp)
cmpq $0x0, 0x3d30(%rsp)
je 0x12bee18
movq 0x3d30(%rsp), %rdi
callq 0x5f480
jmp 0x12bee1a
jmp 0x12bee1c
movq 0x2b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12bee77
movq %rax, %rdi
callq 0x678a0
jmp 0x12bee79
leaq 0xf38(%rsp), %rax
movq %rax, 0x2038(%rsp)
movq 0x2038(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2a8(%rsp)
leaq 0xf38(%rsp), %rax
movq %rax, 0x22b0(%rsp)
movq 0x22b0(%rsp), %rax
movq %rax, 0x3910(%rsp)
movq 0x3910(%rsp), %rax
movq %rax, 0x2b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12bef64
movq 0x2b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x390c(%rsp) # imm = 0xFFFFFFFF
movl 0x390c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3908(%rsp)
cmpl $0x1, 0x3908(%rsp)
jne 0x12bef64
movq 0x2b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12bef35
movq 0x2b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12bef33
jmp 0x12bef62
movq 0x2b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e58(%rsp)
cmpq $0x0, 0x3e58(%rsp)
je 0x12bef60
movq 0x3e58(%rsp), %rdi
callq 0x5f480
jmp 0x12bef62
jmp 0x12bef64
movq 0x2b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12befbf
movq %rax, %rdi
callq 0x678a0
movq 0x2a8(%rsp), %rax
movq %rax, 0xf80(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0xfdc(%rsp), %eax
leaq 0xee8(%rsp), %rdx
movq %rdx, 0x23f0(%rsp)
movq %rcx, 0x23e8(%rsp)
movl %eax, 0x23e4(%rsp)
movq 0x23e8(%rsp), %rax
movq %rax, 0x2a0(%rsp)
movb $0x0, 0x23e3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x23e4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xee8(%rsp), %r10
movq %r10, 0x2d50(%rsp)
movl %r9d, 0x2d4c(%rsp)
movl %r8d, 0x2d48(%rsp)
movl %edi, 0x2d44(%rsp)
movq %rsi, 0x2d38(%rsp)
movq %rdx, 0x2d30(%rsp)
movl %ecx, 0x2d2c(%rsp)
movq %rax, 0x2d20(%rsp)
movq 0x2d50(%rsp), %rcx
movq %rcx, 0x298(%rsp)
movq 0x2d38(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2d30(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2d2c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2d20(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2d4c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2d48(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2d44(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3660(%rsp)
movl $0x10, 0x365c(%rsp)
movq 0x3660(%rsp), %rax
movslq 0x365c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x365c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2a0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf10(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12bf18b
movq 0x2a0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xf28(%rsp)
movb $0x1, 0x23e3(%rsp)
testb $0x1, 0x23e3(%rsp)
jne 0x12bf2c6
leaq 0xee8(%rsp), %rax
movq %rax, 0x23f8(%rsp)
movq 0x23f8(%rsp), %rax
movq %rax, 0x37d0(%rsp)
movq 0x37d0(%rsp), %rax
movq %rax, 0x290(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12bf269
movq 0x290(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x37cc(%rsp) # imm = 0xFFFFFFFF
movl 0x37cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x37c8(%rsp)
cmpl $0x1, 0x37c8(%rsp)
jne 0x12bf269
movq 0x290(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12bf23a
movq 0x290(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12bf238
jmp 0x12bf267
movq 0x290(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ef8(%rsp)
cmpq $0x0, 0x3ef8(%rsp)
je 0x12bf265
movq 0x3ef8(%rsp), %rdi
callq 0x5f480
jmp 0x12bf267
jmp 0x12bf269
movq 0x290(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12bf2c4
movq %rax, %rdi
callq 0x678a0
jmp 0x12bf2c6
leaq 0xee8(%rsp), %rax
movq %rax, 0x25a0(%rsp)
movq 0x25a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x280(%rsp)
leaq 0xee8(%rsp), %rax
movq %rax, 0x22b8(%rsp)
movq 0x22b8(%rsp), %rax
movq %rax, 0x3900(%rsp)
movq 0x3900(%rsp), %rax
movq %rax, 0x288(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12bf3b1
movq 0x288(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x38fc(%rsp) # imm = 0xFFFFFFFF
movl 0x38fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x38f8(%rsp)
cmpl $0x1, 0x38f8(%rsp)
jne 0x12bf3b1
movq 0x288(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12bf382
movq 0x288(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12bf380
jmp 0x12bf3af
movq 0x288(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e60(%rsp)
cmpq $0x0, 0x3e60(%rsp)
je 0x12bf3ad
movq 0x3e60(%rsp), %rdi
callq 0x5f480
jmp 0x12bf3af
jmp 0x12bf3b1
movq 0x288(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12bf40c
movq %rax, %rdi
callq 0x678a0
movq 0x280(%rsp), %rax
movq %rax, 0xf30(%rsp)
movl $0x0, 0xee4(%rsp)
movl 0xee4(%rsp), %eax
cmpl 0x1c74(%rsp), %eax
jge 0x12bf562
movl $0x0, 0xee0(%rsp)
movl 0xee0(%rsp), %eax
cmpl 0x1c78(%rsp), %eax
jge 0x12bf54a
movq 0xfd0(%rsp), %rax
movl 0xee0(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2688(%rsp)
movq 0x2688(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xed0(%rsp)
movq 0xf80(%rsp), %rax
movq %rax, 0x2680(%rsp)
movq 0x2680(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xec0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0xed0(%rsp), %rsi
leaq 0xec0(%rsp), %rdx
callq 0x12f6c60
movaps %xmm0, 0xeb0(%rsp)
movq 0xf30(%rsp), %rax
movaps 0xeb0(%rsp), %xmm0
movq %rax, 0x2848(%rsp)
movaps %xmm0, 0x2830(%rsp)
movaps 0x2830(%rsp), %xmm0
movq 0x2848(%rsp), %rax
movups %xmm0, (%rax)
movq 0xf80(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xf80(%rsp)
movq 0xf30(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xf30(%rsp)
movl 0xee0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xee0(%rsp)
jmp 0x12bf446
jmp 0x12bf54c
movl 0xee4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xee4(%rsp)
jmp 0x12bf427
jmp 0x12bf564
movl 0xfdc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xfdc(%rsp)
jmp 0x12be721
movl $0x0, 0x1cc4(%rsp)
jmp 0x12c3f40
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12ef780
movl %eax, 0x1cc4(%rsp)
jmp 0x12c3f40
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movl 0x1c8c(%rsp), %ecx
movq 0x1c80(%rsp), %r8
movl 0x1c7c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d08(%rsp)
movq 0x1d08(%rsp), %rcx
movq %rcx, 0x270(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x27f(%rsp)
je 0x12bf65e
movq 0x270(%rsp), %rax
movq %rax, 0x2a70(%rsp)
movq 0x2a70(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x27f(%rsp)
movb 0x27f(%rsp), %al
testb $0x1, %al
jne 0x12bf66b
jmp 0x12bf67b
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12c3f40
movq 0x1cb0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x12c00fb
movl $0x0, 0xeac(%rsp)
movl 0xeac(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jge 0x12c00eb
movq 0x1cb8(%rsp), %rcx
movl 0xeac(%rsp), %eax
leaq 0xe58(%rsp), %rdx
movq %rdx, 0x1de8(%rsp)
movq %rcx, 0x1de0(%rsp)
movl %eax, 0x1ddc(%rsp)
movq 0x1de0(%rsp), %rax
movq %rax, 0x268(%rsp)
movb $0x0, 0x1ddb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1ddc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xe58(%rsp), %r10
movq %r10, 0x3338(%rsp)
movl %r9d, 0x3334(%rsp)
movl %r8d, 0x3330(%rsp)
movl %edi, 0x332c(%rsp)
movq %rsi, 0x3320(%rsp)
movq %rdx, 0x3318(%rsp)
movl %ecx, 0x3314(%rsp)
movq %rax, 0x3308(%rsp)
movq 0x3338(%rsp), %rcx
movq %rcx, 0x260(%rsp)
movq 0x3320(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3318(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3314(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3308(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3334(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3330(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x332c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x34b0(%rsp)
movl $0x10, 0x34ac(%rsp)
movq 0x34b0(%rsp), %rax
movslq 0x34ac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x34ac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x268(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xe80(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12bf868
movq 0x268(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xe98(%rsp)
movb $0x1, 0x1ddb(%rsp)
testb $0x1, 0x1ddb(%rsp)
jne 0x12bf9a3
leaq 0xe58(%rsp), %rax
movq %rax, 0x2190(%rsp)
movq 0x2190(%rsp), %rax
movq %rax, 0x3b50(%rsp)
movq 0x3b50(%rsp), %rax
movq %rax, 0x258(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12bf946
movq 0x258(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b4c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b4c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b48(%rsp)
cmpl $0x1, 0x3b48(%rsp)
jne 0x12bf946
movq 0x258(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12bf917
movq 0x258(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12bf915
jmp 0x12bf944
movq 0x258(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d38(%rsp)
cmpq $0x0, 0x3d38(%rsp)
je 0x12bf942
movq 0x3d38(%rsp), %rdi
callq 0x5f480
jmp 0x12bf944
jmp 0x12bf946
movq 0x258(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12bf9a1
movq %rax, %rdi
callq 0x678a0
jmp 0x12bf9a3
leaq 0xe58(%rsp), %rax
movq %rax, 0x2030(%rsp)
movq 0x2030(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x248(%rsp)
leaq 0xe58(%rsp), %rax
movq %rax, 0x22c0(%rsp)
movq 0x22c0(%rsp), %rax
movq %rax, 0x38f0(%rsp)
movq 0x38f0(%rsp), %rax
movq %rax, 0x250(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12bfa8e
movq 0x250(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x38ec(%rsp) # imm = 0xFFFFFFFF
movl 0x38ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x38e8(%rsp)
cmpl $0x1, 0x38e8(%rsp)
jne 0x12bfa8e
movq 0x250(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12bfa5f
movq 0x250(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12bfa5d
jmp 0x12bfa8c
movq 0x250(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e68(%rsp)
cmpq $0x0, 0x3e68(%rsp)
je 0x12bfa8a
movq 0x3e68(%rsp), %rdi
callq 0x5f480
jmp 0x12bfa8c
jmp 0x12bfa8e
movq 0x250(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12bfae9
movq %rax, %rdi
callq 0x678a0
movq 0x248(%rsp), %rax
movq %rax, 0xea0(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0xeac(%rsp), %eax
movq %rcx, 0x2a18(%rsp)
movl %eax, 0x2a14(%rsp)
movq 0x2a18(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2a14(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xe50(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0xeac(%rsp), %eax
leaq 0xe00(%rsp), %rdx
movq %rdx, 0x23d0(%rsp)
movq %rcx, 0x23c8(%rsp)
movl %eax, 0x23c4(%rsp)
movq 0x23c8(%rsp), %rax
movq %rax, 0x240(%rsp)
movb $0x0, 0x23c3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x23c4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xe00(%rsp), %r10
movq %r10, 0x2d88(%rsp)
movl %r9d, 0x2d84(%rsp)
movl %r8d, 0x2d80(%rsp)
movl %edi, 0x2d7c(%rsp)
movq %rsi, 0x2d70(%rsp)
movq %rdx, 0x2d68(%rsp)
movl %ecx, 0x2d64(%rsp)
movq %rax, 0x2d58(%rsp)
movq 0x2d88(%rsp), %rcx
movq %rcx, 0x238(%rsp)
movq 0x2d70(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2d68(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2d64(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2d58(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2d84(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2d80(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2d7c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3650(%rsp)
movl $0x10, 0x364c(%rsp)
movq 0x3650(%rsp), %rax
movslq 0x364c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x364c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x240(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xe28(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12bfcfe
movq 0x240(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xe40(%rsp)
movb $0x1, 0x23c3(%rsp)
testb $0x1, 0x23c3(%rsp)
jne 0x12bfe39
leaq 0xe00(%rsp), %rax
movq %rax, 0x23d8(%rsp)
movq 0x23d8(%rsp), %rax
movq %rax, 0x37e0(%rsp)
movq 0x37e0(%rsp), %rax
movq %rax, 0x230(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12bfddc
movq 0x230(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x37dc(%rsp) # imm = 0xFFFFFFFF
movl 0x37dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x37d8(%rsp)
cmpl $0x1, 0x37d8(%rsp)
jne 0x12bfddc
movq 0x230(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12bfdad
movq 0x230(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12bfdab
jmp 0x12bfdda
movq 0x230(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ef0(%rsp)
cmpq $0x0, 0x3ef0(%rsp)
je 0x12bfdd8
movq 0x3ef0(%rsp), %rdi
callq 0x5f480
jmp 0x12bfdda
jmp 0x12bfddc
movq 0x230(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12bfe37
movq %rax, %rdi
callq 0x678a0
jmp 0x12bfe39
leaq 0xe00(%rsp), %rax
movq %rax, 0x2598(%rsp)
movq 0x2598(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x220(%rsp)
leaq 0xe00(%rsp), %rax
movq %rax, 0x22c8(%rsp)
movq 0x22c8(%rsp), %rax
movq %rax, 0x38e0(%rsp)
movq 0x38e0(%rsp), %rax
movq %rax, 0x228(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12bff24
movq 0x228(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x38dc(%rsp) # imm = 0xFFFFFFFF
movl 0x38dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x38d8(%rsp)
cmpl $0x1, 0x38d8(%rsp)
jne 0x12bff24
movq 0x228(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12bfef5
movq 0x228(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12bfef3
jmp 0x12bff22
movq 0x228(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e70(%rsp)
cmpq $0x0, 0x3e70(%rsp)
je 0x12bff20
movq 0x3e70(%rsp), %rdi
callq 0x5f480
jmp 0x12bff22
jmp 0x12bff24
movq 0x228(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12bff7f
movq %rax, %rdi
callq 0x678a0
movq 0x220(%rsp), %rax
movq %rax, 0xe48(%rsp)
movl $0x0, 0xdfc(%rsp)
movl 0xdfc(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jge 0x12c00d3
movq 0xe50(%rsp), %rax
movq %rax, 0x2678(%rsp)
movq 0x2678(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xde0(%rsp)
movl $0x0, 0xddc(%rsp)
movl 0xddc(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jge 0x12c00a9
movq 0xea0(%rsp), %rax
movq %rax, 0x2670(%rsp)
movq 0x2670(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xdc0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0xdc0(%rsp), %rsi
leaq 0xde0(%rsp), %rdx
callq 0x12f6c60
movaps %xmm0, 0xdb0(%rsp)
movq 0xe48(%rsp), %rax
movaps 0xdb0(%rsp), %xmm0
movq %rax, 0x2828(%rsp)
movaps %xmm0, 0x2810(%rsp)
movaps 0x2810(%rsp), %xmm0
movq 0x2828(%rsp), %rax
movups %xmm0, (%rax)
movq 0xea0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xea0(%rsp)
movq 0xe48(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xe48(%rsp)
movl 0xddc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xddc(%rsp)
jmp 0x12bffdc
movq 0xe50(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xe50(%rsp)
movl 0xdfc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdfc(%rsp)
jmp 0x12bff9a
jmp 0x12c00d5
movl 0xeac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xeac(%rsp)
jmp 0x12bf698
movl $0x0, 0x1cc4(%rsp)
jmp 0x12c3f40
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x12c0b59
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x12c0156
cmpl $0x1, 0x1c5c(%rsp)
jne 0x12c0156
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12f0700
movl %eax, 0x1cc4(%rsp)
jmp 0x12c3f40
movl $0x0, 0xdac(%rsp)
movl 0xdac(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jge 0x12c0b49
movq 0x1cb8(%rsp), %rcx
movl 0xdac(%rsp), %eax
leaq 0xd58(%rsp), %rdx
movq %rdx, 0x1dd0(%rsp)
movq %rcx, 0x1dc8(%rsp)
movl %eax, 0x1dc4(%rsp)
movq 0x1dc8(%rsp), %rax
movq %rax, 0x218(%rsp)
movb $0x0, 0x1dc3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1dc4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xd58(%rsp), %r10
movq %r10, 0x3370(%rsp)
movl %r9d, 0x336c(%rsp)
movl %r8d, 0x3368(%rsp)
movl %edi, 0x3364(%rsp)
movq %rsi, 0x3358(%rsp)
movq %rdx, 0x3350(%rsp)
movl %ecx, 0x334c(%rsp)
movq %rax, 0x3340(%rsp)
movq 0x3370(%rsp), %rcx
movq %rcx, 0x210(%rsp)
movq 0x3358(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3350(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x334c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3340(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x336c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3368(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3364(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x34a0(%rsp)
movl $0x10, 0x349c(%rsp)
movq 0x34a0(%rsp), %rax
movslq 0x349c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x349c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x218(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xd80(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12c0331
movq 0x218(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd98(%rsp)
movb $0x1, 0x1dc3(%rsp)
testb $0x1, 0x1dc3(%rsp)
jne 0x12c046c
leaq 0xd58(%rsp), %rax
movq %rax, 0x2198(%rsp)
movq 0x2198(%rsp), %rax
movq %rax, 0x3b40(%rsp)
movq 0x3b40(%rsp), %rax
movq %rax, 0x208(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c040f
movq 0x208(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b3c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b3c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b38(%rsp)
cmpl $0x1, 0x3b38(%rsp)
jne 0x12c040f
movq 0x208(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c03e0
movq 0x208(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c03de
jmp 0x12c040d
movq 0x208(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d40(%rsp)
cmpq $0x0, 0x3d40(%rsp)
je 0x12c040b
movq 0x3d40(%rsp), %rdi
callq 0x5f480
jmp 0x12c040d
jmp 0x12c040f
movq 0x208(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c046a
movq %rax, %rdi
callq 0x678a0
jmp 0x12c046c
leaq 0xd58(%rsp), %rax
movq %rax, 0x2028(%rsp)
movq 0x2028(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1f8(%rsp)
leaq 0xd58(%rsp), %rax
movq %rax, 0x22d0(%rsp)
movq 0x22d0(%rsp), %rax
movq %rax, 0x38d0(%rsp)
movq 0x38d0(%rsp), %rax
movq %rax, 0x200(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c0557
movq 0x200(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x38cc(%rsp) # imm = 0xFFFFFFFF
movl 0x38cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x38c8(%rsp)
cmpl $0x1, 0x38c8(%rsp)
jne 0x12c0557
movq 0x200(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c0528
movq 0x200(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c0526
jmp 0x12c0555
movq 0x200(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e78(%rsp)
cmpq $0x0, 0x3e78(%rsp)
je 0x12c0553
movq 0x3e78(%rsp), %rdi
callq 0x5f480
jmp 0x12c0555
jmp 0x12c0557
movq 0x200(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c05b2
movq %rax, %rdi
callq 0x678a0
movq 0x1f8(%rsp), %rax
movq %rax, 0xda0(%rsp)
movq 0x1cb0(%rsp), %rax
movq %rax, 0x2020(%rsp)
movq 0x2020(%rsp), %rax
movq (%rax), %rax
movl 0xdac(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2668(%rsp)
movq 0x2668(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xd40(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0xdac(%rsp), %eax
leaq 0xcf0(%rsp), %rdx
movq %rdx, 0x23b0(%rsp)
movq %rcx, 0x23a8(%rsp)
movl %eax, 0x23a4(%rsp)
movq 0x23a8(%rsp), %rax
movq %rax, 0x1f0(%rsp)
movb $0x0, 0x23a3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x23a4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xcf0(%rsp), %r10
movq %r10, 0x2dc0(%rsp)
movl %r9d, 0x2dbc(%rsp)
movl %r8d, 0x2db8(%rsp)
movl %edi, 0x2db4(%rsp)
movq %rsi, 0x2da8(%rsp)
movq %rdx, 0x2da0(%rsp)
movl %ecx, 0x2d9c(%rsp)
movq %rax, 0x2d90(%rsp)
movq 0x2dc0(%rsp), %rcx
movq %rcx, 0x1e8(%rsp)
movq 0x2da8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2da0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2d9c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2d90(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2dbc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2db8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2db4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3640(%rsp)
movl $0x10, 0x363c(%rsp)
movq 0x3640(%rsp), %rax
movslq 0x363c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x363c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x1f0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xd18(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12c07c8
movq 0x1f0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd30(%rsp)
movb $0x1, 0x23a3(%rsp)
testb $0x1, 0x23a3(%rsp)
jne 0x12c0903
leaq 0xcf0(%rsp), %rax
movq %rax, 0x23b8(%rsp)
movq 0x23b8(%rsp), %rax
movq %rax, 0x37f0(%rsp)
movq 0x37f0(%rsp), %rax
movq %rax, 0x1e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c08a6
movq 0x1e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x37ec(%rsp) # imm = 0xFFFFFFFF
movl 0x37ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x37e8(%rsp)
cmpl $0x1, 0x37e8(%rsp)
jne 0x12c08a6
movq 0x1e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c0877
movq 0x1e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c0875
jmp 0x12c08a4
movq 0x1e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ee8(%rsp)
cmpq $0x0, 0x3ee8(%rsp)
je 0x12c08a2
movq 0x3ee8(%rsp), %rdi
callq 0x5f480
jmp 0x12c08a4
jmp 0x12c08a6
movq 0x1e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c0901
movq %rax, %rdi
callq 0x678a0
jmp 0x12c0903
leaq 0xcf0(%rsp), %rax
movq %rax, 0x2590(%rsp)
movq 0x2590(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1d0(%rsp)
leaq 0xcf0(%rsp), %rax
movq %rax, 0x22d8(%rsp)
movq 0x22d8(%rsp), %rax
movq %rax, 0x38c0(%rsp)
movq 0x38c0(%rsp), %rax
movq %rax, 0x1d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c09ee
movq 0x1d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x38bc(%rsp) # imm = 0xFFFFFFFF
movl 0x38bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x38b8(%rsp)
cmpl $0x1, 0x38b8(%rsp)
jne 0x12c09ee
movq 0x1d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c09bf
movq 0x1d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c09bd
jmp 0x12c09ec
movq 0x1d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e80(%rsp)
cmpq $0x0, 0x3e80(%rsp)
je 0x12c09ea
movq 0x3e80(%rsp), %rdi
callq 0x5f480
jmp 0x12c09ec
jmp 0x12c09ee
movq 0x1d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c0a49
movq %rax, %rdi
callq 0x678a0
movq 0x1d0(%rsp), %rax
movq %rax, 0xd38(%rsp)
movl $0x0, 0xcec(%rsp)
movl 0xcec(%rsp), %eax
cmpl 0x1c88(%rsp), %eax
jge 0x12c0b31
movq 0xda0(%rsp), %rax
movq %rax, 0x2660(%rsp)
movq 0x2660(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xcd0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0xcd0(%rsp), %rsi
leaq 0xd40(%rsp), %rdx
callq 0x12f6c60
movaps %xmm0, 0xcc0(%rsp)
movq 0xd38(%rsp), %rax
movaps 0xcc0(%rsp), %xmm0
movq %rax, 0x2808(%rsp)
movaps %xmm0, 0x27f0(%rsp)
movaps 0x27f0(%rsp), %xmm0
movq 0x2808(%rsp), %rax
movups %xmm0, (%rax)
movq 0xda0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xda0(%rsp)
movq 0xd38(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xd38(%rsp)
movl 0xcec(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xcec(%rsp)
jmp 0x12c0a64
jmp 0x12c0b33
movl 0xdac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdac(%rsp)
jmp 0x12c0161
movl $0x0, 0x1cc4(%rsp)
jmp 0x12c3f40
jmp 0x12c3f33
movq 0x1cb8(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x12c25fa
movq 0x1cb0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x12c16f4
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c70(%rsp), %ecx
movl 0x1c6c(%rsp), %r8d
movq 0x1c60(%rsp), %r9
movl 0x1c5c(%rsp), %r10d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d00(%rsp)
movq 0x1d00(%rsp), %rcx
movq %rcx, 0x1c0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1cf(%rsp)
je 0x12c0c32
movq 0x1c0(%rsp), %rax
movq %rax, 0x2a78(%rsp)
movq 0x2a78(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1cf(%rsp)
movb 0x1cf(%rsp), %al
testb $0x1, %al
jne 0x12c0c3f
jmp 0x12c0c4f
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12c3f40
movl $0x0, 0xcbc(%rsp)
movl 0xcbc(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12c16e4
movq 0x1cb8(%rsp), %rcx
movl 0xcbc(%rsp), %eax
movq %rcx, 0x29b8(%rsp)
movl %eax, 0x29b4(%rsp)
movq 0x29b8(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x29b4(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xcb0(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0xcbc(%rsp), %eax
leaq 0xc60(%rsp), %rdx
movq %rdx, 0x1db8(%rsp)
movq %rcx, 0x1db0(%rsp)
movl %eax, 0x1dac(%rsp)
movq 0x1db0(%rsp), %rax
movq %rax, 0x1b8(%rsp)
movb $0x0, 0x1dab(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1dac(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xc60(%rsp), %r10
movq %r10, 0x33a8(%rsp)
movl %r9d, 0x33a4(%rsp)
movl %r8d, 0x33a0(%rsp)
movl %edi, 0x339c(%rsp)
movq %rsi, 0x3390(%rsp)
movq %rdx, 0x3388(%rsp)
movl %ecx, 0x3384(%rsp)
movq %rax, 0x3378(%rsp)
movq 0x33a8(%rsp), %rcx
movq %rcx, 0x1b0(%rsp)
movq 0x3390(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3388(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3384(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3378(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x33a4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x33a0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x339c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3490(%rsp)
movl $0x10, 0x348c(%rsp)
movq 0x3490(%rsp), %rax
movslq 0x348c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x348c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x1b8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc88(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12c0e73
movq 0x1b8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xca0(%rsp)
movb $0x1, 0x1dab(%rsp)
testb $0x1, 0x1dab(%rsp)
jne 0x12c0fae
leaq 0xc60(%rsp), %rax
movq %rax, 0x21a0(%rsp)
movq 0x21a0(%rsp), %rax
movq %rax, 0x3b30(%rsp)
movq 0x3b30(%rsp), %rax
movq %rax, 0x1a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c0f51
movq 0x1a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b2c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b2c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b28(%rsp)
cmpl $0x1, 0x3b28(%rsp)
jne 0x12c0f51
movq 0x1a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c0f22
movq 0x1a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c0f20
jmp 0x12c0f4f
movq 0x1a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d48(%rsp)
cmpq $0x0, 0x3d48(%rsp)
je 0x12c0f4d
movq 0x3d48(%rsp), %rdi
callq 0x5f480
jmp 0x12c0f4f
jmp 0x12c0f51
movq 0x1a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c0fac
movq %rax, %rdi
callq 0x678a0
jmp 0x12c0fae
leaq 0xc60(%rsp), %rax
movq %rax, 0x2018(%rsp)
movq 0x2018(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x198(%rsp)
leaq 0xc60(%rsp), %rax
movq %rax, 0x22e0(%rsp)
movq 0x22e0(%rsp), %rax
movq %rax, 0x38b0(%rsp)
movq 0x38b0(%rsp), %rax
movq %rax, 0x1a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c1099
movq 0x1a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x38ac(%rsp) # imm = 0xFFFFFFFF
movl 0x38ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x38a8(%rsp)
cmpl $0x1, 0x38a8(%rsp)
jne 0x12c1099
movq 0x1a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c106a
movq 0x1a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c1068
jmp 0x12c1097
movq 0x1a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e88(%rsp)
cmpq $0x0, 0x3e88(%rsp)
je 0x12c1095
movq 0x3e88(%rsp), %rdi
callq 0x5f480
jmp 0x12c1097
jmp 0x12c1099
movq 0x1a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c10f4
movq %rax, %rdi
callq 0x678a0
movq 0x198(%rsp), %rax
movq %rax, 0xca8(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0xcbc(%rsp), %eax
leaq 0xc10(%rsp), %rdx
movq %rdx, 0x2390(%rsp)
movq %rcx, 0x2388(%rsp)
movl %eax, 0x2384(%rsp)
movq 0x2388(%rsp), %rax
movq %rax, 0x190(%rsp)
movb $0x0, 0x2383(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2384(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xc10(%rsp), %r10
movq %r10, 0x2df8(%rsp)
movl %r9d, 0x2df4(%rsp)
movl %r8d, 0x2df0(%rsp)
movl %edi, 0x2dec(%rsp)
movq %rsi, 0x2de0(%rsp)
movq %rdx, 0x2dd8(%rsp)
movl %ecx, 0x2dd4(%rsp)
movq %rax, 0x2dc8(%rsp)
movq 0x2df8(%rsp), %rcx
movq %rcx, 0x188(%rsp)
movq 0x2de0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2dd8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2dd4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2dc8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2df4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2df0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2dec(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3630(%rsp)
movl $0x10, 0x362c(%rsp)
movq 0x3630(%rsp), %rax
movslq 0x362c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x362c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x190(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc38(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12c12c0
movq 0x190(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xc50(%rsp)
movb $0x1, 0x2383(%rsp)
testb $0x1, 0x2383(%rsp)
jne 0x12c13fb
leaq 0xc10(%rsp), %rax
movq %rax, 0x2398(%rsp)
movq 0x2398(%rsp), %rax
movq %rax, 0x3800(%rsp)
movq 0x3800(%rsp), %rax
movq %rax, 0x180(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c139e
movq 0x180(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x37fc(%rsp) # imm = 0xFFFFFFFF
movl 0x37fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x37f8(%rsp)
cmpl $0x1, 0x37f8(%rsp)
jne 0x12c139e
movq 0x180(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c136f
movq 0x180(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c136d
jmp 0x12c139c
movq 0x180(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ee0(%rsp)
cmpq $0x0, 0x3ee0(%rsp)
je 0x12c139a
movq 0x3ee0(%rsp), %rdi
callq 0x5f480
jmp 0x12c139c
jmp 0x12c139e
movq 0x180(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c13f9
movq %rax, %rdi
callq 0x678a0
jmp 0x12c13fb
leaq 0xc10(%rsp), %rax
movq %rax, 0x2588(%rsp)
movq 0x2588(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x170(%rsp)
leaq 0xc10(%rsp), %rax
movq %rax, 0x22e8(%rsp)
movq 0x22e8(%rsp), %rax
movq %rax, 0x38a0(%rsp)
movq 0x38a0(%rsp), %rax
movq %rax, 0x178(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c14e6
movq 0x178(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x389c(%rsp) # imm = 0xFFFFFFFF
movl 0x389c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3898(%rsp)
cmpl $0x1, 0x3898(%rsp)
jne 0x12c14e6
movq 0x178(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c14b7
movq 0x178(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c14b5
jmp 0x12c14e4
movq 0x178(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e90(%rsp)
cmpq $0x0, 0x3e90(%rsp)
je 0x12c14e2
movq 0x3e90(%rsp), %rdi
callq 0x5f480
jmp 0x12c14e4
jmp 0x12c14e6
movq 0x178(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c1541
movq %rax, %rdi
callq 0x678a0
movq 0x170(%rsp), %rax
movq %rax, 0xc58(%rsp)
movl $0x0, 0xc0c(%rsp)
movl 0xc0c(%rsp), %eax
cmpl 0x1c70(%rsp), %eax
jge 0x12c16cc
movq 0xcb0(%rsp), %rax
movq %rax, 0x2658(%rsp)
movq 0x2658(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xbf0(%rsp)
movl $0x0, 0xbec(%rsp)
movl 0xbec(%rsp), %eax
cmpl 0x1c74(%rsp), %eax
jge 0x12c16a2
movl $0x0, 0xbe8(%rsp)
movl 0xbe8(%rsp), %eax
cmpl 0x1c78(%rsp), %eax
jge 0x12c168a
movq 0xca8(%rsp), %rax
movq %rax, 0x2650(%rsp)
movq 0x2650(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xbd0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0xbf0(%rsp), %rsi
leaq 0xbd0(%rsp), %rdx
callq 0x12f6c60
movaps %xmm0, 0xbc0(%rsp)
movq 0xc58(%rsp), %rax
movaps 0xbc0(%rsp), %xmm0
movq %rax, 0x27e8(%rsp)
movaps %xmm0, 0x27d0(%rsp)
movaps 0x27d0(%rsp), %xmm0
movq 0x27e8(%rsp), %rax
movups %xmm0, (%rax)
movq 0xca8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xca8(%rsp)
movq 0xc58(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xc58(%rsp)
movl 0xbe8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xbe8(%rsp)
jmp 0x12c15bd
jmp 0x12c168c
movl 0xbec(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xbec(%rsp)
jmp 0x12c159e
movq 0xcb0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xcb0(%rsp)
movl 0xc0c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xc0c(%rsp)
jmp 0x12c155c
jmp 0x12c16ce
movl 0xcbc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xcbc(%rsp)
jmp 0x12c0c5a
movl $0x0, 0x1cc4(%rsp)
jmp 0x12c3f40
movq 0x1cb0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x12c2234
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c6c(%rsp), %ecx
movq 0x1c60(%rsp), %r8
movl 0x1c5c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1cf8(%rsp)
movq 0x1cf8(%rsp), %rcx
movq %rcx, 0x160(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x16f(%rsp)
je 0x12c17a9
movq 0x160(%rsp), %rax
movq %rax, 0x2a80(%rsp)
movq 0x2a80(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x16f(%rsp)
movb 0x16f(%rsp), %al
testb $0x1, %al
jne 0x12c17b6
jmp 0x12c17c6
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12c3f40
movl $0x0, 0xbbc(%rsp)
movl 0xbbc(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12c2224
movq 0x1cb8(%rsp), %rcx
movl 0xbbc(%rsp), %eax
movq %rcx, 0x2a08(%rsp)
movl %eax, 0x2a04(%rsp)
movq 0x2a08(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2a04(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xbb0(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0xbbc(%rsp), %eax
leaq 0xb60(%rsp), %rdx
movq %rdx, 0x1da0(%rsp)
movq %rcx, 0x1d98(%rsp)
movl %eax, 0x1d94(%rsp)
movq 0x1d98(%rsp), %rax
movq %rax, 0x158(%rsp)
movb $0x0, 0x1d93(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1d94(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xb60(%rsp), %r10
movq %r10, 0x33e0(%rsp)
movl %r9d, 0x33dc(%rsp)
movl %r8d, 0x33d8(%rsp)
movl %edi, 0x33d4(%rsp)
movq %rsi, 0x33c8(%rsp)
movq %rdx, 0x33c0(%rsp)
movl %ecx, 0x33bc(%rsp)
movq %rax, 0x33b0(%rsp)
movq 0x33e0(%rsp), %rcx
movq %rcx, 0x150(%rsp)
movq 0x33c8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x33c0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x33bc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x33b0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x33dc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x33d8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x33d4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3480(%rsp)
movl $0x10, 0x347c(%rsp)
movq 0x3480(%rsp), %rax
movslq 0x347c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x347c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x158(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xb88(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12c19ea
movq 0x158(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xba0(%rsp)
movb $0x1, 0x1d93(%rsp)
testb $0x1, 0x1d93(%rsp)
jne 0x12c1b25
leaq 0xb60(%rsp), %rax
movq %rax, 0x21a8(%rsp)
movq 0x21a8(%rsp), %rax
movq %rax, 0x3b20(%rsp)
movq 0x3b20(%rsp), %rax
movq %rax, 0x148(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c1ac8
movq 0x148(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b1c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b1c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b18(%rsp)
cmpl $0x1, 0x3b18(%rsp)
jne 0x12c1ac8
movq 0x148(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c1a99
movq 0x148(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c1a97
jmp 0x12c1ac6
movq 0x148(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d50(%rsp)
cmpq $0x0, 0x3d50(%rsp)
je 0x12c1ac4
movq 0x3d50(%rsp), %rdi
callq 0x5f480
jmp 0x12c1ac6
jmp 0x12c1ac8
movq 0x148(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c1b23
movq %rax, %rdi
callq 0x678a0
jmp 0x12c1b25
leaq 0xb60(%rsp), %rax
movq %rax, 0x2010(%rsp)
movq 0x2010(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x138(%rsp)
leaq 0xb60(%rsp), %rax
movq %rax, 0x22f0(%rsp)
movq 0x22f0(%rsp), %rax
movq %rax, 0x3890(%rsp)
movq 0x3890(%rsp), %rax
movq %rax, 0x140(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c1c10
movq 0x140(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x388c(%rsp) # imm = 0xFFFFFFFF
movl 0x388c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3888(%rsp)
cmpl $0x1, 0x3888(%rsp)
jne 0x12c1c10
movq 0x140(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c1be1
movq 0x140(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c1bdf
jmp 0x12c1c0e
movq 0x140(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e98(%rsp)
cmpq $0x0, 0x3e98(%rsp)
je 0x12c1c0c
movq 0x3e98(%rsp), %rdi
callq 0x5f480
jmp 0x12c1c0e
jmp 0x12c1c10
movq 0x140(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c1c6b
movq %rax, %rdi
callq 0x678a0
movq 0x138(%rsp), %rax
movq %rax, 0xba8(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0xbbc(%rsp), %eax
leaq 0xb10(%rsp), %rdx
movq %rdx, 0x2370(%rsp)
movq %rcx, 0x2368(%rsp)
movl %eax, 0x2364(%rsp)
movq 0x2368(%rsp), %rax
movq %rax, 0x130(%rsp)
movb $0x0, 0x2363(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2364(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xb10(%rsp), %r10
movq %r10, 0x2e30(%rsp)
movl %r9d, 0x2e2c(%rsp)
movl %r8d, 0x2e28(%rsp)
movl %edi, 0x2e24(%rsp)
movq %rsi, 0x2e18(%rsp)
movq %rdx, 0x2e10(%rsp)
movl %ecx, 0x2e0c(%rsp)
movq %rax, 0x2e00(%rsp)
movq 0x2e30(%rsp), %rcx
movq %rcx, 0x128(%rsp)
movq 0x2e18(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2e10(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2e0c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2e00(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2e2c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2e28(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2e24(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3620(%rsp)
movl $0x10, 0x361c(%rsp)
movq 0x3620(%rsp), %rax
movslq 0x361c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x361c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x130(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xb38(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12c1e37
movq 0x130(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xb50(%rsp)
movb $0x1, 0x2363(%rsp)
testb $0x1, 0x2363(%rsp)
jne 0x12c1f72
leaq 0xb10(%rsp), %rax
movq %rax, 0x2378(%rsp)
movq 0x2378(%rsp), %rax
movq %rax, 0x3810(%rsp)
movq 0x3810(%rsp), %rax
movq %rax, 0x120(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c1f15
movq 0x120(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x380c(%rsp) # imm = 0xFFFFFFFF
movl 0x380c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3808(%rsp)
cmpl $0x1, 0x3808(%rsp)
jne 0x12c1f15
movq 0x120(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c1ee6
movq 0x120(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c1ee4
jmp 0x12c1f13
movq 0x120(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ed8(%rsp)
cmpq $0x0, 0x3ed8(%rsp)
je 0x12c1f11
movq 0x3ed8(%rsp), %rdi
callq 0x5f480
jmp 0x12c1f13
jmp 0x12c1f15
movq 0x120(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c1f70
movq %rax, %rdi
callq 0x678a0
jmp 0x12c1f72
leaq 0xb10(%rsp), %rax
movq %rax, 0x2580(%rsp)
movq 0x2580(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x110(%rsp)
leaq 0xb10(%rsp), %rax
movq %rax, 0x22f8(%rsp)
movq 0x22f8(%rsp), %rax
movq %rax, 0x3880(%rsp)
movq 0x3880(%rsp), %rax
movq %rax, 0x118(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c205d
movq 0x118(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x387c(%rsp) # imm = 0xFFFFFFFF
movl 0x387c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3878(%rsp)
cmpl $0x1, 0x3878(%rsp)
jne 0x12c205d
movq 0x118(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c202e
movq 0x118(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c202c
jmp 0x12c205b
movq 0x118(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ea0(%rsp)
cmpq $0x0, 0x3ea0(%rsp)
je 0x12c2059
movq 0x3ea0(%rsp), %rdi
callq 0x5f480
jmp 0x12c205b
jmp 0x12c205d
movq 0x118(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c20b8
movq %rax, %rdi
callq 0x678a0
movq 0x110(%rsp), %rax
movq %rax, 0xb58(%rsp)
movl $0x0, 0xb0c(%rsp)
movl 0xb0c(%rsp), %eax
cmpl 0x1c74(%rsp), %eax
jge 0x12c220c
movq 0xbb0(%rsp), %rax
movq %rax, 0x2648(%rsp)
movq 0x2648(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xaf0(%rsp)
movl $0x0, 0xaec(%rsp)
movl 0xaec(%rsp), %eax
cmpl 0x1c78(%rsp), %eax
jge 0x12c21e2
movq 0xba8(%rsp), %rax
movq %rax, 0x2640(%rsp)
movq 0x2640(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xad0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0xaf0(%rsp), %rsi
leaq 0xad0(%rsp), %rdx
callq 0x12f6c60
movaps %xmm0, 0xac0(%rsp)
movq 0xb58(%rsp), %rax
movaps 0xac0(%rsp), %xmm0
movq %rax, 0x27c8(%rsp)
movaps %xmm0, 0x27b0(%rsp)
movaps 0x27b0(%rsp), %xmm0
movq 0x27c8(%rsp), %rax
movups %xmm0, (%rax)
movq 0xba8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xba8(%rsp)
movq 0xb58(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xb58(%rsp)
movl 0xaec(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xaec(%rsp)
jmp 0x12c2115
movq 0xbb0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xbb0(%rsp)
movl 0xb0c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xb0c(%rsp)
jmp 0x12c20d3
jmp 0x12c220e
movl 0xbbc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xbbc(%rsp)
jmp 0x12c17d1
movl $0x0, 0x1cc4(%rsp)
jmp 0x12c3f40
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movq 0x1c80(%rsp), %rcx
movl 0x1c7c(%rsp), %r8d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1cf0(%rsp)
movq 0x1cf0(%rsp), %rcx
movq %rcx, 0x100(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x10f(%rsp)
je 0x12c22cc
movq 0x100(%rsp), %rax
movq %rax, 0x2a88(%rsp)
movq 0x2a88(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x10f(%rsp)
movb 0x10f(%rsp), %al
testb $0x1, %al
jne 0x12c22d9
jmp 0x12c22e9
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12c3f40
movq 0x1cb0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x12c2328
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12ef780
movl %eax, 0x1cc4(%rsp)
jmp 0x12c3f40
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x12c25f5
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movq 0x1c80(%rsp), %rcx
movl 0x1c7c(%rsp), %r8d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1ce8(%rsp)
movq 0x1ce8(%rsp), %rcx
movq %rcx, 0xf0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xff(%rsp)
je 0x12c23d2
movq 0xf0(%rsp), %rax
movq %rax, 0x2a90(%rsp)
movq 0x2a90(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xff(%rsp)
movb 0xff(%rsp), %al
testb $0x1, %al
jne 0x12c23df
jmp 0x12c23ef
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12c3f40
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x12c2438
cmpl $0x1, 0x1c5c(%rsp)
jne 0x12c2438
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12f0700
movl %eax, 0x1cc4(%rsp)
jmp 0x12c3f40
movq 0x1cb8(%rsp), %rax
movq %rax, 0x2008(%rsp)
movq 0x2008(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xab8(%rsp)
movq 0x1cb0(%rsp), %rax
movq %rax, 0x2000(%rsp)
movq 0x2000(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xab0(%rsp)
movq 0x1ca8(%rsp), %rax
movq %rax, 0x2578(%rsp)
movq 0x2578(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xaa8(%rsp)
movl $0x0, 0xaa4(%rsp)
movl 0xaa4(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jge 0x12c25e5
movq 0xab0(%rsp), %rax
movq %rax, 0x2638(%rsp)
movq 0x2638(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xa90(%rsp)
movl $0x0, 0xa8c(%rsp)
movl 0xa8c(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jge 0x12c25bb
movq 0xab8(%rsp), %rax
movq %rax, 0x2630(%rsp)
movq 0x2630(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xa70(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0xa70(%rsp), %rsi
leaq 0xa90(%rsp), %rdx
callq 0x12f6c60
movaps %xmm0, 0xa60(%rsp)
movq 0xaa8(%rsp), %rax
movaps 0xa60(%rsp), %xmm0
movq %rax, 0x27a8(%rsp)
movaps %xmm0, 0x2790(%rsp)
movaps 0x2790(%rsp), %xmm0
movq 0x27a8(%rsp), %rax
movups %xmm0, (%rax)
movq 0xab8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xab8(%rsp)
movq 0xaa8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xaa8(%rsp)
movl 0xa8c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xa8c(%rsp)
jmp 0x12c24ee
movq 0xab0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xab0(%rsp)
movl 0xaa4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xaa4(%rsp)
jmp 0x12c24ac
movl $0x0, 0x1cc4(%rsp)
jmp 0x12c3f40
jmp 0x12c3f31
movq 0x1cb8(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x12c3f2f
movq 0x1cb8(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x12c2655
cmpl $0x1, 0x1c7c(%rsp)
jne 0x12c2655
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12f1270
movl %eax, 0x1cc4(%rsp)
jmp 0x12c3f40
movq 0x1cb0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x12c3137
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c70(%rsp), %ecx
movl 0x1c6c(%rsp), %r8d
movq 0x1c60(%rsp), %r9
movl 0x1c5c(%rsp), %r10d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1ce0(%rsp)
movq 0x1ce0(%rsp), %rcx
movq %rcx, 0xe0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xef(%rsp)
je 0x12c2717
movq 0xe0(%rsp), %rax
movq %rax, 0x2a98(%rsp)
movq 0x2a98(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xef(%rsp)
movb 0xef(%rsp), %al
testb $0x1, %al
jne 0x12c2724
jmp 0x12c2734
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12c3f40
movl $0x0, 0xa5c(%rsp)
movl 0xa5c(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12c3127
movq 0x1cb8(%rsp), %rax
movq %rax, 0x1ff8(%rsp)
movq 0x1ff8(%rsp), %rax
movq (%rax), %rax
movl 0xa5c(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2628(%rsp)
movq 0x2628(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xa40(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0xa5c(%rsp), %eax
leaq 0x9f0(%rsp), %rdx
movq %rdx, 0x1d88(%rsp)
movq %rcx, 0x1d80(%rsp)
movl %eax, 0x1d7c(%rsp)
movq 0x1d80(%rsp), %rax
movq %rax, 0xd8(%rsp)
movb $0x0, 0x1d7b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1d7c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x9f0(%rsp), %r10
movq %r10, 0x3418(%rsp)
movl %r9d, 0x3414(%rsp)
movl %r8d, 0x3410(%rsp)
movl %edi, 0x340c(%rsp)
movq %rsi, 0x3400(%rsp)
movq %rdx, 0x33f8(%rsp)
movl %ecx, 0x33f4(%rsp)
movq %rax, 0x33e8(%rsp)
movq 0x3418(%rsp), %rcx
movq %rcx, 0xd0(%rsp)
movq 0x3400(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x33f8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x33f4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x33e8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3414(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3410(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x340c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3470(%rsp)
movl $0x10, 0x346c(%rsp)
movq 0x3470(%rsp), %rax
movslq 0x346c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x346c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xd8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xa18(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12c2959
movq 0xd8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xa30(%rsp)
movb $0x1, 0x1d7b(%rsp)
testb $0x1, 0x1d7b(%rsp)
jne 0x12c2a94
leaq 0x9f0(%rsp), %rax
movq %rax, 0x21b0(%rsp)
movq 0x21b0(%rsp), %rax
movq %rax, 0x3b10(%rsp)
movq 0x3b10(%rsp), %rax
movq %rax, 0xc8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c2a37
movq 0xc8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b0c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b0c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b08(%rsp)
cmpl $0x1, 0x3b08(%rsp)
jne 0x12c2a37
movq 0xc8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c2a08
movq 0xc8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c2a06
jmp 0x12c2a35
movq 0xc8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d58(%rsp)
cmpq $0x0, 0x3d58(%rsp)
je 0x12c2a33
movq 0x3d58(%rsp), %rdi
callq 0x5f480
jmp 0x12c2a35
jmp 0x12c2a37
movq 0xc8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c2a92
movq %rax, %rdi
callq 0x678a0
jmp 0x12c2a94
leaq 0x9f0(%rsp), %rax
movq %rax, 0x1ff0(%rsp)
movq 0x1ff0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xb8(%rsp)
leaq 0x9f0(%rsp), %rax
movq %rax, 0x2300(%rsp)
movq 0x2300(%rsp), %rax
movq %rax, 0x3870(%rsp)
movq 0x3870(%rsp), %rax
movq %rax, 0xc0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c2b7f
movq 0xc0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x386c(%rsp) # imm = 0xFFFFFFFF
movl 0x386c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3868(%rsp)
cmpl $0x1, 0x3868(%rsp)
jne 0x12c2b7f
movq 0xc0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c2b50
movq 0xc0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c2b4e
jmp 0x12c2b7d
movq 0xc0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ea8(%rsp)
cmpq $0x0, 0x3ea8(%rsp)
je 0x12c2b7b
movq 0x3ea8(%rsp), %rdi
callq 0x5f480
jmp 0x12c2b7d
jmp 0x12c2b7f
movq 0xc0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c2bda
movq %rax, %rdi
callq 0x678a0
movq 0xb8(%rsp), %rax
movq %rax, 0xa38(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0xa5c(%rsp), %eax
leaq 0x9a0(%rsp), %rdx
movq %rdx, 0x2350(%rsp)
movq %rcx, 0x2348(%rsp)
movl %eax, 0x2344(%rsp)
movq 0x2348(%rsp), %rax
movq %rax, 0xb0(%rsp)
movb $0x0, 0x2343(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2344(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x9a0(%rsp), %r10
movq %r10, 0x2e68(%rsp)
movl %r9d, 0x2e64(%rsp)
movl %r8d, 0x2e60(%rsp)
movl %edi, 0x2e5c(%rsp)
movq %rsi, 0x2e50(%rsp)
movq %rdx, 0x2e48(%rsp)
movl %ecx, 0x2e44(%rsp)
movq %rax, 0x2e38(%rsp)
movq 0x2e68(%rsp), %rcx
movq %rcx, 0xa8(%rsp)
movq 0x2e50(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2e48(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2e44(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2e38(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2e64(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2e60(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2e5c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3610(%rsp)
movl $0x10, 0x360c(%rsp)
movq 0x3610(%rsp), %rax
movslq 0x360c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x360c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xb0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x9c8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12c2da6
movq 0xb0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x9e0(%rsp)
movb $0x1, 0x2343(%rsp)
testb $0x1, 0x2343(%rsp)
jne 0x12c2ee1
leaq 0x9a0(%rsp), %rax
movq %rax, 0x2358(%rsp)
movq 0x2358(%rsp), %rax
movq %rax, 0x3820(%rsp)
movq 0x3820(%rsp), %rax
movq %rax, 0xa0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c2e84
movq 0xa0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x381c(%rsp) # imm = 0xFFFFFFFF
movl 0x381c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3818(%rsp)
cmpl $0x1, 0x3818(%rsp)
jne 0x12c2e84
movq 0xa0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c2e55
movq 0xa0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c2e53
jmp 0x12c2e82
movq 0xa0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ed0(%rsp)
cmpq $0x0, 0x3ed0(%rsp)
je 0x12c2e80
movq 0x3ed0(%rsp), %rdi
callq 0x5f480
jmp 0x12c2e82
jmp 0x12c2e84
movq 0xa0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c2edf
movq %rax, %rdi
callq 0x678a0
jmp 0x12c2ee1
leaq 0x9a0(%rsp), %rax
movq %rax, 0x2570(%rsp)
movq 0x2570(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x90(%rsp)
leaq 0x9a0(%rsp), %rax
movq %rax, 0x2308(%rsp)
movq 0x2308(%rsp), %rax
movq %rax, 0x3860(%rsp)
movq 0x3860(%rsp), %rax
movq %rax, 0x98(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c2fcc
movq 0x98(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x385c(%rsp) # imm = 0xFFFFFFFF
movl 0x385c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3858(%rsp)
cmpl $0x1, 0x3858(%rsp)
jne 0x12c2fcc
movq 0x98(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c2f9d
movq 0x98(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c2f9b
jmp 0x12c2fca
movq 0x98(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3eb0(%rsp)
cmpq $0x0, 0x3eb0(%rsp)
je 0x12c2fc8
movq 0x3eb0(%rsp), %rdi
callq 0x5f480
jmp 0x12c2fca
jmp 0x12c2fcc
movq 0x98(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c3027
movq %rax, %rdi
callq 0x678a0
movq 0x90(%rsp), %rax
movq %rax, 0x9e8(%rsp)
movl $0x0, 0x99c(%rsp)
movl 0x99c(%rsp), %eax
cmpl 0x1c68(%rsp), %eax
jge 0x12c310f
movq 0xa38(%rsp), %rax
movq %rax, 0x2620(%rsp)
movq 0x2620(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x980(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0xa40(%rsp), %rsi
leaq 0x980(%rsp), %rdx
callq 0x12f6c60
movaps %xmm0, 0x970(%rsp)
movq 0x9e8(%rsp), %rax
movaps 0x970(%rsp), %xmm0
movq %rax, 0x2788(%rsp)
movaps %xmm0, 0x2770(%rsp)
movaps 0x2770(%rsp), %xmm0
movq 0x2788(%rsp), %rax
movups %xmm0, (%rax)
movq 0xa38(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xa38(%rsp)
movq 0x9e8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x9e8(%rsp)
movl 0x99c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x99c(%rsp)
jmp 0x12c3042
jmp 0x12c3111
movl 0xa5c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xa5c(%rsp)
jmp 0x12c273f
movl $0x0, 0x1cc4(%rsp)
jmp 0x12c3f40
movq 0x1cb0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x12c3ba0
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c6c(%rsp), %ecx
movq 0x1c60(%rsp), %r8
movl 0x1c5c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1cd8(%rsp)
movq 0x1cd8(%rsp), %rcx
movq %rcx, 0x80(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x8f(%rsp)
je 0x12c31ec
movq 0x80(%rsp), %rax
movq %rax, 0x2aa0(%rsp)
movq 0x2aa0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x8f(%rsp)
movb 0x8f(%rsp), %al
testb $0x1, %al
jne 0x12c31f9
jmp 0x12c3209
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12c3f40
movl $0x0, 0x96c(%rsp)
movl 0x96c(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12c3b90
movq 0x1cb8(%rsp), %rax
movq %rax, 0x1fe8(%rsp)
movq 0x1fe8(%rsp), %rax
movq (%rax), %rax
movl 0x96c(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2618(%rsp)
movq 0x2618(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x950(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x96c(%rsp), %eax
leaq 0x900(%rsp), %rdx
movq %rdx, 0x1d70(%rsp)
movq %rcx, 0x1d68(%rsp)
movl %eax, 0x1d64(%rsp)
movq 0x1d68(%rsp), %rax
movq %rax, 0x78(%rsp)
movb $0x0, 0x1d63(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1d64(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x900(%rsp), %r10
movq %r10, 0x3450(%rsp)
movl %r9d, 0x344c(%rsp)
movl %r8d, 0x3448(%rsp)
movl %edi, 0x3444(%rsp)
movq %rsi, 0x3438(%rsp)
movq %rdx, 0x3430(%rsp)
movl %ecx, 0x342c(%rsp)
movq %rax, 0x3420(%rsp)
movq 0x3450(%rsp), %rcx
movq %rcx, 0x70(%rsp)
movq 0x3438(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3430(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x342c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3420(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x344c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3448(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3444(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3460(%rsp)
movl $0x10, 0x345c(%rsp)
movq 0x3460(%rsp), %rax
movslq 0x345c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x345c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x78(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x928(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12c3422
movq 0x78(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x940(%rsp)
movb $0x1, 0x1d63(%rsp)
testb $0x1, 0x1d63(%rsp)
jne 0x12c354b
leaq 0x900(%rsp), %rax
movq %rax, 0x21b8(%rsp)
movq 0x21b8(%rsp), %rax
movq %rax, 0x3b00(%rsp)
movq 0x3b00(%rsp), %rax
movq %rax, 0x68(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c34f1
movq 0x68(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3afc(%rsp) # imm = 0xFFFFFFFF
movl 0x3afc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3af8(%rsp)
cmpl $0x1, 0x3af8(%rsp)
jne 0x12c34f1
movq 0x68(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c34c5
movq 0x68(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c34c3
jmp 0x12c34ef
movq 0x68(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d60(%rsp)
cmpq $0x0, 0x3d60(%rsp)
je 0x12c34ed
movq 0x3d60(%rsp), %rdi
callq 0x5f480
jmp 0x12c34ef
jmp 0x12c34f1
movq 0x68(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c3549
movq %rax, %rdi
callq 0x678a0
jmp 0x12c354b
leaq 0x900(%rsp), %rax
movq %rax, 0x1fe0(%rsp)
movq 0x1fe0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x58(%rsp)
leaq 0x900(%rsp), %rax
movq %rax, 0x2310(%rsp)
movq 0x2310(%rsp), %rax
movq %rax, 0x3850(%rsp)
movq 0x3850(%rsp), %rax
movq %rax, 0x60(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c3624
movq 0x60(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x384c(%rsp) # imm = 0xFFFFFFFF
movl 0x384c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3848(%rsp)
cmpl $0x1, 0x3848(%rsp)
jne 0x12c3624
movq 0x60(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c35f8
movq 0x60(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c35f6
jmp 0x12c3622
movq 0x60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3eb8(%rsp)
cmpq $0x0, 0x3eb8(%rsp)
je 0x12c3620
movq 0x3eb8(%rsp), %rdi
callq 0x5f480
jmp 0x12c3622
jmp 0x12c3624
movq 0x60(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c367c
movq %rax, %rdi
callq 0x678a0
movq 0x58(%rsp), %rax
movq %rax, 0x948(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x96c(%rsp), %eax
leaq 0x8b0(%rsp), %rdx
movq %rdx, 0x2330(%rsp)
movq %rcx, 0x2328(%rsp)
movl %eax, 0x2324(%rsp)
movq 0x2328(%rsp), %rax
movq %rax, 0x50(%rsp)
movb $0x0, 0x2323(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2324(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x8b0(%rsp), %r10
movq %r10, 0x2ea0(%rsp)
movl %r9d, 0x2e9c(%rsp)
movl %r8d, 0x2e98(%rsp)
movl %edi, 0x2e94(%rsp)
movq %rsi, 0x2e88(%rsp)
movq %rdx, 0x2e80(%rsp)
movl %ecx, 0x2e7c(%rsp)
movq %rax, 0x2e70(%rsp)
movq 0x2ea0(%rsp), %rcx
movq %rcx, 0x48(%rsp)
movq 0x2e88(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2e80(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2e7c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2e70(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2e9c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2e98(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2e94(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3600(%rsp)
movl $0x10, 0x35fc(%rsp)
movq 0x3600(%rsp), %rax
movslq 0x35fc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x35fc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x50(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x8d8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12c3839
movq 0x50(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x8f0(%rsp)
movb $0x1, 0x2323(%rsp)
testb $0x1, 0x2323(%rsp)
jne 0x12c3962
leaq 0x8b0(%rsp), %rax
movq %rax, 0x2338(%rsp)
movq 0x2338(%rsp), %rax
movq %rax, 0x3830(%rsp)
movq 0x3830(%rsp), %rax
movq %rax, 0x40(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c3908
movq 0x40(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x382c(%rsp) # imm = 0xFFFFFFFF
movl 0x382c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3828(%rsp)
cmpl $0x1, 0x3828(%rsp)
jne 0x12c3908
movq 0x40(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c38dc
movq 0x40(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c38da
jmp 0x12c3906
movq 0x40(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ec8(%rsp)
cmpq $0x0, 0x3ec8(%rsp)
je 0x12c3904
movq 0x3ec8(%rsp), %rdi
callq 0x5f480
jmp 0x12c3906
jmp 0x12c3908
movq 0x40(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c3960
movq %rax, %rdi
callq 0x678a0
jmp 0x12c3962
leaq 0x8b0(%rsp), %rax
movq %rax, 0x2568(%rsp)
movq 0x2568(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x30(%rsp)
leaq 0x8b0(%rsp), %rax
movq %rax, 0x2318(%rsp)
movq 0x2318(%rsp), %rax
movq %rax, 0x3840(%rsp)
movq 0x3840(%rsp), %rax
movq %rax, 0x38(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c3a3b
movq 0x38(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x383c(%rsp) # imm = 0xFFFFFFFF
movl 0x383c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3838(%rsp)
cmpl $0x1, 0x3838(%rsp)
jne 0x12c3a3b
movq 0x38(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c3a0f
movq 0x38(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c3a0d
jmp 0x12c3a39
movq 0x38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ec0(%rsp)
cmpq $0x0, 0x3ec0(%rsp)
je 0x12c3a37
movq 0x3ec0(%rsp), %rdi
callq 0x5f480
jmp 0x12c3a39
jmp 0x12c3a3b
movq 0x38(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c3a93
movq %rax, %rdi
callq 0x678a0
movq 0x30(%rsp), %rax
movq %rax, 0x8f8(%rsp)
movl $0x0, 0x8ac(%rsp)
movl 0x8ac(%rsp), %eax
cmpl 0x1c68(%rsp), %eax
jge 0x12c3b78
movq 0x948(%rsp), %rax
movq %rax, 0x2610(%rsp)
movq 0x2610(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x890(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x950(%rsp), %rsi
leaq 0x890(%rsp), %rdx
callq 0x12f6c60
movaps %xmm0, 0x880(%rsp)
movq 0x8f8(%rsp), %rax
movaps 0x880(%rsp), %xmm0
movq %rax, 0x2768(%rsp)
movaps %xmm0, 0x2750(%rsp)
movaps 0x2750(%rsp), %xmm0
movq 0x2768(%rsp), %rax
movups %xmm0, (%rax)
movq 0x948(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x948(%rsp)
movq 0x8f8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x8f8(%rsp)
movl 0x8ac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x8ac(%rsp)
jmp 0x12c3aab
jmp 0x12c3b7a
movl 0x96c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x96c(%rsp)
jmp 0x12c3214
movl $0x0, 0x1cc4(%rsp)
jmp 0x12c3f40
movq 0x1cb0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x12c3e15
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movq 0x1c60(%rsp), %rcx
movl 0x1c5c(%rsp), %r8d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1cd0(%rsp)
movq 0x1cd0(%rsp), %rcx
movq %rcx, 0x20(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x2f(%rsp)
je 0x12c3c3e
movq 0x20(%rsp), %rax
movq %rax, 0x2aa8(%rsp)
movq 0x2aa8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x2f(%rsp)
movb 0x2f(%rsp), %al
testb $0x1, %al
jne 0x12c3c48
jmp 0x12c3c58
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12c3f40
movq 0x1cb8(%rsp), %rax
movq %rax, 0x1fd8(%rsp)
movq 0x1fd8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x878(%rsp)
movq 0x1cb0(%rsp), %rax
movq %rax, 0x1fd0(%rsp)
movq 0x1fd0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x870(%rsp)
movq 0x1ca8(%rsp), %rax
movq %rax, 0x2560(%rsp)
movq 0x2560(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x868(%rsp)
movl $0x0, 0x864(%rsp)
movl 0x864(%rsp), %eax
cmpl 0x1c74(%rsp), %eax
jge 0x12c3e05
movq 0x878(%rsp), %rax
movq %rax, 0x2608(%rsp)
movq 0x2608(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x850(%rsp)
movl $0x0, 0x84c(%rsp)
movl 0x84c(%rsp), %eax
cmpl 0x1c78(%rsp), %eax
jge 0x12c3ddb
movq 0x870(%rsp), %rax
movq %rax, 0x2600(%rsp)
movq 0x2600(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x830(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x850(%rsp), %rsi
leaq 0x830(%rsp), %rdx
callq 0x12f6c60
movaps %xmm0, 0x820(%rsp)
movq 0x868(%rsp), %rax
movaps 0x820(%rsp), %xmm0
movq %rax, 0x2748(%rsp)
movaps %xmm0, 0x2730(%rsp)
movaps 0x2730(%rsp), %xmm0
movq 0x2748(%rsp), %rax
movups %xmm0, (%rax)
movq 0x870(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x870(%rsp)
movq 0x868(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x868(%rsp)
movl 0x84c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x84c(%rsp)
jmp 0x12c3d0e
movq 0x878(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x878(%rsp)
movl 0x864(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x864(%rsp)
jmp 0x12c3ccc
movl $0x0, 0x1cc4(%rsp)
jmp 0x12c3f40
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x12c3f2d
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movq 0x1c80(%rsp), %rdx
movl 0x1c7c(%rsp), %ecx
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6be00
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1cc8(%rsp)
movq 0x1cc8(%rsp), %rcx
movq %rcx, 0x10(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1f(%rsp)
je 0x12c3eab
movq 0x10(%rsp), %rax
movq %rax, 0x2ab0(%rsp)
movq 0x2ab0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1f(%rsp)
movb 0x1f(%rsp), %al
testb $0x1, %al
jne 0x12c3eb5
jmp 0x12c3ec2
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12c3f40
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x12c3f08
cmpl $0x1, 0x1c5c(%rsp)
jne 0x12c3f08
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12f0700
movl %eax, 0x1cc4(%rsp)
jmp 0x12c3f40
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12ef780
jmp 0x12c3f2f
jmp 0x12c3f31
jmp 0x12c3f33
jmp 0x12c3f35
movl $0x0, 0x1cc4(%rsp)
movl 0x1cc4(%rsp), %eax
addq $0x3f58, %rsp # imm = 0x3F58
retq
nop
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,834
|
int ncnn::binary_op_pack4<ncnn::BinaryOp_x86_functor::binary_op_min>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op_pack4(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int size = w * h * d;
size_t elemsize = a.elemsize;
int elempack = a.elempack;
int w1 = b.w;
int h1 = b.h;
int d1 = b.d;
int channels1 = b.c;
int size1 = w1 * h1 * d1;
size_t elemsize1 = b.elemsize;
int elempack1 = b.elempack;
if (a.dims == 4)
{
if (b.dims == 4)
{
// type 29
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
c.create(w, h, d, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 3)
{
// type 28
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
for (int y = 0; y < h; y++)
{
__m128 _b0 = _mm_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
ptr1 += 4;
}
}
}
return 0;
}
if (b.dims == 2)
{
// type 27
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
__m128 _b0 = _mm_loadu_ps(ptr1);
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
}
ptr1 += 4;
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1 && elempack1 == 1)
{
// type 25
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 26
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
__m128 _b0 = _mm_loadu_ps((const float*)b + q * 4);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
}
return 0;
}
}
else if (a.dims == 3)
{
if (b.dims == 4)
{
// type 23
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
for (int y = 0; y < h1; y++)
{
__m128 _a0 = _mm_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m128 _p = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
ptr += 4;
}
}
}
return 0;
}
if (b.dims == 3)
{
if (w1 == 1 && h1 == 1 && channels1 == channels)
{
// special type 1
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
float* outptr = c.channel(q);
const float* b0 = b.channel(q);
__m128 _b0 = _mm_loadu_ps(b0);
for (int i = 0; i < size; i++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
}
return 0;
}
if (w1 == w && h1 == h && channels1 == 1 && elempack1 == 1)
{
// special type 2
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b;
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _p1 = _mm_set1_ps(*ptr1);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
ptr1 += 1;
outptr += 4;
}
}
return 0;
}
if (w == 1 && h == 1 && channels1 == channels)
{
// special type 3
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* a0 = a.channel(q);
float* outptr = c.channel(q);
const float* ptr1 = b.channel(q);
__m128 _a0 = _mm_loadu_ps(a0);
for (int i = 0; i < size1; i++)
{
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
}
return 0;
}
if (w1 == w && h1 == h && channels == 1 && elempack == 1)
{
// special type 4
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a;
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m128 _p = _mm_set1_ps(*ptr);
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_storeu_ps(outptr, _outp);
ptr += 1;
ptr1 += 4;
outptr += 4;
}
}
return 0;
}
if (w != 1 && w1 == 1 && h1 == h && channels1 == channels)
{
// special type 5
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
__m128 _p1 = _mm_loadu_ps(ptr1 + y * 4);
for (int x = 0; x < w; x++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
}
}
return 0;
}
if (w1 == w && h != 1 && h1 == 1 && channels1 == channels)
{
// special type 6
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _p1 = _mm_loadu_ps(ptr1 + x * 4);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
}
}
return 0;
}
if (w1 != 1 && w == 1 && h1 == h && channels1 == channels)
{
// special type 7
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
__m128 _p = _mm_loadu_ps(ptr + y * 4);
for (int x = 0; x < w1; x++)
{
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
}
}
return 0;
}
if (w1 == w && h1 != 1 && h == 1 && channels1 == channels)
{
// special type 8
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
__m128 _p = _mm_loadu_ps(ptr + x * 4);
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
}
}
return 0;
}
// type 19
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 18
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row<const float>(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
__m128 _b0 = _mm_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
ptr1 += 4;
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1 && elempack1 == 1)
{
// type 16
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 17
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
__m128 _b0 = _mm_loadu_ps((const float*)b + q * 4);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
}
return 0;
}
}
else if (a.dims == 2)
{
if (b.dims == 4)
{
// type 22
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
__m128 _a0 = _mm_loadu_ps(ptr);
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
__m128 _p = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
}
ptr += 4;
}
}
return 0;
}
if (b.dims == 3)
{
// type 14
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row<const float>(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
__m128 _a0 = _mm_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
ptr += 4;
}
}
return 0;
}
c.create(w, h, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 13
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
if (b.dims == 1)
{
c.create(w, h, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1 && elempack1 == 1)
{
// type 11
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 12
const float* ptr = a;
const float* ptr1 = b;
float* outptr = c;
for (int y = 0; y < h; y++)
{
__m128 _b0 = _mm_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
ptr1 += 4;
}
return 0;
}
}
else if (a.dims == 1)
{
if (a.w == 1 && elempack == 1)
{
// type 2 3 4 20
return binary_op_2_3_4_20<Op>(a, b, c, opt);
}
if (b.dims == 4)
{
// type 21
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
__m128 _a0 = _mm_loadu_ps((const float*)a + q * 4);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
}
return 0;
}
if (b.dims == 3)
{
// type 9
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
__m128 _a0 = _mm_loadu_ps((const float*)a + q * 4);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
}
return 0;
}
if (b.dims == 2)
{
// type 8
c.create(w1, h1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
const float* ptr = a;
const float* ptr1 = b;
float* outptr = c;
for (int y = 0; y < h1; y++)
{
__m128 _a0 = _mm_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
ptr += 4;
}
return 0;
}
if (b.dims == 1)
{
c.create(w, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1 && elempack1 == 1)
{
// type 6
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 7
binary_op_7_13_19_29<Op>(a, b, c, opt);
}
}
return 0;
}
|
subq $0x3f58, %rsp # imm = 0x3F58
movq %rdi, 0x1cb8(%rsp)
movq %rsi, 0x1cb0(%rsp)
movq %rdx, 0x1ca8(%rsp)
movq %rcx, 0x1ca0(%rsp)
movq 0x1cb8(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x1c98(%rsp)
movq 0x1cb8(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x1c94(%rsp)
movq 0x1cb8(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x1c90(%rsp)
movq 0x1cb8(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x1c8c(%rsp)
movl 0x1c98(%rsp), %eax
imull 0x1c94(%rsp), %eax
imull 0x1c90(%rsp), %eax
movl %eax, 0x1c88(%rsp)
movq 0x1cb8(%rsp), %rax
movq 0x10(%rax), %rax
movq %rax, 0x1c80(%rsp)
movq 0x1cb8(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x1c7c(%rsp)
movq 0x1cb0(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x1c78(%rsp)
movq 0x1cb0(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x1c74(%rsp)
movq 0x1cb0(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x1c70(%rsp)
movq 0x1cb0(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x1c6c(%rsp)
movl 0x1c78(%rsp), %eax
imull 0x1c74(%rsp), %eax
imull 0x1c70(%rsp), %eax
movl %eax, 0x1c68(%rsp)
movq 0x1cb0(%rsp), %rax
movq 0x10(%rax), %rax
movq %rax, 0x1c60(%rsp)
movq 0x1cb0(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x1c5c(%rsp)
movq 0x1cb8(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x12c6582
movq 0x1cb0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x12c40e0
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12f1de0
movl %eax, 0x1cc4(%rsp)
jmp 0x12d3150
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movl 0x1c90(%rsp), %ecx
movl 0x1c8c(%rsp), %r8d
movq 0x1c80(%rsp), %r9
movl 0x1c7c(%rsp), %r10d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d58(%rsp)
movq 0x1d58(%rsp), %rcx
movq %rcx, 0x810(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x81f(%rsp)
je 0x12c4190
movq 0x810(%rsp), %rax
movq %rax, 0x2a20(%rsp)
movq 0x2a20(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x81f(%rsp)
movb 0x81f(%rsp), %al
testb $0x1, %al
jne 0x12c419d
jmp 0x12c41ad
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12d3150
movq 0x1cb0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x12c5068
movl $0x0, 0x1c58(%rsp)
movl 0x1c58(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jge 0x12c5058
movq 0x1cb8(%rsp), %rcx
movl 0x1c58(%rsp), %eax
leaq 0x1c08(%rsp), %rdx
movq %rdx, 0x1fc8(%rsp)
movq %rcx, 0x1fc0(%rsp)
movl %eax, 0x1fbc(%rsp)
movq 0x1fc0(%rsp), %rax
movq %rax, 0x808(%rsp)
movb $0x0, 0x1fbb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1fbc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1c08(%rsp), %r10
movq %r10, 0x2ed8(%rsp)
movl %r9d, 0x2ed4(%rsp)
movl %r8d, 0x2ed0(%rsp)
movl %edi, 0x2ecc(%rsp)
movq %rsi, 0x2ec0(%rsp)
movq %rdx, 0x2eb8(%rsp)
movl %ecx, 0x2eb4(%rsp)
movq %rax, 0x2ea8(%rsp)
movq 0x2ed8(%rsp), %rcx
movq %rcx, 0x800(%rsp)
movq 0x2ec0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2eb8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2eb4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ea8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2ed4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2ed0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2ecc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x35f0(%rsp)
movl $0x10, 0x35ec(%rsp)
movq 0x35f0(%rsp), %rax
movslq 0x35ec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x35ec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x808(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1c30(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12c439a
movq 0x808(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1c48(%rsp)
movb $0x1, 0x1fbb(%rsp)
testb $0x1, 0x1fbb(%rsp)
jne 0x12c44d5
leaq 0x1c08(%rsp), %rax
movq %rax, 0x20f0(%rsp)
movq 0x20f0(%rsp), %rax
movq %rax, 0x3c90(%rsp)
movq 0x3c90(%rsp), %rax
movq %rax, 0x7f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c4478
movq 0x7f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c8c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c8c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c88(%rsp)
cmpl $0x1, 0x3c88(%rsp)
jne 0x12c4478
movq 0x7f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c4449
movq 0x7f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c4447
jmp 0x12c4476
movq 0x7f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3c98(%rsp)
cmpq $0x0, 0x3c98(%rsp)
je 0x12c4474
movq 0x3c98(%rsp), %rdi
callq 0x5f480
jmp 0x12c4476
jmp 0x12c4478
movq 0x7f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c44d3
movq %rax, %rdi
callq 0x678a0
jmp 0x12c44d5
leaq 0x1c08(%rsp), %rax
movq %rax, 0x20e8(%rsp)
movq 0x20e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7e8(%rsp)
leaq 0x1c08(%rsp), %rax
movq %rax, 0x21c0(%rsp)
movq 0x21c0(%rsp), %rax
movq %rax, 0x3af0(%rsp)
movq 0x3af0(%rsp), %rax
movq %rax, 0x7f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c45c0
movq 0x7f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3aec(%rsp) # imm = 0xFFFFFFFF
movl 0x3aec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ae8(%rsp)
cmpl $0x1, 0x3ae8(%rsp)
jne 0x12c45c0
movq 0x7f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c4591
movq 0x7f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c458f
jmp 0x12c45be
movq 0x7f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d68(%rsp)
cmpq $0x0, 0x3d68(%rsp)
je 0x12c45bc
movq 0x3d68(%rsp), %rdi
callq 0x5f480
jmp 0x12c45be
jmp 0x12c45c0
movq 0x7f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c461b
movq %rax, %rdi
callq 0x678a0
movq 0x7e8(%rsp), %rax
movq %rax, 0x1c50(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x1c58(%rsp), %eax
leaq 0x1bb8(%rsp), %rdx
movq %rdx, 0x1fb0(%rsp)
movq %rcx, 0x1fa8(%rsp)
movl %eax, 0x1fa4(%rsp)
movq 0x1fa8(%rsp), %rax
movq %rax, 0x7e0(%rsp)
movb $0x0, 0x1fa3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1fa4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1bb8(%rsp), %r10
movq %r10, 0x2f10(%rsp)
movl %r9d, 0x2f0c(%rsp)
movl %r8d, 0x2f08(%rsp)
movl %edi, 0x2f04(%rsp)
movq %rsi, 0x2ef8(%rsp)
movq %rdx, 0x2ef0(%rsp)
movl %ecx, 0x2eec(%rsp)
movq %rax, 0x2ee0(%rsp)
movq 0x2f10(%rsp), %rcx
movq %rcx, 0x7d8(%rsp)
movq 0x2ef8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2ef0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2eec(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ee0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2f0c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f08(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f04(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x35e0(%rsp)
movl $0x10, 0x35dc(%rsp)
movq 0x35e0(%rsp), %rax
movslq 0x35dc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x35dc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7e0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1be0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12c47e7
movq 0x7e0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1bf8(%rsp)
movb $0x1, 0x1fa3(%rsp)
testb $0x1, 0x1fa3(%rsp)
jne 0x12c4922
leaq 0x1bb8(%rsp), %rax
movq %rax, 0x20f8(%rsp)
movq 0x20f8(%rsp), %rax
movq %rax, 0x3c80(%rsp)
movq 0x3c80(%rsp), %rax
movq %rax, 0x7d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c48c5
movq 0x7d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c7c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c7c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c78(%rsp)
cmpl $0x1, 0x3c78(%rsp)
jne 0x12c48c5
movq 0x7d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c4896
movq 0x7d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c4894
jmp 0x12c48c3
movq 0x7d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ca0(%rsp)
cmpq $0x0, 0x3ca0(%rsp)
je 0x12c48c1
movq 0x3ca0(%rsp), %rdi
callq 0x5f480
jmp 0x12c48c3
jmp 0x12c48c5
movq 0x7d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c4920
movq %rax, %rdi
callq 0x678a0
jmp 0x12c4922
leaq 0x1bb8(%rsp), %rax
movq %rax, 0x20e0(%rsp)
movq 0x20e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7c0(%rsp)
leaq 0x1bb8(%rsp), %rax
movq %rax, 0x21c8(%rsp)
movq 0x21c8(%rsp), %rax
movq %rax, 0x3ae0(%rsp)
movq 0x3ae0(%rsp), %rax
movq %rax, 0x7c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c4a0d
movq 0x7c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3adc(%rsp) # imm = 0xFFFFFFFF
movl 0x3adc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ad8(%rsp)
cmpl $0x1, 0x3ad8(%rsp)
jne 0x12c4a0d
movq 0x7c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c49de
movq 0x7c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c49dc
jmp 0x12c4a0b
movq 0x7c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d70(%rsp)
cmpq $0x0, 0x3d70(%rsp)
je 0x12c4a09
movq 0x3d70(%rsp), %rdi
callq 0x5f480
jmp 0x12c4a0b
jmp 0x12c4a0d
movq 0x7c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c4a68
movq %rax, %rdi
callq 0x678a0
movq 0x7c0(%rsp), %rax
movq %rax, 0x1c00(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x1c58(%rsp), %eax
leaq 0x1b68(%rsp), %rdx
movq %rdx, 0x2550(%rsp)
movq %rcx, 0x2548(%rsp)
movl %eax, 0x2544(%rsp)
movq 0x2548(%rsp), %rax
movq %rax, 0x7b8(%rsp)
movb $0x0, 0x2543(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2544(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1b68(%rsp), %r10
movq %r10, 0x2ae8(%rsp)
movl %r9d, 0x2ae4(%rsp)
movl %r8d, 0x2ae0(%rsp)
movl %edi, 0x2adc(%rsp)
movq %rsi, 0x2ad0(%rsp)
movq %rdx, 0x2ac8(%rsp)
movl %ecx, 0x2ac4(%rsp)
movq %rax, 0x2ab8(%rsp)
movq 0x2ae8(%rsp), %rcx
movq %rcx, 0x7b0(%rsp)
movq 0x2ad0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2ac8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2ac4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ab8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2ae4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2ae0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2adc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3710(%rsp)
movl $0x10, 0x370c(%rsp)
movq 0x3710(%rsp), %rax
movslq 0x370c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x370c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7b8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1b90(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12c4c34
movq 0x7b8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1ba8(%rsp)
movb $0x1, 0x2543(%rsp)
testb $0x1, 0x2543(%rsp)
jne 0x12c4d6f
leaq 0x1b68(%rsp), %rax
movq %rax, 0x2558(%rsp)
movq 0x2558(%rsp), %rax
movq %rax, 0x3720(%rsp)
movq 0x3720(%rsp), %rax
movq %rax, 0x7a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c4d12
movq 0x7a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x371c(%rsp) # imm = 0xFFFFFFFF
movl 0x371c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3718(%rsp)
cmpl $0x1, 0x3718(%rsp)
jne 0x12c4d12
movq 0x7a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c4ce3
movq 0x7a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c4ce1
jmp 0x12c4d10
movq 0x7a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f50(%rsp)
cmpq $0x0, 0x3f50(%rsp)
je 0x12c4d0e
movq 0x3f50(%rsp), %rdi
callq 0x5f480
jmp 0x12c4d10
jmp 0x12c4d12
movq 0x7a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c4d6d
movq %rax, %rdi
callq 0x678a0
jmp 0x12c4d6f
leaq 0x1b68(%rsp), %rax
movq %rax, 0x25f8(%rsp)
movq 0x25f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x798(%rsp)
leaq 0x1b68(%rsp), %rax
movq %rax, 0x21d0(%rsp)
movq 0x21d0(%rsp), %rax
movq %rax, 0x3ad0(%rsp)
movq 0x3ad0(%rsp), %rax
movq %rax, 0x7a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c4e5a
movq 0x7a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3acc(%rsp) # imm = 0xFFFFFFFF
movl 0x3acc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ac8(%rsp)
cmpl $0x1, 0x3ac8(%rsp)
jne 0x12c4e5a
movq 0x7a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c4e2b
movq 0x7a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c4e29
jmp 0x12c4e58
movq 0x7a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d78(%rsp)
cmpq $0x0, 0x3d78(%rsp)
je 0x12c4e56
movq 0x3d78(%rsp), %rdi
callq 0x5f480
jmp 0x12c4e58
jmp 0x12c4e5a
movq 0x7a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c4eb5
movq %rax, %rdi
callq 0x678a0
movq 0x798(%rsp), %rax
movq %rax, 0x1bb0(%rsp)
movl $0x0, 0x1b64(%rsp)
movl 0x1b64(%rsp), %eax
cmpl 0x1c90(%rsp), %eax
jge 0x12c5040
movl $0x0, 0x1b60(%rsp)
movl 0x1b60(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jge 0x12c5028
movq 0x1c00(%rsp), %rax
movq %rax, 0x2728(%rsp)
movq 0x2728(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1b50(%rsp)
movl $0x0, 0x1b4c(%rsp)
movl 0x1b4c(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jge 0x12c4ffe
movq 0x1c50(%rsp), %rax
movq %rax, 0x2720(%rsp)
movq 0x2720(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1b30(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x1b30(%rsp), %rsi
leaq 0x1b50(%rsp), %rdx
callq 0x12f6cd0
movaps %xmm0, 0x1b20(%rsp)
movq 0x1bb0(%rsp), %rax
movaps 0x1b20(%rsp), %xmm0
movq %rax, 0x29a8(%rsp)
movaps %xmm0, 0x2990(%rsp)
movaps 0x2990(%rsp), %xmm0
movq 0x29a8(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1c50(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1c50(%rsp)
movq 0x1bb0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1bb0(%rsp)
movl 0x1b4c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b4c(%rsp)
jmp 0x12c4f31
movq 0x1c00(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1c00(%rsp)
movl 0x1b60(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b60(%rsp)
jmp 0x12c4eef
jmp 0x12c502a
movl 0x1b64(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b64(%rsp)
jmp 0x12c4ed0
jmp 0x12c5042
movl 0x1c58(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c58(%rsp)
jmp 0x12c41ca
movl $0x0, 0x1cc4(%rsp)
jmp 0x12d3150
movq 0x1cb0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x12c5b1f
movl $0x0, 0x1b1c(%rsp)
movl 0x1b1c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jge 0x12c5b0f
movq 0x1cb8(%rsp), %rcx
movl 0x1b1c(%rsp), %eax
leaq 0x1ac8(%rsp), %rdx
movq %rdx, 0x1f98(%rsp)
movq %rcx, 0x1f90(%rsp)
movl %eax, 0x1f8c(%rsp)
movq 0x1f90(%rsp), %rax
movq %rax, 0x790(%rsp)
movb $0x0, 0x1f8b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1f8c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1ac8(%rsp), %r10
movq %r10, 0x2f48(%rsp)
movl %r9d, 0x2f44(%rsp)
movl %r8d, 0x2f40(%rsp)
movl %edi, 0x2f3c(%rsp)
movq %rsi, 0x2f30(%rsp)
movq %rdx, 0x2f28(%rsp)
movl %ecx, 0x2f24(%rsp)
movq %rax, 0x2f18(%rsp)
movq 0x2f48(%rsp), %rcx
movq %rcx, 0x788(%rsp)
movq 0x2f30(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2f28(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2f24(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2f18(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2f44(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f40(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f3c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x35d0(%rsp)
movl $0x10, 0x35cc(%rsp)
movq 0x35d0(%rsp), %rax
movslq 0x35cc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x35cc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x790(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1af0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12c5255
movq 0x790(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1b08(%rsp)
movb $0x1, 0x1f8b(%rsp)
testb $0x1, 0x1f8b(%rsp)
jne 0x12c5390
leaq 0x1ac8(%rsp), %rax
movq %rax, 0x2100(%rsp)
movq 0x2100(%rsp), %rax
movq %rax, 0x3c70(%rsp)
movq 0x3c70(%rsp), %rax
movq %rax, 0x780(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c5333
movq 0x780(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c6c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c6c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c68(%rsp)
cmpl $0x1, 0x3c68(%rsp)
jne 0x12c5333
movq 0x780(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c5304
movq 0x780(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c5302
jmp 0x12c5331
movq 0x780(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ca8(%rsp)
cmpq $0x0, 0x3ca8(%rsp)
je 0x12c532f
movq 0x3ca8(%rsp), %rdi
callq 0x5f480
jmp 0x12c5331
jmp 0x12c5333
movq 0x780(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c538e
movq %rax, %rdi
callq 0x678a0
jmp 0x12c5390
leaq 0x1ac8(%rsp), %rax
movq %rax, 0x20d8(%rsp)
movq 0x20d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x770(%rsp)
leaq 0x1ac8(%rsp), %rax
movq %rax, 0x21d8(%rsp)
movq 0x21d8(%rsp), %rax
movq %rax, 0x3ac0(%rsp)
movq 0x3ac0(%rsp), %rax
movq %rax, 0x778(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c547b
movq 0x778(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3abc(%rsp) # imm = 0xFFFFFFFF
movl 0x3abc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ab8(%rsp)
cmpl $0x1, 0x3ab8(%rsp)
jne 0x12c547b
movq 0x778(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c544c
movq 0x778(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c544a
jmp 0x12c5479
movq 0x778(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d80(%rsp)
cmpq $0x0, 0x3d80(%rsp)
je 0x12c5477
movq 0x3d80(%rsp), %rdi
callq 0x5f480
jmp 0x12c5479
jmp 0x12c547b
movq 0x778(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c54d6
movq %rax, %rdi
callq 0x678a0
movq 0x770(%rsp), %rax
movq %rax, 0x1b10(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x1b1c(%rsp), %eax
movq %rcx, 0x29c8(%rsp)
movl %eax, 0x29c4(%rsp)
movq 0x29c8(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x29c4(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x1ac0(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x1b1c(%rsp), %eax
leaq 0x1a70(%rsp), %rdx
movq %rdx, 0x2530(%rsp)
movq %rcx, 0x2528(%rsp)
movl %eax, 0x2524(%rsp)
movq 0x2528(%rsp), %rax
movq %rax, 0x768(%rsp)
movb $0x0, 0x2523(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2524(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1a70(%rsp), %r10
movq %r10, 0x2b20(%rsp)
movl %r9d, 0x2b1c(%rsp)
movl %r8d, 0x2b18(%rsp)
movl %edi, 0x2b14(%rsp)
movq %rsi, 0x2b08(%rsp)
movq %rdx, 0x2b00(%rsp)
movl %ecx, 0x2afc(%rsp)
movq %rax, 0x2af0(%rsp)
movq 0x2b20(%rsp), %rcx
movq %rcx, 0x760(%rsp)
movq 0x2b08(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2b00(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2afc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2af0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2b1c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2b18(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2b14(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3700(%rsp)
movl $0x10, 0x36fc(%rsp)
movq 0x3700(%rsp), %rax
movslq 0x36fc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x36fc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x768(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1a98(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12c56eb
movq 0x768(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1ab0(%rsp)
movb $0x1, 0x2523(%rsp)
testb $0x1, 0x2523(%rsp)
jne 0x12c5826
leaq 0x1a70(%rsp), %rax
movq %rax, 0x2538(%rsp)
movq 0x2538(%rsp), %rax
movq %rax, 0x3730(%rsp)
movq 0x3730(%rsp), %rax
movq %rax, 0x758(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c57c9
movq 0x758(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x372c(%rsp) # imm = 0xFFFFFFFF
movl 0x372c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3728(%rsp)
cmpl $0x1, 0x3728(%rsp)
jne 0x12c57c9
movq 0x758(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c579a
movq 0x758(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c5798
jmp 0x12c57c7
movq 0x758(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f48(%rsp)
cmpq $0x0, 0x3f48(%rsp)
je 0x12c57c5
movq 0x3f48(%rsp), %rdi
callq 0x5f480
jmp 0x12c57c7
jmp 0x12c57c9
movq 0x758(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c5824
movq %rax, %rdi
callq 0x678a0
jmp 0x12c5826
leaq 0x1a70(%rsp), %rax
movq %rax, 0x25f0(%rsp)
movq 0x25f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x748(%rsp)
leaq 0x1a70(%rsp), %rax
movq %rax, 0x21e0(%rsp)
movq 0x21e0(%rsp), %rax
movq %rax, 0x3ab0(%rsp)
movq 0x3ab0(%rsp), %rax
movq %rax, 0x750(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c5911
movq 0x750(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3aac(%rsp) # imm = 0xFFFFFFFF
movl 0x3aac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3aa8(%rsp)
cmpl $0x1, 0x3aa8(%rsp)
jne 0x12c5911
movq 0x750(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c58e2
movq 0x750(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c58e0
jmp 0x12c590f
movq 0x750(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d88(%rsp)
cmpq $0x0, 0x3d88(%rsp)
je 0x12c590d
movq 0x3d88(%rsp), %rdi
callq 0x5f480
jmp 0x12c590f
jmp 0x12c5911
movq 0x750(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c596c
movq %rax, %rdi
callq 0x678a0
movq 0x748(%rsp), %rax
movq %rax, 0x1ab8(%rsp)
movl $0x0, 0x1a6c(%rsp)
movl 0x1a6c(%rsp), %eax
cmpl 0x1c90(%rsp), %eax
jge 0x12c5af7
movq 0x1ac0(%rsp), %rax
movq %rax, 0x2718(%rsp)
movq 0x2718(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1a50(%rsp)
movl $0x0, 0x1a4c(%rsp)
movl 0x1a4c(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jge 0x12c5acd
movl $0x0, 0x1a48(%rsp)
movl 0x1a48(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jge 0x12c5ab5
movq 0x1b10(%rsp), %rax
movq %rax, 0x2710(%rsp)
movq 0x2710(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1a30(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x1a30(%rsp), %rsi
leaq 0x1a50(%rsp), %rdx
callq 0x12f6cd0
movaps %xmm0, 0x1a20(%rsp)
movq 0x1ab8(%rsp), %rax
movaps 0x1a20(%rsp), %xmm0
movq %rax, 0x2988(%rsp)
movaps %xmm0, 0x2970(%rsp)
movaps 0x2970(%rsp), %xmm0
movq 0x2988(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1b10(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1b10(%rsp)
movq 0x1ab8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1ab8(%rsp)
movl 0x1a48(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1a48(%rsp)
jmp 0x12c59e8
jmp 0x12c5ab7
movl 0x1a4c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1a4c(%rsp)
jmp 0x12c59c9
movq 0x1ac0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1ac0(%rsp)
movl 0x1a6c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1a6c(%rsp)
jmp 0x12c5987
jmp 0x12c5af9
movl 0x1b1c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b1c(%rsp)
jmp 0x12c5085
movl $0x0, 0x1cc4(%rsp)
jmp 0x12d3150
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x12c657d
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x12c5b7a
cmpl $0x1, 0x1c5c(%rsp)
jne 0x12c5b7a
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12f2d60
movl %eax, 0x1cc4(%rsp)
jmp 0x12d3150
movl $0x0, 0x1a1c(%rsp)
movl 0x1a1c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jge 0x12c656d
movq 0x1cb8(%rsp), %rcx
movl 0x1a1c(%rsp), %eax
leaq 0x19c8(%rsp), %rdx
movq %rdx, 0x1f80(%rsp)
movq %rcx, 0x1f78(%rsp)
movl %eax, 0x1f74(%rsp)
movq 0x1f78(%rsp), %rax
movq %rax, 0x740(%rsp)
movb $0x0, 0x1f73(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1f74(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x19c8(%rsp), %r10
movq %r10, 0x2f80(%rsp)
movl %r9d, 0x2f7c(%rsp)
movl %r8d, 0x2f78(%rsp)
movl %edi, 0x2f74(%rsp)
movq %rsi, 0x2f68(%rsp)
movq %rdx, 0x2f60(%rsp)
movl %ecx, 0x2f5c(%rsp)
movq %rax, 0x2f50(%rsp)
movq 0x2f80(%rsp), %rcx
movq %rcx, 0x738(%rsp)
movq 0x2f68(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2f60(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2f5c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2f50(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2f7c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f78(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f74(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x35c0(%rsp)
movl $0x10, 0x35bc(%rsp)
movq 0x35c0(%rsp), %rax
movslq 0x35bc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x35bc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x740(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x19f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12c5d55
movq 0x740(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1a08(%rsp)
movb $0x1, 0x1f73(%rsp)
testb $0x1, 0x1f73(%rsp)
jne 0x12c5e90
leaq 0x19c8(%rsp), %rax
movq %rax, 0x2108(%rsp)
movq 0x2108(%rsp), %rax
movq %rax, 0x3c60(%rsp)
movq 0x3c60(%rsp), %rax
movq %rax, 0x730(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c5e33
movq 0x730(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c5c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c5c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c58(%rsp)
cmpl $0x1, 0x3c58(%rsp)
jne 0x12c5e33
movq 0x730(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c5e04
movq 0x730(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c5e02
jmp 0x12c5e31
movq 0x730(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cb0(%rsp)
cmpq $0x0, 0x3cb0(%rsp)
je 0x12c5e2f
movq 0x3cb0(%rsp), %rdi
callq 0x5f480
jmp 0x12c5e31
jmp 0x12c5e33
movq 0x730(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c5e8e
movq %rax, %rdi
callq 0x678a0
jmp 0x12c5e90
leaq 0x19c8(%rsp), %rax
movq %rax, 0x20d0(%rsp)
movq 0x20d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x720(%rsp)
leaq 0x19c8(%rsp), %rax
movq %rax, 0x21e8(%rsp)
movq 0x21e8(%rsp), %rax
movq %rax, 0x3aa0(%rsp)
movq 0x3aa0(%rsp), %rax
movq %rax, 0x728(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c5f7b
movq 0x728(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a9c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a9c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a98(%rsp)
cmpl $0x1, 0x3a98(%rsp)
jne 0x12c5f7b
movq 0x728(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c5f4c
movq 0x728(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c5f4a
jmp 0x12c5f79
movq 0x728(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d90(%rsp)
cmpq $0x0, 0x3d90(%rsp)
je 0x12c5f77
movq 0x3d90(%rsp), %rdi
callq 0x5f480
jmp 0x12c5f79
jmp 0x12c5f7b
movq 0x728(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c5fd6
movq %rax, %rdi
callq 0x678a0
movq 0x720(%rsp), %rax
movq %rax, 0x1a10(%rsp)
movq 0x1cb0(%rsp), %rax
movq %rax, 0x20c8(%rsp)
movq 0x20c8(%rsp), %rax
movq (%rax), %rax
movl 0x1a1c(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2708(%rsp)
movq 0x2708(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x19b0(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x1a1c(%rsp), %eax
leaq 0x1960(%rsp), %rdx
movq %rdx, 0x2510(%rsp)
movq %rcx, 0x2508(%rsp)
movl %eax, 0x2504(%rsp)
movq 0x2508(%rsp), %rax
movq %rax, 0x718(%rsp)
movb $0x0, 0x2503(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2504(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1960(%rsp), %r10
movq %r10, 0x2b58(%rsp)
movl %r9d, 0x2b54(%rsp)
movl %r8d, 0x2b50(%rsp)
movl %edi, 0x2b4c(%rsp)
movq %rsi, 0x2b40(%rsp)
movq %rdx, 0x2b38(%rsp)
movl %ecx, 0x2b34(%rsp)
movq %rax, 0x2b28(%rsp)
movq 0x2b58(%rsp), %rcx
movq %rcx, 0x710(%rsp)
movq 0x2b40(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2b38(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2b34(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2b28(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2b54(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2b50(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2b4c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x36f0(%rsp)
movl $0x10, 0x36ec(%rsp)
movq 0x36f0(%rsp), %rax
movslq 0x36ec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x36ec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x718(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1988(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12c61ec
movq 0x718(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x19a0(%rsp)
movb $0x1, 0x2503(%rsp)
testb $0x1, 0x2503(%rsp)
jne 0x12c6327
leaq 0x1960(%rsp), %rax
movq %rax, 0x2518(%rsp)
movq 0x2518(%rsp), %rax
movq %rax, 0x3740(%rsp)
movq 0x3740(%rsp), %rax
movq %rax, 0x708(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c62ca
movq 0x708(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x373c(%rsp) # imm = 0xFFFFFFFF
movl 0x373c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3738(%rsp)
cmpl $0x1, 0x3738(%rsp)
jne 0x12c62ca
movq 0x708(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c629b
movq 0x708(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c6299
jmp 0x12c62c8
movq 0x708(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f40(%rsp)
cmpq $0x0, 0x3f40(%rsp)
je 0x12c62c6
movq 0x3f40(%rsp), %rdi
callq 0x5f480
jmp 0x12c62c8
jmp 0x12c62ca
movq 0x708(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c6325
movq %rax, %rdi
callq 0x678a0
jmp 0x12c6327
leaq 0x1960(%rsp), %rax
movq %rax, 0x25e8(%rsp)
movq 0x25e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6f8(%rsp)
leaq 0x1960(%rsp), %rax
movq %rax, 0x21f0(%rsp)
movq 0x21f0(%rsp), %rax
movq %rax, 0x3a90(%rsp)
movq 0x3a90(%rsp), %rax
movq %rax, 0x700(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c6412
movq 0x700(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a8c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a8c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a88(%rsp)
cmpl $0x1, 0x3a88(%rsp)
jne 0x12c6412
movq 0x700(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c63e3
movq 0x700(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c63e1
jmp 0x12c6410
movq 0x700(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d98(%rsp)
cmpq $0x0, 0x3d98(%rsp)
je 0x12c640e
movq 0x3d98(%rsp), %rdi
callq 0x5f480
jmp 0x12c6410
jmp 0x12c6412
movq 0x700(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c646d
movq %rax, %rdi
callq 0x678a0
movq 0x6f8(%rsp), %rax
movq %rax, 0x19a8(%rsp)
movl $0x0, 0x195c(%rsp)
movl 0x195c(%rsp), %eax
cmpl 0x1c88(%rsp), %eax
jge 0x12c6555
movq 0x1a10(%rsp), %rax
movq %rax, 0x2700(%rsp)
movq 0x2700(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1940(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x1940(%rsp), %rsi
leaq 0x19b0(%rsp), %rdx
callq 0x12f6cd0
movaps %xmm0, 0x1930(%rsp)
movq 0x19a8(%rsp), %rax
movaps 0x1930(%rsp), %xmm0
movq %rax, 0x2968(%rsp)
movaps %xmm0, 0x2950(%rsp)
movaps 0x2950(%rsp), %xmm0
movq 0x2968(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1a10(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1a10(%rsp)
movq 0x19a8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x19a8(%rsp)
movl 0x195c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x195c(%rsp)
jmp 0x12c6488
jmp 0x12c6557
movl 0x1a1c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1a1c(%rsp)
jmp 0x12c5b85
movl $0x0, 0x1cc4(%rsp)
jmp 0x12d3150
jmp 0x12d3145
movq 0x1cb8(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x12cfd6e
movq 0x1cb0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x12c751c
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c70(%rsp), %ecx
movl 0x1c6c(%rsp), %r8d
movq 0x1c60(%rsp), %r9
movl 0x1c5c(%rsp), %r10d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d50(%rsp)
movq 0x1d50(%rsp), %rcx
movq %rcx, 0x6e8(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x6f7(%rsp)
je 0x12c6656
movq 0x6e8(%rsp), %rax
movq %rax, 0x2a28(%rsp)
movq 0x2a28(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x6f7(%rsp)
movb 0x6f7(%rsp), %al
testb $0x1, %al
jne 0x12c6663
jmp 0x12c6673
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12d3150
movl $0x0, 0x192c(%rsp)
movl 0x192c(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12c750c
movq 0x1cb8(%rsp), %rcx
movl 0x192c(%rsp), %eax
leaq 0x18d8(%rsp), %rdx
movq %rdx, 0x1f68(%rsp)
movq %rcx, 0x1f60(%rsp)
movl %eax, 0x1f5c(%rsp)
movq 0x1f60(%rsp), %rax
movq %rax, 0x6e0(%rsp)
movb $0x0, 0x1f5b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1f5c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x18d8(%rsp), %r10
movq %r10, 0x2fb8(%rsp)
movl %r9d, 0x2fb4(%rsp)
movl %r8d, 0x2fb0(%rsp)
movl %edi, 0x2fac(%rsp)
movq %rsi, 0x2fa0(%rsp)
movq %rdx, 0x2f98(%rsp)
movl %ecx, 0x2f94(%rsp)
movq %rax, 0x2f88(%rsp)
movq 0x2fb8(%rsp), %rcx
movq %rcx, 0x6d8(%rsp)
movq 0x2fa0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2f98(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2f94(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2f88(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2fb4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2fb0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2fac(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x35b0(%rsp)
movl $0x10, 0x35ac(%rsp)
movq 0x35b0(%rsp), %rax
movslq 0x35ac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x35ac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6e0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1900(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12c684e
movq 0x6e0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1918(%rsp)
movb $0x1, 0x1f5b(%rsp)
testb $0x1, 0x1f5b(%rsp)
jne 0x12c6989
leaq 0x18d8(%rsp), %rax
movq %rax, 0x2110(%rsp)
movq 0x2110(%rsp), %rax
movq %rax, 0x3c50(%rsp)
movq 0x3c50(%rsp), %rax
movq %rax, 0x6d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c692c
movq 0x6d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c4c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c4c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c48(%rsp)
cmpl $0x1, 0x3c48(%rsp)
jne 0x12c692c
movq 0x6d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c68fd
movq 0x6d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c68fb
jmp 0x12c692a
movq 0x6d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cb8(%rsp)
cmpq $0x0, 0x3cb8(%rsp)
je 0x12c6928
movq 0x3cb8(%rsp), %rdi
callq 0x5f480
jmp 0x12c692a
jmp 0x12c692c
movq 0x6d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c6987
movq %rax, %rdi
callq 0x678a0
jmp 0x12c6989
leaq 0x18d8(%rsp), %rax
movq %rax, 0x20c0(%rsp)
movq 0x20c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6c0(%rsp)
leaq 0x18d8(%rsp), %rax
movq %rax, 0x21f8(%rsp)
movq 0x21f8(%rsp), %rax
movq %rax, 0x3a80(%rsp)
movq 0x3a80(%rsp), %rax
movq %rax, 0x6c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c6a74
movq 0x6c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a7c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a7c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a78(%rsp)
cmpl $0x1, 0x3a78(%rsp)
jne 0x12c6a74
movq 0x6c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c6a45
movq 0x6c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c6a43
jmp 0x12c6a72
movq 0x6c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3da0(%rsp)
cmpq $0x0, 0x3da0(%rsp)
je 0x12c6a70
movq 0x3da0(%rsp), %rdi
callq 0x5f480
jmp 0x12c6a72
jmp 0x12c6a74
movq 0x6c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c6acf
movq %rax, %rdi
callq 0x678a0
movq 0x6c0(%rsp), %rax
movq %rax, 0x1920(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x192c(%rsp), %eax
leaq 0x1888(%rsp), %rdx
movq %rdx, 0x1f50(%rsp)
movq %rcx, 0x1f48(%rsp)
movl %eax, 0x1f44(%rsp)
movq 0x1f48(%rsp), %rax
movq %rax, 0x6b8(%rsp)
movb $0x0, 0x1f43(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1f44(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1888(%rsp), %r10
movq %r10, 0x2ff0(%rsp)
movl %r9d, 0x2fec(%rsp)
movl %r8d, 0x2fe8(%rsp)
movl %edi, 0x2fe4(%rsp)
movq %rsi, 0x2fd8(%rsp)
movq %rdx, 0x2fd0(%rsp)
movl %ecx, 0x2fcc(%rsp)
movq %rax, 0x2fc0(%rsp)
movq 0x2ff0(%rsp), %rcx
movq %rcx, 0x6b0(%rsp)
movq 0x2fd8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2fd0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2fcc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2fc0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2fec(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2fe8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2fe4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x35a0(%rsp)
movl $0x10, 0x359c(%rsp)
movq 0x35a0(%rsp), %rax
movslq 0x359c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x359c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6b8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x18b0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12c6c9b
movq 0x6b8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x18c8(%rsp)
movb $0x1, 0x1f43(%rsp)
testb $0x1, 0x1f43(%rsp)
jne 0x12c6dd6
leaq 0x1888(%rsp), %rax
movq %rax, 0x2118(%rsp)
movq 0x2118(%rsp), %rax
movq %rax, 0x3c40(%rsp)
movq 0x3c40(%rsp), %rax
movq %rax, 0x6a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c6d79
movq 0x6a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c3c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c3c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c38(%rsp)
cmpl $0x1, 0x3c38(%rsp)
jne 0x12c6d79
movq 0x6a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c6d4a
movq 0x6a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c6d48
jmp 0x12c6d77
movq 0x6a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cc0(%rsp)
cmpq $0x0, 0x3cc0(%rsp)
je 0x12c6d75
movq 0x3cc0(%rsp), %rdi
callq 0x5f480
jmp 0x12c6d77
jmp 0x12c6d79
movq 0x6a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c6dd4
movq %rax, %rdi
callq 0x678a0
jmp 0x12c6dd6
leaq 0x1888(%rsp), %rax
movq %rax, 0x20b8(%rsp)
movq 0x20b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x698(%rsp)
leaq 0x1888(%rsp), %rax
movq %rax, 0x2200(%rsp)
movq 0x2200(%rsp), %rax
movq %rax, 0x3a70(%rsp)
movq 0x3a70(%rsp), %rax
movq %rax, 0x6a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c6ec1
movq 0x6a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a6c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a6c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a68(%rsp)
cmpl $0x1, 0x3a68(%rsp)
jne 0x12c6ec1
movq 0x6a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c6e92
movq 0x6a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c6e90
jmp 0x12c6ebf
movq 0x6a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3da8(%rsp)
cmpq $0x0, 0x3da8(%rsp)
je 0x12c6ebd
movq 0x3da8(%rsp), %rdi
callq 0x5f480
jmp 0x12c6ebf
jmp 0x12c6ec1
movq 0x6a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c6f1c
movq %rax, %rdi
callq 0x678a0
movq 0x698(%rsp), %rax
movq %rax, 0x18d0(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x192c(%rsp), %eax
leaq 0x1838(%rsp), %rdx
movq %rdx, 0x24f0(%rsp)
movq %rcx, 0x24e8(%rsp)
movl %eax, 0x24e4(%rsp)
movq 0x24e8(%rsp), %rax
movq %rax, 0x690(%rsp)
movb $0x0, 0x24e3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x24e4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1838(%rsp), %r10
movq %r10, 0x2b90(%rsp)
movl %r9d, 0x2b8c(%rsp)
movl %r8d, 0x2b88(%rsp)
movl %edi, 0x2b84(%rsp)
movq %rsi, 0x2b78(%rsp)
movq %rdx, 0x2b70(%rsp)
movl %ecx, 0x2b6c(%rsp)
movq %rax, 0x2b60(%rsp)
movq 0x2b90(%rsp), %rcx
movq %rcx, 0x688(%rsp)
movq 0x2b78(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2b70(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2b6c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2b60(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2b8c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2b88(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2b84(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x36e0(%rsp)
movl $0x10, 0x36dc(%rsp)
movq 0x36e0(%rsp), %rax
movslq 0x36dc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x36dc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x690(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1860(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12c70e8
movq 0x690(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1878(%rsp)
movb $0x1, 0x24e3(%rsp)
testb $0x1, 0x24e3(%rsp)
jne 0x12c7223
leaq 0x1838(%rsp), %rax
movq %rax, 0x24f8(%rsp)
movq 0x24f8(%rsp), %rax
movq %rax, 0x3750(%rsp)
movq 0x3750(%rsp), %rax
movq %rax, 0x680(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c71c6
movq 0x680(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x374c(%rsp) # imm = 0xFFFFFFFF
movl 0x374c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3748(%rsp)
cmpl $0x1, 0x3748(%rsp)
jne 0x12c71c6
movq 0x680(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c7197
movq 0x680(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c7195
jmp 0x12c71c4
movq 0x680(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f38(%rsp)
cmpq $0x0, 0x3f38(%rsp)
je 0x12c71c2
movq 0x3f38(%rsp), %rdi
callq 0x5f480
jmp 0x12c71c4
jmp 0x12c71c6
movq 0x680(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c7221
movq %rax, %rdi
callq 0x678a0
jmp 0x12c7223
leaq 0x1838(%rsp), %rax
movq %rax, 0x25e0(%rsp)
movq 0x25e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x670(%rsp)
leaq 0x1838(%rsp), %rax
movq %rax, 0x2208(%rsp)
movq 0x2208(%rsp), %rax
movq %rax, 0x3a60(%rsp)
movq 0x3a60(%rsp), %rax
movq %rax, 0x678(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c730e
movq 0x678(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a5c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a5c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a58(%rsp)
cmpl $0x1, 0x3a58(%rsp)
jne 0x12c730e
movq 0x678(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c72df
movq 0x678(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c72dd
jmp 0x12c730c
movq 0x678(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3db0(%rsp)
cmpq $0x0, 0x3db0(%rsp)
je 0x12c730a
movq 0x3db0(%rsp), %rdi
callq 0x5f480
jmp 0x12c730c
jmp 0x12c730e
movq 0x678(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c7369
movq %rax, %rdi
callq 0x678a0
movq 0x670(%rsp), %rax
movq %rax, 0x1880(%rsp)
movl $0x0, 0x1834(%rsp)
movl 0x1834(%rsp), %eax
cmpl 0x1c70(%rsp), %eax
jge 0x12c74f4
movl $0x0, 0x1830(%rsp)
movl 0x1830(%rsp), %eax
cmpl 0x1c74(%rsp), %eax
jge 0x12c74dc
movq 0x1920(%rsp), %rax
movq %rax, 0x26f8(%rsp)
movq 0x26f8(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1820(%rsp)
movl $0x0, 0x181c(%rsp)
movl 0x181c(%rsp), %eax
cmpl 0x1c78(%rsp), %eax
jge 0x12c74b2
movq 0x18d0(%rsp), %rax
movq %rax, 0x26f0(%rsp)
movq 0x26f0(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1800(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x1820(%rsp), %rsi
leaq 0x1800(%rsp), %rdx
callq 0x12f6cd0
movaps %xmm0, 0x17f0(%rsp)
movq 0x1880(%rsp), %rax
movaps 0x17f0(%rsp), %xmm0
movq %rax, 0x2948(%rsp)
movaps %xmm0, 0x2930(%rsp)
movaps 0x2930(%rsp), %xmm0
movq 0x2948(%rsp), %rax
movups %xmm0, (%rax)
movq 0x18d0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x18d0(%rsp)
movq 0x1880(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1880(%rsp)
movl 0x181c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x181c(%rsp)
jmp 0x12c73e5
movq 0x1920(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1920(%rsp)
movl 0x1830(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1830(%rsp)
jmp 0x12c73a3
jmp 0x12c74de
movl 0x1834(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1834(%rsp)
jmp 0x12c7384
jmp 0x12c74f6
movl 0x192c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x192c(%rsp)
jmp 0x12c667e
movl $0x0, 0x1cc4(%rsp)
jmp 0x12d3150
movq 0x1cb0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x12ce7cb
cmpl $0x1, 0x1c78(%rsp)
jne 0x12c8447
cmpl $0x1, 0x1c74(%rsp)
jne 0x12c8447
movl 0x1c6c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jne 0x12c8447
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movl 0x1c8c(%rsp), %ecx
movq 0x1c80(%rsp), %r8
movl 0x1c7c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d48(%rsp)
movq 0x1d48(%rsp), %rcx
movq %rcx, 0x660(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x66f(%rsp)
je 0x12c7601
movq 0x660(%rsp), %rax
movq %rax, 0x2a30(%rsp)
movq 0x2a30(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x66f(%rsp)
movb 0x66f(%rsp), %al
testb $0x1, %al
jne 0x12c760e
jmp 0x12c761e
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12d3150
movl $0x0, 0x17ec(%rsp)
movl 0x17ec(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jge 0x12c8437
movq 0x1cb8(%rsp), %rcx
movl 0x17ec(%rsp), %eax
leaq 0x1798(%rsp), %rdx
movq %rdx, 0x1f38(%rsp)
movq %rcx, 0x1f30(%rsp)
movl %eax, 0x1f2c(%rsp)
movq 0x1f30(%rsp), %rax
movq %rax, 0x658(%rsp)
movb $0x0, 0x1f2b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1f2c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1798(%rsp), %r10
movq %r10, 0x3028(%rsp)
movl %r9d, 0x3024(%rsp)
movl %r8d, 0x3020(%rsp)
movl %edi, 0x301c(%rsp)
movq %rsi, 0x3010(%rsp)
movq %rdx, 0x3008(%rsp)
movl %ecx, 0x3004(%rsp)
movq %rax, 0x2ff8(%rsp)
movq 0x3028(%rsp), %rcx
movq %rcx, 0x650(%rsp)
movq 0x3010(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3008(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3004(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ff8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3024(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3020(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x301c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3590(%rsp)
movl $0x10, 0x358c(%rsp)
movq 0x3590(%rsp), %rax
movslq 0x358c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x358c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x658(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x17c0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12c77f9
movq 0x658(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x17d8(%rsp)
movb $0x1, 0x1f2b(%rsp)
testb $0x1, 0x1f2b(%rsp)
jne 0x12c7934
leaq 0x1798(%rsp), %rax
movq %rax, 0x2120(%rsp)
movq 0x2120(%rsp), %rax
movq %rax, 0x3c30(%rsp)
movq 0x3c30(%rsp), %rax
movq %rax, 0x648(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c78d7
movq 0x648(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c2c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c2c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c28(%rsp)
cmpl $0x1, 0x3c28(%rsp)
jne 0x12c78d7
movq 0x648(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c78a8
movq 0x648(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c78a6
jmp 0x12c78d5
movq 0x648(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cc8(%rsp)
cmpq $0x0, 0x3cc8(%rsp)
je 0x12c78d3
movq 0x3cc8(%rsp), %rdi
callq 0x5f480
jmp 0x12c78d5
jmp 0x12c78d7
movq 0x648(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c7932
movq %rax, %rdi
callq 0x678a0
jmp 0x12c7934
leaq 0x1798(%rsp), %rax
movq %rax, 0x20b0(%rsp)
movq 0x20b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x638(%rsp)
leaq 0x1798(%rsp), %rax
movq %rax, 0x2210(%rsp)
movq 0x2210(%rsp), %rax
movq %rax, 0x3a50(%rsp)
movq 0x3a50(%rsp), %rax
movq %rax, 0x640(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c7a1f
movq 0x640(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a4c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a4c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a48(%rsp)
cmpl $0x1, 0x3a48(%rsp)
jne 0x12c7a1f
movq 0x640(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c79f0
movq 0x640(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c79ee
jmp 0x12c7a1d
movq 0x640(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3db8(%rsp)
cmpq $0x0, 0x3db8(%rsp)
je 0x12c7a1b
movq 0x3db8(%rsp), %rdi
callq 0x5f480
jmp 0x12c7a1d
jmp 0x12c7a1f
movq 0x640(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c7a7a
movq %rax, %rdi
callq 0x678a0
movq 0x638(%rsp), %rax
movq %rax, 0x17e0(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x17ec(%rsp), %eax
leaq 0x1748(%rsp), %rdx
movq %rdx, 0x24d0(%rsp)
movq %rcx, 0x24c8(%rsp)
movl %eax, 0x24c4(%rsp)
movq 0x24c8(%rsp), %rax
movq %rax, 0x630(%rsp)
movb $0x0, 0x24c3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x24c4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1748(%rsp), %r10
movq %r10, 0x2bc8(%rsp)
movl %r9d, 0x2bc4(%rsp)
movl %r8d, 0x2bc0(%rsp)
movl %edi, 0x2bbc(%rsp)
movq %rsi, 0x2bb0(%rsp)
movq %rdx, 0x2ba8(%rsp)
movl %ecx, 0x2ba4(%rsp)
movq %rax, 0x2b98(%rsp)
movq 0x2bc8(%rsp), %rcx
movq %rcx, 0x628(%rsp)
movq 0x2bb0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2ba8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2ba4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2b98(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2bc4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2bc0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2bbc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x36d0(%rsp)
movl $0x10, 0x36cc(%rsp)
movq 0x36d0(%rsp), %rax
movslq 0x36cc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x36cc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x630(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1770(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12c7c46
movq 0x630(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1788(%rsp)
movb $0x1, 0x24c3(%rsp)
testb $0x1, 0x24c3(%rsp)
jne 0x12c7d81
leaq 0x1748(%rsp), %rax
movq %rax, 0x24d8(%rsp)
movq 0x24d8(%rsp), %rax
movq %rax, 0x3760(%rsp)
movq 0x3760(%rsp), %rax
movq %rax, 0x620(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c7d24
movq 0x620(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x375c(%rsp) # imm = 0xFFFFFFFF
movl 0x375c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3758(%rsp)
cmpl $0x1, 0x3758(%rsp)
jne 0x12c7d24
movq 0x620(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c7cf5
movq 0x620(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c7cf3
jmp 0x12c7d22
movq 0x620(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f30(%rsp)
cmpq $0x0, 0x3f30(%rsp)
je 0x12c7d20
movq 0x3f30(%rsp), %rdi
callq 0x5f480
jmp 0x12c7d22
jmp 0x12c7d24
movq 0x620(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c7d7f
movq %rax, %rdi
callq 0x678a0
jmp 0x12c7d81
leaq 0x1748(%rsp), %rax
movq %rax, 0x25d8(%rsp)
movq 0x25d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x610(%rsp)
leaq 0x1748(%rsp), %rax
movq %rax, 0x2218(%rsp)
movq 0x2218(%rsp), %rax
movq %rax, 0x3a40(%rsp)
movq 0x3a40(%rsp), %rax
movq %rax, 0x618(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c7e6c
movq 0x618(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a3c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a3c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a38(%rsp)
cmpl $0x1, 0x3a38(%rsp)
jne 0x12c7e6c
movq 0x618(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c7e3d
movq 0x618(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c7e3b
jmp 0x12c7e6a
movq 0x618(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3dc0(%rsp)
cmpq $0x0, 0x3dc0(%rsp)
je 0x12c7e68
movq 0x3dc0(%rsp), %rdi
callq 0x5f480
jmp 0x12c7e6a
jmp 0x12c7e6c
movq 0x618(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c7ec7
movq %rax, %rdi
callq 0x678a0
movq 0x610(%rsp), %rax
movq %rax, 0x1790(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x17ec(%rsp), %eax
leaq 0x16f8(%rsp), %rdx
movq %rdx, 0x1f20(%rsp)
movq %rcx, 0x1f18(%rsp)
movl %eax, 0x1f14(%rsp)
movq 0x1f18(%rsp), %rax
movq %rax, 0x608(%rsp)
movb $0x0, 0x1f13(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1f14(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x16f8(%rsp), %r10
movq %r10, 0x3060(%rsp)
movl %r9d, 0x305c(%rsp)
movl %r8d, 0x3058(%rsp)
movl %edi, 0x3054(%rsp)
movq %rsi, 0x3048(%rsp)
movq %rdx, 0x3040(%rsp)
movl %ecx, 0x303c(%rsp)
movq %rax, 0x3030(%rsp)
movq 0x3060(%rsp), %rcx
movq %rcx, 0x600(%rsp)
movq 0x3048(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3040(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x303c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3030(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x305c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3058(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3054(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3580(%rsp)
movl $0x10, 0x357c(%rsp)
movq 0x3580(%rsp), %rax
movslq 0x357c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x357c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x608(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1720(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12c8093
movq 0x608(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1738(%rsp)
movb $0x1, 0x1f13(%rsp)
testb $0x1, 0x1f13(%rsp)
jne 0x12c81ce
leaq 0x16f8(%rsp), %rax
movq %rax, 0x2128(%rsp)
movq 0x2128(%rsp), %rax
movq %rax, 0x3c20(%rsp)
movq 0x3c20(%rsp), %rax
movq %rax, 0x5f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c8171
movq 0x5f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c1c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c1c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c18(%rsp)
cmpl $0x1, 0x3c18(%rsp)
jne 0x12c8171
movq 0x5f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c8142
movq 0x5f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c8140
jmp 0x12c816f
movq 0x5f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cd0(%rsp)
cmpq $0x0, 0x3cd0(%rsp)
je 0x12c816d
movq 0x3cd0(%rsp), %rdi
callq 0x5f480
jmp 0x12c816f
jmp 0x12c8171
movq 0x5f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c81cc
movq %rax, %rdi
callq 0x678a0
jmp 0x12c81ce
leaq 0x16f8(%rsp), %rax
movq %rax, 0x20a8(%rsp)
movq 0x20a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5e8(%rsp)
leaq 0x16f8(%rsp), %rax
movq %rax, 0x2220(%rsp)
movq 0x2220(%rsp), %rax
movq %rax, 0x3a30(%rsp)
movq 0x3a30(%rsp), %rax
movq %rax, 0x5f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c82b9
movq 0x5f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a2c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a2c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a28(%rsp)
cmpl $0x1, 0x3a28(%rsp)
jne 0x12c82b9
movq 0x5f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c828a
movq 0x5f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c8288
jmp 0x12c82b7
movq 0x5f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3dc8(%rsp)
cmpq $0x0, 0x3dc8(%rsp)
je 0x12c82b5
movq 0x3dc8(%rsp), %rdi
callq 0x5f480
jmp 0x12c82b7
jmp 0x12c82b9
movq 0x5f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c8314
movq %rax, %rdi
callq 0x678a0
movq 0x5e8(%rsp), %rax
movq %rax, 0x1740(%rsp)
movq 0x1740(%rsp), %rax
movq %rax, 0x26e8(%rsp)
movq 0x26e8(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x16e0(%rsp)
movl $0x0, 0x16dc(%rsp)
movl 0x16dc(%rsp), %eax
cmpl 0x1c88(%rsp), %eax
jge 0x12c841f
movq 0x17e0(%rsp), %rax
movq %rax, 0x26e0(%rsp)
movq 0x26e0(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x16c0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x16c0(%rsp), %rsi
leaq 0x16e0(%rsp), %rdx
callq 0x12f6cd0
movaps %xmm0, 0x16b0(%rsp)
movq 0x1790(%rsp), %rax
movaps 0x16b0(%rsp), %xmm0
movq %rax, 0x2928(%rsp)
movaps %xmm0, 0x2910(%rsp)
movaps 0x2910(%rsp), %xmm0
movq 0x2928(%rsp), %rax
movups %xmm0, (%rax)
movq 0x17e0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x17e0(%rsp)
movq 0x1790(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1790(%rsp)
movl 0x16dc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x16dc(%rsp)
jmp 0x12c8352
jmp 0x12c8421
movl 0x17ec(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x17ec(%rsp)
jmp 0x12c7629
movl $0x0, 0x1cc4(%rsp)
jmp 0x12d3150
movl 0x1c78(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jne 0x12c8f74
movl 0x1c74(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jne 0x12c8f74
cmpl $0x1, 0x1c6c(%rsp)
jne 0x12c8f74
cmpl $0x1, 0x1c5c(%rsp)
jne 0x12c8f74
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movl 0x1c8c(%rsp), %ecx
movq 0x1c80(%rsp), %r8
movl 0x1c7c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d40(%rsp)
movq 0x1d40(%rsp), %rcx
movq %rcx, 0x5d8(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x5e7(%rsp)
je 0x12c852e
movq 0x5d8(%rsp), %rax
movq %rax, 0x2a38(%rsp)
movq 0x2a38(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x5e7(%rsp)
movb 0x5e7(%rsp), %al
testb $0x1, %al
jne 0x12c853b
jmp 0x12c854b
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12d3150
movl $0x0, 0x16ac(%rsp)
movl 0x16ac(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jge 0x12c8f64
movq 0x1cb8(%rsp), %rcx
movl 0x16ac(%rsp), %eax
leaq 0x1658(%rsp), %rdx
movq %rdx, 0x1f08(%rsp)
movq %rcx, 0x1f00(%rsp)
movl %eax, 0x1efc(%rsp)
movq 0x1f00(%rsp), %rax
movq %rax, 0x5d0(%rsp)
movb $0x0, 0x1efb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1efc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1658(%rsp), %r10
movq %r10, 0x3098(%rsp)
movl %r9d, 0x3094(%rsp)
movl %r8d, 0x3090(%rsp)
movl %edi, 0x308c(%rsp)
movq %rsi, 0x3080(%rsp)
movq %rdx, 0x3078(%rsp)
movl %ecx, 0x3074(%rsp)
movq %rax, 0x3068(%rsp)
movq 0x3098(%rsp), %rcx
movq %rcx, 0x5c8(%rsp)
movq 0x3080(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3078(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3074(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3068(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3094(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3090(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x308c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3570(%rsp)
movl $0x10, 0x356c(%rsp)
movq 0x3570(%rsp), %rax
movslq 0x356c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x356c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5d0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1680(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12c8726
movq 0x5d0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1698(%rsp)
movb $0x1, 0x1efb(%rsp)
testb $0x1, 0x1efb(%rsp)
jne 0x12c8861
leaq 0x1658(%rsp), %rax
movq %rax, 0x2130(%rsp)
movq 0x2130(%rsp), %rax
movq %rax, 0x3c10(%rsp)
movq 0x3c10(%rsp), %rax
movq %rax, 0x5c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c8804
movq 0x5c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c0c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c0c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c08(%rsp)
cmpl $0x1, 0x3c08(%rsp)
jne 0x12c8804
movq 0x5c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c87d5
movq 0x5c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c87d3
jmp 0x12c8802
movq 0x5c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cd8(%rsp)
cmpq $0x0, 0x3cd8(%rsp)
je 0x12c8800
movq 0x3cd8(%rsp), %rdi
callq 0x5f480
jmp 0x12c8802
jmp 0x12c8804
movq 0x5c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c885f
movq %rax, %rdi
callq 0x678a0
jmp 0x12c8861
leaq 0x1658(%rsp), %rax
movq %rax, 0x20a0(%rsp)
movq 0x20a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5b0(%rsp)
leaq 0x1658(%rsp), %rax
movq %rax, 0x2228(%rsp)
movq 0x2228(%rsp), %rax
movq %rax, 0x3a20(%rsp)
movq 0x3a20(%rsp), %rax
movq %rax, 0x5b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c894c
movq 0x5b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a1c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a1c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a18(%rsp)
cmpl $0x1, 0x3a18(%rsp)
jne 0x12c894c
movq 0x5b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c891d
movq 0x5b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c891b
jmp 0x12c894a
movq 0x5b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3dd0(%rsp)
cmpq $0x0, 0x3dd0(%rsp)
je 0x12c8948
movq 0x3dd0(%rsp), %rdi
callq 0x5f480
jmp 0x12c894a
jmp 0x12c894c
movq 0x5b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c89a7
movq %rax, %rdi
callq 0x678a0
movq 0x5b0(%rsp), %rax
movq %rax, 0x16a0(%rsp)
movq 0x1cb0(%rsp), %rax
movq %rax, 0x2098(%rsp)
movq 0x2098(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1650(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x16ac(%rsp), %eax
leaq 0x1600(%rsp), %rdx
movq %rdx, 0x24b0(%rsp)
movq %rcx, 0x24a8(%rsp)
movl %eax, 0x24a4(%rsp)
movq 0x24a8(%rsp), %rax
movq %rax, 0x5a8(%rsp)
movb $0x0, 0x24a3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x24a4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1600(%rsp), %r10
movq %r10, 0x2c00(%rsp)
movl %r9d, 0x2bfc(%rsp)
movl %r8d, 0x2bf8(%rsp)
movl %edi, 0x2bf4(%rsp)
movq %rsi, 0x2be8(%rsp)
movq %rdx, 0x2be0(%rsp)
movl %ecx, 0x2bdc(%rsp)
movq %rax, 0x2bd0(%rsp)
movq 0x2c00(%rsp), %rcx
movq %rcx, 0x5a0(%rsp)
movq 0x2be8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2be0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2bdc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2bd0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2bfc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2bf8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2bf4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x36c0(%rsp)
movl $0x10, 0x36bc(%rsp)
movq 0x36c0(%rsp), %rax
movslq 0x36bc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x36bc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5a8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1628(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12c8b96
movq 0x5a8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1640(%rsp)
movb $0x1, 0x24a3(%rsp)
testb $0x1, 0x24a3(%rsp)
jne 0x12c8cd1
leaq 0x1600(%rsp), %rax
movq %rax, 0x24b8(%rsp)
movq 0x24b8(%rsp), %rax
movq %rax, 0x3770(%rsp)
movq 0x3770(%rsp), %rax
movq %rax, 0x598(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c8c74
movq 0x598(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x376c(%rsp) # imm = 0xFFFFFFFF
movl 0x376c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3768(%rsp)
cmpl $0x1, 0x3768(%rsp)
jne 0x12c8c74
movq 0x598(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c8c45
movq 0x598(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c8c43
jmp 0x12c8c72
movq 0x598(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f28(%rsp)
cmpq $0x0, 0x3f28(%rsp)
je 0x12c8c70
movq 0x3f28(%rsp), %rdi
callq 0x5f480
jmp 0x12c8c72
jmp 0x12c8c74
movq 0x598(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c8ccf
movq %rax, %rdi
callq 0x678a0
jmp 0x12c8cd1
leaq 0x1600(%rsp), %rax
movq %rax, 0x25d0(%rsp)
movq 0x25d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x588(%rsp)
leaq 0x1600(%rsp), %rax
movq %rax, 0x2230(%rsp)
movq 0x2230(%rsp), %rax
movq %rax, 0x3a10(%rsp)
movq 0x3a10(%rsp), %rax
movq %rax, 0x590(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c8dbc
movq 0x590(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a0c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a0c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a08(%rsp)
cmpl $0x1, 0x3a08(%rsp)
jne 0x12c8dbc
movq 0x590(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c8d8d
movq 0x590(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c8d8b
jmp 0x12c8dba
movq 0x590(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3dd8(%rsp)
cmpq $0x0, 0x3dd8(%rsp)
je 0x12c8db8
movq 0x3dd8(%rsp), %rdi
callq 0x5f480
jmp 0x12c8dba
jmp 0x12c8dbc
movq 0x590(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c8e17
movq %rax, %rdi
callq 0x678a0
movq 0x588(%rsp), %rax
movq %rax, 0x1648(%rsp)
movl $0x0, 0x15fc(%rsp)
movl 0x15fc(%rsp), %eax
cmpl 0x1c88(%rsp), %eax
jge 0x12c8f4c
movq 0x16a0(%rsp), %rax
movq %rax, 0x26d8(%rsp)
movq 0x26d8(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x15e0(%rsp)
movq 0x1650(%rsp), %rax
movss (%rax), %xmm0
movss %xmm0, 0x2a00(%rsp)
movaps 0x2a00(%rsp), %xmm0
shufps $0x0, %xmm0, %xmm0 # xmm0 = xmm0[0,0,0,0]
movaps %xmm0, 0x29f0(%rsp)
movaps 0x29f0(%rsp), %xmm0
movaps %xmm0, 0x15d0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x15e0(%rsp), %rsi
leaq 0x15d0(%rsp), %rdx
callq 0x12f6cd0
movaps %xmm0, 0x15c0(%rsp)
movq 0x1648(%rsp), %rax
movaps 0x15c0(%rsp), %xmm0
movq %rax, 0x2908(%rsp)
movaps %xmm0, 0x28f0(%rsp)
movaps 0x28f0(%rsp), %xmm0
movq 0x2908(%rsp), %rax
movups %xmm0, (%rax)
movq 0x16a0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x16a0(%rsp)
movq 0x1650(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x1650(%rsp)
movq 0x1648(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1648(%rsp)
movl 0x15fc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x15fc(%rsp)
jmp 0x12c8e32
jmp 0x12c8f4e
movl 0x16ac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x16ac(%rsp)
jmp 0x12c8556
movl $0x0, 0x1cc4(%rsp)
jmp 0x12d3150
cmpl $0x1, 0x1c98(%rsp)
jne 0x12c9e8d
cmpl $0x1, 0x1c94(%rsp)
jne 0x12c9e8d
movl 0x1c6c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jne 0x12c9e8d
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c6c(%rsp), %ecx
movq 0x1c60(%rsp), %r8
movl 0x1c5c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d38(%rsp)
movq 0x1d38(%rsp), %rcx
movq %rcx, 0x578(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x587(%rsp)
je 0x12c9047
movq 0x578(%rsp), %rax
movq %rax, 0x2a40(%rsp)
movq 0x2a40(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x587(%rsp)
movb 0x587(%rsp), %al
testb $0x1, %al
jne 0x12c9054
jmp 0x12c9064
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12d3150
movl $0x0, 0x15bc(%rsp)
movl 0x15bc(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12c9e7d
movq 0x1cb8(%rsp), %rcx
movl 0x15bc(%rsp), %eax
leaq 0x1568(%rsp), %rdx
movq %rdx, 0x1ef0(%rsp)
movq %rcx, 0x1ee8(%rsp)
movl %eax, 0x1ee4(%rsp)
movq 0x1ee8(%rsp), %rax
movq %rax, 0x570(%rsp)
movb $0x0, 0x1ee3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1ee4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1568(%rsp), %r10
movq %r10, 0x30d0(%rsp)
movl %r9d, 0x30cc(%rsp)
movl %r8d, 0x30c8(%rsp)
movl %edi, 0x30c4(%rsp)
movq %rsi, 0x30b8(%rsp)
movq %rdx, 0x30b0(%rsp)
movl %ecx, 0x30ac(%rsp)
movq %rax, 0x30a0(%rsp)
movq 0x30d0(%rsp), %rcx
movq %rcx, 0x568(%rsp)
movq 0x30b8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x30b0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x30ac(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x30a0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x30cc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x30c8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x30c4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3560(%rsp)
movl $0x10, 0x355c(%rsp)
movq 0x3560(%rsp), %rax
movslq 0x355c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x355c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x570(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1590(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12c923f
movq 0x570(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x15a8(%rsp)
movb $0x1, 0x1ee3(%rsp)
testb $0x1, 0x1ee3(%rsp)
jne 0x12c937a
leaq 0x1568(%rsp), %rax
movq %rax, 0x2138(%rsp)
movq 0x2138(%rsp), %rax
movq %rax, 0x3c00(%rsp)
movq 0x3c00(%rsp), %rax
movq %rax, 0x560(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c931d
movq 0x560(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bfc(%rsp) # imm = 0xFFFFFFFF
movl 0x3bfc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3bf8(%rsp)
cmpl $0x1, 0x3bf8(%rsp)
jne 0x12c931d
movq 0x560(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c92ee
movq 0x560(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c92ec
jmp 0x12c931b
movq 0x560(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ce0(%rsp)
cmpq $0x0, 0x3ce0(%rsp)
je 0x12c9319
movq 0x3ce0(%rsp), %rdi
callq 0x5f480
jmp 0x12c931b
jmp 0x12c931d
movq 0x560(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c9378
movq %rax, %rdi
callq 0x678a0
jmp 0x12c937a
leaq 0x1568(%rsp), %rax
movq %rax, 0x2090(%rsp)
movq 0x2090(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x550(%rsp)
leaq 0x1568(%rsp), %rax
movq %rax, 0x2238(%rsp)
movq 0x2238(%rsp), %rax
movq %rax, 0x3a00(%rsp)
movq 0x3a00(%rsp), %rax
movq %rax, 0x558(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c9465
movq 0x558(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x39fc(%rsp) # imm = 0xFFFFFFFF
movl 0x39fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x39f8(%rsp)
cmpl $0x1, 0x39f8(%rsp)
jne 0x12c9465
movq 0x558(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c9436
movq 0x558(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c9434
jmp 0x12c9463
movq 0x558(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3de0(%rsp)
cmpq $0x0, 0x3de0(%rsp)
je 0x12c9461
movq 0x3de0(%rsp), %rdi
callq 0x5f480
jmp 0x12c9463
jmp 0x12c9465
movq 0x558(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c94c0
movq %rax, %rdi
callq 0x678a0
movq 0x550(%rsp), %rax
movq %rax, 0x15b0(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x15bc(%rsp), %eax
leaq 0x1518(%rsp), %rdx
movq %rdx, 0x2490(%rsp)
movq %rcx, 0x2488(%rsp)
movl %eax, 0x2484(%rsp)
movq 0x2488(%rsp), %rax
movq %rax, 0x548(%rsp)
movb $0x0, 0x2483(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2484(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1518(%rsp), %r10
movq %r10, 0x2c38(%rsp)
movl %r9d, 0x2c34(%rsp)
movl %r8d, 0x2c30(%rsp)
movl %edi, 0x2c2c(%rsp)
movq %rsi, 0x2c20(%rsp)
movq %rdx, 0x2c18(%rsp)
movl %ecx, 0x2c14(%rsp)
movq %rax, 0x2c08(%rsp)
movq 0x2c38(%rsp), %rcx
movq %rcx, 0x540(%rsp)
movq 0x2c20(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2c18(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2c14(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2c08(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2c34(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2c30(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2c2c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x36b0(%rsp)
movl $0x10, 0x36ac(%rsp)
movq 0x36b0(%rsp), %rax
movslq 0x36ac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x36ac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x548(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1540(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12c968c
movq 0x548(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1558(%rsp)
movb $0x1, 0x2483(%rsp)
testb $0x1, 0x2483(%rsp)
jne 0x12c97c7
leaq 0x1518(%rsp), %rax
movq %rax, 0x2498(%rsp)
movq 0x2498(%rsp), %rax
movq %rax, 0x3780(%rsp)
movq 0x3780(%rsp), %rax
movq %rax, 0x538(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c976a
movq 0x538(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x377c(%rsp) # imm = 0xFFFFFFFF
movl 0x377c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3778(%rsp)
cmpl $0x1, 0x3778(%rsp)
jne 0x12c976a
movq 0x538(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c973b
movq 0x538(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c9739
jmp 0x12c9768
movq 0x538(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f20(%rsp)
cmpq $0x0, 0x3f20(%rsp)
je 0x12c9766
movq 0x3f20(%rsp), %rdi
callq 0x5f480
jmp 0x12c9768
jmp 0x12c976a
movq 0x538(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c97c5
movq %rax, %rdi
callq 0x678a0
jmp 0x12c97c7
leaq 0x1518(%rsp), %rax
movq %rax, 0x25c8(%rsp)
movq 0x25c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x528(%rsp)
leaq 0x1518(%rsp), %rax
movq %rax, 0x2240(%rsp)
movq 0x2240(%rsp), %rax
movq %rax, 0x39f0(%rsp)
movq 0x39f0(%rsp), %rax
movq %rax, 0x530(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c98b2
movq 0x530(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x39ec(%rsp) # imm = 0xFFFFFFFF
movl 0x39ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x39e8(%rsp)
cmpl $0x1, 0x39e8(%rsp)
jne 0x12c98b2
movq 0x530(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c9883
movq 0x530(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c9881
jmp 0x12c98b0
movq 0x530(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3de8(%rsp)
cmpq $0x0, 0x3de8(%rsp)
je 0x12c98ae
movq 0x3de8(%rsp), %rdi
callq 0x5f480
jmp 0x12c98b0
jmp 0x12c98b2
movq 0x530(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c990d
movq %rax, %rdi
callq 0x678a0
movq 0x528(%rsp), %rax
movq %rax, 0x1560(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x15bc(%rsp), %eax
leaq 0x14c8(%rsp), %rdx
movq %rdx, 0x1ed8(%rsp)
movq %rcx, 0x1ed0(%rsp)
movl %eax, 0x1ecc(%rsp)
movq 0x1ed0(%rsp), %rax
movq %rax, 0x520(%rsp)
movb $0x0, 0x1ecb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1ecc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x14c8(%rsp), %r10
movq %r10, 0x3108(%rsp)
movl %r9d, 0x3104(%rsp)
movl %r8d, 0x3100(%rsp)
movl %edi, 0x30fc(%rsp)
movq %rsi, 0x30f0(%rsp)
movq %rdx, 0x30e8(%rsp)
movl %ecx, 0x30e4(%rsp)
movq %rax, 0x30d8(%rsp)
movq 0x3108(%rsp), %rcx
movq %rcx, 0x518(%rsp)
movq 0x30f0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x30e8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x30e4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x30d8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3104(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3100(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x30fc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3550(%rsp)
movl $0x10, 0x354c(%rsp)
movq 0x3550(%rsp), %rax
movslq 0x354c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x354c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x520(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x14f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12c9ad9
movq 0x520(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1508(%rsp)
movb $0x1, 0x1ecb(%rsp)
testb $0x1, 0x1ecb(%rsp)
jne 0x12c9c14
leaq 0x14c8(%rsp), %rax
movq %rax, 0x2140(%rsp)
movq 0x2140(%rsp), %rax
movq %rax, 0x3bf0(%rsp)
movq 0x3bf0(%rsp), %rax
movq %rax, 0x510(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c9bb7
movq 0x510(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bec(%rsp) # imm = 0xFFFFFFFF
movl 0x3bec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3be8(%rsp)
cmpl $0x1, 0x3be8(%rsp)
jne 0x12c9bb7
movq 0x510(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c9b88
movq 0x510(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c9b86
jmp 0x12c9bb5
movq 0x510(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ce8(%rsp)
cmpq $0x0, 0x3ce8(%rsp)
je 0x12c9bb3
movq 0x3ce8(%rsp), %rdi
callq 0x5f480
jmp 0x12c9bb5
jmp 0x12c9bb7
movq 0x510(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c9c12
movq %rax, %rdi
callq 0x678a0
jmp 0x12c9c14
leaq 0x14c8(%rsp), %rax
movq %rax, 0x2088(%rsp)
movq 0x2088(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x500(%rsp)
leaq 0x14c8(%rsp), %rax
movq %rax, 0x2248(%rsp)
movq 0x2248(%rsp), %rax
movq %rax, 0x39e0(%rsp)
movq 0x39e0(%rsp), %rax
movq %rax, 0x508(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12c9cff
movq 0x508(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x39dc(%rsp) # imm = 0xFFFFFFFF
movl 0x39dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x39d8(%rsp)
cmpl $0x1, 0x39d8(%rsp)
jne 0x12c9cff
movq 0x508(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12c9cd0
movq 0x508(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12c9cce
jmp 0x12c9cfd
movq 0x508(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3df0(%rsp)
cmpq $0x0, 0x3df0(%rsp)
je 0x12c9cfb
movq 0x3df0(%rsp), %rdi
callq 0x5f480
jmp 0x12c9cfd
jmp 0x12c9cff
movq 0x508(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12c9d5a
movq %rax, %rdi
callq 0x678a0
movq 0x500(%rsp), %rax
movq %rax, 0x1510(%rsp)
movq 0x15b0(%rsp), %rax
movq %rax, 0x26d0(%rsp)
movq 0x26d0(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x14b0(%rsp)
movl $0x0, 0x14ac(%rsp)
movl 0x14ac(%rsp), %eax
cmpl 0x1c68(%rsp), %eax
jge 0x12c9e65
movq 0x1510(%rsp), %rax
movq %rax, 0x26c8(%rsp)
movq 0x26c8(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1490(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x14b0(%rsp), %rsi
leaq 0x1490(%rsp), %rdx
callq 0x12f6cd0
movaps %xmm0, 0x1480(%rsp)
movq 0x1560(%rsp), %rax
movaps 0x1480(%rsp), %xmm0
movq %rax, 0x28e8(%rsp)
movaps %xmm0, 0x28d0(%rsp)
movaps 0x28d0(%rsp), %xmm0
movq 0x28e8(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1510(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1510(%rsp)
movq 0x1560(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1560(%rsp)
movl 0x14ac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x14ac(%rsp)
jmp 0x12c9d98
jmp 0x12c9e67
movl 0x15bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x15bc(%rsp)
jmp 0x12c906f
movl $0x0, 0x1cc4(%rsp)
jmp 0x12d3150
movl 0x1c78(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jne 0x12ca9ba
movl 0x1c74(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jne 0x12ca9ba
cmpl $0x1, 0x1c8c(%rsp)
jne 0x12ca9ba
cmpl $0x1, 0x1c7c(%rsp)
jne 0x12ca9ba
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c6c(%rsp), %ecx
movq 0x1c60(%rsp), %r8
movl 0x1c5c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d30(%rsp)
movq 0x1d30(%rsp), %rcx
movq %rcx, 0x4f0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x4ff(%rsp)
je 0x12c9f74
movq 0x4f0(%rsp), %rax
movq %rax, 0x2a48(%rsp)
movq 0x2a48(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x4ff(%rsp)
movb 0x4ff(%rsp), %al
testb $0x1, %al
jne 0x12c9f81
jmp 0x12c9f91
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12d3150
movl $0x0, 0x147c(%rsp)
movl 0x147c(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12ca9aa
movq 0x1cb8(%rsp), %rax
movq %rax, 0x2080(%rsp)
movq 0x2080(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1470(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x147c(%rsp), %eax
leaq 0x1420(%rsp), %rdx
movq %rdx, 0x1ec0(%rsp)
movq %rcx, 0x1eb8(%rsp)
movl %eax, 0x1eb4(%rsp)
movq 0x1eb8(%rsp), %rax
movq %rax, 0x4e8(%rsp)
movb $0x0, 0x1eb3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1eb4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1420(%rsp), %r10
movq %r10, 0x3140(%rsp)
movl %r9d, 0x313c(%rsp)
movl %r8d, 0x3138(%rsp)
movl %edi, 0x3134(%rsp)
movq %rsi, 0x3128(%rsp)
movq %rdx, 0x3120(%rsp)
movl %ecx, 0x311c(%rsp)
movq %rax, 0x3110(%rsp)
movq 0x3140(%rsp), %rcx
movq %rcx, 0x4e0(%rsp)
movq 0x3128(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3120(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x311c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3110(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x313c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3138(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3134(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3540(%rsp)
movl $0x10, 0x353c(%rsp)
movq 0x3540(%rsp), %rax
movslq 0x353c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x353c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4e8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1448(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12ca18f
movq 0x4e8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1460(%rsp)
movb $0x1, 0x1eb3(%rsp)
testb $0x1, 0x1eb3(%rsp)
jne 0x12ca2ca
leaq 0x1420(%rsp), %rax
movq %rax, 0x2148(%rsp)
movq 0x2148(%rsp), %rax
movq %rax, 0x3be0(%rsp)
movq 0x3be0(%rsp), %rax
movq %rax, 0x4d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ca26d
movq 0x4d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bdc(%rsp) # imm = 0xFFFFFFFF
movl 0x3bdc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3bd8(%rsp)
cmpl $0x1, 0x3bd8(%rsp)
jne 0x12ca26d
movq 0x4d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ca23e
movq 0x4d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ca23c
jmp 0x12ca26b
movq 0x4d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cf0(%rsp)
cmpq $0x0, 0x3cf0(%rsp)
je 0x12ca269
movq 0x3cf0(%rsp), %rdi
callq 0x5f480
jmp 0x12ca26b
jmp 0x12ca26d
movq 0x4d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ca2c8
movq %rax, %rdi
callq 0x678a0
jmp 0x12ca2ca
leaq 0x1420(%rsp), %rax
movq %rax, 0x2078(%rsp)
movq 0x2078(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4c8(%rsp)
leaq 0x1420(%rsp), %rax
movq %rax, 0x2250(%rsp)
movq 0x2250(%rsp), %rax
movq %rax, 0x39d0(%rsp)
movq 0x39d0(%rsp), %rax
movq %rax, 0x4d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ca3b5
movq 0x4d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x39cc(%rsp) # imm = 0xFFFFFFFF
movl 0x39cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x39c8(%rsp)
cmpl $0x1, 0x39c8(%rsp)
jne 0x12ca3b5
movq 0x4d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ca386
movq 0x4d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ca384
jmp 0x12ca3b3
movq 0x4d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3df8(%rsp)
cmpq $0x0, 0x3df8(%rsp)
je 0x12ca3b1
movq 0x3df8(%rsp), %rdi
callq 0x5f480
jmp 0x12ca3b3
jmp 0x12ca3b5
movq 0x4d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ca410
movq %rax, %rdi
callq 0x678a0
movq 0x4c8(%rsp), %rax
movq %rax, 0x1468(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x147c(%rsp), %eax
leaq 0x13d0(%rsp), %rdx
movq %rdx, 0x2470(%rsp)
movq %rcx, 0x2468(%rsp)
movl %eax, 0x2464(%rsp)
movq 0x2468(%rsp), %rax
movq %rax, 0x4c0(%rsp)
movb $0x0, 0x2463(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2464(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x13d0(%rsp), %r10
movq %r10, 0x2c70(%rsp)
movl %r9d, 0x2c6c(%rsp)
movl %r8d, 0x2c68(%rsp)
movl %edi, 0x2c64(%rsp)
movq %rsi, 0x2c58(%rsp)
movq %rdx, 0x2c50(%rsp)
movl %ecx, 0x2c4c(%rsp)
movq %rax, 0x2c40(%rsp)
movq 0x2c70(%rsp), %rcx
movq %rcx, 0x4b8(%rsp)
movq 0x2c58(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2c50(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2c4c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2c40(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2c6c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2c68(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2c64(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x36a0(%rsp)
movl $0x10, 0x369c(%rsp)
movq 0x36a0(%rsp), %rax
movslq 0x369c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x369c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4c0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x13f8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12ca5dc
movq 0x4c0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1410(%rsp)
movb $0x1, 0x2463(%rsp)
testb $0x1, 0x2463(%rsp)
jne 0x12ca717
leaq 0x13d0(%rsp), %rax
movq %rax, 0x2478(%rsp)
movq 0x2478(%rsp), %rax
movq %rax, 0x3790(%rsp)
movq 0x3790(%rsp), %rax
movq %rax, 0x4b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ca6ba
movq 0x4b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x378c(%rsp) # imm = 0xFFFFFFFF
movl 0x378c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3788(%rsp)
cmpl $0x1, 0x3788(%rsp)
jne 0x12ca6ba
movq 0x4b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ca68b
movq 0x4b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ca689
jmp 0x12ca6b8
movq 0x4b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f18(%rsp)
cmpq $0x0, 0x3f18(%rsp)
je 0x12ca6b6
movq 0x3f18(%rsp), %rdi
callq 0x5f480
jmp 0x12ca6b8
jmp 0x12ca6ba
movq 0x4b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ca715
movq %rax, %rdi
callq 0x678a0
jmp 0x12ca717
leaq 0x13d0(%rsp), %rax
movq %rax, 0x25c0(%rsp)
movq 0x25c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4a0(%rsp)
leaq 0x13d0(%rsp), %rax
movq %rax, 0x2258(%rsp)
movq 0x2258(%rsp), %rax
movq %rax, 0x39c0(%rsp)
movq 0x39c0(%rsp), %rax
movq %rax, 0x4a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ca802
movq 0x4a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x39bc(%rsp) # imm = 0xFFFFFFFF
movl 0x39bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x39b8(%rsp)
cmpl $0x1, 0x39b8(%rsp)
jne 0x12ca802
movq 0x4a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ca7d3
movq 0x4a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ca7d1
jmp 0x12ca800
movq 0x4a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e00(%rsp)
cmpq $0x0, 0x3e00(%rsp)
je 0x12ca7fe
movq 0x3e00(%rsp), %rdi
callq 0x5f480
jmp 0x12ca800
jmp 0x12ca802
movq 0x4a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ca85d
movq %rax, %rdi
callq 0x678a0
movq 0x4a0(%rsp), %rax
movq %rax, 0x1418(%rsp)
movl $0x0, 0x13cc(%rsp)
movl 0x13cc(%rsp), %eax
cmpl 0x1c68(%rsp), %eax
jge 0x12ca992
movq 0x1470(%rsp), %rax
movss (%rax), %xmm0
movss %xmm0, 0x29e0(%rsp)
movaps 0x29e0(%rsp), %xmm0
shufps $0x0, %xmm0, %xmm0 # xmm0 = xmm0[0,0,0,0]
movaps %xmm0, 0x29d0(%rsp)
movaps 0x29d0(%rsp), %xmm0
movaps %xmm0, 0x13b0(%rsp)
movq 0x1468(%rsp), %rax
movq %rax, 0x26c0(%rsp)
movq 0x26c0(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x13a0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x13b0(%rsp), %rsi
leaq 0x13a0(%rsp), %rdx
callq 0x12f6cd0
movaps %xmm0, 0x1390(%rsp)
movq 0x1418(%rsp), %rax
movaps 0x1390(%rsp), %xmm0
movq %rax, 0x28c8(%rsp)
movaps %xmm0, 0x28b0(%rsp)
movaps 0x28b0(%rsp), %xmm0
movq 0x28c8(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1470(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x1470(%rsp)
movq 0x1468(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1468(%rsp)
movq 0x1418(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1418(%rsp)
movl 0x13cc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x13cc(%rsp)
jmp 0x12ca878
jmp 0x12ca994
movl 0x147c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x147c(%rsp)
jmp 0x12c9f9c
movl $0x0, 0x1cc4(%rsp)
jmp 0x12d3150
cmpl $0x1, 0x1c98(%rsp)
je 0x12cb932
cmpl $0x1, 0x1c78(%rsp)
jne 0x12cb932
movl 0x1c74(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jne 0x12cb932
movl 0x1c6c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jne 0x12cb932
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movl 0x1c8c(%rsp), %ecx
movq 0x1c80(%rsp), %r8
movl 0x1c7c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d28(%rsp)
movq 0x1d28(%rsp), %rcx
movq %rcx, 0x490(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x49f(%rsp)
je 0x12caaa1
movq 0x490(%rsp), %rax
movq %rax, 0x2a50(%rsp)
movq 0x2a50(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x49f(%rsp)
movb 0x49f(%rsp), %al
testb $0x1, %al
jne 0x12caaae
jmp 0x12caabe
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12d3150
movl $0x0, 0x138c(%rsp)
movl 0x138c(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12cb922
movq 0x1cb8(%rsp), %rcx
movl 0x138c(%rsp), %eax
leaq 0x1338(%rsp), %rdx
movq %rdx, 0x1ea8(%rsp)
movq %rcx, 0x1ea0(%rsp)
movl %eax, 0x1e9c(%rsp)
movq 0x1ea0(%rsp), %rax
movq %rax, 0x488(%rsp)
movb $0x0, 0x1e9b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e9c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1338(%rsp), %r10
movq %r10, 0x3178(%rsp)
movl %r9d, 0x3174(%rsp)
movl %r8d, 0x3170(%rsp)
movl %edi, 0x316c(%rsp)
movq %rsi, 0x3160(%rsp)
movq %rdx, 0x3158(%rsp)
movl %ecx, 0x3154(%rsp)
movq %rax, 0x3148(%rsp)
movq 0x3178(%rsp), %rcx
movq %rcx, 0x480(%rsp)
movq 0x3160(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3158(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3154(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3148(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3174(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3170(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x316c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3530(%rsp)
movl $0x10, 0x352c(%rsp)
movq 0x3530(%rsp), %rax
movslq 0x352c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x352c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x488(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1360(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12cac99
movq 0x488(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1378(%rsp)
movb $0x1, 0x1e9b(%rsp)
testb $0x1, 0x1e9b(%rsp)
jne 0x12cadd4
leaq 0x1338(%rsp), %rax
movq %rax, 0x2150(%rsp)
movq 0x2150(%rsp), %rax
movq %rax, 0x3bd0(%rsp)
movq 0x3bd0(%rsp), %rax
movq %rax, 0x478(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12cad77
movq 0x478(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bcc(%rsp) # imm = 0xFFFFFFFF
movl 0x3bcc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3bc8(%rsp)
cmpl $0x1, 0x3bc8(%rsp)
jne 0x12cad77
movq 0x478(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12cad48
movq 0x478(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12cad46
jmp 0x12cad75
movq 0x478(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cf8(%rsp)
cmpq $0x0, 0x3cf8(%rsp)
je 0x12cad73
movq 0x3cf8(%rsp), %rdi
callq 0x5f480
jmp 0x12cad75
jmp 0x12cad77
movq 0x478(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12cadd2
movq %rax, %rdi
callq 0x678a0
jmp 0x12cadd4
leaq 0x1338(%rsp), %rax
movq %rax, 0x2070(%rsp)
movq 0x2070(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x468(%rsp)
leaq 0x1338(%rsp), %rax
movq %rax, 0x2260(%rsp)
movq 0x2260(%rsp), %rax
movq %rax, 0x39b0(%rsp)
movq 0x39b0(%rsp), %rax
movq %rax, 0x470(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12caebf
movq 0x470(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x39ac(%rsp) # imm = 0xFFFFFFFF
movl 0x39ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x39a8(%rsp)
cmpl $0x1, 0x39a8(%rsp)
jne 0x12caebf
movq 0x470(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12cae90
movq 0x470(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12cae8e
jmp 0x12caebd
movq 0x470(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e08(%rsp)
cmpq $0x0, 0x3e08(%rsp)
je 0x12caebb
movq 0x3e08(%rsp), %rdi
callq 0x5f480
jmp 0x12caebd
jmp 0x12caebf
movq 0x470(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12caf1a
movq %rax, %rdi
callq 0x678a0
movq 0x468(%rsp), %rax
movq %rax, 0x1380(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x138c(%rsp), %eax
leaq 0x12e8(%rsp), %rdx
movq %rdx, 0x1e90(%rsp)
movq %rcx, 0x1e88(%rsp)
movl %eax, 0x1e84(%rsp)
movq 0x1e88(%rsp), %rax
movq %rax, 0x460(%rsp)
movb $0x0, 0x1e83(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e84(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x12e8(%rsp), %r10
movq %r10, 0x31b0(%rsp)
movl %r9d, 0x31ac(%rsp)
movl %r8d, 0x31a8(%rsp)
movl %edi, 0x31a4(%rsp)
movq %rsi, 0x3198(%rsp)
movq %rdx, 0x3190(%rsp)
movl %ecx, 0x318c(%rsp)
movq %rax, 0x3180(%rsp)
movq 0x31b0(%rsp), %rcx
movq %rcx, 0x458(%rsp)
movq 0x3198(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3190(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x318c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3180(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x31ac(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x31a8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x31a4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3520(%rsp)
movl $0x10, 0x351c(%rsp)
movq 0x3520(%rsp), %rax
movslq 0x351c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x351c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x460(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1310(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12cb0e6
movq 0x460(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1328(%rsp)
movb $0x1, 0x1e83(%rsp)
testb $0x1, 0x1e83(%rsp)
jne 0x12cb221
leaq 0x12e8(%rsp), %rax
movq %rax, 0x2158(%rsp)
movq 0x2158(%rsp), %rax
movq %rax, 0x3bc0(%rsp)
movq 0x3bc0(%rsp), %rax
movq %rax, 0x450(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12cb1c4
movq 0x450(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bbc(%rsp) # imm = 0xFFFFFFFF
movl 0x3bbc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3bb8(%rsp)
cmpl $0x1, 0x3bb8(%rsp)
jne 0x12cb1c4
movq 0x450(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12cb195
movq 0x450(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12cb193
jmp 0x12cb1c2
movq 0x450(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d00(%rsp)
cmpq $0x0, 0x3d00(%rsp)
je 0x12cb1c0
movq 0x3d00(%rsp), %rdi
callq 0x5f480
jmp 0x12cb1c2
jmp 0x12cb1c4
movq 0x450(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12cb21f
movq %rax, %rdi
callq 0x678a0
jmp 0x12cb221
leaq 0x12e8(%rsp), %rax
movq %rax, 0x2068(%rsp)
movq 0x2068(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x440(%rsp)
leaq 0x12e8(%rsp), %rax
movq %rax, 0x2268(%rsp)
movq 0x2268(%rsp), %rax
movq %rax, 0x39a0(%rsp)
movq 0x39a0(%rsp), %rax
movq %rax, 0x448(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12cb30c
movq 0x448(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x399c(%rsp) # imm = 0xFFFFFFFF
movl 0x399c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3998(%rsp)
cmpl $0x1, 0x3998(%rsp)
jne 0x12cb30c
movq 0x448(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12cb2dd
movq 0x448(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12cb2db
jmp 0x12cb30a
movq 0x448(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e10(%rsp)
cmpq $0x0, 0x3e10(%rsp)
je 0x12cb308
movq 0x3e10(%rsp), %rdi
callq 0x5f480
jmp 0x12cb30a
jmp 0x12cb30c
movq 0x448(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12cb367
movq %rax, %rdi
callq 0x678a0
movq 0x440(%rsp), %rax
movq %rax, 0x1330(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x138c(%rsp), %eax
leaq 0x1298(%rsp), %rdx
movq %rdx, 0x2450(%rsp)
movq %rcx, 0x2448(%rsp)
movl %eax, 0x2444(%rsp)
movq 0x2448(%rsp), %rax
movq %rax, 0x438(%rsp)
movb $0x0, 0x2443(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2444(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1298(%rsp), %r10
movq %r10, 0x2ca8(%rsp)
movl %r9d, 0x2ca4(%rsp)
movl %r8d, 0x2ca0(%rsp)
movl %edi, 0x2c9c(%rsp)
movq %rsi, 0x2c90(%rsp)
movq %rdx, 0x2c88(%rsp)
movl %ecx, 0x2c84(%rsp)
movq %rax, 0x2c78(%rsp)
movq 0x2ca8(%rsp), %rcx
movq %rcx, 0x430(%rsp)
movq 0x2c90(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2c88(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2c84(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2c78(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2ca4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2ca0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2c9c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3690(%rsp)
movl $0x10, 0x368c(%rsp)
movq 0x3690(%rsp), %rax
movslq 0x368c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x368c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x438(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x12c0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12cb533
movq 0x438(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x12d8(%rsp)
movb $0x1, 0x2443(%rsp)
testb $0x1, 0x2443(%rsp)
jne 0x12cb66e
leaq 0x1298(%rsp), %rax
movq %rax, 0x2458(%rsp)
movq 0x2458(%rsp), %rax
movq %rax, 0x37a0(%rsp)
movq 0x37a0(%rsp), %rax
movq %rax, 0x428(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12cb611
movq 0x428(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x379c(%rsp) # imm = 0xFFFFFFFF
movl 0x379c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3798(%rsp)
cmpl $0x1, 0x3798(%rsp)
jne 0x12cb611
movq 0x428(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12cb5e2
movq 0x428(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12cb5e0
jmp 0x12cb60f
movq 0x428(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f10(%rsp)
cmpq $0x0, 0x3f10(%rsp)
je 0x12cb60d
movq 0x3f10(%rsp), %rdi
callq 0x5f480
jmp 0x12cb60f
jmp 0x12cb611
movq 0x428(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12cb66c
movq %rax, %rdi
callq 0x678a0
jmp 0x12cb66e
leaq 0x1298(%rsp), %rax
movq %rax, 0x25b8(%rsp)
movq 0x25b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x418(%rsp)
leaq 0x1298(%rsp), %rax
movq %rax, 0x2270(%rsp)
movq 0x2270(%rsp), %rax
movq %rax, 0x3990(%rsp)
movq 0x3990(%rsp), %rax
movq %rax, 0x420(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12cb759
movq 0x420(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x398c(%rsp) # imm = 0xFFFFFFFF
movl 0x398c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3988(%rsp)
cmpl $0x1, 0x3988(%rsp)
jne 0x12cb759
movq 0x420(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12cb72a
movq 0x420(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12cb728
jmp 0x12cb757
movq 0x420(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e18(%rsp)
cmpq $0x0, 0x3e18(%rsp)
je 0x12cb755
movq 0x3e18(%rsp), %rdi
callq 0x5f480
jmp 0x12cb757
jmp 0x12cb759
movq 0x420(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12cb7b4
movq %rax, %rdi
callq 0x678a0
movq 0x418(%rsp), %rax
movq %rax, 0x12e0(%rsp)
movl $0x0, 0x1294(%rsp)
movl 0x1294(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jge 0x12cb90a
movq 0x1330(%rsp), %rax
movl 0x1294(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x26b8(%rsp)
movq 0x26b8(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1280(%rsp)
movl $0x0, 0x127c(%rsp)
movl 0x127c(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jge 0x12cb8f2
movq 0x1380(%rsp), %rax
movq %rax, 0x26b0(%rsp)
movq 0x26b0(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1260(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x1260(%rsp), %rsi
leaq 0x1280(%rsp), %rdx
callq 0x12f6cd0
movaps %xmm0, 0x1250(%rsp)
movq 0x12e0(%rsp), %rax
movaps 0x1250(%rsp), %xmm0
movq %rax, 0x28a8(%rsp)
movaps %xmm0, 0x2890(%rsp)
movaps 0x2890(%rsp), %xmm0
movq 0x28a8(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1380(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1380(%rsp)
movq 0x12e0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x12e0(%rsp)
movl 0x127c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x127c(%rsp)
jmp 0x12cb825
jmp 0x12cb8f4
movl 0x1294(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1294(%rsp)
jmp 0x12cb7cf
jmp 0x12cb90c
movl 0x138c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x138c(%rsp)
jmp 0x12caac9
movl $0x0, 0x1cc4(%rsp)
jmp 0x12d3150
movl 0x1c78(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jne 0x12cc8aa
cmpl $0x1, 0x1c94(%rsp)
je 0x12cc8aa
cmpl $0x1, 0x1c74(%rsp)
jne 0x12cc8aa
movl 0x1c6c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jne 0x12cc8aa
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movl 0x1c8c(%rsp), %ecx
movq 0x1c80(%rsp), %r8
movl 0x1c7c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d20(%rsp)
movq 0x1d20(%rsp), %rcx
movq %rcx, 0x408(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x417(%rsp)
je 0x12cba19
movq 0x408(%rsp), %rax
movq %rax, 0x2a58(%rsp)
movq 0x2a58(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x417(%rsp)
movb 0x417(%rsp), %al
testb $0x1, %al
jne 0x12cba26
jmp 0x12cba36
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12d3150
movl $0x0, 0x124c(%rsp)
movl 0x124c(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12cc89a
movq 0x1cb8(%rsp), %rcx
movl 0x124c(%rsp), %eax
leaq 0x11f8(%rsp), %rdx
movq %rdx, 0x1e78(%rsp)
movq %rcx, 0x1e70(%rsp)
movl %eax, 0x1e6c(%rsp)
movq 0x1e70(%rsp), %rax
movq %rax, 0x400(%rsp)
movb $0x0, 0x1e6b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e6c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x11f8(%rsp), %r10
movq %r10, 0x31e8(%rsp)
movl %r9d, 0x31e4(%rsp)
movl %r8d, 0x31e0(%rsp)
movl %edi, 0x31dc(%rsp)
movq %rsi, 0x31d0(%rsp)
movq %rdx, 0x31c8(%rsp)
movl %ecx, 0x31c4(%rsp)
movq %rax, 0x31b8(%rsp)
movq 0x31e8(%rsp), %rcx
movq %rcx, 0x3f8(%rsp)
movq 0x31d0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x31c8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x31c4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x31b8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x31e4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x31e0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x31dc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3510(%rsp)
movl $0x10, 0x350c(%rsp)
movq 0x3510(%rsp), %rax
movslq 0x350c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x350c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x400(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1220(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12cbc11
movq 0x400(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1238(%rsp)
movb $0x1, 0x1e6b(%rsp)
testb $0x1, 0x1e6b(%rsp)
jne 0x12cbd4c
leaq 0x11f8(%rsp), %rax
movq %rax, 0x2160(%rsp)
movq 0x2160(%rsp), %rax
movq %rax, 0x3bb0(%rsp)
movq 0x3bb0(%rsp), %rax
movq %rax, 0x3f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12cbcef
movq 0x3f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bac(%rsp) # imm = 0xFFFFFFFF
movl 0x3bac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ba8(%rsp)
cmpl $0x1, 0x3ba8(%rsp)
jne 0x12cbcef
movq 0x3f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12cbcc0
movq 0x3f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12cbcbe
jmp 0x12cbced
movq 0x3f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d08(%rsp)
cmpq $0x0, 0x3d08(%rsp)
je 0x12cbceb
movq 0x3d08(%rsp), %rdi
callq 0x5f480
jmp 0x12cbced
jmp 0x12cbcef
movq 0x3f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12cbd4a
movq %rax, %rdi
callq 0x678a0
jmp 0x12cbd4c
leaq 0x11f8(%rsp), %rax
movq %rax, 0x2060(%rsp)
movq 0x2060(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e0(%rsp)
leaq 0x11f8(%rsp), %rax
movq %rax, 0x2278(%rsp)
movq 0x2278(%rsp), %rax
movq %rax, 0x3980(%rsp)
movq 0x3980(%rsp), %rax
movq %rax, 0x3e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12cbe37
movq 0x3e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x397c(%rsp) # imm = 0xFFFFFFFF
movl 0x397c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3978(%rsp)
cmpl $0x1, 0x3978(%rsp)
jne 0x12cbe37
movq 0x3e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12cbe08
movq 0x3e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12cbe06
jmp 0x12cbe35
movq 0x3e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e20(%rsp)
cmpq $0x0, 0x3e20(%rsp)
je 0x12cbe33
movq 0x3e20(%rsp), %rdi
callq 0x5f480
jmp 0x12cbe35
jmp 0x12cbe37
movq 0x3e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12cbe92
movq %rax, %rdi
callq 0x678a0
movq 0x3e0(%rsp), %rax
movq %rax, 0x1240(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x124c(%rsp), %eax
leaq 0x11a8(%rsp), %rdx
movq %rdx, 0x1e60(%rsp)
movq %rcx, 0x1e58(%rsp)
movl %eax, 0x1e54(%rsp)
movq 0x1e58(%rsp), %rax
movq %rax, 0x3d8(%rsp)
movb $0x0, 0x1e53(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e54(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x11a8(%rsp), %r10
movq %r10, 0x3220(%rsp)
movl %r9d, 0x321c(%rsp)
movl %r8d, 0x3218(%rsp)
movl %edi, 0x3214(%rsp)
movq %rsi, 0x3208(%rsp)
movq %rdx, 0x3200(%rsp)
movl %ecx, 0x31fc(%rsp)
movq %rax, 0x31f0(%rsp)
movq 0x3220(%rsp), %rcx
movq %rcx, 0x3d0(%rsp)
movq 0x3208(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3200(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x31fc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x31f0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x321c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3218(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3214(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3500(%rsp)
movl $0x10, 0x34fc(%rsp)
movq 0x3500(%rsp), %rax
movslq 0x34fc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x34fc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3d8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x11d0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12cc05e
movq 0x3d8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x11e8(%rsp)
movb $0x1, 0x1e53(%rsp)
testb $0x1, 0x1e53(%rsp)
jne 0x12cc199
leaq 0x11a8(%rsp), %rax
movq %rax, 0x2168(%rsp)
movq 0x2168(%rsp), %rax
movq %rax, 0x3ba0(%rsp)
movq 0x3ba0(%rsp), %rax
movq %rax, 0x3c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12cc13c
movq 0x3c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b9c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b9c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b98(%rsp)
cmpl $0x1, 0x3b98(%rsp)
jne 0x12cc13c
movq 0x3c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12cc10d
movq 0x3c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12cc10b
jmp 0x12cc13a
movq 0x3c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d10(%rsp)
cmpq $0x0, 0x3d10(%rsp)
je 0x12cc138
movq 0x3d10(%rsp), %rdi
callq 0x5f480
jmp 0x12cc13a
jmp 0x12cc13c
movq 0x3c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12cc197
movq %rax, %rdi
callq 0x678a0
jmp 0x12cc199
leaq 0x11a8(%rsp), %rax
movq %rax, 0x2058(%rsp)
movq 0x2058(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3b8(%rsp)
leaq 0x11a8(%rsp), %rax
movq %rax, 0x2280(%rsp)
movq 0x2280(%rsp), %rax
movq %rax, 0x3970(%rsp)
movq 0x3970(%rsp), %rax
movq %rax, 0x3c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12cc284
movq 0x3c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x396c(%rsp) # imm = 0xFFFFFFFF
movl 0x396c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3968(%rsp)
cmpl $0x1, 0x3968(%rsp)
jne 0x12cc284
movq 0x3c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12cc255
movq 0x3c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12cc253
jmp 0x12cc282
movq 0x3c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e28(%rsp)
cmpq $0x0, 0x3e28(%rsp)
je 0x12cc280
movq 0x3e28(%rsp), %rdi
callq 0x5f480
jmp 0x12cc282
jmp 0x12cc284
movq 0x3c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12cc2df
movq %rax, %rdi
callq 0x678a0
movq 0x3b8(%rsp), %rax
movq %rax, 0x11f0(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x124c(%rsp), %eax
leaq 0x1158(%rsp), %rdx
movq %rdx, 0x2430(%rsp)
movq %rcx, 0x2428(%rsp)
movl %eax, 0x2424(%rsp)
movq 0x2428(%rsp), %rax
movq %rax, 0x3b0(%rsp)
movb $0x0, 0x2423(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2424(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1158(%rsp), %r10
movq %r10, 0x2ce0(%rsp)
movl %r9d, 0x2cdc(%rsp)
movl %r8d, 0x2cd8(%rsp)
movl %edi, 0x2cd4(%rsp)
movq %rsi, 0x2cc8(%rsp)
movq %rdx, 0x2cc0(%rsp)
movl %ecx, 0x2cbc(%rsp)
movq %rax, 0x2cb0(%rsp)
movq 0x2ce0(%rsp), %rcx
movq %rcx, 0x3a8(%rsp)
movq 0x2cc8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2cc0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2cbc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2cb0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2cdc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2cd8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2cd4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3680(%rsp)
movl $0x10, 0x367c(%rsp)
movq 0x3680(%rsp), %rax
movslq 0x367c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x367c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3b0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1180(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12cc4ab
movq 0x3b0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1198(%rsp)
movb $0x1, 0x2423(%rsp)
testb $0x1, 0x2423(%rsp)
jne 0x12cc5e6
leaq 0x1158(%rsp), %rax
movq %rax, 0x2438(%rsp)
movq 0x2438(%rsp), %rax
movq %rax, 0x37b0(%rsp)
movq 0x37b0(%rsp), %rax
movq %rax, 0x3a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12cc589
movq 0x3a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x37ac(%rsp) # imm = 0xFFFFFFFF
movl 0x37ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x37a8(%rsp)
cmpl $0x1, 0x37a8(%rsp)
jne 0x12cc589
movq 0x3a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12cc55a
movq 0x3a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12cc558
jmp 0x12cc587
movq 0x3a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f08(%rsp)
cmpq $0x0, 0x3f08(%rsp)
je 0x12cc585
movq 0x3f08(%rsp), %rdi
callq 0x5f480
jmp 0x12cc587
jmp 0x12cc589
movq 0x3a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12cc5e4
movq %rax, %rdi
callq 0x678a0
jmp 0x12cc5e6
leaq 0x1158(%rsp), %rax
movq %rax, 0x25b0(%rsp)
movq 0x25b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x390(%rsp)
leaq 0x1158(%rsp), %rax
movq %rax, 0x2288(%rsp)
movq 0x2288(%rsp), %rax
movq %rax, 0x3960(%rsp)
movq 0x3960(%rsp), %rax
movq %rax, 0x398(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12cc6d1
movq 0x398(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x395c(%rsp) # imm = 0xFFFFFFFF
movl 0x395c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3958(%rsp)
cmpl $0x1, 0x3958(%rsp)
jne 0x12cc6d1
movq 0x398(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12cc6a2
movq 0x398(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12cc6a0
jmp 0x12cc6cf
movq 0x398(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e30(%rsp)
cmpq $0x0, 0x3e30(%rsp)
je 0x12cc6cd
movq 0x3e30(%rsp), %rdi
callq 0x5f480
jmp 0x12cc6cf
jmp 0x12cc6d1
movq 0x398(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12cc72c
movq %rax, %rdi
callq 0x678a0
movq 0x390(%rsp), %rax
movq %rax, 0x11a0(%rsp)
movl $0x0, 0x1154(%rsp)
movl 0x1154(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jge 0x12cc882
movl $0x0, 0x1150(%rsp)
movl 0x1150(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jge 0x12cc86a
movq 0x1240(%rsp), %rax
movq %rax, 0x26a8(%rsp)
movq 0x26a8(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1140(%rsp)
movq 0x11f0(%rsp), %rax
movl 0x1150(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x26a0(%rsp)
movq 0x26a0(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1130(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x1140(%rsp), %rsi
leaq 0x1130(%rsp), %rdx
callq 0x12f6cd0
movaps %xmm0, 0x1120(%rsp)
movq 0x11a0(%rsp), %rax
movaps 0x1120(%rsp), %xmm0
movq %rax, 0x2888(%rsp)
movaps %xmm0, 0x2870(%rsp)
movaps 0x2870(%rsp), %xmm0
movq 0x2888(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1240(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1240(%rsp)
movq 0x11a0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x11a0(%rsp)
movl 0x1150(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1150(%rsp)
jmp 0x12cc766
jmp 0x12cc86c
movl 0x1154(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1154(%rsp)
jmp 0x12cc747
jmp 0x12cc884
movl 0x124c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x124c(%rsp)
jmp 0x12cba41
movl $0x0, 0x1cc4(%rsp)
jmp 0x12d3150
cmpl $0x1, 0x1c78(%rsp)
je 0x12cd822
cmpl $0x1, 0x1c98(%rsp)
jne 0x12cd822
movl 0x1c74(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jne 0x12cd822
movl 0x1c6c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jne 0x12cd822
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c6c(%rsp), %ecx
movq 0x1c60(%rsp), %r8
movl 0x1c5c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d18(%rsp)
movq 0x1d18(%rsp), %rcx
movq %rcx, 0x380(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x38f(%rsp)
je 0x12cc991
movq 0x380(%rsp), %rax
movq %rax, 0x2a60(%rsp)
movq 0x2a60(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x38f(%rsp)
movb 0x38f(%rsp), %al
testb $0x1, %al
jne 0x12cc99e
jmp 0x12cc9ae
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12d3150
movl $0x0, 0x111c(%rsp)
movl 0x111c(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12cd812
movq 0x1cb8(%rsp), %rcx
movl 0x111c(%rsp), %eax
leaq 0x10c8(%rsp), %rdx
movq %rdx, 0x1e48(%rsp)
movq %rcx, 0x1e40(%rsp)
movl %eax, 0x1e3c(%rsp)
movq 0x1e40(%rsp), %rax
movq %rax, 0x378(%rsp)
movb $0x0, 0x1e3b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e3c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x10c8(%rsp), %r10
movq %r10, 0x3258(%rsp)
movl %r9d, 0x3254(%rsp)
movl %r8d, 0x3250(%rsp)
movl %edi, 0x324c(%rsp)
movq %rsi, 0x3240(%rsp)
movq %rdx, 0x3238(%rsp)
movl %ecx, 0x3234(%rsp)
movq %rax, 0x3228(%rsp)
movq 0x3258(%rsp), %rcx
movq %rcx, 0x370(%rsp)
movq 0x3240(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3238(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3234(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3228(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3254(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3250(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x324c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x34f0(%rsp)
movl $0x10, 0x34ec(%rsp)
movq 0x34f0(%rsp), %rax
movslq 0x34ec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x34ec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x378(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x10f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12ccb89
movq 0x378(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1108(%rsp)
movb $0x1, 0x1e3b(%rsp)
testb $0x1, 0x1e3b(%rsp)
jne 0x12cccc4
leaq 0x10c8(%rsp), %rax
movq %rax, 0x2170(%rsp)
movq 0x2170(%rsp), %rax
movq %rax, 0x3b90(%rsp)
movq 0x3b90(%rsp), %rax
movq %rax, 0x368(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ccc67
movq 0x368(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b8c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b8c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b88(%rsp)
cmpl $0x1, 0x3b88(%rsp)
jne 0x12ccc67
movq 0x368(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ccc38
movq 0x368(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ccc36
jmp 0x12ccc65
movq 0x368(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d18(%rsp)
cmpq $0x0, 0x3d18(%rsp)
je 0x12ccc63
movq 0x3d18(%rsp), %rdi
callq 0x5f480
jmp 0x12ccc65
jmp 0x12ccc67
movq 0x368(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12cccc2
movq %rax, %rdi
callq 0x678a0
jmp 0x12cccc4
leaq 0x10c8(%rsp), %rax
movq %rax, 0x2050(%rsp)
movq 0x2050(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x358(%rsp)
leaq 0x10c8(%rsp), %rax
movq %rax, 0x2290(%rsp)
movq 0x2290(%rsp), %rax
movq %rax, 0x3950(%rsp)
movq 0x3950(%rsp), %rax
movq %rax, 0x360(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ccdaf
movq 0x360(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x394c(%rsp) # imm = 0xFFFFFFFF
movl 0x394c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3948(%rsp)
cmpl $0x1, 0x3948(%rsp)
jne 0x12ccdaf
movq 0x360(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ccd80
movq 0x360(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ccd7e
jmp 0x12ccdad
movq 0x360(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e38(%rsp)
cmpq $0x0, 0x3e38(%rsp)
je 0x12ccdab
movq 0x3e38(%rsp), %rdi
callq 0x5f480
jmp 0x12ccdad
jmp 0x12ccdaf
movq 0x360(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12cce0a
movq %rax, %rdi
callq 0x678a0
movq 0x358(%rsp), %rax
movq %rax, 0x1110(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x111c(%rsp), %eax
leaq 0x1078(%rsp), %rdx
movq %rdx, 0x1e30(%rsp)
movq %rcx, 0x1e28(%rsp)
movl %eax, 0x1e24(%rsp)
movq 0x1e28(%rsp), %rax
movq %rax, 0x350(%rsp)
movb $0x0, 0x1e23(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e24(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1078(%rsp), %r10
movq %r10, 0x3290(%rsp)
movl %r9d, 0x328c(%rsp)
movl %r8d, 0x3288(%rsp)
movl %edi, 0x3284(%rsp)
movq %rsi, 0x3278(%rsp)
movq %rdx, 0x3270(%rsp)
movl %ecx, 0x326c(%rsp)
movq %rax, 0x3260(%rsp)
movq 0x3290(%rsp), %rcx
movq %rcx, 0x348(%rsp)
movq 0x3278(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3270(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x326c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3260(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x328c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3288(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3284(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x34e0(%rsp)
movl $0x10, 0x34dc(%rsp)
movq 0x34e0(%rsp), %rax
movslq 0x34dc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x34dc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x350(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x10a0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12ccfd6
movq 0x350(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x10b8(%rsp)
movb $0x1, 0x1e23(%rsp)
testb $0x1, 0x1e23(%rsp)
jne 0x12cd111
leaq 0x1078(%rsp), %rax
movq %rax, 0x2178(%rsp)
movq 0x2178(%rsp), %rax
movq %rax, 0x3b80(%rsp)
movq 0x3b80(%rsp), %rax
movq %rax, 0x340(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12cd0b4
movq 0x340(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b7c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b7c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b78(%rsp)
cmpl $0x1, 0x3b78(%rsp)
jne 0x12cd0b4
movq 0x340(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12cd085
movq 0x340(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12cd083
jmp 0x12cd0b2
movq 0x340(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d20(%rsp)
cmpq $0x0, 0x3d20(%rsp)
je 0x12cd0b0
movq 0x3d20(%rsp), %rdi
callq 0x5f480
jmp 0x12cd0b2
jmp 0x12cd0b4
movq 0x340(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12cd10f
movq %rax, %rdi
callq 0x678a0
jmp 0x12cd111
leaq 0x1078(%rsp), %rax
movq %rax, 0x2048(%rsp)
movq 0x2048(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x330(%rsp)
leaq 0x1078(%rsp), %rax
movq %rax, 0x2298(%rsp)
movq 0x2298(%rsp), %rax
movq %rax, 0x3940(%rsp)
movq 0x3940(%rsp), %rax
movq %rax, 0x338(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12cd1fc
movq 0x338(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x393c(%rsp) # imm = 0xFFFFFFFF
movl 0x393c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3938(%rsp)
cmpl $0x1, 0x3938(%rsp)
jne 0x12cd1fc
movq 0x338(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12cd1cd
movq 0x338(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12cd1cb
jmp 0x12cd1fa
movq 0x338(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e40(%rsp)
cmpq $0x0, 0x3e40(%rsp)
je 0x12cd1f8
movq 0x3e40(%rsp), %rdi
callq 0x5f480
jmp 0x12cd1fa
jmp 0x12cd1fc
movq 0x338(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12cd257
movq %rax, %rdi
callq 0x678a0
movq 0x330(%rsp), %rax
movq %rax, 0x10c0(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x111c(%rsp), %eax
leaq 0x1028(%rsp), %rdx
movq %rdx, 0x2410(%rsp)
movq %rcx, 0x2408(%rsp)
movl %eax, 0x2404(%rsp)
movq 0x2408(%rsp), %rax
movq %rax, 0x328(%rsp)
movb $0x0, 0x2403(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2404(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1028(%rsp), %r10
movq %r10, 0x2d18(%rsp)
movl %r9d, 0x2d14(%rsp)
movl %r8d, 0x2d10(%rsp)
movl %edi, 0x2d0c(%rsp)
movq %rsi, 0x2d00(%rsp)
movq %rdx, 0x2cf8(%rsp)
movl %ecx, 0x2cf4(%rsp)
movq %rax, 0x2ce8(%rsp)
movq 0x2d18(%rsp), %rcx
movq %rcx, 0x320(%rsp)
movq 0x2d00(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2cf8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2cf4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ce8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2d14(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2d10(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2d0c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3670(%rsp)
movl $0x10, 0x366c(%rsp)
movq 0x3670(%rsp), %rax
movslq 0x366c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x366c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x328(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1050(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12cd423
movq 0x328(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1068(%rsp)
movb $0x1, 0x2403(%rsp)
testb $0x1, 0x2403(%rsp)
jne 0x12cd55e
leaq 0x1028(%rsp), %rax
movq %rax, 0x2418(%rsp)
movq 0x2418(%rsp), %rax
movq %rax, 0x37c0(%rsp)
movq 0x37c0(%rsp), %rax
movq %rax, 0x318(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12cd501
movq 0x318(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x37bc(%rsp) # imm = 0xFFFFFFFF
movl 0x37bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x37b8(%rsp)
cmpl $0x1, 0x37b8(%rsp)
jne 0x12cd501
movq 0x318(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12cd4d2
movq 0x318(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12cd4d0
jmp 0x12cd4ff
movq 0x318(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f00(%rsp)
cmpq $0x0, 0x3f00(%rsp)
je 0x12cd4fd
movq 0x3f00(%rsp), %rdi
callq 0x5f480
jmp 0x12cd4ff
jmp 0x12cd501
movq 0x318(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12cd55c
movq %rax, %rdi
callq 0x678a0
jmp 0x12cd55e
leaq 0x1028(%rsp), %rax
movq %rax, 0x25a8(%rsp)
movq 0x25a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x308(%rsp)
leaq 0x1028(%rsp), %rax
movq %rax, 0x22a0(%rsp)
movq 0x22a0(%rsp), %rax
movq %rax, 0x3930(%rsp)
movq 0x3930(%rsp), %rax
movq %rax, 0x310(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12cd649
movq 0x310(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x392c(%rsp) # imm = 0xFFFFFFFF
movl 0x392c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3928(%rsp)
cmpl $0x1, 0x3928(%rsp)
jne 0x12cd649
movq 0x310(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12cd61a
movq 0x310(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12cd618
jmp 0x12cd647
movq 0x310(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e48(%rsp)
cmpq $0x0, 0x3e48(%rsp)
je 0x12cd645
movq 0x3e48(%rsp), %rdi
callq 0x5f480
jmp 0x12cd647
jmp 0x12cd649
movq 0x310(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12cd6a4
movq %rax, %rdi
callq 0x678a0
movq 0x308(%rsp), %rax
movq %rax, 0x1070(%rsp)
movl $0x0, 0x1024(%rsp)
movl 0x1024(%rsp), %eax
cmpl 0x1c74(%rsp), %eax
jge 0x12cd7fa
movq 0x1110(%rsp), %rax
movl 0x1024(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2698(%rsp)
movq 0x2698(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1010(%rsp)
movl $0x0, 0x100c(%rsp)
movl 0x100c(%rsp), %eax
cmpl 0x1c78(%rsp), %eax
jge 0x12cd7e2
movq 0x10c0(%rsp), %rax
movq %rax, 0x2690(%rsp)
movq 0x2690(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xff0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x1010(%rsp), %rsi
leaq 0xff0(%rsp), %rdx
callq 0x12f6cd0
movaps %xmm0, 0xfe0(%rsp)
movq 0x1070(%rsp), %rax
movaps 0xfe0(%rsp), %xmm0
movq %rax, 0x2868(%rsp)
movaps %xmm0, 0x2850(%rsp)
movaps 0x2850(%rsp), %xmm0
movq 0x2868(%rsp), %rax
movups %xmm0, (%rax)
movq 0x10c0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x10c0(%rsp)
movq 0x1070(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1070(%rsp)
movl 0x100c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x100c(%rsp)
jmp 0x12cd715
jmp 0x12cd7e4
movl 0x1024(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1024(%rsp)
jmp 0x12cd6bf
jmp 0x12cd7fc
movl 0x111c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x111c(%rsp)
jmp 0x12cc9b9
movl $0x0, 0x1cc4(%rsp)
jmp 0x12d3150
movl 0x1c78(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jne 0x12ce79a
cmpl $0x1, 0x1c74(%rsp)
je 0x12ce79a
cmpl $0x1, 0x1c94(%rsp)
jne 0x12ce79a
movl 0x1c6c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jne 0x12ce79a
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c6c(%rsp), %ecx
movq 0x1c60(%rsp), %r8
movl 0x1c5c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d10(%rsp)
movq 0x1d10(%rsp), %rcx
movq %rcx, 0x2f8(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x307(%rsp)
je 0x12cd909
movq 0x2f8(%rsp), %rax
movq %rax, 0x2a68(%rsp)
movq 0x2a68(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x307(%rsp)
movb 0x307(%rsp), %al
testb $0x1, %al
jne 0x12cd916
jmp 0x12cd926
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12d3150
movl $0x0, 0xfdc(%rsp)
movl 0xfdc(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12ce78a
movq 0x1cb8(%rsp), %rcx
movl 0xfdc(%rsp), %eax
leaq 0xf88(%rsp), %rdx
movq %rdx, 0x1e18(%rsp)
movq %rcx, 0x1e10(%rsp)
movl %eax, 0x1e0c(%rsp)
movq 0x1e10(%rsp), %rax
movq %rax, 0x2f0(%rsp)
movb $0x0, 0x1e0b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e0c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xf88(%rsp), %r10
movq %r10, 0x32c8(%rsp)
movl %r9d, 0x32c4(%rsp)
movl %r8d, 0x32c0(%rsp)
movl %edi, 0x32bc(%rsp)
movq %rsi, 0x32b0(%rsp)
movq %rdx, 0x32a8(%rsp)
movl %ecx, 0x32a4(%rsp)
movq %rax, 0x3298(%rsp)
movq 0x32c8(%rsp), %rcx
movq %rcx, 0x2e8(%rsp)
movq 0x32b0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x32a8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x32a4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3298(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x32c4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x32c0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x32bc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x34d0(%rsp)
movl $0x10, 0x34cc(%rsp)
movq 0x34d0(%rsp), %rax
movslq 0x34cc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x34cc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2f0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xfb0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12cdb01
movq 0x2f0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xfc8(%rsp)
movb $0x1, 0x1e0b(%rsp)
testb $0x1, 0x1e0b(%rsp)
jne 0x12cdc3c
leaq 0xf88(%rsp), %rax
movq %rax, 0x2180(%rsp)
movq 0x2180(%rsp), %rax
movq %rax, 0x3b70(%rsp)
movq 0x3b70(%rsp), %rax
movq %rax, 0x2e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12cdbdf
movq 0x2e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b6c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b6c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b68(%rsp)
cmpl $0x1, 0x3b68(%rsp)
jne 0x12cdbdf
movq 0x2e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12cdbb0
movq 0x2e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12cdbae
jmp 0x12cdbdd
movq 0x2e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d28(%rsp)
cmpq $0x0, 0x3d28(%rsp)
je 0x12cdbdb
movq 0x3d28(%rsp), %rdi
callq 0x5f480
jmp 0x12cdbdd
jmp 0x12cdbdf
movq 0x2e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12cdc3a
movq %rax, %rdi
callq 0x678a0
jmp 0x12cdc3c
leaq 0xf88(%rsp), %rax
movq %rax, 0x2040(%rsp)
movq 0x2040(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2d0(%rsp)
leaq 0xf88(%rsp), %rax
movq %rax, 0x22a8(%rsp)
movq 0x22a8(%rsp), %rax
movq %rax, 0x3920(%rsp)
movq 0x3920(%rsp), %rax
movq %rax, 0x2d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12cdd27
movq 0x2d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x391c(%rsp) # imm = 0xFFFFFFFF
movl 0x391c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3918(%rsp)
cmpl $0x1, 0x3918(%rsp)
jne 0x12cdd27
movq 0x2d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12cdcf8
movq 0x2d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12cdcf6
jmp 0x12cdd25
movq 0x2d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e50(%rsp)
cmpq $0x0, 0x3e50(%rsp)
je 0x12cdd23
movq 0x3e50(%rsp), %rdi
callq 0x5f480
jmp 0x12cdd25
jmp 0x12cdd27
movq 0x2d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12cdd82
movq %rax, %rdi
callq 0x678a0
movq 0x2d0(%rsp), %rax
movq %rax, 0xfd0(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0xfdc(%rsp), %eax
leaq 0xf38(%rsp), %rdx
movq %rdx, 0x1e00(%rsp)
movq %rcx, 0x1df8(%rsp)
movl %eax, 0x1df4(%rsp)
movq 0x1df8(%rsp), %rax
movq %rax, 0x2c8(%rsp)
movb $0x0, 0x1df3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1df4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xf38(%rsp), %r10
movq %r10, 0x3300(%rsp)
movl %r9d, 0x32fc(%rsp)
movl %r8d, 0x32f8(%rsp)
movl %edi, 0x32f4(%rsp)
movq %rsi, 0x32e8(%rsp)
movq %rdx, 0x32e0(%rsp)
movl %ecx, 0x32dc(%rsp)
movq %rax, 0x32d0(%rsp)
movq 0x3300(%rsp), %rcx
movq %rcx, 0x2c0(%rsp)
movq 0x32e8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x32e0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x32dc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x32d0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x32fc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x32f8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x32f4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x34c0(%rsp)
movl $0x10, 0x34bc(%rsp)
movq 0x34c0(%rsp), %rax
movslq 0x34bc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x34bc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2c8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf60(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12cdf4e
movq 0x2c8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xf78(%rsp)
movb $0x1, 0x1df3(%rsp)
testb $0x1, 0x1df3(%rsp)
jne 0x12ce089
leaq 0xf38(%rsp), %rax
movq %rax, 0x2188(%rsp)
movq 0x2188(%rsp), %rax
movq %rax, 0x3b60(%rsp)
movq 0x3b60(%rsp), %rax
movq %rax, 0x2b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ce02c
movq 0x2b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b5c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b5c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b58(%rsp)
cmpl $0x1, 0x3b58(%rsp)
jne 0x12ce02c
movq 0x2b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12cdffd
movq 0x2b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12cdffb
jmp 0x12ce02a
movq 0x2b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d30(%rsp)
cmpq $0x0, 0x3d30(%rsp)
je 0x12ce028
movq 0x3d30(%rsp), %rdi
callq 0x5f480
jmp 0x12ce02a
jmp 0x12ce02c
movq 0x2b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ce087
movq %rax, %rdi
callq 0x678a0
jmp 0x12ce089
leaq 0xf38(%rsp), %rax
movq %rax, 0x2038(%rsp)
movq 0x2038(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2a8(%rsp)
leaq 0xf38(%rsp), %rax
movq %rax, 0x22b0(%rsp)
movq 0x22b0(%rsp), %rax
movq %rax, 0x3910(%rsp)
movq 0x3910(%rsp), %rax
movq %rax, 0x2b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ce174
movq 0x2b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x390c(%rsp) # imm = 0xFFFFFFFF
movl 0x390c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3908(%rsp)
cmpl $0x1, 0x3908(%rsp)
jne 0x12ce174
movq 0x2b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ce145
movq 0x2b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ce143
jmp 0x12ce172
movq 0x2b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e58(%rsp)
cmpq $0x0, 0x3e58(%rsp)
je 0x12ce170
movq 0x3e58(%rsp), %rdi
callq 0x5f480
jmp 0x12ce172
jmp 0x12ce174
movq 0x2b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ce1cf
movq %rax, %rdi
callq 0x678a0
movq 0x2a8(%rsp), %rax
movq %rax, 0xf80(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0xfdc(%rsp), %eax
leaq 0xee8(%rsp), %rdx
movq %rdx, 0x23f0(%rsp)
movq %rcx, 0x23e8(%rsp)
movl %eax, 0x23e4(%rsp)
movq 0x23e8(%rsp), %rax
movq %rax, 0x2a0(%rsp)
movb $0x0, 0x23e3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x23e4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xee8(%rsp), %r10
movq %r10, 0x2d50(%rsp)
movl %r9d, 0x2d4c(%rsp)
movl %r8d, 0x2d48(%rsp)
movl %edi, 0x2d44(%rsp)
movq %rsi, 0x2d38(%rsp)
movq %rdx, 0x2d30(%rsp)
movl %ecx, 0x2d2c(%rsp)
movq %rax, 0x2d20(%rsp)
movq 0x2d50(%rsp), %rcx
movq %rcx, 0x298(%rsp)
movq 0x2d38(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2d30(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2d2c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2d20(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2d4c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2d48(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2d44(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3660(%rsp)
movl $0x10, 0x365c(%rsp)
movq 0x3660(%rsp), %rax
movslq 0x365c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x365c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2a0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf10(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12ce39b
movq 0x2a0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xf28(%rsp)
movb $0x1, 0x23e3(%rsp)
testb $0x1, 0x23e3(%rsp)
jne 0x12ce4d6
leaq 0xee8(%rsp), %rax
movq %rax, 0x23f8(%rsp)
movq 0x23f8(%rsp), %rax
movq %rax, 0x37d0(%rsp)
movq 0x37d0(%rsp), %rax
movq %rax, 0x290(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ce479
movq 0x290(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x37cc(%rsp) # imm = 0xFFFFFFFF
movl 0x37cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x37c8(%rsp)
cmpl $0x1, 0x37c8(%rsp)
jne 0x12ce479
movq 0x290(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ce44a
movq 0x290(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ce448
jmp 0x12ce477
movq 0x290(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ef8(%rsp)
cmpq $0x0, 0x3ef8(%rsp)
je 0x12ce475
movq 0x3ef8(%rsp), %rdi
callq 0x5f480
jmp 0x12ce477
jmp 0x12ce479
movq 0x290(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ce4d4
movq %rax, %rdi
callq 0x678a0
jmp 0x12ce4d6
leaq 0xee8(%rsp), %rax
movq %rax, 0x25a0(%rsp)
movq 0x25a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x280(%rsp)
leaq 0xee8(%rsp), %rax
movq %rax, 0x22b8(%rsp)
movq 0x22b8(%rsp), %rax
movq %rax, 0x3900(%rsp)
movq 0x3900(%rsp), %rax
movq %rax, 0x288(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ce5c1
movq 0x288(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x38fc(%rsp) # imm = 0xFFFFFFFF
movl 0x38fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x38f8(%rsp)
cmpl $0x1, 0x38f8(%rsp)
jne 0x12ce5c1
movq 0x288(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ce592
movq 0x288(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ce590
jmp 0x12ce5bf
movq 0x288(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e60(%rsp)
cmpq $0x0, 0x3e60(%rsp)
je 0x12ce5bd
movq 0x3e60(%rsp), %rdi
callq 0x5f480
jmp 0x12ce5bf
jmp 0x12ce5c1
movq 0x288(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ce61c
movq %rax, %rdi
callq 0x678a0
movq 0x280(%rsp), %rax
movq %rax, 0xf30(%rsp)
movl $0x0, 0xee4(%rsp)
movl 0xee4(%rsp), %eax
cmpl 0x1c74(%rsp), %eax
jge 0x12ce772
movl $0x0, 0xee0(%rsp)
movl 0xee0(%rsp), %eax
cmpl 0x1c78(%rsp), %eax
jge 0x12ce75a
movq 0xfd0(%rsp), %rax
movl 0xee0(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2688(%rsp)
movq 0x2688(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xed0(%rsp)
movq 0xf80(%rsp), %rax
movq %rax, 0x2680(%rsp)
movq 0x2680(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xec0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0xed0(%rsp), %rsi
leaq 0xec0(%rsp), %rdx
callq 0x12f6cd0
movaps %xmm0, 0xeb0(%rsp)
movq 0xf30(%rsp), %rax
movaps 0xeb0(%rsp), %xmm0
movq %rax, 0x2848(%rsp)
movaps %xmm0, 0x2830(%rsp)
movaps 0x2830(%rsp), %xmm0
movq 0x2848(%rsp), %rax
movups %xmm0, (%rax)
movq 0xf80(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xf80(%rsp)
movq 0xf30(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xf30(%rsp)
movl 0xee0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xee0(%rsp)
jmp 0x12ce656
jmp 0x12ce75c
movl 0xee4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xee4(%rsp)
jmp 0x12ce637
jmp 0x12ce774
movl 0xfdc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xfdc(%rsp)
jmp 0x12cd931
movl $0x0, 0x1cc4(%rsp)
jmp 0x12d3150
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12f1de0
movl %eax, 0x1cc4(%rsp)
jmp 0x12d3150
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movl 0x1c8c(%rsp), %ecx
movq 0x1c80(%rsp), %r8
movl 0x1c7c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d08(%rsp)
movq 0x1d08(%rsp), %rcx
movq %rcx, 0x270(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x27f(%rsp)
je 0x12ce86e
movq 0x270(%rsp), %rax
movq %rax, 0x2a70(%rsp)
movq 0x2a70(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x27f(%rsp)
movb 0x27f(%rsp), %al
testb $0x1, %al
jne 0x12ce87b
jmp 0x12ce88b
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12d3150
movq 0x1cb0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x12cf30b
movl $0x0, 0xeac(%rsp)
movl 0xeac(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jge 0x12cf2fb
movq 0x1cb8(%rsp), %rcx
movl 0xeac(%rsp), %eax
leaq 0xe58(%rsp), %rdx
movq %rdx, 0x1de8(%rsp)
movq %rcx, 0x1de0(%rsp)
movl %eax, 0x1ddc(%rsp)
movq 0x1de0(%rsp), %rax
movq %rax, 0x268(%rsp)
movb $0x0, 0x1ddb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1ddc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xe58(%rsp), %r10
movq %r10, 0x3338(%rsp)
movl %r9d, 0x3334(%rsp)
movl %r8d, 0x3330(%rsp)
movl %edi, 0x332c(%rsp)
movq %rsi, 0x3320(%rsp)
movq %rdx, 0x3318(%rsp)
movl %ecx, 0x3314(%rsp)
movq %rax, 0x3308(%rsp)
movq 0x3338(%rsp), %rcx
movq %rcx, 0x260(%rsp)
movq 0x3320(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3318(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3314(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3308(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3334(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3330(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x332c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x34b0(%rsp)
movl $0x10, 0x34ac(%rsp)
movq 0x34b0(%rsp), %rax
movslq 0x34ac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x34ac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x268(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xe80(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12cea78
movq 0x268(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xe98(%rsp)
movb $0x1, 0x1ddb(%rsp)
testb $0x1, 0x1ddb(%rsp)
jne 0x12cebb3
leaq 0xe58(%rsp), %rax
movq %rax, 0x2190(%rsp)
movq 0x2190(%rsp), %rax
movq %rax, 0x3b50(%rsp)
movq 0x3b50(%rsp), %rax
movq %rax, 0x258(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ceb56
movq 0x258(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b4c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b4c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b48(%rsp)
cmpl $0x1, 0x3b48(%rsp)
jne 0x12ceb56
movq 0x258(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ceb27
movq 0x258(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ceb25
jmp 0x12ceb54
movq 0x258(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d38(%rsp)
cmpq $0x0, 0x3d38(%rsp)
je 0x12ceb52
movq 0x3d38(%rsp), %rdi
callq 0x5f480
jmp 0x12ceb54
jmp 0x12ceb56
movq 0x258(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12cebb1
movq %rax, %rdi
callq 0x678a0
jmp 0x12cebb3
leaq 0xe58(%rsp), %rax
movq %rax, 0x2030(%rsp)
movq 0x2030(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x248(%rsp)
leaq 0xe58(%rsp), %rax
movq %rax, 0x22c0(%rsp)
movq 0x22c0(%rsp), %rax
movq %rax, 0x38f0(%rsp)
movq 0x38f0(%rsp), %rax
movq %rax, 0x250(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12cec9e
movq 0x250(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x38ec(%rsp) # imm = 0xFFFFFFFF
movl 0x38ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x38e8(%rsp)
cmpl $0x1, 0x38e8(%rsp)
jne 0x12cec9e
movq 0x250(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12cec6f
movq 0x250(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12cec6d
jmp 0x12cec9c
movq 0x250(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e68(%rsp)
cmpq $0x0, 0x3e68(%rsp)
je 0x12cec9a
movq 0x3e68(%rsp), %rdi
callq 0x5f480
jmp 0x12cec9c
jmp 0x12cec9e
movq 0x250(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12cecf9
movq %rax, %rdi
callq 0x678a0
movq 0x248(%rsp), %rax
movq %rax, 0xea0(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0xeac(%rsp), %eax
movq %rcx, 0x2a18(%rsp)
movl %eax, 0x2a14(%rsp)
movq 0x2a18(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2a14(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xe50(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0xeac(%rsp), %eax
leaq 0xe00(%rsp), %rdx
movq %rdx, 0x23d0(%rsp)
movq %rcx, 0x23c8(%rsp)
movl %eax, 0x23c4(%rsp)
movq 0x23c8(%rsp), %rax
movq %rax, 0x240(%rsp)
movb $0x0, 0x23c3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x23c4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xe00(%rsp), %r10
movq %r10, 0x2d88(%rsp)
movl %r9d, 0x2d84(%rsp)
movl %r8d, 0x2d80(%rsp)
movl %edi, 0x2d7c(%rsp)
movq %rsi, 0x2d70(%rsp)
movq %rdx, 0x2d68(%rsp)
movl %ecx, 0x2d64(%rsp)
movq %rax, 0x2d58(%rsp)
movq 0x2d88(%rsp), %rcx
movq %rcx, 0x238(%rsp)
movq 0x2d70(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2d68(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2d64(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2d58(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2d84(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2d80(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2d7c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3650(%rsp)
movl $0x10, 0x364c(%rsp)
movq 0x3650(%rsp), %rax
movslq 0x364c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x364c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x240(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xe28(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12cef0e
movq 0x240(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xe40(%rsp)
movb $0x1, 0x23c3(%rsp)
testb $0x1, 0x23c3(%rsp)
jne 0x12cf049
leaq 0xe00(%rsp), %rax
movq %rax, 0x23d8(%rsp)
movq 0x23d8(%rsp), %rax
movq %rax, 0x37e0(%rsp)
movq 0x37e0(%rsp), %rax
movq %rax, 0x230(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12cefec
movq 0x230(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x37dc(%rsp) # imm = 0xFFFFFFFF
movl 0x37dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x37d8(%rsp)
cmpl $0x1, 0x37d8(%rsp)
jne 0x12cefec
movq 0x230(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12cefbd
movq 0x230(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12cefbb
jmp 0x12cefea
movq 0x230(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ef0(%rsp)
cmpq $0x0, 0x3ef0(%rsp)
je 0x12cefe8
movq 0x3ef0(%rsp), %rdi
callq 0x5f480
jmp 0x12cefea
jmp 0x12cefec
movq 0x230(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12cf047
movq %rax, %rdi
callq 0x678a0
jmp 0x12cf049
leaq 0xe00(%rsp), %rax
movq %rax, 0x2598(%rsp)
movq 0x2598(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x220(%rsp)
leaq 0xe00(%rsp), %rax
movq %rax, 0x22c8(%rsp)
movq 0x22c8(%rsp), %rax
movq %rax, 0x38e0(%rsp)
movq 0x38e0(%rsp), %rax
movq %rax, 0x228(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12cf134
movq 0x228(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x38dc(%rsp) # imm = 0xFFFFFFFF
movl 0x38dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x38d8(%rsp)
cmpl $0x1, 0x38d8(%rsp)
jne 0x12cf134
movq 0x228(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12cf105
movq 0x228(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12cf103
jmp 0x12cf132
movq 0x228(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e70(%rsp)
cmpq $0x0, 0x3e70(%rsp)
je 0x12cf130
movq 0x3e70(%rsp), %rdi
callq 0x5f480
jmp 0x12cf132
jmp 0x12cf134
movq 0x228(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12cf18f
movq %rax, %rdi
callq 0x678a0
movq 0x220(%rsp), %rax
movq %rax, 0xe48(%rsp)
movl $0x0, 0xdfc(%rsp)
movl 0xdfc(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jge 0x12cf2e3
movq 0xe50(%rsp), %rax
movq %rax, 0x2678(%rsp)
movq 0x2678(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xde0(%rsp)
movl $0x0, 0xddc(%rsp)
movl 0xddc(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jge 0x12cf2b9
movq 0xea0(%rsp), %rax
movq %rax, 0x2670(%rsp)
movq 0x2670(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xdc0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0xdc0(%rsp), %rsi
leaq 0xde0(%rsp), %rdx
callq 0x12f6cd0
movaps %xmm0, 0xdb0(%rsp)
movq 0xe48(%rsp), %rax
movaps 0xdb0(%rsp), %xmm0
movq %rax, 0x2828(%rsp)
movaps %xmm0, 0x2810(%rsp)
movaps 0x2810(%rsp), %xmm0
movq 0x2828(%rsp), %rax
movups %xmm0, (%rax)
movq 0xea0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xea0(%rsp)
movq 0xe48(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xe48(%rsp)
movl 0xddc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xddc(%rsp)
jmp 0x12cf1ec
movq 0xe50(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xe50(%rsp)
movl 0xdfc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdfc(%rsp)
jmp 0x12cf1aa
jmp 0x12cf2e5
movl 0xeac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xeac(%rsp)
jmp 0x12ce8a8
movl $0x0, 0x1cc4(%rsp)
jmp 0x12d3150
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x12cfd69
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x12cf366
cmpl $0x1, 0x1c5c(%rsp)
jne 0x12cf366
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12f2d60
movl %eax, 0x1cc4(%rsp)
jmp 0x12d3150
movl $0x0, 0xdac(%rsp)
movl 0xdac(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jge 0x12cfd59
movq 0x1cb8(%rsp), %rcx
movl 0xdac(%rsp), %eax
leaq 0xd58(%rsp), %rdx
movq %rdx, 0x1dd0(%rsp)
movq %rcx, 0x1dc8(%rsp)
movl %eax, 0x1dc4(%rsp)
movq 0x1dc8(%rsp), %rax
movq %rax, 0x218(%rsp)
movb $0x0, 0x1dc3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1dc4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xd58(%rsp), %r10
movq %r10, 0x3370(%rsp)
movl %r9d, 0x336c(%rsp)
movl %r8d, 0x3368(%rsp)
movl %edi, 0x3364(%rsp)
movq %rsi, 0x3358(%rsp)
movq %rdx, 0x3350(%rsp)
movl %ecx, 0x334c(%rsp)
movq %rax, 0x3340(%rsp)
movq 0x3370(%rsp), %rcx
movq %rcx, 0x210(%rsp)
movq 0x3358(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3350(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x334c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3340(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x336c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3368(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3364(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x34a0(%rsp)
movl $0x10, 0x349c(%rsp)
movq 0x34a0(%rsp), %rax
movslq 0x349c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x349c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x218(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xd80(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12cf541
movq 0x218(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd98(%rsp)
movb $0x1, 0x1dc3(%rsp)
testb $0x1, 0x1dc3(%rsp)
jne 0x12cf67c
leaq 0xd58(%rsp), %rax
movq %rax, 0x2198(%rsp)
movq 0x2198(%rsp), %rax
movq %rax, 0x3b40(%rsp)
movq 0x3b40(%rsp), %rax
movq %rax, 0x208(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12cf61f
movq 0x208(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b3c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b3c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b38(%rsp)
cmpl $0x1, 0x3b38(%rsp)
jne 0x12cf61f
movq 0x208(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12cf5f0
movq 0x208(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12cf5ee
jmp 0x12cf61d
movq 0x208(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d40(%rsp)
cmpq $0x0, 0x3d40(%rsp)
je 0x12cf61b
movq 0x3d40(%rsp), %rdi
callq 0x5f480
jmp 0x12cf61d
jmp 0x12cf61f
movq 0x208(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12cf67a
movq %rax, %rdi
callq 0x678a0
jmp 0x12cf67c
leaq 0xd58(%rsp), %rax
movq %rax, 0x2028(%rsp)
movq 0x2028(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1f8(%rsp)
leaq 0xd58(%rsp), %rax
movq %rax, 0x22d0(%rsp)
movq 0x22d0(%rsp), %rax
movq %rax, 0x38d0(%rsp)
movq 0x38d0(%rsp), %rax
movq %rax, 0x200(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12cf767
movq 0x200(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x38cc(%rsp) # imm = 0xFFFFFFFF
movl 0x38cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x38c8(%rsp)
cmpl $0x1, 0x38c8(%rsp)
jne 0x12cf767
movq 0x200(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12cf738
movq 0x200(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12cf736
jmp 0x12cf765
movq 0x200(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e78(%rsp)
cmpq $0x0, 0x3e78(%rsp)
je 0x12cf763
movq 0x3e78(%rsp), %rdi
callq 0x5f480
jmp 0x12cf765
jmp 0x12cf767
movq 0x200(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12cf7c2
movq %rax, %rdi
callq 0x678a0
movq 0x1f8(%rsp), %rax
movq %rax, 0xda0(%rsp)
movq 0x1cb0(%rsp), %rax
movq %rax, 0x2020(%rsp)
movq 0x2020(%rsp), %rax
movq (%rax), %rax
movl 0xdac(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2668(%rsp)
movq 0x2668(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xd40(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0xdac(%rsp), %eax
leaq 0xcf0(%rsp), %rdx
movq %rdx, 0x23b0(%rsp)
movq %rcx, 0x23a8(%rsp)
movl %eax, 0x23a4(%rsp)
movq 0x23a8(%rsp), %rax
movq %rax, 0x1f0(%rsp)
movb $0x0, 0x23a3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x23a4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xcf0(%rsp), %r10
movq %r10, 0x2dc0(%rsp)
movl %r9d, 0x2dbc(%rsp)
movl %r8d, 0x2db8(%rsp)
movl %edi, 0x2db4(%rsp)
movq %rsi, 0x2da8(%rsp)
movq %rdx, 0x2da0(%rsp)
movl %ecx, 0x2d9c(%rsp)
movq %rax, 0x2d90(%rsp)
movq 0x2dc0(%rsp), %rcx
movq %rcx, 0x1e8(%rsp)
movq 0x2da8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2da0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2d9c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2d90(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2dbc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2db8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2db4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3640(%rsp)
movl $0x10, 0x363c(%rsp)
movq 0x3640(%rsp), %rax
movslq 0x363c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x363c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x1f0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xd18(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12cf9d8
movq 0x1f0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd30(%rsp)
movb $0x1, 0x23a3(%rsp)
testb $0x1, 0x23a3(%rsp)
jne 0x12cfb13
leaq 0xcf0(%rsp), %rax
movq %rax, 0x23b8(%rsp)
movq 0x23b8(%rsp), %rax
movq %rax, 0x37f0(%rsp)
movq 0x37f0(%rsp), %rax
movq %rax, 0x1e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12cfab6
movq 0x1e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x37ec(%rsp) # imm = 0xFFFFFFFF
movl 0x37ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x37e8(%rsp)
cmpl $0x1, 0x37e8(%rsp)
jne 0x12cfab6
movq 0x1e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12cfa87
movq 0x1e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12cfa85
jmp 0x12cfab4
movq 0x1e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ee8(%rsp)
cmpq $0x0, 0x3ee8(%rsp)
je 0x12cfab2
movq 0x3ee8(%rsp), %rdi
callq 0x5f480
jmp 0x12cfab4
jmp 0x12cfab6
movq 0x1e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12cfb11
movq %rax, %rdi
callq 0x678a0
jmp 0x12cfb13
leaq 0xcf0(%rsp), %rax
movq %rax, 0x2590(%rsp)
movq 0x2590(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1d0(%rsp)
leaq 0xcf0(%rsp), %rax
movq %rax, 0x22d8(%rsp)
movq 0x22d8(%rsp), %rax
movq %rax, 0x38c0(%rsp)
movq 0x38c0(%rsp), %rax
movq %rax, 0x1d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12cfbfe
movq 0x1d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x38bc(%rsp) # imm = 0xFFFFFFFF
movl 0x38bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x38b8(%rsp)
cmpl $0x1, 0x38b8(%rsp)
jne 0x12cfbfe
movq 0x1d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12cfbcf
movq 0x1d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12cfbcd
jmp 0x12cfbfc
movq 0x1d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e80(%rsp)
cmpq $0x0, 0x3e80(%rsp)
je 0x12cfbfa
movq 0x3e80(%rsp), %rdi
callq 0x5f480
jmp 0x12cfbfc
jmp 0x12cfbfe
movq 0x1d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12cfc59
movq %rax, %rdi
callq 0x678a0
movq 0x1d0(%rsp), %rax
movq %rax, 0xd38(%rsp)
movl $0x0, 0xcec(%rsp)
movl 0xcec(%rsp), %eax
cmpl 0x1c88(%rsp), %eax
jge 0x12cfd41
movq 0xda0(%rsp), %rax
movq %rax, 0x2660(%rsp)
movq 0x2660(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xcd0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0xcd0(%rsp), %rsi
leaq 0xd40(%rsp), %rdx
callq 0x12f6cd0
movaps %xmm0, 0xcc0(%rsp)
movq 0xd38(%rsp), %rax
movaps 0xcc0(%rsp), %xmm0
movq %rax, 0x2808(%rsp)
movaps %xmm0, 0x27f0(%rsp)
movaps 0x27f0(%rsp), %xmm0
movq 0x2808(%rsp), %rax
movups %xmm0, (%rax)
movq 0xda0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xda0(%rsp)
movq 0xd38(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xd38(%rsp)
movl 0xcec(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xcec(%rsp)
jmp 0x12cfc74
jmp 0x12cfd43
movl 0xdac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdac(%rsp)
jmp 0x12cf371
movl $0x0, 0x1cc4(%rsp)
jmp 0x12d3150
jmp 0x12d3143
movq 0x1cb8(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x12d180a
movq 0x1cb0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x12d0904
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c70(%rsp), %ecx
movl 0x1c6c(%rsp), %r8d
movq 0x1c60(%rsp), %r9
movl 0x1c5c(%rsp), %r10d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d00(%rsp)
movq 0x1d00(%rsp), %rcx
movq %rcx, 0x1c0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1cf(%rsp)
je 0x12cfe42
movq 0x1c0(%rsp), %rax
movq %rax, 0x2a78(%rsp)
movq 0x2a78(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1cf(%rsp)
movb 0x1cf(%rsp), %al
testb $0x1, %al
jne 0x12cfe4f
jmp 0x12cfe5f
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12d3150
movl $0x0, 0xcbc(%rsp)
movl 0xcbc(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12d08f4
movq 0x1cb8(%rsp), %rcx
movl 0xcbc(%rsp), %eax
movq %rcx, 0x29b8(%rsp)
movl %eax, 0x29b4(%rsp)
movq 0x29b8(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x29b4(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xcb0(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0xcbc(%rsp), %eax
leaq 0xc60(%rsp), %rdx
movq %rdx, 0x1db8(%rsp)
movq %rcx, 0x1db0(%rsp)
movl %eax, 0x1dac(%rsp)
movq 0x1db0(%rsp), %rax
movq %rax, 0x1b8(%rsp)
movb $0x0, 0x1dab(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1dac(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xc60(%rsp), %r10
movq %r10, 0x33a8(%rsp)
movl %r9d, 0x33a4(%rsp)
movl %r8d, 0x33a0(%rsp)
movl %edi, 0x339c(%rsp)
movq %rsi, 0x3390(%rsp)
movq %rdx, 0x3388(%rsp)
movl %ecx, 0x3384(%rsp)
movq %rax, 0x3378(%rsp)
movq 0x33a8(%rsp), %rcx
movq %rcx, 0x1b0(%rsp)
movq 0x3390(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3388(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3384(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3378(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x33a4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x33a0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x339c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3490(%rsp)
movl $0x10, 0x348c(%rsp)
movq 0x3490(%rsp), %rax
movslq 0x348c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x348c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x1b8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc88(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12d0083
movq 0x1b8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xca0(%rsp)
movb $0x1, 0x1dab(%rsp)
testb $0x1, 0x1dab(%rsp)
jne 0x12d01be
leaq 0xc60(%rsp), %rax
movq %rax, 0x21a0(%rsp)
movq 0x21a0(%rsp), %rax
movq %rax, 0x3b30(%rsp)
movq 0x3b30(%rsp), %rax
movq %rax, 0x1a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d0161
movq 0x1a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b2c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b2c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b28(%rsp)
cmpl $0x1, 0x3b28(%rsp)
jne 0x12d0161
movq 0x1a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d0132
movq 0x1a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d0130
jmp 0x12d015f
movq 0x1a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d48(%rsp)
cmpq $0x0, 0x3d48(%rsp)
je 0x12d015d
movq 0x3d48(%rsp), %rdi
callq 0x5f480
jmp 0x12d015f
jmp 0x12d0161
movq 0x1a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d01bc
movq %rax, %rdi
callq 0x678a0
jmp 0x12d01be
leaq 0xc60(%rsp), %rax
movq %rax, 0x2018(%rsp)
movq 0x2018(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x198(%rsp)
leaq 0xc60(%rsp), %rax
movq %rax, 0x22e0(%rsp)
movq 0x22e0(%rsp), %rax
movq %rax, 0x38b0(%rsp)
movq 0x38b0(%rsp), %rax
movq %rax, 0x1a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d02a9
movq 0x1a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x38ac(%rsp) # imm = 0xFFFFFFFF
movl 0x38ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x38a8(%rsp)
cmpl $0x1, 0x38a8(%rsp)
jne 0x12d02a9
movq 0x1a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d027a
movq 0x1a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d0278
jmp 0x12d02a7
movq 0x1a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e88(%rsp)
cmpq $0x0, 0x3e88(%rsp)
je 0x12d02a5
movq 0x3e88(%rsp), %rdi
callq 0x5f480
jmp 0x12d02a7
jmp 0x12d02a9
movq 0x1a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d0304
movq %rax, %rdi
callq 0x678a0
movq 0x198(%rsp), %rax
movq %rax, 0xca8(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0xcbc(%rsp), %eax
leaq 0xc10(%rsp), %rdx
movq %rdx, 0x2390(%rsp)
movq %rcx, 0x2388(%rsp)
movl %eax, 0x2384(%rsp)
movq 0x2388(%rsp), %rax
movq %rax, 0x190(%rsp)
movb $0x0, 0x2383(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2384(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xc10(%rsp), %r10
movq %r10, 0x2df8(%rsp)
movl %r9d, 0x2df4(%rsp)
movl %r8d, 0x2df0(%rsp)
movl %edi, 0x2dec(%rsp)
movq %rsi, 0x2de0(%rsp)
movq %rdx, 0x2dd8(%rsp)
movl %ecx, 0x2dd4(%rsp)
movq %rax, 0x2dc8(%rsp)
movq 0x2df8(%rsp), %rcx
movq %rcx, 0x188(%rsp)
movq 0x2de0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2dd8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2dd4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2dc8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2df4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2df0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2dec(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3630(%rsp)
movl $0x10, 0x362c(%rsp)
movq 0x3630(%rsp), %rax
movslq 0x362c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x362c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x190(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc38(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12d04d0
movq 0x190(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xc50(%rsp)
movb $0x1, 0x2383(%rsp)
testb $0x1, 0x2383(%rsp)
jne 0x12d060b
leaq 0xc10(%rsp), %rax
movq %rax, 0x2398(%rsp)
movq 0x2398(%rsp), %rax
movq %rax, 0x3800(%rsp)
movq 0x3800(%rsp), %rax
movq %rax, 0x180(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d05ae
movq 0x180(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x37fc(%rsp) # imm = 0xFFFFFFFF
movl 0x37fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x37f8(%rsp)
cmpl $0x1, 0x37f8(%rsp)
jne 0x12d05ae
movq 0x180(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d057f
movq 0x180(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d057d
jmp 0x12d05ac
movq 0x180(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ee0(%rsp)
cmpq $0x0, 0x3ee0(%rsp)
je 0x12d05aa
movq 0x3ee0(%rsp), %rdi
callq 0x5f480
jmp 0x12d05ac
jmp 0x12d05ae
movq 0x180(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d0609
movq %rax, %rdi
callq 0x678a0
jmp 0x12d060b
leaq 0xc10(%rsp), %rax
movq %rax, 0x2588(%rsp)
movq 0x2588(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x170(%rsp)
leaq 0xc10(%rsp), %rax
movq %rax, 0x22e8(%rsp)
movq 0x22e8(%rsp), %rax
movq %rax, 0x38a0(%rsp)
movq 0x38a0(%rsp), %rax
movq %rax, 0x178(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d06f6
movq 0x178(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x389c(%rsp) # imm = 0xFFFFFFFF
movl 0x389c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3898(%rsp)
cmpl $0x1, 0x3898(%rsp)
jne 0x12d06f6
movq 0x178(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d06c7
movq 0x178(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d06c5
jmp 0x12d06f4
movq 0x178(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e90(%rsp)
cmpq $0x0, 0x3e90(%rsp)
je 0x12d06f2
movq 0x3e90(%rsp), %rdi
callq 0x5f480
jmp 0x12d06f4
jmp 0x12d06f6
movq 0x178(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d0751
movq %rax, %rdi
callq 0x678a0
movq 0x170(%rsp), %rax
movq %rax, 0xc58(%rsp)
movl $0x0, 0xc0c(%rsp)
movl 0xc0c(%rsp), %eax
cmpl 0x1c70(%rsp), %eax
jge 0x12d08dc
movq 0xcb0(%rsp), %rax
movq %rax, 0x2658(%rsp)
movq 0x2658(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xbf0(%rsp)
movl $0x0, 0xbec(%rsp)
movl 0xbec(%rsp), %eax
cmpl 0x1c74(%rsp), %eax
jge 0x12d08b2
movl $0x0, 0xbe8(%rsp)
movl 0xbe8(%rsp), %eax
cmpl 0x1c78(%rsp), %eax
jge 0x12d089a
movq 0xca8(%rsp), %rax
movq %rax, 0x2650(%rsp)
movq 0x2650(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xbd0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0xbf0(%rsp), %rsi
leaq 0xbd0(%rsp), %rdx
callq 0x12f6cd0
movaps %xmm0, 0xbc0(%rsp)
movq 0xc58(%rsp), %rax
movaps 0xbc0(%rsp), %xmm0
movq %rax, 0x27e8(%rsp)
movaps %xmm0, 0x27d0(%rsp)
movaps 0x27d0(%rsp), %xmm0
movq 0x27e8(%rsp), %rax
movups %xmm0, (%rax)
movq 0xca8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xca8(%rsp)
movq 0xc58(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xc58(%rsp)
movl 0xbe8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xbe8(%rsp)
jmp 0x12d07cd
jmp 0x12d089c
movl 0xbec(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xbec(%rsp)
jmp 0x12d07ae
movq 0xcb0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xcb0(%rsp)
movl 0xc0c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xc0c(%rsp)
jmp 0x12d076c
jmp 0x12d08de
movl 0xcbc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xcbc(%rsp)
jmp 0x12cfe6a
movl $0x0, 0x1cc4(%rsp)
jmp 0x12d3150
movq 0x1cb0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x12d1444
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c6c(%rsp), %ecx
movq 0x1c60(%rsp), %r8
movl 0x1c5c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1cf8(%rsp)
movq 0x1cf8(%rsp), %rcx
movq %rcx, 0x160(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x16f(%rsp)
je 0x12d09b9
movq 0x160(%rsp), %rax
movq %rax, 0x2a80(%rsp)
movq 0x2a80(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x16f(%rsp)
movb 0x16f(%rsp), %al
testb $0x1, %al
jne 0x12d09c6
jmp 0x12d09d6
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12d3150
movl $0x0, 0xbbc(%rsp)
movl 0xbbc(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12d1434
movq 0x1cb8(%rsp), %rcx
movl 0xbbc(%rsp), %eax
movq %rcx, 0x2a08(%rsp)
movl %eax, 0x2a04(%rsp)
movq 0x2a08(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2a04(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xbb0(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0xbbc(%rsp), %eax
leaq 0xb60(%rsp), %rdx
movq %rdx, 0x1da0(%rsp)
movq %rcx, 0x1d98(%rsp)
movl %eax, 0x1d94(%rsp)
movq 0x1d98(%rsp), %rax
movq %rax, 0x158(%rsp)
movb $0x0, 0x1d93(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1d94(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xb60(%rsp), %r10
movq %r10, 0x33e0(%rsp)
movl %r9d, 0x33dc(%rsp)
movl %r8d, 0x33d8(%rsp)
movl %edi, 0x33d4(%rsp)
movq %rsi, 0x33c8(%rsp)
movq %rdx, 0x33c0(%rsp)
movl %ecx, 0x33bc(%rsp)
movq %rax, 0x33b0(%rsp)
movq 0x33e0(%rsp), %rcx
movq %rcx, 0x150(%rsp)
movq 0x33c8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x33c0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x33bc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x33b0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x33dc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x33d8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x33d4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3480(%rsp)
movl $0x10, 0x347c(%rsp)
movq 0x3480(%rsp), %rax
movslq 0x347c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x347c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x158(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xb88(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12d0bfa
movq 0x158(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xba0(%rsp)
movb $0x1, 0x1d93(%rsp)
testb $0x1, 0x1d93(%rsp)
jne 0x12d0d35
leaq 0xb60(%rsp), %rax
movq %rax, 0x21a8(%rsp)
movq 0x21a8(%rsp), %rax
movq %rax, 0x3b20(%rsp)
movq 0x3b20(%rsp), %rax
movq %rax, 0x148(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d0cd8
movq 0x148(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b1c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b1c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b18(%rsp)
cmpl $0x1, 0x3b18(%rsp)
jne 0x12d0cd8
movq 0x148(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d0ca9
movq 0x148(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d0ca7
jmp 0x12d0cd6
movq 0x148(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d50(%rsp)
cmpq $0x0, 0x3d50(%rsp)
je 0x12d0cd4
movq 0x3d50(%rsp), %rdi
callq 0x5f480
jmp 0x12d0cd6
jmp 0x12d0cd8
movq 0x148(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d0d33
movq %rax, %rdi
callq 0x678a0
jmp 0x12d0d35
leaq 0xb60(%rsp), %rax
movq %rax, 0x2010(%rsp)
movq 0x2010(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x138(%rsp)
leaq 0xb60(%rsp), %rax
movq %rax, 0x22f0(%rsp)
movq 0x22f0(%rsp), %rax
movq %rax, 0x3890(%rsp)
movq 0x3890(%rsp), %rax
movq %rax, 0x140(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d0e20
movq 0x140(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x388c(%rsp) # imm = 0xFFFFFFFF
movl 0x388c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3888(%rsp)
cmpl $0x1, 0x3888(%rsp)
jne 0x12d0e20
movq 0x140(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d0df1
movq 0x140(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d0def
jmp 0x12d0e1e
movq 0x140(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e98(%rsp)
cmpq $0x0, 0x3e98(%rsp)
je 0x12d0e1c
movq 0x3e98(%rsp), %rdi
callq 0x5f480
jmp 0x12d0e1e
jmp 0x12d0e20
movq 0x140(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d0e7b
movq %rax, %rdi
callq 0x678a0
movq 0x138(%rsp), %rax
movq %rax, 0xba8(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0xbbc(%rsp), %eax
leaq 0xb10(%rsp), %rdx
movq %rdx, 0x2370(%rsp)
movq %rcx, 0x2368(%rsp)
movl %eax, 0x2364(%rsp)
movq 0x2368(%rsp), %rax
movq %rax, 0x130(%rsp)
movb $0x0, 0x2363(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2364(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xb10(%rsp), %r10
movq %r10, 0x2e30(%rsp)
movl %r9d, 0x2e2c(%rsp)
movl %r8d, 0x2e28(%rsp)
movl %edi, 0x2e24(%rsp)
movq %rsi, 0x2e18(%rsp)
movq %rdx, 0x2e10(%rsp)
movl %ecx, 0x2e0c(%rsp)
movq %rax, 0x2e00(%rsp)
movq 0x2e30(%rsp), %rcx
movq %rcx, 0x128(%rsp)
movq 0x2e18(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2e10(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2e0c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2e00(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2e2c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2e28(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2e24(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3620(%rsp)
movl $0x10, 0x361c(%rsp)
movq 0x3620(%rsp), %rax
movslq 0x361c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x361c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x130(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xb38(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12d1047
movq 0x130(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xb50(%rsp)
movb $0x1, 0x2363(%rsp)
testb $0x1, 0x2363(%rsp)
jne 0x12d1182
leaq 0xb10(%rsp), %rax
movq %rax, 0x2378(%rsp)
movq 0x2378(%rsp), %rax
movq %rax, 0x3810(%rsp)
movq 0x3810(%rsp), %rax
movq %rax, 0x120(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d1125
movq 0x120(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x380c(%rsp) # imm = 0xFFFFFFFF
movl 0x380c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3808(%rsp)
cmpl $0x1, 0x3808(%rsp)
jne 0x12d1125
movq 0x120(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d10f6
movq 0x120(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d10f4
jmp 0x12d1123
movq 0x120(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ed8(%rsp)
cmpq $0x0, 0x3ed8(%rsp)
je 0x12d1121
movq 0x3ed8(%rsp), %rdi
callq 0x5f480
jmp 0x12d1123
jmp 0x12d1125
movq 0x120(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d1180
movq %rax, %rdi
callq 0x678a0
jmp 0x12d1182
leaq 0xb10(%rsp), %rax
movq %rax, 0x2580(%rsp)
movq 0x2580(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x110(%rsp)
leaq 0xb10(%rsp), %rax
movq %rax, 0x22f8(%rsp)
movq 0x22f8(%rsp), %rax
movq %rax, 0x3880(%rsp)
movq 0x3880(%rsp), %rax
movq %rax, 0x118(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d126d
movq 0x118(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x387c(%rsp) # imm = 0xFFFFFFFF
movl 0x387c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3878(%rsp)
cmpl $0x1, 0x3878(%rsp)
jne 0x12d126d
movq 0x118(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d123e
movq 0x118(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d123c
jmp 0x12d126b
movq 0x118(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ea0(%rsp)
cmpq $0x0, 0x3ea0(%rsp)
je 0x12d1269
movq 0x3ea0(%rsp), %rdi
callq 0x5f480
jmp 0x12d126b
jmp 0x12d126d
movq 0x118(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d12c8
movq %rax, %rdi
callq 0x678a0
movq 0x110(%rsp), %rax
movq %rax, 0xb58(%rsp)
movl $0x0, 0xb0c(%rsp)
movl 0xb0c(%rsp), %eax
cmpl 0x1c74(%rsp), %eax
jge 0x12d141c
movq 0xbb0(%rsp), %rax
movq %rax, 0x2648(%rsp)
movq 0x2648(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xaf0(%rsp)
movl $0x0, 0xaec(%rsp)
movl 0xaec(%rsp), %eax
cmpl 0x1c78(%rsp), %eax
jge 0x12d13f2
movq 0xba8(%rsp), %rax
movq %rax, 0x2640(%rsp)
movq 0x2640(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xad0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0xaf0(%rsp), %rsi
leaq 0xad0(%rsp), %rdx
callq 0x12f6cd0
movaps %xmm0, 0xac0(%rsp)
movq 0xb58(%rsp), %rax
movaps 0xac0(%rsp), %xmm0
movq %rax, 0x27c8(%rsp)
movaps %xmm0, 0x27b0(%rsp)
movaps 0x27b0(%rsp), %xmm0
movq 0x27c8(%rsp), %rax
movups %xmm0, (%rax)
movq 0xba8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xba8(%rsp)
movq 0xb58(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xb58(%rsp)
movl 0xaec(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xaec(%rsp)
jmp 0x12d1325
movq 0xbb0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xbb0(%rsp)
movl 0xb0c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xb0c(%rsp)
jmp 0x12d12e3
jmp 0x12d141e
movl 0xbbc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xbbc(%rsp)
jmp 0x12d09e1
movl $0x0, 0x1cc4(%rsp)
jmp 0x12d3150
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movq 0x1c80(%rsp), %rcx
movl 0x1c7c(%rsp), %r8d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1cf0(%rsp)
movq 0x1cf0(%rsp), %rcx
movq %rcx, 0x100(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x10f(%rsp)
je 0x12d14dc
movq 0x100(%rsp), %rax
movq %rax, 0x2a88(%rsp)
movq 0x2a88(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x10f(%rsp)
movb 0x10f(%rsp), %al
testb $0x1, %al
jne 0x12d14e9
jmp 0x12d14f9
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12d3150
movq 0x1cb0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x12d1538
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12f1de0
movl %eax, 0x1cc4(%rsp)
jmp 0x12d3150
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x12d1805
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movq 0x1c80(%rsp), %rcx
movl 0x1c7c(%rsp), %r8d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1ce8(%rsp)
movq 0x1ce8(%rsp), %rcx
movq %rcx, 0xf0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xff(%rsp)
je 0x12d15e2
movq 0xf0(%rsp), %rax
movq %rax, 0x2a90(%rsp)
movq 0x2a90(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xff(%rsp)
movb 0xff(%rsp), %al
testb $0x1, %al
jne 0x12d15ef
jmp 0x12d15ff
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12d3150
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x12d1648
cmpl $0x1, 0x1c5c(%rsp)
jne 0x12d1648
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12f2d60
movl %eax, 0x1cc4(%rsp)
jmp 0x12d3150
movq 0x1cb8(%rsp), %rax
movq %rax, 0x2008(%rsp)
movq 0x2008(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xab8(%rsp)
movq 0x1cb0(%rsp), %rax
movq %rax, 0x2000(%rsp)
movq 0x2000(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xab0(%rsp)
movq 0x1ca8(%rsp), %rax
movq %rax, 0x2578(%rsp)
movq 0x2578(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xaa8(%rsp)
movl $0x0, 0xaa4(%rsp)
movl 0xaa4(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jge 0x12d17f5
movq 0xab0(%rsp), %rax
movq %rax, 0x2638(%rsp)
movq 0x2638(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xa90(%rsp)
movl $0x0, 0xa8c(%rsp)
movl 0xa8c(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jge 0x12d17cb
movq 0xab8(%rsp), %rax
movq %rax, 0x2630(%rsp)
movq 0x2630(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xa70(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0xa70(%rsp), %rsi
leaq 0xa90(%rsp), %rdx
callq 0x12f6cd0
movaps %xmm0, 0xa60(%rsp)
movq 0xaa8(%rsp), %rax
movaps 0xa60(%rsp), %xmm0
movq %rax, 0x27a8(%rsp)
movaps %xmm0, 0x2790(%rsp)
movaps 0x2790(%rsp), %xmm0
movq 0x27a8(%rsp), %rax
movups %xmm0, (%rax)
movq 0xab8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xab8(%rsp)
movq 0xaa8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xaa8(%rsp)
movl 0xa8c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xa8c(%rsp)
jmp 0x12d16fe
movq 0xab0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xab0(%rsp)
movl 0xaa4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xaa4(%rsp)
jmp 0x12d16bc
movl $0x0, 0x1cc4(%rsp)
jmp 0x12d3150
jmp 0x12d3141
movq 0x1cb8(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x12d313f
movq 0x1cb8(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x12d1865
cmpl $0x1, 0x1c7c(%rsp)
jne 0x12d1865
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12f38d0
movl %eax, 0x1cc4(%rsp)
jmp 0x12d3150
movq 0x1cb0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x12d2347
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c70(%rsp), %ecx
movl 0x1c6c(%rsp), %r8d
movq 0x1c60(%rsp), %r9
movl 0x1c5c(%rsp), %r10d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1ce0(%rsp)
movq 0x1ce0(%rsp), %rcx
movq %rcx, 0xe0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xef(%rsp)
je 0x12d1927
movq 0xe0(%rsp), %rax
movq %rax, 0x2a98(%rsp)
movq 0x2a98(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xef(%rsp)
movb 0xef(%rsp), %al
testb $0x1, %al
jne 0x12d1934
jmp 0x12d1944
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12d3150
movl $0x0, 0xa5c(%rsp)
movl 0xa5c(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12d2337
movq 0x1cb8(%rsp), %rax
movq %rax, 0x1ff8(%rsp)
movq 0x1ff8(%rsp), %rax
movq (%rax), %rax
movl 0xa5c(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2628(%rsp)
movq 0x2628(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xa40(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0xa5c(%rsp), %eax
leaq 0x9f0(%rsp), %rdx
movq %rdx, 0x1d88(%rsp)
movq %rcx, 0x1d80(%rsp)
movl %eax, 0x1d7c(%rsp)
movq 0x1d80(%rsp), %rax
movq %rax, 0xd8(%rsp)
movb $0x0, 0x1d7b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1d7c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x9f0(%rsp), %r10
movq %r10, 0x3418(%rsp)
movl %r9d, 0x3414(%rsp)
movl %r8d, 0x3410(%rsp)
movl %edi, 0x340c(%rsp)
movq %rsi, 0x3400(%rsp)
movq %rdx, 0x33f8(%rsp)
movl %ecx, 0x33f4(%rsp)
movq %rax, 0x33e8(%rsp)
movq 0x3418(%rsp), %rcx
movq %rcx, 0xd0(%rsp)
movq 0x3400(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x33f8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x33f4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x33e8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3414(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3410(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x340c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3470(%rsp)
movl $0x10, 0x346c(%rsp)
movq 0x3470(%rsp), %rax
movslq 0x346c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x346c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xd8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xa18(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12d1b69
movq 0xd8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xa30(%rsp)
movb $0x1, 0x1d7b(%rsp)
testb $0x1, 0x1d7b(%rsp)
jne 0x12d1ca4
leaq 0x9f0(%rsp), %rax
movq %rax, 0x21b0(%rsp)
movq 0x21b0(%rsp), %rax
movq %rax, 0x3b10(%rsp)
movq 0x3b10(%rsp), %rax
movq %rax, 0xc8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d1c47
movq 0xc8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b0c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b0c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b08(%rsp)
cmpl $0x1, 0x3b08(%rsp)
jne 0x12d1c47
movq 0xc8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d1c18
movq 0xc8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d1c16
jmp 0x12d1c45
movq 0xc8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d58(%rsp)
cmpq $0x0, 0x3d58(%rsp)
je 0x12d1c43
movq 0x3d58(%rsp), %rdi
callq 0x5f480
jmp 0x12d1c45
jmp 0x12d1c47
movq 0xc8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d1ca2
movq %rax, %rdi
callq 0x678a0
jmp 0x12d1ca4
leaq 0x9f0(%rsp), %rax
movq %rax, 0x1ff0(%rsp)
movq 0x1ff0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xb8(%rsp)
leaq 0x9f0(%rsp), %rax
movq %rax, 0x2300(%rsp)
movq 0x2300(%rsp), %rax
movq %rax, 0x3870(%rsp)
movq 0x3870(%rsp), %rax
movq %rax, 0xc0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d1d8f
movq 0xc0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x386c(%rsp) # imm = 0xFFFFFFFF
movl 0x386c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3868(%rsp)
cmpl $0x1, 0x3868(%rsp)
jne 0x12d1d8f
movq 0xc0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d1d60
movq 0xc0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d1d5e
jmp 0x12d1d8d
movq 0xc0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ea8(%rsp)
cmpq $0x0, 0x3ea8(%rsp)
je 0x12d1d8b
movq 0x3ea8(%rsp), %rdi
callq 0x5f480
jmp 0x12d1d8d
jmp 0x12d1d8f
movq 0xc0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d1dea
movq %rax, %rdi
callq 0x678a0
movq 0xb8(%rsp), %rax
movq %rax, 0xa38(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0xa5c(%rsp), %eax
leaq 0x9a0(%rsp), %rdx
movq %rdx, 0x2350(%rsp)
movq %rcx, 0x2348(%rsp)
movl %eax, 0x2344(%rsp)
movq 0x2348(%rsp), %rax
movq %rax, 0xb0(%rsp)
movb $0x0, 0x2343(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2344(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x9a0(%rsp), %r10
movq %r10, 0x2e68(%rsp)
movl %r9d, 0x2e64(%rsp)
movl %r8d, 0x2e60(%rsp)
movl %edi, 0x2e5c(%rsp)
movq %rsi, 0x2e50(%rsp)
movq %rdx, 0x2e48(%rsp)
movl %ecx, 0x2e44(%rsp)
movq %rax, 0x2e38(%rsp)
movq 0x2e68(%rsp), %rcx
movq %rcx, 0xa8(%rsp)
movq 0x2e50(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2e48(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2e44(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2e38(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2e64(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2e60(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2e5c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3610(%rsp)
movl $0x10, 0x360c(%rsp)
movq 0x3610(%rsp), %rax
movslq 0x360c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x360c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xb0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x9c8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12d1fb6
movq 0xb0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x9e0(%rsp)
movb $0x1, 0x2343(%rsp)
testb $0x1, 0x2343(%rsp)
jne 0x12d20f1
leaq 0x9a0(%rsp), %rax
movq %rax, 0x2358(%rsp)
movq 0x2358(%rsp), %rax
movq %rax, 0x3820(%rsp)
movq 0x3820(%rsp), %rax
movq %rax, 0xa0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d2094
movq 0xa0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x381c(%rsp) # imm = 0xFFFFFFFF
movl 0x381c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3818(%rsp)
cmpl $0x1, 0x3818(%rsp)
jne 0x12d2094
movq 0xa0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d2065
movq 0xa0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d2063
jmp 0x12d2092
movq 0xa0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ed0(%rsp)
cmpq $0x0, 0x3ed0(%rsp)
je 0x12d2090
movq 0x3ed0(%rsp), %rdi
callq 0x5f480
jmp 0x12d2092
jmp 0x12d2094
movq 0xa0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d20ef
movq %rax, %rdi
callq 0x678a0
jmp 0x12d20f1
leaq 0x9a0(%rsp), %rax
movq %rax, 0x2570(%rsp)
movq 0x2570(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x90(%rsp)
leaq 0x9a0(%rsp), %rax
movq %rax, 0x2308(%rsp)
movq 0x2308(%rsp), %rax
movq %rax, 0x3860(%rsp)
movq 0x3860(%rsp), %rax
movq %rax, 0x98(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d21dc
movq 0x98(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x385c(%rsp) # imm = 0xFFFFFFFF
movl 0x385c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3858(%rsp)
cmpl $0x1, 0x3858(%rsp)
jne 0x12d21dc
movq 0x98(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d21ad
movq 0x98(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d21ab
jmp 0x12d21da
movq 0x98(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3eb0(%rsp)
cmpq $0x0, 0x3eb0(%rsp)
je 0x12d21d8
movq 0x3eb0(%rsp), %rdi
callq 0x5f480
jmp 0x12d21da
jmp 0x12d21dc
movq 0x98(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d2237
movq %rax, %rdi
callq 0x678a0
movq 0x90(%rsp), %rax
movq %rax, 0x9e8(%rsp)
movl $0x0, 0x99c(%rsp)
movl 0x99c(%rsp), %eax
cmpl 0x1c68(%rsp), %eax
jge 0x12d231f
movq 0xa38(%rsp), %rax
movq %rax, 0x2620(%rsp)
movq 0x2620(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x980(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0xa40(%rsp), %rsi
leaq 0x980(%rsp), %rdx
callq 0x12f6cd0
movaps %xmm0, 0x970(%rsp)
movq 0x9e8(%rsp), %rax
movaps 0x970(%rsp), %xmm0
movq %rax, 0x2788(%rsp)
movaps %xmm0, 0x2770(%rsp)
movaps 0x2770(%rsp), %xmm0
movq 0x2788(%rsp), %rax
movups %xmm0, (%rax)
movq 0xa38(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xa38(%rsp)
movq 0x9e8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x9e8(%rsp)
movl 0x99c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x99c(%rsp)
jmp 0x12d2252
jmp 0x12d2321
movl 0xa5c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xa5c(%rsp)
jmp 0x12d194f
movl $0x0, 0x1cc4(%rsp)
jmp 0x12d3150
movq 0x1cb0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x12d2db0
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c6c(%rsp), %ecx
movq 0x1c60(%rsp), %r8
movl 0x1c5c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1cd8(%rsp)
movq 0x1cd8(%rsp), %rcx
movq %rcx, 0x80(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x8f(%rsp)
je 0x12d23fc
movq 0x80(%rsp), %rax
movq %rax, 0x2aa0(%rsp)
movq 0x2aa0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x8f(%rsp)
movb 0x8f(%rsp), %al
testb $0x1, %al
jne 0x12d2409
jmp 0x12d2419
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12d3150
movl $0x0, 0x96c(%rsp)
movl 0x96c(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12d2da0
movq 0x1cb8(%rsp), %rax
movq %rax, 0x1fe8(%rsp)
movq 0x1fe8(%rsp), %rax
movq (%rax), %rax
movl 0x96c(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2618(%rsp)
movq 0x2618(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x950(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x96c(%rsp), %eax
leaq 0x900(%rsp), %rdx
movq %rdx, 0x1d70(%rsp)
movq %rcx, 0x1d68(%rsp)
movl %eax, 0x1d64(%rsp)
movq 0x1d68(%rsp), %rax
movq %rax, 0x78(%rsp)
movb $0x0, 0x1d63(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1d64(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x900(%rsp), %r10
movq %r10, 0x3450(%rsp)
movl %r9d, 0x344c(%rsp)
movl %r8d, 0x3448(%rsp)
movl %edi, 0x3444(%rsp)
movq %rsi, 0x3438(%rsp)
movq %rdx, 0x3430(%rsp)
movl %ecx, 0x342c(%rsp)
movq %rax, 0x3420(%rsp)
movq 0x3450(%rsp), %rcx
movq %rcx, 0x70(%rsp)
movq 0x3438(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3430(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x342c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3420(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x344c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3448(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3444(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3460(%rsp)
movl $0x10, 0x345c(%rsp)
movq 0x3460(%rsp), %rax
movslq 0x345c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x345c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x78(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x928(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12d2632
movq 0x78(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x940(%rsp)
movb $0x1, 0x1d63(%rsp)
testb $0x1, 0x1d63(%rsp)
jne 0x12d275b
leaq 0x900(%rsp), %rax
movq %rax, 0x21b8(%rsp)
movq 0x21b8(%rsp), %rax
movq %rax, 0x3b00(%rsp)
movq 0x3b00(%rsp), %rax
movq %rax, 0x68(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d2701
movq 0x68(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3afc(%rsp) # imm = 0xFFFFFFFF
movl 0x3afc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3af8(%rsp)
cmpl $0x1, 0x3af8(%rsp)
jne 0x12d2701
movq 0x68(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d26d5
movq 0x68(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d26d3
jmp 0x12d26ff
movq 0x68(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d60(%rsp)
cmpq $0x0, 0x3d60(%rsp)
je 0x12d26fd
movq 0x3d60(%rsp), %rdi
callq 0x5f480
jmp 0x12d26ff
jmp 0x12d2701
movq 0x68(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d2759
movq %rax, %rdi
callq 0x678a0
jmp 0x12d275b
leaq 0x900(%rsp), %rax
movq %rax, 0x1fe0(%rsp)
movq 0x1fe0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x58(%rsp)
leaq 0x900(%rsp), %rax
movq %rax, 0x2310(%rsp)
movq 0x2310(%rsp), %rax
movq %rax, 0x3850(%rsp)
movq 0x3850(%rsp), %rax
movq %rax, 0x60(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d2834
movq 0x60(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x384c(%rsp) # imm = 0xFFFFFFFF
movl 0x384c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3848(%rsp)
cmpl $0x1, 0x3848(%rsp)
jne 0x12d2834
movq 0x60(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d2808
movq 0x60(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d2806
jmp 0x12d2832
movq 0x60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3eb8(%rsp)
cmpq $0x0, 0x3eb8(%rsp)
je 0x12d2830
movq 0x3eb8(%rsp), %rdi
callq 0x5f480
jmp 0x12d2832
jmp 0x12d2834
movq 0x60(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d288c
movq %rax, %rdi
callq 0x678a0
movq 0x58(%rsp), %rax
movq %rax, 0x948(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x96c(%rsp), %eax
leaq 0x8b0(%rsp), %rdx
movq %rdx, 0x2330(%rsp)
movq %rcx, 0x2328(%rsp)
movl %eax, 0x2324(%rsp)
movq 0x2328(%rsp), %rax
movq %rax, 0x50(%rsp)
movb $0x0, 0x2323(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2324(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x8b0(%rsp), %r10
movq %r10, 0x2ea0(%rsp)
movl %r9d, 0x2e9c(%rsp)
movl %r8d, 0x2e98(%rsp)
movl %edi, 0x2e94(%rsp)
movq %rsi, 0x2e88(%rsp)
movq %rdx, 0x2e80(%rsp)
movl %ecx, 0x2e7c(%rsp)
movq %rax, 0x2e70(%rsp)
movq 0x2ea0(%rsp), %rcx
movq %rcx, 0x48(%rsp)
movq 0x2e88(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2e80(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2e7c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2e70(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2e9c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2e98(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2e94(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3600(%rsp)
movl $0x10, 0x35fc(%rsp)
movq 0x3600(%rsp), %rax
movslq 0x35fc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x35fc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x50(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x8d8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12d2a49
movq 0x50(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x8f0(%rsp)
movb $0x1, 0x2323(%rsp)
testb $0x1, 0x2323(%rsp)
jne 0x12d2b72
leaq 0x8b0(%rsp), %rax
movq %rax, 0x2338(%rsp)
movq 0x2338(%rsp), %rax
movq %rax, 0x3830(%rsp)
movq 0x3830(%rsp), %rax
movq %rax, 0x40(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d2b18
movq 0x40(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x382c(%rsp) # imm = 0xFFFFFFFF
movl 0x382c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3828(%rsp)
cmpl $0x1, 0x3828(%rsp)
jne 0x12d2b18
movq 0x40(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d2aec
movq 0x40(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d2aea
jmp 0x12d2b16
movq 0x40(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ec8(%rsp)
cmpq $0x0, 0x3ec8(%rsp)
je 0x12d2b14
movq 0x3ec8(%rsp), %rdi
callq 0x5f480
jmp 0x12d2b16
jmp 0x12d2b18
movq 0x40(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d2b70
movq %rax, %rdi
callq 0x678a0
jmp 0x12d2b72
leaq 0x8b0(%rsp), %rax
movq %rax, 0x2568(%rsp)
movq 0x2568(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x30(%rsp)
leaq 0x8b0(%rsp), %rax
movq %rax, 0x2318(%rsp)
movq 0x2318(%rsp), %rax
movq %rax, 0x3840(%rsp)
movq 0x3840(%rsp), %rax
movq %rax, 0x38(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d2c4b
movq 0x38(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x383c(%rsp) # imm = 0xFFFFFFFF
movl 0x383c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3838(%rsp)
cmpl $0x1, 0x3838(%rsp)
jne 0x12d2c4b
movq 0x38(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d2c1f
movq 0x38(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d2c1d
jmp 0x12d2c49
movq 0x38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ec0(%rsp)
cmpq $0x0, 0x3ec0(%rsp)
je 0x12d2c47
movq 0x3ec0(%rsp), %rdi
callq 0x5f480
jmp 0x12d2c49
jmp 0x12d2c4b
movq 0x38(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d2ca3
movq %rax, %rdi
callq 0x678a0
movq 0x30(%rsp), %rax
movq %rax, 0x8f8(%rsp)
movl $0x0, 0x8ac(%rsp)
movl 0x8ac(%rsp), %eax
cmpl 0x1c68(%rsp), %eax
jge 0x12d2d88
movq 0x948(%rsp), %rax
movq %rax, 0x2610(%rsp)
movq 0x2610(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x890(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x950(%rsp), %rsi
leaq 0x890(%rsp), %rdx
callq 0x12f6cd0
movaps %xmm0, 0x880(%rsp)
movq 0x8f8(%rsp), %rax
movaps 0x880(%rsp), %xmm0
movq %rax, 0x2768(%rsp)
movaps %xmm0, 0x2750(%rsp)
movaps 0x2750(%rsp), %xmm0
movq 0x2768(%rsp), %rax
movups %xmm0, (%rax)
movq 0x948(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x948(%rsp)
movq 0x8f8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x8f8(%rsp)
movl 0x8ac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x8ac(%rsp)
jmp 0x12d2cbb
jmp 0x12d2d8a
movl 0x96c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x96c(%rsp)
jmp 0x12d2424
movl $0x0, 0x1cc4(%rsp)
jmp 0x12d3150
movq 0x1cb0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x12d3025
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movq 0x1c60(%rsp), %rcx
movl 0x1c5c(%rsp), %r8d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1cd0(%rsp)
movq 0x1cd0(%rsp), %rcx
movq %rcx, 0x20(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x2f(%rsp)
je 0x12d2e4e
movq 0x20(%rsp), %rax
movq %rax, 0x2aa8(%rsp)
movq 0x2aa8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x2f(%rsp)
movb 0x2f(%rsp), %al
testb $0x1, %al
jne 0x12d2e58
jmp 0x12d2e68
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12d3150
movq 0x1cb8(%rsp), %rax
movq %rax, 0x1fd8(%rsp)
movq 0x1fd8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x878(%rsp)
movq 0x1cb0(%rsp), %rax
movq %rax, 0x1fd0(%rsp)
movq 0x1fd0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x870(%rsp)
movq 0x1ca8(%rsp), %rax
movq %rax, 0x2560(%rsp)
movq 0x2560(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x868(%rsp)
movl $0x0, 0x864(%rsp)
movl 0x864(%rsp), %eax
cmpl 0x1c74(%rsp), %eax
jge 0x12d3015
movq 0x878(%rsp), %rax
movq %rax, 0x2608(%rsp)
movq 0x2608(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x850(%rsp)
movl $0x0, 0x84c(%rsp)
movl 0x84c(%rsp), %eax
cmpl 0x1c78(%rsp), %eax
jge 0x12d2feb
movq 0x870(%rsp), %rax
movq %rax, 0x2600(%rsp)
movq 0x2600(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x830(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x850(%rsp), %rsi
leaq 0x830(%rsp), %rdx
callq 0x12f6cd0
movaps %xmm0, 0x820(%rsp)
movq 0x868(%rsp), %rax
movaps 0x820(%rsp), %xmm0
movq %rax, 0x2748(%rsp)
movaps %xmm0, 0x2730(%rsp)
movaps 0x2730(%rsp), %xmm0
movq 0x2748(%rsp), %rax
movups %xmm0, (%rax)
movq 0x870(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x870(%rsp)
movq 0x868(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x868(%rsp)
movl 0x84c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x84c(%rsp)
jmp 0x12d2f1e
movq 0x878(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x878(%rsp)
movl 0x864(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x864(%rsp)
jmp 0x12d2edc
movl $0x0, 0x1cc4(%rsp)
jmp 0x12d3150
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x12d313d
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movq 0x1c80(%rsp), %rdx
movl 0x1c7c(%rsp), %ecx
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6be00
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1cc8(%rsp)
movq 0x1cc8(%rsp), %rcx
movq %rcx, 0x10(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1f(%rsp)
je 0x12d30bb
movq 0x10(%rsp), %rax
movq %rax, 0x2ab0(%rsp)
movq 0x2ab0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1f(%rsp)
movb 0x1f(%rsp), %al
testb $0x1, %al
jne 0x12d30c5
jmp 0x12d30d2
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12d3150
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x12d3118
cmpl $0x1, 0x1c5c(%rsp)
jne 0x12d3118
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12f2d60
movl %eax, 0x1cc4(%rsp)
jmp 0x12d3150
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12f1de0
jmp 0x12d313f
jmp 0x12d3141
jmp 0x12d3143
jmp 0x12d3145
movl $0x0, 0x1cc4(%rsp)
movl 0x1cc4(%rsp), %eax
addq $0x3f58, %rsp # imm = 0x3F58
retq
nop
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,835
|
int ncnn::binary_op_pack4<ncnn::BinaryOp_x86_functor::binary_op_pow>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op_pack4(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int size = w * h * d;
size_t elemsize = a.elemsize;
int elempack = a.elempack;
int w1 = b.w;
int h1 = b.h;
int d1 = b.d;
int channels1 = b.c;
int size1 = w1 * h1 * d1;
size_t elemsize1 = b.elemsize;
int elempack1 = b.elempack;
if (a.dims == 4)
{
if (b.dims == 4)
{
// type 29
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
c.create(w, h, d, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 3)
{
// type 28
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
for (int y = 0; y < h; y++)
{
__m128 _b0 = _mm_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
ptr1 += 4;
}
}
}
return 0;
}
if (b.dims == 2)
{
// type 27
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
__m128 _b0 = _mm_loadu_ps(ptr1);
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
}
ptr1 += 4;
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1 && elempack1 == 1)
{
// type 25
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 26
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
__m128 _b0 = _mm_loadu_ps((const float*)b + q * 4);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
}
return 0;
}
}
else if (a.dims == 3)
{
if (b.dims == 4)
{
// type 23
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
for (int y = 0; y < h1; y++)
{
__m128 _a0 = _mm_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m128 _p = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
ptr += 4;
}
}
}
return 0;
}
if (b.dims == 3)
{
if (w1 == 1 && h1 == 1 && channels1 == channels)
{
// special type 1
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
float* outptr = c.channel(q);
const float* b0 = b.channel(q);
__m128 _b0 = _mm_loadu_ps(b0);
for (int i = 0; i < size; i++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
}
return 0;
}
if (w1 == w && h1 == h && channels1 == 1 && elempack1 == 1)
{
// special type 2
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b;
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _p1 = _mm_set1_ps(*ptr1);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
ptr1 += 1;
outptr += 4;
}
}
return 0;
}
if (w == 1 && h == 1 && channels1 == channels)
{
// special type 3
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* a0 = a.channel(q);
float* outptr = c.channel(q);
const float* ptr1 = b.channel(q);
__m128 _a0 = _mm_loadu_ps(a0);
for (int i = 0; i < size1; i++)
{
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
}
return 0;
}
if (w1 == w && h1 == h && channels == 1 && elempack == 1)
{
// special type 4
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a;
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m128 _p = _mm_set1_ps(*ptr);
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_storeu_ps(outptr, _outp);
ptr += 1;
ptr1 += 4;
outptr += 4;
}
}
return 0;
}
if (w != 1 && w1 == 1 && h1 == h && channels1 == channels)
{
// special type 5
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
__m128 _p1 = _mm_loadu_ps(ptr1 + y * 4);
for (int x = 0; x < w; x++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
}
}
return 0;
}
if (w1 == w && h != 1 && h1 == 1 && channels1 == channels)
{
// special type 6
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _p1 = _mm_loadu_ps(ptr1 + x * 4);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
}
}
return 0;
}
if (w1 != 1 && w == 1 && h1 == h && channels1 == channels)
{
// special type 7
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
__m128 _p = _mm_loadu_ps(ptr + y * 4);
for (int x = 0; x < w1; x++)
{
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
}
}
return 0;
}
if (w1 == w && h1 != 1 && h == 1 && channels1 == channels)
{
// special type 8
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
__m128 _p = _mm_loadu_ps(ptr + x * 4);
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
}
}
return 0;
}
// type 19
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 18
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row<const float>(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
__m128 _b0 = _mm_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
ptr1 += 4;
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1 && elempack1 == 1)
{
// type 16
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 17
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
__m128 _b0 = _mm_loadu_ps((const float*)b + q * 4);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
}
return 0;
}
}
else if (a.dims == 2)
{
if (b.dims == 4)
{
// type 22
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
__m128 _a0 = _mm_loadu_ps(ptr);
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
__m128 _p = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
}
ptr += 4;
}
}
return 0;
}
if (b.dims == 3)
{
// type 14
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row<const float>(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
__m128 _a0 = _mm_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
ptr += 4;
}
}
return 0;
}
c.create(w, h, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 13
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
if (b.dims == 1)
{
c.create(w, h, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1 && elempack1 == 1)
{
// type 11
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 12
const float* ptr = a;
const float* ptr1 = b;
float* outptr = c;
for (int y = 0; y < h; y++)
{
__m128 _b0 = _mm_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m128 _p = _mm_loadu_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_storeu_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
ptr1 += 4;
}
return 0;
}
}
else if (a.dims == 1)
{
if (a.w == 1 && elempack == 1)
{
// type 2 3 4 20
return binary_op_2_3_4_20<Op>(a, b, c, opt);
}
if (b.dims == 4)
{
// type 21
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
__m128 _a0 = _mm_loadu_ps((const float*)a + q * 4);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
}
return 0;
}
if (b.dims == 3)
{
// type 9
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
__m128 _a0 = _mm_loadu_ps((const float*)a + q * 4);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
}
return 0;
}
if (b.dims == 2)
{
// type 8
c.create(w1, h1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
const float* ptr = a;
const float* ptr1 = b;
float* outptr = c;
for (int y = 0; y < h1; y++)
{
__m128 _a0 = _mm_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m128 _p1 = _mm_loadu_ps(ptr1);
__m128 _outp = op.func_pack4(_a0, _p1);
_mm_storeu_ps(outptr, _outp);
ptr1 += 4;
outptr += 4;
}
ptr += 4;
}
return 0;
}
if (b.dims == 1)
{
c.create(w, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1 && elempack1 == 1)
{
// type 6
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 7
binary_op_7_13_19_29<Op>(a, b, c, opt);
}
}
return 0;
}
|
subq $0x3f58, %rsp # imm = 0x3F58
movq %rdi, 0x1cb8(%rsp)
movq %rsi, 0x1cb0(%rsp)
movq %rdx, 0x1ca8(%rsp)
movq %rcx, 0x1ca0(%rsp)
movq 0x1cb8(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x1c98(%rsp)
movq 0x1cb8(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x1c94(%rsp)
movq 0x1cb8(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x1c90(%rsp)
movq 0x1cb8(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x1c8c(%rsp)
movl 0x1c98(%rsp), %eax
imull 0x1c94(%rsp), %eax
imull 0x1c90(%rsp), %eax
movl %eax, 0x1c88(%rsp)
movq 0x1cb8(%rsp), %rax
movq 0x10(%rax), %rax
movq %rax, 0x1c80(%rsp)
movq 0x1cb8(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x1c7c(%rsp)
movq 0x1cb0(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x1c78(%rsp)
movq 0x1cb0(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x1c74(%rsp)
movq 0x1cb0(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x1c70(%rsp)
movq 0x1cb0(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x1c6c(%rsp)
movl 0x1c78(%rsp), %eax
imull 0x1c74(%rsp), %eax
imull 0x1c70(%rsp), %eax
movl %eax, 0x1c68(%rsp)
movq 0x1cb0(%rsp), %rax
movq 0x10(%rax), %rax
movq %rax, 0x1c60(%rsp)
movq 0x1cb0(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x1c5c(%rsp)
movq 0x1cb8(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x12d5792
movq 0x1cb0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x12d32f0
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12f4440
movl %eax, 0x1cc4(%rsp)
jmp 0x12e2360
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movl 0x1c90(%rsp), %ecx
movl 0x1c8c(%rsp), %r8d
movq 0x1c80(%rsp), %r9
movl 0x1c7c(%rsp), %r10d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d58(%rsp)
movq 0x1d58(%rsp), %rcx
movq %rcx, 0x810(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x81f(%rsp)
je 0x12d33a0
movq 0x810(%rsp), %rax
movq %rax, 0x2a20(%rsp)
movq 0x2a20(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x81f(%rsp)
movb 0x81f(%rsp), %al
testb $0x1, %al
jne 0x12d33ad
jmp 0x12d33bd
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12e2360
movq 0x1cb0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x12d4278
movl $0x0, 0x1c58(%rsp)
movl 0x1c58(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jge 0x12d4268
movq 0x1cb8(%rsp), %rcx
movl 0x1c58(%rsp), %eax
leaq 0x1c08(%rsp), %rdx
movq %rdx, 0x1fc8(%rsp)
movq %rcx, 0x1fc0(%rsp)
movl %eax, 0x1fbc(%rsp)
movq 0x1fc0(%rsp), %rax
movq %rax, 0x808(%rsp)
movb $0x0, 0x1fbb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1fbc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1c08(%rsp), %r10
movq %r10, 0x2ed8(%rsp)
movl %r9d, 0x2ed4(%rsp)
movl %r8d, 0x2ed0(%rsp)
movl %edi, 0x2ecc(%rsp)
movq %rsi, 0x2ec0(%rsp)
movq %rdx, 0x2eb8(%rsp)
movl %ecx, 0x2eb4(%rsp)
movq %rax, 0x2ea8(%rsp)
movq 0x2ed8(%rsp), %rcx
movq %rcx, 0x800(%rsp)
movq 0x2ec0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2eb8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2eb4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ea8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2ed4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2ed0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2ecc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x35f0(%rsp)
movl $0x10, 0x35ec(%rsp)
movq 0x35f0(%rsp), %rax
movslq 0x35ec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x35ec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x808(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1c30(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12d35aa
movq 0x808(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1c48(%rsp)
movb $0x1, 0x1fbb(%rsp)
testb $0x1, 0x1fbb(%rsp)
jne 0x12d36e5
leaq 0x1c08(%rsp), %rax
movq %rax, 0x20f0(%rsp)
movq 0x20f0(%rsp), %rax
movq %rax, 0x3c90(%rsp)
movq 0x3c90(%rsp), %rax
movq %rax, 0x7f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d3688
movq 0x7f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c8c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c8c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c88(%rsp)
cmpl $0x1, 0x3c88(%rsp)
jne 0x12d3688
movq 0x7f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d3659
movq 0x7f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d3657
jmp 0x12d3686
movq 0x7f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3c98(%rsp)
cmpq $0x0, 0x3c98(%rsp)
je 0x12d3684
movq 0x3c98(%rsp), %rdi
callq 0x5f480
jmp 0x12d3686
jmp 0x12d3688
movq 0x7f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d36e3
movq %rax, %rdi
callq 0x678a0
jmp 0x12d36e5
leaq 0x1c08(%rsp), %rax
movq %rax, 0x20e8(%rsp)
movq 0x20e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7e8(%rsp)
leaq 0x1c08(%rsp), %rax
movq %rax, 0x21c0(%rsp)
movq 0x21c0(%rsp), %rax
movq %rax, 0x3af0(%rsp)
movq 0x3af0(%rsp), %rax
movq %rax, 0x7f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d37d0
movq 0x7f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3aec(%rsp) # imm = 0xFFFFFFFF
movl 0x3aec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ae8(%rsp)
cmpl $0x1, 0x3ae8(%rsp)
jne 0x12d37d0
movq 0x7f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d37a1
movq 0x7f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d379f
jmp 0x12d37ce
movq 0x7f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d68(%rsp)
cmpq $0x0, 0x3d68(%rsp)
je 0x12d37cc
movq 0x3d68(%rsp), %rdi
callq 0x5f480
jmp 0x12d37ce
jmp 0x12d37d0
movq 0x7f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d382b
movq %rax, %rdi
callq 0x678a0
movq 0x7e8(%rsp), %rax
movq %rax, 0x1c50(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x1c58(%rsp), %eax
leaq 0x1bb8(%rsp), %rdx
movq %rdx, 0x1fb0(%rsp)
movq %rcx, 0x1fa8(%rsp)
movl %eax, 0x1fa4(%rsp)
movq 0x1fa8(%rsp), %rax
movq %rax, 0x7e0(%rsp)
movb $0x0, 0x1fa3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1fa4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1bb8(%rsp), %r10
movq %r10, 0x2f10(%rsp)
movl %r9d, 0x2f0c(%rsp)
movl %r8d, 0x2f08(%rsp)
movl %edi, 0x2f04(%rsp)
movq %rsi, 0x2ef8(%rsp)
movq %rdx, 0x2ef0(%rsp)
movl %ecx, 0x2eec(%rsp)
movq %rax, 0x2ee0(%rsp)
movq 0x2f10(%rsp), %rcx
movq %rcx, 0x7d8(%rsp)
movq 0x2ef8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2ef0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2eec(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ee0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2f0c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f08(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f04(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x35e0(%rsp)
movl $0x10, 0x35dc(%rsp)
movq 0x35e0(%rsp), %rax
movslq 0x35dc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x35dc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7e0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1be0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12d39f7
movq 0x7e0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1bf8(%rsp)
movb $0x1, 0x1fa3(%rsp)
testb $0x1, 0x1fa3(%rsp)
jne 0x12d3b32
leaq 0x1bb8(%rsp), %rax
movq %rax, 0x20f8(%rsp)
movq 0x20f8(%rsp), %rax
movq %rax, 0x3c80(%rsp)
movq 0x3c80(%rsp), %rax
movq %rax, 0x7d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d3ad5
movq 0x7d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c7c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c7c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c78(%rsp)
cmpl $0x1, 0x3c78(%rsp)
jne 0x12d3ad5
movq 0x7d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d3aa6
movq 0x7d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d3aa4
jmp 0x12d3ad3
movq 0x7d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ca0(%rsp)
cmpq $0x0, 0x3ca0(%rsp)
je 0x12d3ad1
movq 0x3ca0(%rsp), %rdi
callq 0x5f480
jmp 0x12d3ad3
jmp 0x12d3ad5
movq 0x7d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d3b30
movq %rax, %rdi
callq 0x678a0
jmp 0x12d3b32
leaq 0x1bb8(%rsp), %rax
movq %rax, 0x20e0(%rsp)
movq 0x20e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7c0(%rsp)
leaq 0x1bb8(%rsp), %rax
movq %rax, 0x21c8(%rsp)
movq 0x21c8(%rsp), %rax
movq %rax, 0x3ae0(%rsp)
movq 0x3ae0(%rsp), %rax
movq %rax, 0x7c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d3c1d
movq 0x7c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3adc(%rsp) # imm = 0xFFFFFFFF
movl 0x3adc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ad8(%rsp)
cmpl $0x1, 0x3ad8(%rsp)
jne 0x12d3c1d
movq 0x7c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d3bee
movq 0x7c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d3bec
jmp 0x12d3c1b
movq 0x7c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d70(%rsp)
cmpq $0x0, 0x3d70(%rsp)
je 0x12d3c19
movq 0x3d70(%rsp), %rdi
callq 0x5f480
jmp 0x12d3c1b
jmp 0x12d3c1d
movq 0x7c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d3c78
movq %rax, %rdi
callq 0x678a0
movq 0x7c0(%rsp), %rax
movq %rax, 0x1c00(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x1c58(%rsp), %eax
leaq 0x1b68(%rsp), %rdx
movq %rdx, 0x2550(%rsp)
movq %rcx, 0x2548(%rsp)
movl %eax, 0x2544(%rsp)
movq 0x2548(%rsp), %rax
movq %rax, 0x7b8(%rsp)
movb $0x0, 0x2543(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2544(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1b68(%rsp), %r10
movq %r10, 0x2ae8(%rsp)
movl %r9d, 0x2ae4(%rsp)
movl %r8d, 0x2ae0(%rsp)
movl %edi, 0x2adc(%rsp)
movq %rsi, 0x2ad0(%rsp)
movq %rdx, 0x2ac8(%rsp)
movl %ecx, 0x2ac4(%rsp)
movq %rax, 0x2ab8(%rsp)
movq 0x2ae8(%rsp), %rcx
movq %rcx, 0x7b0(%rsp)
movq 0x2ad0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2ac8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2ac4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ab8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2ae4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2ae0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2adc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3710(%rsp)
movl $0x10, 0x370c(%rsp)
movq 0x3710(%rsp), %rax
movslq 0x370c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x370c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7b8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1b90(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12d3e44
movq 0x7b8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1ba8(%rsp)
movb $0x1, 0x2543(%rsp)
testb $0x1, 0x2543(%rsp)
jne 0x12d3f7f
leaq 0x1b68(%rsp), %rax
movq %rax, 0x2558(%rsp)
movq 0x2558(%rsp), %rax
movq %rax, 0x3720(%rsp)
movq 0x3720(%rsp), %rax
movq %rax, 0x7a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d3f22
movq 0x7a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x371c(%rsp) # imm = 0xFFFFFFFF
movl 0x371c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3718(%rsp)
cmpl $0x1, 0x3718(%rsp)
jne 0x12d3f22
movq 0x7a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d3ef3
movq 0x7a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d3ef1
jmp 0x12d3f20
movq 0x7a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f50(%rsp)
cmpq $0x0, 0x3f50(%rsp)
je 0x12d3f1e
movq 0x3f50(%rsp), %rdi
callq 0x5f480
jmp 0x12d3f20
jmp 0x12d3f22
movq 0x7a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d3f7d
movq %rax, %rdi
callq 0x678a0
jmp 0x12d3f7f
leaq 0x1b68(%rsp), %rax
movq %rax, 0x25f8(%rsp)
movq 0x25f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x798(%rsp)
leaq 0x1b68(%rsp), %rax
movq %rax, 0x21d0(%rsp)
movq 0x21d0(%rsp), %rax
movq %rax, 0x3ad0(%rsp)
movq 0x3ad0(%rsp), %rax
movq %rax, 0x7a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d406a
movq 0x7a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3acc(%rsp) # imm = 0xFFFFFFFF
movl 0x3acc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ac8(%rsp)
cmpl $0x1, 0x3ac8(%rsp)
jne 0x12d406a
movq 0x7a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d403b
movq 0x7a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d4039
jmp 0x12d4068
movq 0x7a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d78(%rsp)
cmpq $0x0, 0x3d78(%rsp)
je 0x12d4066
movq 0x3d78(%rsp), %rdi
callq 0x5f480
jmp 0x12d4068
jmp 0x12d406a
movq 0x7a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d40c5
movq %rax, %rdi
callq 0x678a0
movq 0x798(%rsp), %rax
movq %rax, 0x1bb0(%rsp)
movl $0x0, 0x1b64(%rsp)
movl 0x1b64(%rsp), %eax
cmpl 0x1c90(%rsp), %eax
jge 0x12d4250
movl $0x0, 0x1b60(%rsp)
movl 0x1b60(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jge 0x12d4238
movq 0x1c00(%rsp), %rax
movq %rax, 0x2728(%rsp)
movq 0x2728(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1b50(%rsp)
movl $0x0, 0x1b4c(%rsp)
movl 0x1b4c(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jge 0x12d420e
movq 0x1c50(%rsp), %rax
movq %rax, 0x2720(%rsp)
movq 0x2720(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1b30(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x1b30(%rsp), %rsi
leaq 0x1b50(%rsp), %rdx
callq 0x12f6d40
movaps %xmm0, 0x1b20(%rsp)
movq 0x1bb0(%rsp), %rax
movaps 0x1b20(%rsp), %xmm0
movq %rax, 0x29a8(%rsp)
movaps %xmm0, 0x2990(%rsp)
movaps 0x2990(%rsp), %xmm0
movq 0x29a8(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1c50(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1c50(%rsp)
movq 0x1bb0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1bb0(%rsp)
movl 0x1b4c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b4c(%rsp)
jmp 0x12d4141
movq 0x1c00(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1c00(%rsp)
movl 0x1b60(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b60(%rsp)
jmp 0x12d40ff
jmp 0x12d423a
movl 0x1b64(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b64(%rsp)
jmp 0x12d40e0
jmp 0x12d4252
movl 0x1c58(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c58(%rsp)
jmp 0x12d33da
movl $0x0, 0x1cc4(%rsp)
jmp 0x12e2360
movq 0x1cb0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x12d4d2f
movl $0x0, 0x1b1c(%rsp)
movl 0x1b1c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jge 0x12d4d1f
movq 0x1cb8(%rsp), %rcx
movl 0x1b1c(%rsp), %eax
leaq 0x1ac8(%rsp), %rdx
movq %rdx, 0x1f98(%rsp)
movq %rcx, 0x1f90(%rsp)
movl %eax, 0x1f8c(%rsp)
movq 0x1f90(%rsp), %rax
movq %rax, 0x790(%rsp)
movb $0x0, 0x1f8b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1f8c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1ac8(%rsp), %r10
movq %r10, 0x2f48(%rsp)
movl %r9d, 0x2f44(%rsp)
movl %r8d, 0x2f40(%rsp)
movl %edi, 0x2f3c(%rsp)
movq %rsi, 0x2f30(%rsp)
movq %rdx, 0x2f28(%rsp)
movl %ecx, 0x2f24(%rsp)
movq %rax, 0x2f18(%rsp)
movq 0x2f48(%rsp), %rcx
movq %rcx, 0x788(%rsp)
movq 0x2f30(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2f28(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2f24(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2f18(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2f44(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f40(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f3c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x35d0(%rsp)
movl $0x10, 0x35cc(%rsp)
movq 0x35d0(%rsp), %rax
movslq 0x35cc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x35cc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x790(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1af0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12d4465
movq 0x790(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1b08(%rsp)
movb $0x1, 0x1f8b(%rsp)
testb $0x1, 0x1f8b(%rsp)
jne 0x12d45a0
leaq 0x1ac8(%rsp), %rax
movq %rax, 0x2100(%rsp)
movq 0x2100(%rsp), %rax
movq %rax, 0x3c70(%rsp)
movq 0x3c70(%rsp), %rax
movq %rax, 0x780(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d4543
movq 0x780(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c6c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c6c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c68(%rsp)
cmpl $0x1, 0x3c68(%rsp)
jne 0x12d4543
movq 0x780(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d4514
movq 0x780(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d4512
jmp 0x12d4541
movq 0x780(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ca8(%rsp)
cmpq $0x0, 0x3ca8(%rsp)
je 0x12d453f
movq 0x3ca8(%rsp), %rdi
callq 0x5f480
jmp 0x12d4541
jmp 0x12d4543
movq 0x780(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d459e
movq %rax, %rdi
callq 0x678a0
jmp 0x12d45a0
leaq 0x1ac8(%rsp), %rax
movq %rax, 0x20d8(%rsp)
movq 0x20d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x770(%rsp)
leaq 0x1ac8(%rsp), %rax
movq %rax, 0x21d8(%rsp)
movq 0x21d8(%rsp), %rax
movq %rax, 0x3ac0(%rsp)
movq 0x3ac0(%rsp), %rax
movq %rax, 0x778(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d468b
movq 0x778(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3abc(%rsp) # imm = 0xFFFFFFFF
movl 0x3abc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ab8(%rsp)
cmpl $0x1, 0x3ab8(%rsp)
jne 0x12d468b
movq 0x778(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d465c
movq 0x778(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d465a
jmp 0x12d4689
movq 0x778(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d80(%rsp)
cmpq $0x0, 0x3d80(%rsp)
je 0x12d4687
movq 0x3d80(%rsp), %rdi
callq 0x5f480
jmp 0x12d4689
jmp 0x12d468b
movq 0x778(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d46e6
movq %rax, %rdi
callq 0x678a0
movq 0x770(%rsp), %rax
movq %rax, 0x1b10(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x1b1c(%rsp), %eax
movq %rcx, 0x29c8(%rsp)
movl %eax, 0x29c4(%rsp)
movq 0x29c8(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x29c4(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x1ac0(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x1b1c(%rsp), %eax
leaq 0x1a70(%rsp), %rdx
movq %rdx, 0x2530(%rsp)
movq %rcx, 0x2528(%rsp)
movl %eax, 0x2524(%rsp)
movq 0x2528(%rsp), %rax
movq %rax, 0x768(%rsp)
movb $0x0, 0x2523(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2524(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1a70(%rsp), %r10
movq %r10, 0x2b20(%rsp)
movl %r9d, 0x2b1c(%rsp)
movl %r8d, 0x2b18(%rsp)
movl %edi, 0x2b14(%rsp)
movq %rsi, 0x2b08(%rsp)
movq %rdx, 0x2b00(%rsp)
movl %ecx, 0x2afc(%rsp)
movq %rax, 0x2af0(%rsp)
movq 0x2b20(%rsp), %rcx
movq %rcx, 0x760(%rsp)
movq 0x2b08(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2b00(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2afc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2af0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2b1c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2b18(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2b14(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3700(%rsp)
movl $0x10, 0x36fc(%rsp)
movq 0x3700(%rsp), %rax
movslq 0x36fc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x36fc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x768(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1a98(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12d48fb
movq 0x768(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1ab0(%rsp)
movb $0x1, 0x2523(%rsp)
testb $0x1, 0x2523(%rsp)
jne 0x12d4a36
leaq 0x1a70(%rsp), %rax
movq %rax, 0x2538(%rsp)
movq 0x2538(%rsp), %rax
movq %rax, 0x3730(%rsp)
movq 0x3730(%rsp), %rax
movq %rax, 0x758(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d49d9
movq 0x758(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x372c(%rsp) # imm = 0xFFFFFFFF
movl 0x372c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3728(%rsp)
cmpl $0x1, 0x3728(%rsp)
jne 0x12d49d9
movq 0x758(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d49aa
movq 0x758(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d49a8
jmp 0x12d49d7
movq 0x758(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f48(%rsp)
cmpq $0x0, 0x3f48(%rsp)
je 0x12d49d5
movq 0x3f48(%rsp), %rdi
callq 0x5f480
jmp 0x12d49d7
jmp 0x12d49d9
movq 0x758(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d4a34
movq %rax, %rdi
callq 0x678a0
jmp 0x12d4a36
leaq 0x1a70(%rsp), %rax
movq %rax, 0x25f0(%rsp)
movq 0x25f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x748(%rsp)
leaq 0x1a70(%rsp), %rax
movq %rax, 0x21e0(%rsp)
movq 0x21e0(%rsp), %rax
movq %rax, 0x3ab0(%rsp)
movq 0x3ab0(%rsp), %rax
movq %rax, 0x750(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d4b21
movq 0x750(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3aac(%rsp) # imm = 0xFFFFFFFF
movl 0x3aac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3aa8(%rsp)
cmpl $0x1, 0x3aa8(%rsp)
jne 0x12d4b21
movq 0x750(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d4af2
movq 0x750(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d4af0
jmp 0x12d4b1f
movq 0x750(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d88(%rsp)
cmpq $0x0, 0x3d88(%rsp)
je 0x12d4b1d
movq 0x3d88(%rsp), %rdi
callq 0x5f480
jmp 0x12d4b1f
jmp 0x12d4b21
movq 0x750(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d4b7c
movq %rax, %rdi
callq 0x678a0
movq 0x748(%rsp), %rax
movq %rax, 0x1ab8(%rsp)
movl $0x0, 0x1a6c(%rsp)
movl 0x1a6c(%rsp), %eax
cmpl 0x1c90(%rsp), %eax
jge 0x12d4d07
movq 0x1ac0(%rsp), %rax
movq %rax, 0x2718(%rsp)
movq 0x2718(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1a50(%rsp)
movl $0x0, 0x1a4c(%rsp)
movl 0x1a4c(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jge 0x12d4cdd
movl $0x0, 0x1a48(%rsp)
movl 0x1a48(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jge 0x12d4cc5
movq 0x1b10(%rsp), %rax
movq %rax, 0x2710(%rsp)
movq 0x2710(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1a30(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x1a30(%rsp), %rsi
leaq 0x1a50(%rsp), %rdx
callq 0x12f6d40
movaps %xmm0, 0x1a20(%rsp)
movq 0x1ab8(%rsp), %rax
movaps 0x1a20(%rsp), %xmm0
movq %rax, 0x2988(%rsp)
movaps %xmm0, 0x2970(%rsp)
movaps 0x2970(%rsp), %xmm0
movq 0x2988(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1b10(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1b10(%rsp)
movq 0x1ab8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1ab8(%rsp)
movl 0x1a48(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1a48(%rsp)
jmp 0x12d4bf8
jmp 0x12d4cc7
movl 0x1a4c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1a4c(%rsp)
jmp 0x12d4bd9
movq 0x1ac0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1ac0(%rsp)
movl 0x1a6c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1a6c(%rsp)
jmp 0x12d4b97
jmp 0x12d4d09
movl 0x1b1c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b1c(%rsp)
jmp 0x12d4295
movl $0x0, 0x1cc4(%rsp)
jmp 0x12e2360
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x12d578d
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x12d4d8a
cmpl $0x1, 0x1c5c(%rsp)
jne 0x12d4d8a
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12f53c0
movl %eax, 0x1cc4(%rsp)
jmp 0x12e2360
movl $0x0, 0x1a1c(%rsp)
movl 0x1a1c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jge 0x12d577d
movq 0x1cb8(%rsp), %rcx
movl 0x1a1c(%rsp), %eax
leaq 0x19c8(%rsp), %rdx
movq %rdx, 0x1f80(%rsp)
movq %rcx, 0x1f78(%rsp)
movl %eax, 0x1f74(%rsp)
movq 0x1f78(%rsp), %rax
movq %rax, 0x740(%rsp)
movb $0x0, 0x1f73(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1f74(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x19c8(%rsp), %r10
movq %r10, 0x2f80(%rsp)
movl %r9d, 0x2f7c(%rsp)
movl %r8d, 0x2f78(%rsp)
movl %edi, 0x2f74(%rsp)
movq %rsi, 0x2f68(%rsp)
movq %rdx, 0x2f60(%rsp)
movl %ecx, 0x2f5c(%rsp)
movq %rax, 0x2f50(%rsp)
movq 0x2f80(%rsp), %rcx
movq %rcx, 0x738(%rsp)
movq 0x2f68(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2f60(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2f5c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2f50(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2f7c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f78(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f74(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x35c0(%rsp)
movl $0x10, 0x35bc(%rsp)
movq 0x35c0(%rsp), %rax
movslq 0x35bc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x35bc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x740(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x19f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12d4f65
movq 0x740(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1a08(%rsp)
movb $0x1, 0x1f73(%rsp)
testb $0x1, 0x1f73(%rsp)
jne 0x12d50a0
leaq 0x19c8(%rsp), %rax
movq %rax, 0x2108(%rsp)
movq 0x2108(%rsp), %rax
movq %rax, 0x3c60(%rsp)
movq 0x3c60(%rsp), %rax
movq %rax, 0x730(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d5043
movq 0x730(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c5c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c5c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c58(%rsp)
cmpl $0x1, 0x3c58(%rsp)
jne 0x12d5043
movq 0x730(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d5014
movq 0x730(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d5012
jmp 0x12d5041
movq 0x730(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cb0(%rsp)
cmpq $0x0, 0x3cb0(%rsp)
je 0x12d503f
movq 0x3cb0(%rsp), %rdi
callq 0x5f480
jmp 0x12d5041
jmp 0x12d5043
movq 0x730(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d509e
movq %rax, %rdi
callq 0x678a0
jmp 0x12d50a0
leaq 0x19c8(%rsp), %rax
movq %rax, 0x20d0(%rsp)
movq 0x20d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x720(%rsp)
leaq 0x19c8(%rsp), %rax
movq %rax, 0x21e8(%rsp)
movq 0x21e8(%rsp), %rax
movq %rax, 0x3aa0(%rsp)
movq 0x3aa0(%rsp), %rax
movq %rax, 0x728(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d518b
movq 0x728(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a9c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a9c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a98(%rsp)
cmpl $0x1, 0x3a98(%rsp)
jne 0x12d518b
movq 0x728(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d515c
movq 0x728(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d515a
jmp 0x12d5189
movq 0x728(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d90(%rsp)
cmpq $0x0, 0x3d90(%rsp)
je 0x12d5187
movq 0x3d90(%rsp), %rdi
callq 0x5f480
jmp 0x12d5189
jmp 0x12d518b
movq 0x728(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d51e6
movq %rax, %rdi
callq 0x678a0
movq 0x720(%rsp), %rax
movq %rax, 0x1a10(%rsp)
movq 0x1cb0(%rsp), %rax
movq %rax, 0x20c8(%rsp)
movq 0x20c8(%rsp), %rax
movq (%rax), %rax
movl 0x1a1c(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2708(%rsp)
movq 0x2708(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x19b0(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x1a1c(%rsp), %eax
leaq 0x1960(%rsp), %rdx
movq %rdx, 0x2510(%rsp)
movq %rcx, 0x2508(%rsp)
movl %eax, 0x2504(%rsp)
movq 0x2508(%rsp), %rax
movq %rax, 0x718(%rsp)
movb $0x0, 0x2503(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2504(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1960(%rsp), %r10
movq %r10, 0x2b58(%rsp)
movl %r9d, 0x2b54(%rsp)
movl %r8d, 0x2b50(%rsp)
movl %edi, 0x2b4c(%rsp)
movq %rsi, 0x2b40(%rsp)
movq %rdx, 0x2b38(%rsp)
movl %ecx, 0x2b34(%rsp)
movq %rax, 0x2b28(%rsp)
movq 0x2b58(%rsp), %rcx
movq %rcx, 0x710(%rsp)
movq 0x2b40(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2b38(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2b34(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2b28(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2b54(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2b50(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2b4c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x36f0(%rsp)
movl $0x10, 0x36ec(%rsp)
movq 0x36f0(%rsp), %rax
movslq 0x36ec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x36ec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x718(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1988(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12d53fc
movq 0x718(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x19a0(%rsp)
movb $0x1, 0x2503(%rsp)
testb $0x1, 0x2503(%rsp)
jne 0x12d5537
leaq 0x1960(%rsp), %rax
movq %rax, 0x2518(%rsp)
movq 0x2518(%rsp), %rax
movq %rax, 0x3740(%rsp)
movq 0x3740(%rsp), %rax
movq %rax, 0x708(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d54da
movq 0x708(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x373c(%rsp) # imm = 0xFFFFFFFF
movl 0x373c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3738(%rsp)
cmpl $0x1, 0x3738(%rsp)
jne 0x12d54da
movq 0x708(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d54ab
movq 0x708(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d54a9
jmp 0x12d54d8
movq 0x708(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f40(%rsp)
cmpq $0x0, 0x3f40(%rsp)
je 0x12d54d6
movq 0x3f40(%rsp), %rdi
callq 0x5f480
jmp 0x12d54d8
jmp 0x12d54da
movq 0x708(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d5535
movq %rax, %rdi
callq 0x678a0
jmp 0x12d5537
leaq 0x1960(%rsp), %rax
movq %rax, 0x25e8(%rsp)
movq 0x25e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6f8(%rsp)
leaq 0x1960(%rsp), %rax
movq %rax, 0x21f0(%rsp)
movq 0x21f0(%rsp), %rax
movq %rax, 0x3a90(%rsp)
movq 0x3a90(%rsp), %rax
movq %rax, 0x700(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d5622
movq 0x700(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a8c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a8c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a88(%rsp)
cmpl $0x1, 0x3a88(%rsp)
jne 0x12d5622
movq 0x700(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d55f3
movq 0x700(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d55f1
jmp 0x12d5620
movq 0x700(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d98(%rsp)
cmpq $0x0, 0x3d98(%rsp)
je 0x12d561e
movq 0x3d98(%rsp), %rdi
callq 0x5f480
jmp 0x12d5620
jmp 0x12d5622
movq 0x700(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d567d
movq %rax, %rdi
callq 0x678a0
movq 0x6f8(%rsp), %rax
movq %rax, 0x19a8(%rsp)
movl $0x0, 0x195c(%rsp)
movl 0x195c(%rsp), %eax
cmpl 0x1c88(%rsp), %eax
jge 0x12d5765
movq 0x1a10(%rsp), %rax
movq %rax, 0x2700(%rsp)
movq 0x2700(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1940(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x1940(%rsp), %rsi
leaq 0x19b0(%rsp), %rdx
callq 0x12f6d40
movaps %xmm0, 0x1930(%rsp)
movq 0x19a8(%rsp), %rax
movaps 0x1930(%rsp), %xmm0
movq %rax, 0x2968(%rsp)
movaps %xmm0, 0x2950(%rsp)
movaps 0x2950(%rsp), %xmm0
movq 0x2968(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1a10(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1a10(%rsp)
movq 0x19a8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x19a8(%rsp)
movl 0x195c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x195c(%rsp)
jmp 0x12d5698
jmp 0x12d5767
movl 0x1a1c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1a1c(%rsp)
jmp 0x12d4d95
movl $0x0, 0x1cc4(%rsp)
jmp 0x12e2360
jmp 0x12e2355
movq 0x1cb8(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x12def7e
movq 0x1cb0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x12d672c
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c70(%rsp), %ecx
movl 0x1c6c(%rsp), %r8d
movq 0x1c60(%rsp), %r9
movl 0x1c5c(%rsp), %r10d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d50(%rsp)
movq 0x1d50(%rsp), %rcx
movq %rcx, 0x6e8(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x6f7(%rsp)
je 0x12d5866
movq 0x6e8(%rsp), %rax
movq %rax, 0x2a28(%rsp)
movq 0x2a28(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x6f7(%rsp)
movb 0x6f7(%rsp), %al
testb $0x1, %al
jne 0x12d5873
jmp 0x12d5883
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12e2360
movl $0x0, 0x192c(%rsp)
movl 0x192c(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12d671c
movq 0x1cb8(%rsp), %rcx
movl 0x192c(%rsp), %eax
leaq 0x18d8(%rsp), %rdx
movq %rdx, 0x1f68(%rsp)
movq %rcx, 0x1f60(%rsp)
movl %eax, 0x1f5c(%rsp)
movq 0x1f60(%rsp), %rax
movq %rax, 0x6e0(%rsp)
movb $0x0, 0x1f5b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1f5c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x18d8(%rsp), %r10
movq %r10, 0x2fb8(%rsp)
movl %r9d, 0x2fb4(%rsp)
movl %r8d, 0x2fb0(%rsp)
movl %edi, 0x2fac(%rsp)
movq %rsi, 0x2fa0(%rsp)
movq %rdx, 0x2f98(%rsp)
movl %ecx, 0x2f94(%rsp)
movq %rax, 0x2f88(%rsp)
movq 0x2fb8(%rsp), %rcx
movq %rcx, 0x6d8(%rsp)
movq 0x2fa0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2f98(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2f94(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2f88(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2fb4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2fb0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2fac(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x35b0(%rsp)
movl $0x10, 0x35ac(%rsp)
movq 0x35b0(%rsp), %rax
movslq 0x35ac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x35ac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6e0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1900(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12d5a5e
movq 0x6e0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1918(%rsp)
movb $0x1, 0x1f5b(%rsp)
testb $0x1, 0x1f5b(%rsp)
jne 0x12d5b99
leaq 0x18d8(%rsp), %rax
movq %rax, 0x2110(%rsp)
movq 0x2110(%rsp), %rax
movq %rax, 0x3c50(%rsp)
movq 0x3c50(%rsp), %rax
movq %rax, 0x6d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d5b3c
movq 0x6d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c4c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c4c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c48(%rsp)
cmpl $0x1, 0x3c48(%rsp)
jne 0x12d5b3c
movq 0x6d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d5b0d
movq 0x6d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d5b0b
jmp 0x12d5b3a
movq 0x6d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cb8(%rsp)
cmpq $0x0, 0x3cb8(%rsp)
je 0x12d5b38
movq 0x3cb8(%rsp), %rdi
callq 0x5f480
jmp 0x12d5b3a
jmp 0x12d5b3c
movq 0x6d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d5b97
movq %rax, %rdi
callq 0x678a0
jmp 0x12d5b99
leaq 0x18d8(%rsp), %rax
movq %rax, 0x20c0(%rsp)
movq 0x20c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6c0(%rsp)
leaq 0x18d8(%rsp), %rax
movq %rax, 0x21f8(%rsp)
movq 0x21f8(%rsp), %rax
movq %rax, 0x3a80(%rsp)
movq 0x3a80(%rsp), %rax
movq %rax, 0x6c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d5c84
movq 0x6c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a7c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a7c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a78(%rsp)
cmpl $0x1, 0x3a78(%rsp)
jne 0x12d5c84
movq 0x6c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d5c55
movq 0x6c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d5c53
jmp 0x12d5c82
movq 0x6c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3da0(%rsp)
cmpq $0x0, 0x3da0(%rsp)
je 0x12d5c80
movq 0x3da0(%rsp), %rdi
callq 0x5f480
jmp 0x12d5c82
jmp 0x12d5c84
movq 0x6c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d5cdf
movq %rax, %rdi
callq 0x678a0
movq 0x6c0(%rsp), %rax
movq %rax, 0x1920(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x192c(%rsp), %eax
leaq 0x1888(%rsp), %rdx
movq %rdx, 0x1f50(%rsp)
movq %rcx, 0x1f48(%rsp)
movl %eax, 0x1f44(%rsp)
movq 0x1f48(%rsp), %rax
movq %rax, 0x6b8(%rsp)
movb $0x0, 0x1f43(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1f44(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1888(%rsp), %r10
movq %r10, 0x2ff0(%rsp)
movl %r9d, 0x2fec(%rsp)
movl %r8d, 0x2fe8(%rsp)
movl %edi, 0x2fe4(%rsp)
movq %rsi, 0x2fd8(%rsp)
movq %rdx, 0x2fd0(%rsp)
movl %ecx, 0x2fcc(%rsp)
movq %rax, 0x2fc0(%rsp)
movq 0x2ff0(%rsp), %rcx
movq %rcx, 0x6b0(%rsp)
movq 0x2fd8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2fd0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2fcc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2fc0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2fec(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2fe8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2fe4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x35a0(%rsp)
movl $0x10, 0x359c(%rsp)
movq 0x35a0(%rsp), %rax
movslq 0x359c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x359c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6b8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x18b0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12d5eab
movq 0x6b8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x18c8(%rsp)
movb $0x1, 0x1f43(%rsp)
testb $0x1, 0x1f43(%rsp)
jne 0x12d5fe6
leaq 0x1888(%rsp), %rax
movq %rax, 0x2118(%rsp)
movq 0x2118(%rsp), %rax
movq %rax, 0x3c40(%rsp)
movq 0x3c40(%rsp), %rax
movq %rax, 0x6a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d5f89
movq 0x6a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c3c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c3c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c38(%rsp)
cmpl $0x1, 0x3c38(%rsp)
jne 0x12d5f89
movq 0x6a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d5f5a
movq 0x6a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d5f58
jmp 0x12d5f87
movq 0x6a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cc0(%rsp)
cmpq $0x0, 0x3cc0(%rsp)
je 0x12d5f85
movq 0x3cc0(%rsp), %rdi
callq 0x5f480
jmp 0x12d5f87
jmp 0x12d5f89
movq 0x6a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d5fe4
movq %rax, %rdi
callq 0x678a0
jmp 0x12d5fe6
leaq 0x1888(%rsp), %rax
movq %rax, 0x20b8(%rsp)
movq 0x20b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x698(%rsp)
leaq 0x1888(%rsp), %rax
movq %rax, 0x2200(%rsp)
movq 0x2200(%rsp), %rax
movq %rax, 0x3a70(%rsp)
movq 0x3a70(%rsp), %rax
movq %rax, 0x6a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d60d1
movq 0x6a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a6c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a6c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a68(%rsp)
cmpl $0x1, 0x3a68(%rsp)
jne 0x12d60d1
movq 0x6a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d60a2
movq 0x6a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d60a0
jmp 0x12d60cf
movq 0x6a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3da8(%rsp)
cmpq $0x0, 0x3da8(%rsp)
je 0x12d60cd
movq 0x3da8(%rsp), %rdi
callq 0x5f480
jmp 0x12d60cf
jmp 0x12d60d1
movq 0x6a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d612c
movq %rax, %rdi
callq 0x678a0
movq 0x698(%rsp), %rax
movq %rax, 0x18d0(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x192c(%rsp), %eax
leaq 0x1838(%rsp), %rdx
movq %rdx, 0x24f0(%rsp)
movq %rcx, 0x24e8(%rsp)
movl %eax, 0x24e4(%rsp)
movq 0x24e8(%rsp), %rax
movq %rax, 0x690(%rsp)
movb $0x0, 0x24e3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x24e4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1838(%rsp), %r10
movq %r10, 0x2b90(%rsp)
movl %r9d, 0x2b8c(%rsp)
movl %r8d, 0x2b88(%rsp)
movl %edi, 0x2b84(%rsp)
movq %rsi, 0x2b78(%rsp)
movq %rdx, 0x2b70(%rsp)
movl %ecx, 0x2b6c(%rsp)
movq %rax, 0x2b60(%rsp)
movq 0x2b90(%rsp), %rcx
movq %rcx, 0x688(%rsp)
movq 0x2b78(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2b70(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2b6c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2b60(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2b8c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2b88(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2b84(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x36e0(%rsp)
movl $0x10, 0x36dc(%rsp)
movq 0x36e0(%rsp), %rax
movslq 0x36dc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x36dc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x690(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1860(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12d62f8
movq 0x690(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1878(%rsp)
movb $0x1, 0x24e3(%rsp)
testb $0x1, 0x24e3(%rsp)
jne 0x12d6433
leaq 0x1838(%rsp), %rax
movq %rax, 0x24f8(%rsp)
movq 0x24f8(%rsp), %rax
movq %rax, 0x3750(%rsp)
movq 0x3750(%rsp), %rax
movq %rax, 0x680(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d63d6
movq 0x680(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x374c(%rsp) # imm = 0xFFFFFFFF
movl 0x374c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3748(%rsp)
cmpl $0x1, 0x3748(%rsp)
jne 0x12d63d6
movq 0x680(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d63a7
movq 0x680(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d63a5
jmp 0x12d63d4
movq 0x680(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f38(%rsp)
cmpq $0x0, 0x3f38(%rsp)
je 0x12d63d2
movq 0x3f38(%rsp), %rdi
callq 0x5f480
jmp 0x12d63d4
jmp 0x12d63d6
movq 0x680(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d6431
movq %rax, %rdi
callq 0x678a0
jmp 0x12d6433
leaq 0x1838(%rsp), %rax
movq %rax, 0x25e0(%rsp)
movq 0x25e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x670(%rsp)
leaq 0x1838(%rsp), %rax
movq %rax, 0x2208(%rsp)
movq 0x2208(%rsp), %rax
movq %rax, 0x3a60(%rsp)
movq 0x3a60(%rsp), %rax
movq %rax, 0x678(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d651e
movq 0x678(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a5c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a5c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a58(%rsp)
cmpl $0x1, 0x3a58(%rsp)
jne 0x12d651e
movq 0x678(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d64ef
movq 0x678(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d64ed
jmp 0x12d651c
movq 0x678(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3db0(%rsp)
cmpq $0x0, 0x3db0(%rsp)
je 0x12d651a
movq 0x3db0(%rsp), %rdi
callq 0x5f480
jmp 0x12d651c
jmp 0x12d651e
movq 0x678(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d6579
movq %rax, %rdi
callq 0x678a0
movq 0x670(%rsp), %rax
movq %rax, 0x1880(%rsp)
movl $0x0, 0x1834(%rsp)
movl 0x1834(%rsp), %eax
cmpl 0x1c70(%rsp), %eax
jge 0x12d6704
movl $0x0, 0x1830(%rsp)
movl 0x1830(%rsp), %eax
cmpl 0x1c74(%rsp), %eax
jge 0x12d66ec
movq 0x1920(%rsp), %rax
movq %rax, 0x26f8(%rsp)
movq 0x26f8(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1820(%rsp)
movl $0x0, 0x181c(%rsp)
movl 0x181c(%rsp), %eax
cmpl 0x1c78(%rsp), %eax
jge 0x12d66c2
movq 0x18d0(%rsp), %rax
movq %rax, 0x26f0(%rsp)
movq 0x26f0(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1800(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x1820(%rsp), %rsi
leaq 0x1800(%rsp), %rdx
callq 0x12f6d40
movaps %xmm0, 0x17f0(%rsp)
movq 0x1880(%rsp), %rax
movaps 0x17f0(%rsp), %xmm0
movq %rax, 0x2948(%rsp)
movaps %xmm0, 0x2930(%rsp)
movaps 0x2930(%rsp), %xmm0
movq 0x2948(%rsp), %rax
movups %xmm0, (%rax)
movq 0x18d0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x18d0(%rsp)
movq 0x1880(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1880(%rsp)
movl 0x181c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x181c(%rsp)
jmp 0x12d65f5
movq 0x1920(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1920(%rsp)
movl 0x1830(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1830(%rsp)
jmp 0x12d65b3
jmp 0x12d66ee
movl 0x1834(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1834(%rsp)
jmp 0x12d6594
jmp 0x12d6706
movl 0x192c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x192c(%rsp)
jmp 0x12d588e
movl $0x0, 0x1cc4(%rsp)
jmp 0x12e2360
movq 0x1cb0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x12dd9db
cmpl $0x1, 0x1c78(%rsp)
jne 0x12d7657
cmpl $0x1, 0x1c74(%rsp)
jne 0x12d7657
movl 0x1c6c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jne 0x12d7657
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movl 0x1c8c(%rsp), %ecx
movq 0x1c80(%rsp), %r8
movl 0x1c7c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d48(%rsp)
movq 0x1d48(%rsp), %rcx
movq %rcx, 0x660(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x66f(%rsp)
je 0x12d6811
movq 0x660(%rsp), %rax
movq %rax, 0x2a30(%rsp)
movq 0x2a30(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x66f(%rsp)
movb 0x66f(%rsp), %al
testb $0x1, %al
jne 0x12d681e
jmp 0x12d682e
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12e2360
movl $0x0, 0x17ec(%rsp)
movl 0x17ec(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jge 0x12d7647
movq 0x1cb8(%rsp), %rcx
movl 0x17ec(%rsp), %eax
leaq 0x1798(%rsp), %rdx
movq %rdx, 0x1f38(%rsp)
movq %rcx, 0x1f30(%rsp)
movl %eax, 0x1f2c(%rsp)
movq 0x1f30(%rsp), %rax
movq %rax, 0x658(%rsp)
movb $0x0, 0x1f2b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1f2c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1798(%rsp), %r10
movq %r10, 0x3028(%rsp)
movl %r9d, 0x3024(%rsp)
movl %r8d, 0x3020(%rsp)
movl %edi, 0x301c(%rsp)
movq %rsi, 0x3010(%rsp)
movq %rdx, 0x3008(%rsp)
movl %ecx, 0x3004(%rsp)
movq %rax, 0x2ff8(%rsp)
movq 0x3028(%rsp), %rcx
movq %rcx, 0x650(%rsp)
movq 0x3010(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3008(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3004(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ff8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3024(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3020(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x301c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3590(%rsp)
movl $0x10, 0x358c(%rsp)
movq 0x3590(%rsp), %rax
movslq 0x358c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x358c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x658(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x17c0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12d6a09
movq 0x658(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x17d8(%rsp)
movb $0x1, 0x1f2b(%rsp)
testb $0x1, 0x1f2b(%rsp)
jne 0x12d6b44
leaq 0x1798(%rsp), %rax
movq %rax, 0x2120(%rsp)
movq 0x2120(%rsp), %rax
movq %rax, 0x3c30(%rsp)
movq 0x3c30(%rsp), %rax
movq %rax, 0x648(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d6ae7
movq 0x648(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c2c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c2c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c28(%rsp)
cmpl $0x1, 0x3c28(%rsp)
jne 0x12d6ae7
movq 0x648(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d6ab8
movq 0x648(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d6ab6
jmp 0x12d6ae5
movq 0x648(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cc8(%rsp)
cmpq $0x0, 0x3cc8(%rsp)
je 0x12d6ae3
movq 0x3cc8(%rsp), %rdi
callq 0x5f480
jmp 0x12d6ae5
jmp 0x12d6ae7
movq 0x648(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d6b42
movq %rax, %rdi
callq 0x678a0
jmp 0x12d6b44
leaq 0x1798(%rsp), %rax
movq %rax, 0x20b0(%rsp)
movq 0x20b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x638(%rsp)
leaq 0x1798(%rsp), %rax
movq %rax, 0x2210(%rsp)
movq 0x2210(%rsp), %rax
movq %rax, 0x3a50(%rsp)
movq 0x3a50(%rsp), %rax
movq %rax, 0x640(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d6c2f
movq 0x640(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a4c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a4c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a48(%rsp)
cmpl $0x1, 0x3a48(%rsp)
jne 0x12d6c2f
movq 0x640(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d6c00
movq 0x640(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d6bfe
jmp 0x12d6c2d
movq 0x640(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3db8(%rsp)
cmpq $0x0, 0x3db8(%rsp)
je 0x12d6c2b
movq 0x3db8(%rsp), %rdi
callq 0x5f480
jmp 0x12d6c2d
jmp 0x12d6c2f
movq 0x640(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d6c8a
movq %rax, %rdi
callq 0x678a0
movq 0x638(%rsp), %rax
movq %rax, 0x17e0(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x17ec(%rsp), %eax
leaq 0x1748(%rsp), %rdx
movq %rdx, 0x24d0(%rsp)
movq %rcx, 0x24c8(%rsp)
movl %eax, 0x24c4(%rsp)
movq 0x24c8(%rsp), %rax
movq %rax, 0x630(%rsp)
movb $0x0, 0x24c3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x24c4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1748(%rsp), %r10
movq %r10, 0x2bc8(%rsp)
movl %r9d, 0x2bc4(%rsp)
movl %r8d, 0x2bc0(%rsp)
movl %edi, 0x2bbc(%rsp)
movq %rsi, 0x2bb0(%rsp)
movq %rdx, 0x2ba8(%rsp)
movl %ecx, 0x2ba4(%rsp)
movq %rax, 0x2b98(%rsp)
movq 0x2bc8(%rsp), %rcx
movq %rcx, 0x628(%rsp)
movq 0x2bb0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2ba8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2ba4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2b98(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2bc4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2bc0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2bbc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x36d0(%rsp)
movl $0x10, 0x36cc(%rsp)
movq 0x36d0(%rsp), %rax
movslq 0x36cc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x36cc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x630(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1770(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12d6e56
movq 0x630(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1788(%rsp)
movb $0x1, 0x24c3(%rsp)
testb $0x1, 0x24c3(%rsp)
jne 0x12d6f91
leaq 0x1748(%rsp), %rax
movq %rax, 0x24d8(%rsp)
movq 0x24d8(%rsp), %rax
movq %rax, 0x3760(%rsp)
movq 0x3760(%rsp), %rax
movq %rax, 0x620(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d6f34
movq 0x620(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x375c(%rsp) # imm = 0xFFFFFFFF
movl 0x375c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3758(%rsp)
cmpl $0x1, 0x3758(%rsp)
jne 0x12d6f34
movq 0x620(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d6f05
movq 0x620(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d6f03
jmp 0x12d6f32
movq 0x620(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f30(%rsp)
cmpq $0x0, 0x3f30(%rsp)
je 0x12d6f30
movq 0x3f30(%rsp), %rdi
callq 0x5f480
jmp 0x12d6f32
jmp 0x12d6f34
movq 0x620(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d6f8f
movq %rax, %rdi
callq 0x678a0
jmp 0x12d6f91
leaq 0x1748(%rsp), %rax
movq %rax, 0x25d8(%rsp)
movq 0x25d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x610(%rsp)
leaq 0x1748(%rsp), %rax
movq %rax, 0x2218(%rsp)
movq 0x2218(%rsp), %rax
movq %rax, 0x3a40(%rsp)
movq 0x3a40(%rsp), %rax
movq %rax, 0x618(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d707c
movq 0x618(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a3c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a3c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a38(%rsp)
cmpl $0x1, 0x3a38(%rsp)
jne 0x12d707c
movq 0x618(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d704d
movq 0x618(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d704b
jmp 0x12d707a
movq 0x618(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3dc0(%rsp)
cmpq $0x0, 0x3dc0(%rsp)
je 0x12d7078
movq 0x3dc0(%rsp), %rdi
callq 0x5f480
jmp 0x12d707a
jmp 0x12d707c
movq 0x618(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d70d7
movq %rax, %rdi
callq 0x678a0
movq 0x610(%rsp), %rax
movq %rax, 0x1790(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x17ec(%rsp), %eax
leaq 0x16f8(%rsp), %rdx
movq %rdx, 0x1f20(%rsp)
movq %rcx, 0x1f18(%rsp)
movl %eax, 0x1f14(%rsp)
movq 0x1f18(%rsp), %rax
movq %rax, 0x608(%rsp)
movb $0x0, 0x1f13(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1f14(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x16f8(%rsp), %r10
movq %r10, 0x3060(%rsp)
movl %r9d, 0x305c(%rsp)
movl %r8d, 0x3058(%rsp)
movl %edi, 0x3054(%rsp)
movq %rsi, 0x3048(%rsp)
movq %rdx, 0x3040(%rsp)
movl %ecx, 0x303c(%rsp)
movq %rax, 0x3030(%rsp)
movq 0x3060(%rsp), %rcx
movq %rcx, 0x600(%rsp)
movq 0x3048(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3040(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x303c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3030(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x305c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3058(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3054(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3580(%rsp)
movl $0x10, 0x357c(%rsp)
movq 0x3580(%rsp), %rax
movslq 0x357c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x357c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x608(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1720(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12d72a3
movq 0x608(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1738(%rsp)
movb $0x1, 0x1f13(%rsp)
testb $0x1, 0x1f13(%rsp)
jne 0x12d73de
leaq 0x16f8(%rsp), %rax
movq %rax, 0x2128(%rsp)
movq 0x2128(%rsp), %rax
movq %rax, 0x3c20(%rsp)
movq 0x3c20(%rsp), %rax
movq %rax, 0x5f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d7381
movq 0x5f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c1c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c1c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c18(%rsp)
cmpl $0x1, 0x3c18(%rsp)
jne 0x12d7381
movq 0x5f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d7352
movq 0x5f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d7350
jmp 0x12d737f
movq 0x5f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cd0(%rsp)
cmpq $0x0, 0x3cd0(%rsp)
je 0x12d737d
movq 0x3cd0(%rsp), %rdi
callq 0x5f480
jmp 0x12d737f
jmp 0x12d7381
movq 0x5f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d73dc
movq %rax, %rdi
callq 0x678a0
jmp 0x12d73de
leaq 0x16f8(%rsp), %rax
movq %rax, 0x20a8(%rsp)
movq 0x20a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5e8(%rsp)
leaq 0x16f8(%rsp), %rax
movq %rax, 0x2220(%rsp)
movq 0x2220(%rsp), %rax
movq %rax, 0x3a30(%rsp)
movq 0x3a30(%rsp), %rax
movq %rax, 0x5f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d74c9
movq 0x5f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a2c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a2c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a28(%rsp)
cmpl $0x1, 0x3a28(%rsp)
jne 0x12d74c9
movq 0x5f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d749a
movq 0x5f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d7498
jmp 0x12d74c7
movq 0x5f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3dc8(%rsp)
cmpq $0x0, 0x3dc8(%rsp)
je 0x12d74c5
movq 0x3dc8(%rsp), %rdi
callq 0x5f480
jmp 0x12d74c7
jmp 0x12d74c9
movq 0x5f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d7524
movq %rax, %rdi
callq 0x678a0
movq 0x5e8(%rsp), %rax
movq %rax, 0x1740(%rsp)
movq 0x1740(%rsp), %rax
movq %rax, 0x26e8(%rsp)
movq 0x26e8(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x16e0(%rsp)
movl $0x0, 0x16dc(%rsp)
movl 0x16dc(%rsp), %eax
cmpl 0x1c88(%rsp), %eax
jge 0x12d762f
movq 0x17e0(%rsp), %rax
movq %rax, 0x26e0(%rsp)
movq 0x26e0(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x16c0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x16c0(%rsp), %rsi
leaq 0x16e0(%rsp), %rdx
callq 0x12f6d40
movaps %xmm0, 0x16b0(%rsp)
movq 0x1790(%rsp), %rax
movaps 0x16b0(%rsp), %xmm0
movq %rax, 0x2928(%rsp)
movaps %xmm0, 0x2910(%rsp)
movaps 0x2910(%rsp), %xmm0
movq 0x2928(%rsp), %rax
movups %xmm0, (%rax)
movq 0x17e0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x17e0(%rsp)
movq 0x1790(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1790(%rsp)
movl 0x16dc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x16dc(%rsp)
jmp 0x12d7562
jmp 0x12d7631
movl 0x17ec(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x17ec(%rsp)
jmp 0x12d6839
movl $0x0, 0x1cc4(%rsp)
jmp 0x12e2360
movl 0x1c78(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jne 0x12d8184
movl 0x1c74(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jne 0x12d8184
cmpl $0x1, 0x1c6c(%rsp)
jne 0x12d8184
cmpl $0x1, 0x1c5c(%rsp)
jne 0x12d8184
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movl 0x1c8c(%rsp), %ecx
movq 0x1c80(%rsp), %r8
movl 0x1c7c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d40(%rsp)
movq 0x1d40(%rsp), %rcx
movq %rcx, 0x5d8(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x5e7(%rsp)
je 0x12d773e
movq 0x5d8(%rsp), %rax
movq %rax, 0x2a38(%rsp)
movq 0x2a38(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x5e7(%rsp)
movb 0x5e7(%rsp), %al
testb $0x1, %al
jne 0x12d774b
jmp 0x12d775b
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12e2360
movl $0x0, 0x16ac(%rsp)
movl 0x16ac(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jge 0x12d8174
movq 0x1cb8(%rsp), %rcx
movl 0x16ac(%rsp), %eax
leaq 0x1658(%rsp), %rdx
movq %rdx, 0x1f08(%rsp)
movq %rcx, 0x1f00(%rsp)
movl %eax, 0x1efc(%rsp)
movq 0x1f00(%rsp), %rax
movq %rax, 0x5d0(%rsp)
movb $0x0, 0x1efb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1efc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1658(%rsp), %r10
movq %r10, 0x3098(%rsp)
movl %r9d, 0x3094(%rsp)
movl %r8d, 0x3090(%rsp)
movl %edi, 0x308c(%rsp)
movq %rsi, 0x3080(%rsp)
movq %rdx, 0x3078(%rsp)
movl %ecx, 0x3074(%rsp)
movq %rax, 0x3068(%rsp)
movq 0x3098(%rsp), %rcx
movq %rcx, 0x5c8(%rsp)
movq 0x3080(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3078(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3074(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3068(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3094(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3090(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x308c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3570(%rsp)
movl $0x10, 0x356c(%rsp)
movq 0x3570(%rsp), %rax
movslq 0x356c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x356c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5d0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1680(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12d7936
movq 0x5d0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1698(%rsp)
movb $0x1, 0x1efb(%rsp)
testb $0x1, 0x1efb(%rsp)
jne 0x12d7a71
leaq 0x1658(%rsp), %rax
movq %rax, 0x2130(%rsp)
movq 0x2130(%rsp), %rax
movq %rax, 0x3c10(%rsp)
movq 0x3c10(%rsp), %rax
movq %rax, 0x5c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d7a14
movq 0x5c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3c0c(%rsp) # imm = 0xFFFFFFFF
movl 0x3c0c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c08(%rsp)
cmpl $0x1, 0x3c08(%rsp)
jne 0x12d7a14
movq 0x5c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d79e5
movq 0x5c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d79e3
jmp 0x12d7a12
movq 0x5c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cd8(%rsp)
cmpq $0x0, 0x3cd8(%rsp)
je 0x12d7a10
movq 0x3cd8(%rsp), %rdi
callq 0x5f480
jmp 0x12d7a12
jmp 0x12d7a14
movq 0x5c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d7a6f
movq %rax, %rdi
callq 0x678a0
jmp 0x12d7a71
leaq 0x1658(%rsp), %rax
movq %rax, 0x20a0(%rsp)
movq 0x20a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5b0(%rsp)
leaq 0x1658(%rsp), %rax
movq %rax, 0x2228(%rsp)
movq 0x2228(%rsp), %rax
movq %rax, 0x3a20(%rsp)
movq 0x3a20(%rsp), %rax
movq %rax, 0x5b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d7b5c
movq 0x5b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a1c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a1c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a18(%rsp)
cmpl $0x1, 0x3a18(%rsp)
jne 0x12d7b5c
movq 0x5b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d7b2d
movq 0x5b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d7b2b
jmp 0x12d7b5a
movq 0x5b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3dd0(%rsp)
cmpq $0x0, 0x3dd0(%rsp)
je 0x12d7b58
movq 0x3dd0(%rsp), %rdi
callq 0x5f480
jmp 0x12d7b5a
jmp 0x12d7b5c
movq 0x5b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d7bb7
movq %rax, %rdi
callq 0x678a0
movq 0x5b0(%rsp), %rax
movq %rax, 0x16a0(%rsp)
movq 0x1cb0(%rsp), %rax
movq %rax, 0x2098(%rsp)
movq 0x2098(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1650(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x16ac(%rsp), %eax
leaq 0x1600(%rsp), %rdx
movq %rdx, 0x24b0(%rsp)
movq %rcx, 0x24a8(%rsp)
movl %eax, 0x24a4(%rsp)
movq 0x24a8(%rsp), %rax
movq %rax, 0x5a8(%rsp)
movb $0x0, 0x24a3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x24a4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1600(%rsp), %r10
movq %r10, 0x2c00(%rsp)
movl %r9d, 0x2bfc(%rsp)
movl %r8d, 0x2bf8(%rsp)
movl %edi, 0x2bf4(%rsp)
movq %rsi, 0x2be8(%rsp)
movq %rdx, 0x2be0(%rsp)
movl %ecx, 0x2bdc(%rsp)
movq %rax, 0x2bd0(%rsp)
movq 0x2c00(%rsp), %rcx
movq %rcx, 0x5a0(%rsp)
movq 0x2be8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2be0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2bdc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2bd0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2bfc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2bf8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2bf4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x36c0(%rsp)
movl $0x10, 0x36bc(%rsp)
movq 0x36c0(%rsp), %rax
movslq 0x36bc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x36bc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5a8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1628(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12d7da6
movq 0x5a8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1640(%rsp)
movb $0x1, 0x24a3(%rsp)
testb $0x1, 0x24a3(%rsp)
jne 0x12d7ee1
leaq 0x1600(%rsp), %rax
movq %rax, 0x24b8(%rsp)
movq 0x24b8(%rsp), %rax
movq %rax, 0x3770(%rsp)
movq 0x3770(%rsp), %rax
movq %rax, 0x598(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d7e84
movq 0x598(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x376c(%rsp) # imm = 0xFFFFFFFF
movl 0x376c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3768(%rsp)
cmpl $0x1, 0x3768(%rsp)
jne 0x12d7e84
movq 0x598(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d7e55
movq 0x598(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d7e53
jmp 0x12d7e82
movq 0x598(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f28(%rsp)
cmpq $0x0, 0x3f28(%rsp)
je 0x12d7e80
movq 0x3f28(%rsp), %rdi
callq 0x5f480
jmp 0x12d7e82
jmp 0x12d7e84
movq 0x598(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d7edf
movq %rax, %rdi
callq 0x678a0
jmp 0x12d7ee1
leaq 0x1600(%rsp), %rax
movq %rax, 0x25d0(%rsp)
movq 0x25d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x588(%rsp)
leaq 0x1600(%rsp), %rax
movq %rax, 0x2230(%rsp)
movq 0x2230(%rsp), %rax
movq %rax, 0x3a10(%rsp)
movq 0x3a10(%rsp), %rax
movq %rax, 0x590(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d7fcc
movq 0x590(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3a0c(%rsp) # imm = 0xFFFFFFFF
movl 0x3a0c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a08(%rsp)
cmpl $0x1, 0x3a08(%rsp)
jne 0x12d7fcc
movq 0x590(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d7f9d
movq 0x590(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d7f9b
jmp 0x12d7fca
movq 0x590(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3dd8(%rsp)
cmpq $0x0, 0x3dd8(%rsp)
je 0x12d7fc8
movq 0x3dd8(%rsp), %rdi
callq 0x5f480
jmp 0x12d7fca
jmp 0x12d7fcc
movq 0x590(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d8027
movq %rax, %rdi
callq 0x678a0
movq 0x588(%rsp), %rax
movq %rax, 0x1648(%rsp)
movl $0x0, 0x15fc(%rsp)
movl 0x15fc(%rsp), %eax
cmpl 0x1c88(%rsp), %eax
jge 0x12d815c
movq 0x16a0(%rsp), %rax
movq %rax, 0x26d8(%rsp)
movq 0x26d8(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x15e0(%rsp)
movq 0x1650(%rsp), %rax
movss (%rax), %xmm0
movss %xmm0, 0x2a00(%rsp)
movaps 0x2a00(%rsp), %xmm0
shufps $0x0, %xmm0, %xmm0 # xmm0 = xmm0[0,0,0,0]
movaps %xmm0, 0x29f0(%rsp)
movaps 0x29f0(%rsp), %xmm0
movaps %xmm0, 0x15d0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x15e0(%rsp), %rsi
leaq 0x15d0(%rsp), %rdx
callq 0x12f6d40
movaps %xmm0, 0x15c0(%rsp)
movq 0x1648(%rsp), %rax
movaps 0x15c0(%rsp), %xmm0
movq %rax, 0x2908(%rsp)
movaps %xmm0, 0x28f0(%rsp)
movaps 0x28f0(%rsp), %xmm0
movq 0x2908(%rsp), %rax
movups %xmm0, (%rax)
movq 0x16a0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x16a0(%rsp)
movq 0x1650(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x1650(%rsp)
movq 0x1648(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1648(%rsp)
movl 0x15fc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x15fc(%rsp)
jmp 0x12d8042
jmp 0x12d815e
movl 0x16ac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x16ac(%rsp)
jmp 0x12d7766
movl $0x0, 0x1cc4(%rsp)
jmp 0x12e2360
cmpl $0x1, 0x1c98(%rsp)
jne 0x12d909d
cmpl $0x1, 0x1c94(%rsp)
jne 0x12d909d
movl 0x1c6c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jne 0x12d909d
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c6c(%rsp), %ecx
movq 0x1c60(%rsp), %r8
movl 0x1c5c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d38(%rsp)
movq 0x1d38(%rsp), %rcx
movq %rcx, 0x578(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x587(%rsp)
je 0x12d8257
movq 0x578(%rsp), %rax
movq %rax, 0x2a40(%rsp)
movq 0x2a40(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x587(%rsp)
movb 0x587(%rsp), %al
testb $0x1, %al
jne 0x12d8264
jmp 0x12d8274
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12e2360
movl $0x0, 0x15bc(%rsp)
movl 0x15bc(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12d908d
movq 0x1cb8(%rsp), %rcx
movl 0x15bc(%rsp), %eax
leaq 0x1568(%rsp), %rdx
movq %rdx, 0x1ef0(%rsp)
movq %rcx, 0x1ee8(%rsp)
movl %eax, 0x1ee4(%rsp)
movq 0x1ee8(%rsp), %rax
movq %rax, 0x570(%rsp)
movb $0x0, 0x1ee3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1ee4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1568(%rsp), %r10
movq %r10, 0x30d0(%rsp)
movl %r9d, 0x30cc(%rsp)
movl %r8d, 0x30c8(%rsp)
movl %edi, 0x30c4(%rsp)
movq %rsi, 0x30b8(%rsp)
movq %rdx, 0x30b0(%rsp)
movl %ecx, 0x30ac(%rsp)
movq %rax, 0x30a0(%rsp)
movq 0x30d0(%rsp), %rcx
movq %rcx, 0x568(%rsp)
movq 0x30b8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x30b0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x30ac(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x30a0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x30cc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x30c8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x30c4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3560(%rsp)
movl $0x10, 0x355c(%rsp)
movq 0x3560(%rsp), %rax
movslq 0x355c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x355c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x570(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1590(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12d844f
movq 0x570(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x15a8(%rsp)
movb $0x1, 0x1ee3(%rsp)
testb $0x1, 0x1ee3(%rsp)
jne 0x12d858a
leaq 0x1568(%rsp), %rax
movq %rax, 0x2138(%rsp)
movq 0x2138(%rsp), %rax
movq %rax, 0x3c00(%rsp)
movq 0x3c00(%rsp), %rax
movq %rax, 0x560(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d852d
movq 0x560(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bfc(%rsp) # imm = 0xFFFFFFFF
movl 0x3bfc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3bf8(%rsp)
cmpl $0x1, 0x3bf8(%rsp)
jne 0x12d852d
movq 0x560(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d84fe
movq 0x560(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d84fc
jmp 0x12d852b
movq 0x560(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ce0(%rsp)
cmpq $0x0, 0x3ce0(%rsp)
je 0x12d8529
movq 0x3ce0(%rsp), %rdi
callq 0x5f480
jmp 0x12d852b
jmp 0x12d852d
movq 0x560(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d8588
movq %rax, %rdi
callq 0x678a0
jmp 0x12d858a
leaq 0x1568(%rsp), %rax
movq %rax, 0x2090(%rsp)
movq 0x2090(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x550(%rsp)
leaq 0x1568(%rsp), %rax
movq %rax, 0x2238(%rsp)
movq 0x2238(%rsp), %rax
movq %rax, 0x3a00(%rsp)
movq 0x3a00(%rsp), %rax
movq %rax, 0x558(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d8675
movq 0x558(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x39fc(%rsp) # imm = 0xFFFFFFFF
movl 0x39fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x39f8(%rsp)
cmpl $0x1, 0x39f8(%rsp)
jne 0x12d8675
movq 0x558(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d8646
movq 0x558(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d8644
jmp 0x12d8673
movq 0x558(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3de0(%rsp)
cmpq $0x0, 0x3de0(%rsp)
je 0x12d8671
movq 0x3de0(%rsp), %rdi
callq 0x5f480
jmp 0x12d8673
jmp 0x12d8675
movq 0x558(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d86d0
movq %rax, %rdi
callq 0x678a0
movq 0x550(%rsp), %rax
movq %rax, 0x15b0(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x15bc(%rsp), %eax
leaq 0x1518(%rsp), %rdx
movq %rdx, 0x2490(%rsp)
movq %rcx, 0x2488(%rsp)
movl %eax, 0x2484(%rsp)
movq 0x2488(%rsp), %rax
movq %rax, 0x548(%rsp)
movb $0x0, 0x2483(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2484(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1518(%rsp), %r10
movq %r10, 0x2c38(%rsp)
movl %r9d, 0x2c34(%rsp)
movl %r8d, 0x2c30(%rsp)
movl %edi, 0x2c2c(%rsp)
movq %rsi, 0x2c20(%rsp)
movq %rdx, 0x2c18(%rsp)
movl %ecx, 0x2c14(%rsp)
movq %rax, 0x2c08(%rsp)
movq 0x2c38(%rsp), %rcx
movq %rcx, 0x540(%rsp)
movq 0x2c20(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2c18(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2c14(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2c08(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2c34(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2c30(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2c2c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x36b0(%rsp)
movl $0x10, 0x36ac(%rsp)
movq 0x36b0(%rsp), %rax
movslq 0x36ac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x36ac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x548(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1540(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12d889c
movq 0x548(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1558(%rsp)
movb $0x1, 0x2483(%rsp)
testb $0x1, 0x2483(%rsp)
jne 0x12d89d7
leaq 0x1518(%rsp), %rax
movq %rax, 0x2498(%rsp)
movq 0x2498(%rsp), %rax
movq %rax, 0x3780(%rsp)
movq 0x3780(%rsp), %rax
movq %rax, 0x538(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d897a
movq 0x538(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x377c(%rsp) # imm = 0xFFFFFFFF
movl 0x377c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3778(%rsp)
cmpl $0x1, 0x3778(%rsp)
jne 0x12d897a
movq 0x538(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d894b
movq 0x538(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d8949
jmp 0x12d8978
movq 0x538(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f20(%rsp)
cmpq $0x0, 0x3f20(%rsp)
je 0x12d8976
movq 0x3f20(%rsp), %rdi
callq 0x5f480
jmp 0x12d8978
jmp 0x12d897a
movq 0x538(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d89d5
movq %rax, %rdi
callq 0x678a0
jmp 0x12d89d7
leaq 0x1518(%rsp), %rax
movq %rax, 0x25c8(%rsp)
movq 0x25c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x528(%rsp)
leaq 0x1518(%rsp), %rax
movq %rax, 0x2240(%rsp)
movq 0x2240(%rsp), %rax
movq %rax, 0x39f0(%rsp)
movq 0x39f0(%rsp), %rax
movq %rax, 0x530(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d8ac2
movq 0x530(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x39ec(%rsp) # imm = 0xFFFFFFFF
movl 0x39ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x39e8(%rsp)
cmpl $0x1, 0x39e8(%rsp)
jne 0x12d8ac2
movq 0x530(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d8a93
movq 0x530(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d8a91
jmp 0x12d8ac0
movq 0x530(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3de8(%rsp)
cmpq $0x0, 0x3de8(%rsp)
je 0x12d8abe
movq 0x3de8(%rsp), %rdi
callq 0x5f480
jmp 0x12d8ac0
jmp 0x12d8ac2
movq 0x530(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d8b1d
movq %rax, %rdi
callq 0x678a0
movq 0x528(%rsp), %rax
movq %rax, 0x1560(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x15bc(%rsp), %eax
leaq 0x14c8(%rsp), %rdx
movq %rdx, 0x1ed8(%rsp)
movq %rcx, 0x1ed0(%rsp)
movl %eax, 0x1ecc(%rsp)
movq 0x1ed0(%rsp), %rax
movq %rax, 0x520(%rsp)
movb $0x0, 0x1ecb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1ecc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x14c8(%rsp), %r10
movq %r10, 0x3108(%rsp)
movl %r9d, 0x3104(%rsp)
movl %r8d, 0x3100(%rsp)
movl %edi, 0x30fc(%rsp)
movq %rsi, 0x30f0(%rsp)
movq %rdx, 0x30e8(%rsp)
movl %ecx, 0x30e4(%rsp)
movq %rax, 0x30d8(%rsp)
movq 0x3108(%rsp), %rcx
movq %rcx, 0x518(%rsp)
movq 0x30f0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x30e8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x30e4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x30d8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3104(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3100(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x30fc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3550(%rsp)
movl $0x10, 0x354c(%rsp)
movq 0x3550(%rsp), %rax
movslq 0x354c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x354c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x520(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x14f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12d8ce9
movq 0x520(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1508(%rsp)
movb $0x1, 0x1ecb(%rsp)
testb $0x1, 0x1ecb(%rsp)
jne 0x12d8e24
leaq 0x14c8(%rsp), %rax
movq %rax, 0x2140(%rsp)
movq 0x2140(%rsp), %rax
movq %rax, 0x3bf0(%rsp)
movq 0x3bf0(%rsp), %rax
movq %rax, 0x510(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d8dc7
movq 0x510(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bec(%rsp) # imm = 0xFFFFFFFF
movl 0x3bec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3be8(%rsp)
cmpl $0x1, 0x3be8(%rsp)
jne 0x12d8dc7
movq 0x510(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d8d98
movq 0x510(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d8d96
jmp 0x12d8dc5
movq 0x510(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ce8(%rsp)
cmpq $0x0, 0x3ce8(%rsp)
je 0x12d8dc3
movq 0x3ce8(%rsp), %rdi
callq 0x5f480
jmp 0x12d8dc5
jmp 0x12d8dc7
movq 0x510(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d8e22
movq %rax, %rdi
callq 0x678a0
jmp 0x12d8e24
leaq 0x14c8(%rsp), %rax
movq %rax, 0x2088(%rsp)
movq 0x2088(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x500(%rsp)
leaq 0x14c8(%rsp), %rax
movq %rax, 0x2248(%rsp)
movq 0x2248(%rsp), %rax
movq %rax, 0x39e0(%rsp)
movq 0x39e0(%rsp), %rax
movq %rax, 0x508(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d8f0f
movq 0x508(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x39dc(%rsp) # imm = 0xFFFFFFFF
movl 0x39dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x39d8(%rsp)
cmpl $0x1, 0x39d8(%rsp)
jne 0x12d8f0f
movq 0x508(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d8ee0
movq 0x508(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d8ede
jmp 0x12d8f0d
movq 0x508(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3df0(%rsp)
cmpq $0x0, 0x3df0(%rsp)
je 0x12d8f0b
movq 0x3df0(%rsp), %rdi
callq 0x5f480
jmp 0x12d8f0d
jmp 0x12d8f0f
movq 0x508(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d8f6a
movq %rax, %rdi
callq 0x678a0
movq 0x500(%rsp), %rax
movq %rax, 0x1510(%rsp)
movq 0x15b0(%rsp), %rax
movq %rax, 0x26d0(%rsp)
movq 0x26d0(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x14b0(%rsp)
movl $0x0, 0x14ac(%rsp)
movl 0x14ac(%rsp), %eax
cmpl 0x1c68(%rsp), %eax
jge 0x12d9075
movq 0x1510(%rsp), %rax
movq %rax, 0x26c8(%rsp)
movq 0x26c8(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1490(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x14b0(%rsp), %rsi
leaq 0x1490(%rsp), %rdx
callq 0x12f6d40
movaps %xmm0, 0x1480(%rsp)
movq 0x1560(%rsp), %rax
movaps 0x1480(%rsp), %xmm0
movq %rax, 0x28e8(%rsp)
movaps %xmm0, 0x28d0(%rsp)
movaps 0x28d0(%rsp), %xmm0
movq 0x28e8(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1510(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1510(%rsp)
movq 0x1560(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1560(%rsp)
movl 0x14ac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x14ac(%rsp)
jmp 0x12d8fa8
jmp 0x12d9077
movl 0x15bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x15bc(%rsp)
jmp 0x12d827f
movl $0x0, 0x1cc4(%rsp)
jmp 0x12e2360
movl 0x1c78(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jne 0x12d9bca
movl 0x1c74(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jne 0x12d9bca
cmpl $0x1, 0x1c8c(%rsp)
jne 0x12d9bca
cmpl $0x1, 0x1c7c(%rsp)
jne 0x12d9bca
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c6c(%rsp), %ecx
movq 0x1c60(%rsp), %r8
movl 0x1c5c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d30(%rsp)
movq 0x1d30(%rsp), %rcx
movq %rcx, 0x4f0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x4ff(%rsp)
je 0x12d9184
movq 0x4f0(%rsp), %rax
movq %rax, 0x2a48(%rsp)
movq 0x2a48(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x4ff(%rsp)
movb 0x4ff(%rsp), %al
testb $0x1, %al
jne 0x12d9191
jmp 0x12d91a1
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12e2360
movl $0x0, 0x147c(%rsp)
movl 0x147c(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12d9bba
movq 0x1cb8(%rsp), %rax
movq %rax, 0x2080(%rsp)
movq 0x2080(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1470(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x147c(%rsp), %eax
leaq 0x1420(%rsp), %rdx
movq %rdx, 0x1ec0(%rsp)
movq %rcx, 0x1eb8(%rsp)
movl %eax, 0x1eb4(%rsp)
movq 0x1eb8(%rsp), %rax
movq %rax, 0x4e8(%rsp)
movb $0x0, 0x1eb3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1eb4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1420(%rsp), %r10
movq %r10, 0x3140(%rsp)
movl %r9d, 0x313c(%rsp)
movl %r8d, 0x3138(%rsp)
movl %edi, 0x3134(%rsp)
movq %rsi, 0x3128(%rsp)
movq %rdx, 0x3120(%rsp)
movl %ecx, 0x311c(%rsp)
movq %rax, 0x3110(%rsp)
movq 0x3140(%rsp), %rcx
movq %rcx, 0x4e0(%rsp)
movq 0x3128(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3120(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x311c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3110(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x313c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3138(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3134(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3540(%rsp)
movl $0x10, 0x353c(%rsp)
movq 0x3540(%rsp), %rax
movslq 0x353c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x353c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4e8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1448(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12d939f
movq 0x4e8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1460(%rsp)
movb $0x1, 0x1eb3(%rsp)
testb $0x1, 0x1eb3(%rsp)
jne 0x12d94da
leaq 0x1420(%rsp), %rax
movq %rax, 0x2148(%rsp)
movq 0x2148(%rsp), %rax
movq %rax, 0x3be0(%rsp)
movq 0x3be0(%rsp), %rax
movq %rax, 0x4d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d947d
movq 0x4d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bdc(%rsp) # imm = 0xFFFFFFFF
movl 0x3bdc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3bd8(%rsp)
cmpl $0x1, 0x3bd8(%rsp)
jne 0x12d947d
movq 0x4d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d944e
movq 0x4d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d944c
jmp 0x12d947b
movq 0x4d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cf0(%rsp)
cmpq $0x0, 0x3cf0(%rsp)
je 0x12d9479
movq 0x3cf0(%rsp), %rdi
callq 0x5f480
jmp 0x12d947b
jmp 0x12d947d
movq 0x4d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d94d8
movq %rax, %rdi
callq 0x678a0
jmp 0x12d94da
leaq 0x1420(%rsp), %rax
movq %rax, 0x2078(%rsp)
movq 0x2078(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4c8(%rsp)
leaq 0x1420(%rsp), %rax
movq %rax, 0x2250(%rsp)
movq 0x2250(%rsp), %rax
movq %rax, 0x39d0(%rsp)
movq 0x39d0(%rsp), %rax
movq %rax, 0x4d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d95c5
movq 0x4d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x39cc(%rsp) # imm = 0xFFFFFFFF
movl 0x39cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x39c8(%rsp)
cmpl $0x1, 0x39c8(%rsp)
jne 0x12d95c5
movq 0x4d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d9596
movq 0x4d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d9594
jmp 0x12d95c3
movq 0x4d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3df8(%rsp)
cmpq $0x0, 0x3df8(%rsp)
je 0x12d95c1
movq 0x3df8(%rsp), %rdi
callq 0x5f480
jmp 0x12d95c3
jmp 0x12d95c5
movq 0x4d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d9620
movq %rax, %rdi
callq 0x678a0
movq 0x4c8(%rsp), %rax
movq %rax, 0x1468(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x147c(%rsp), %eax
leaq 0x13d0(%rsp), %rdx
movq %rdx, 0x2470(%rsp)
movq %rcx, 0x2468(%rsp)
movl %eax, 0x2464(%rsp)
movq 0x2468(%rsp), %rax
movq %rax, 0x4c0(%rsp)
movb $0x0, 0x2463(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2464(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x13d0(%rsp), %r10
movq %r10, 0x2c70(%rsp)
movl %r9d, 0x2c6c(%rsp)
movl %r8d, 0x2c68(%rsp)
movl %edi, 0x2c64(%rsp)
movq %rsi, 0x2c58(%rsp)
movq %rdx, 0x2c50(%rsp)
movl %ecx, 0x2c4c(%rsp)
movq %rax, 0x2c40(%rsp)
movq 0x2c70(%rsp), %rcx
movq %rcx, 0x4b8(%rsp)
movq 0x2c58(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2c50(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2c4c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2c40(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2c6c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2c68(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2c64(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x36a0(%rsp)
movl $0x10, 0x369c(%rsp)
movq 0x36a0(%rsp), %rax
movslq 0x369c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x369c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4c0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x13f8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12d97ec
movq 0x4c0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1410(%rsp)
movb $0x1, 0x2463(%rsp)
testb $0x1, 0x2463(%rsp)
jne 0x12d9927
leaq 0x13d0(%rsp), %rax
movq %rax, 0x2478(%rsp)
movq 0x2478(%rsp), %rax
movq %rax, 0x3790(%rsp)
movq 0x3790(%rsp), %rax
movq %rax, 0x4b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d98ca
movq 0x4b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x378c(%rsp) # imm = 0xFFFFFFFF
movl 0x378c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3788(%rsp)
cmpl $0x1, 0x3788(%rsp)
jne 0x12d98ca
movq 0x4b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d989b
movq 0x4b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d9899
jmp 0x12d98c8
movq 0x4b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f18(%rsp)
cmpq $0x0, 0x3f18(%rsp)
je 0x12d98c6
movq 0x3f18(%rsp), %rdi
callq 0x5f480
jmp 0x12d98c8
jmp 0x12d98ca
movq 0x4b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d9925
movq %rax, %rdi
callq 0x678a0
jmp 0x12d9927
leaq 0x13d0(%rsp), %rax
movq %rax, 0x25c0(%rsp)
movq 0x25c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4a0(%rsp)
leaq 0x13d0(%rsp), %rax
movq %rax, 0x2258(%rsp)
movq 0x2258(%rsp), %rax
movq %rax, 0x39c0(%rsp)
movq 0x39c0(%rsp), %rax
movq %rax, 0x4a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d9a12
movq 0x4a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x39bc(%rsp) # imm = 0xFFFFFFFF
movl 0x39bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x39b8(%rsp)
cmpl $0x1, 0x39b8(%rsp)
jne 0x12d9a12
movq 0x4a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d99e3
movq 0x4a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d99e1
jmp 0x12d9a10
movq 0x4a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e00(%rsp)
cmpq $0x0, 0x3e00(%rsp)
je 0x12d9a0e
movq 0x3e00(%rsp), %rdi
callq 0x5f480
jmp 0x12d9a10
jmp 0x12d9a12
movq 0x4a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d9a6d
movq %rax, %rdi
callq 0x678a0
movq 0x4a0(%rsp), %rax
movq %rax, 0x1418(%rsp)
movl $0x0, 0x13cc(%rsp)
movl 0x13cc(%rsp), %eax
cmpl 0x1c68(%rsp), %eax
jge 0x12d9ba2
movq 0x1470(%rsp), %rax
movss (%rax), %xmm0
movss %xmm0, 0x29e0(%rsp)
movaps 0x29e0(%rsp), %xmm0
shufps $0x0, %xmm0, %xmm0 # xmm0 = xmm0[0,0,0,0]
movaps %xmm0, 0x29d0(%rsp)
movaps 0x29d0(%rsp), %xmm0
movaps %xmm0, 0x13b0(%rsp)
movq 0x1468(%rsp), %rax
movq %rax, 0x26c0(%rsp)
movq 0x26c0(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x13a0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x13b0(%rsp), %rsi
leaq 0x13a0(%rsp), %rdx
callq 0x12f6d40
movaps %xmm0, 0x1390(%rsp)
movq 0x1418(%rsp), %rax
movaps 0x1390(%rsp), %xmm0
movq %rax, 0x28c8(%rsp)
movaps %xmm0, 0x28b0(%rsp)
movaps 0x28b0(%rsp), %xmm0
movq 0x28c8(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1470(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x1470(%rsp)
movq 0x1468(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1468(%rsp)
movq 0x1418(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1418(%rsp)
movl 0x13cc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x13cc(%rsp)
jmp 0x12d9a88
jmp 0x12d9ba4
movl 0x147c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x147c(%rsp)
jmp 0x12d91ac
movl $0x0, 0x1cc4(%rsp)
jmp 0x12e2360
cmpl $0x1, 0x1c98(%rsp)
je 0x12dab42
cmpl $0x1, 0x1c78(%rsp)
jne 0x12dab42
movl 0x1c74(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jne 0x12dab42
movl 0x1c6c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jne 0x12dab42
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movl 0x1c8c(%rsp), %ecx
movq 0x1c80(%rsp), %r8
movl 0x1c7c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d28(%rsp)
movq 0x1d28(%rsp), %rcx
movq %rcx, 0x490(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x49f(%rsp)
je 0x12d9cb1
movq 0x490(%rsp), %rax
movq %rax, 0x2a50(%rsp)
movq 0x2a50(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x49f(%rsp)
movb 0x49f(%rsp), %al
testb $0x1, %al
jne 0x12d9cbe
jmp 0x12d9cce
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12e2360
movl $0x0, 0x138c(%rsp)
movl 0x138c(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12dab32
movq 0x1cb8(%rsp), %rcx
movl 0x138c(%rsp), %eax
leaq 0x1338(%rsp), %rdx
movq %rdx, 0x1ea8(%rsp)
movq %rcx, 0x1ea0(%rsp)
movl %eax, 0x1e9c(%rsp)
movq 0x1ea0(%rsp), %rax
movq %rax, 0x488(%rsp)
movb $0x0, 0x1e9b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e9c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1338(%rsp), %r10
movq %r10, 0x3178(%rsp)
movl %r9d, 0x3174(%rsp)
movl %r8d, 0x3170(%rsp)
movl %edi, 0x316c(%rsp)
movq %rsi, 0x3160(%rsp)
movq %rdx, 0x3158(%rsp)
movl %ecx, 0x3154(%rsp)
movq %rax, 0x3148(%rsp)
movq 0x3178(%rsp), %rcx
movq %rcx, 0x480(%rsp)
movq 0x3160(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3158(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3154(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3148(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3174(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3170(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x316c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3530(%rsp)
movl $0x10, 0x352c(%rsp)
movq 0x3530(%rsp), %rax
movslq 0x352c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x352c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x488(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1360(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12d9ea9
movq 0x488(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1378(%rsp)
movb $0x1, 0x1e9b(%rsp)
testb $0x1, 0x1e9b(%rsp)
jne 0x12d9fe4
leaq 0x1338(%rsp), %rax
movq %rax, 0x2150(%rsp)
movq 0x2150(%rsp), %rax
movq %rax, 0x3bd0(%rsp)
movq 0x3bd0(%rsp), %rax
movq %rax, 0x478(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12d9f87
movq 0x478(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bcc(%rsp) # imm = 0xFFFFFFFF
movl 0x3bcc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3bc8(%rsp)
cmpl $0x1, 0x3bc8(%rsp)
jne 0x12d9f87
movq 0x478(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12d9f58
movq 0x478(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12d9f56
jmp 0x12d9f85
movq 0x478(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3cf8(%rsp)
cmpq $0x0, 0x3cf8(%rsp)
je 0x12d9f83
movq 0x3cf8(%rsp), %rdi
callq 0x5f480
jmp 0x12d9f85
jmp 0x12d9f87
movq 0x478(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12d9fe2
movq %rax, %rdi
callq 0x678a0
jmp 0x12d9fe4
leaq 0x1338(%rsp), %rax
movq %rax, 0x2070(%rsp)
movq 0x2070(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x468(%rsp)
leaq 0x1338(%rsp), %rax
movq %rax, 0x2260(%rsp)
movq 0x2260(%rsp), %rax
movq %rax, 0x39b0(%rsp)
movq 0x39b0(%rsp), %rax
movq %rax, 0x470(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12da0cf
movq 0x470(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x39ac(%rsp) # imm = 0xFFFFFFFF
movl 0x39ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x39a8(%rsp)
cmpl $0x1, 0x39a8(%rsp)
jne 0x12da0cf
movq 0x470(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12da0a0
movq 0x470(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12da09e
jmp 0x12da0cd
movq 0x470(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e08(%rsp)
cmpq $0x0, 0x3e08(%rsp)
je 0x12da0cb
movq 0x3e08(%rsp), %rdi
callq 0x5f480
jmp 0x12da0cd
jmp 0x12da0cf
movq 0x470(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12da12a
movq %rax, %rdi
callq 0x678a0
movq 0x468(%rsp), %rax
movq %rax, 0x1380(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x138c(%rsp), %eax
leaq 0x12e8(%rsp), %rdx
movq %rdx, 0x1e90(%rsp)
movq %rcx, 0x1e88(%rsp)
movl %eax, 0x1e84(%rsp)
movq 0x1e88(%rsp), %rax
movq %rax, 0x460(%rsp)
movb $0x0, 0x1e83(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e84(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x12e8(%rsp), %r10
movq %r10, 0x31b0(%rsp)
movl %r9d, 0x31ac(%rsp)
movl %r8d, 0x31a8(%rsp)
movl %edi, 0x31a4(%rsp)
movq %rsi, 0x3198(%rsp)
movq %rdx, 0x3190(%rsp)
movl %ecx, 0x318c(%rsp)
movq %rax, 0x3180(%rsp)
movq 0x31b0(%rsp), %rcx
movq %rcx, 0x458(%rsp)
movq 0x3198(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3190(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x318c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3180(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x31ac(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x31a8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x31a4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3520(%rsp)
movl $0x10, 0x351c(%rsp)
movq 0x3520(%rsp), %rax
movslq 0x351c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x351c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x460(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1310(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12da2f6
movq 0x460(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1328(%rsp)
movb $0x1, 0x1e83(%rsp)
testb $0x1, 0x1e83(%rsp)
jne 0x12da431
leaq 0x12e8(%rsp), %rax
movq %rax, 0x2158(%rsp)
movq 0x2158(%rsp), %rax
movq %rax, 0x3bc0(%rsp)
movq 0x3bc0(%rsp), %rax
movq %rax, 0x450(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12da3d4
movq 0x450(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bbc(%rsp) # imm = 0xFFFFFFFF
movl 0x3bbc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3bb8(%rsp)
cmpl $0x1, 0x3bb8(%rsp)
jne 0x12da3d4
movq 0x450(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12da3a5
movq 0x450(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12da3a3
jmp 0x12da3d2
movq 0x450(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d00(%rsp)
cmpq $0x0, 0x3d00(%rsp)
je 0x12da3d0
movq 0x3d00(%rsp), %rdi
callq 0x5f480
jmp 0x12da3d2
jmp 0x12da3d4
movq 0x450(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12da42f
movq %rax, %rdi
callq 0x678a0
jmp 0x12da431
leaq 0x12e8(%rsp), %rax
movq %rax, 0x2068(%rsp)
movq 0x2068(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x440(%rsp)
leaq 0x12e8(%rsp), %rax
movq %rax, 0x2268(%rsp)
movq 0x2268(%rsp), %rax
movq %rax, 0x39a0(%rsp)
movq 0x39a0(%rsp), %rax
movq %rax, 0x448(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12da51c
movq 0x448(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x399c(%rsp) # imm = 0xFFFFFFFF
movl 0x399c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3998(%rsp)
cmpl $0x1, 0x3998(%rsp)
jne 0x12da51c
movq 0x448(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12da4ed
movq 0x448(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12da4eb
jmp 0x12da51a
movq 0x448(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e10(%rsp)
cmpq $0x0, 0x3e10(%rsp)
je 0x12da518
movq 0x3e10(%rsp), %rdi
callq 0x5f480
jmp 0x12da51a
jmp 0x12da51c
movq 0x448(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12da577
movq %rax, %rdi
callq 0x678a0
movq 0x440(%rsp), %rax
movq %rax, 0x1330(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x138c(%rsp), %eax
leaq 0x1298(%rsp), %rdx
movq %rdx, 0x2450(%rsp)
movq %rcx, 0x2448(%rsp)
movl %eax, 0x2444(%rsp)
movq 0x2448(%rsp), %rax
movq %rax, 0x438(%rsp)
movb $0x0, 0x2443(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2444(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1298(%rsp), %r10
movq %r10, 0x2ca8(%rsp)
movl %r9d, 0x2ca4(%rsp)
movl %r8d, 0x2ca0(%rsp)
movl %edi, 0x2c9c(%rsp)
movq %rsi, 0x2c90(%rsp)
movq %rdx, 0x2c88(%rsp)
movl %ecx, 0x2c84(%rsp)
movq %rax, 0x2c78(%rsp)
movq 0x2ca8(%rsp), %rcx
movq %rcx, 0x430(%rsp)
movq 0x2c90(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2c88(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2c84(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2c78(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2ca4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2ca0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2c9c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3690(%rsp)
movl $0x10, 0x368c(%rsp)
movq 0x3690(%rsp), %rax
movslq 0x368c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x368c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x438(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x12c0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12da743
movq 0x438(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x12d8(%rsp)
movb $0x1, 0x2443(%rsp)
testb $0x1, 0x2443(%rsp)
jne 0x12da87e
leaq 0x1298(%rsp), %rax
movq %rax, 0x2458(%rsp)
movq 0x2458(%rsp), %rax
movq %rax, 0x37a0(%rsp)
movq 0x37a0(%rsp), %rax
movq %rax, 0x428(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12da821
movq 0x428(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x379c(%rsp) # imm = 0xFFFFFFFF
movl 0x379c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3798(%rsp)
cmpl $0x1, 0x3798(%rsp)
jne 0x12da821
movq 0x428(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12da7f2
movq 0x428(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12da7f0
jmp 0x12da81f
movq 0x428(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f10(%rsp)
cmpq $0x0, 0x3f10(%rsp)
je 0x12da81d
movq 0x3f10(%rsp), %rdi
callq 0x5f480
jmp 0x12da81f
jmp 0x12da821
movq 0x428(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12da87c
movq %rax, %rdi
callq 0x678a0
jmp 0x12da87e
leaq 0x1298(%rsp), %rax
movq %rax, 0x25b8(%rsp)
movq 0x25b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x418(%rsp)
leaq 0x1298(%rsp), %rax
movq %rax, 0x2270(%rsp)
movq 0x2270(%rsp), %rax
movq %rax, 0x3990(%rsp)
movq 0x3990(%rsp), %rax
movq %rax, 0x420(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12da969
movq 0x420(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x398c(%rsp) # imm = 0xFFFFFFFF
movl 0x398c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3988(%rsp)
cmpl $0x1, 0x3988(%rsp)
jne 0x12da969
movq 0x420(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12da93a
movq 0x420(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12da938
jmp 0x12da967
movq 0x420(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e18(%rsp)
cmpq $0x0, 0x3e18(%rsp)
je 0x12da965
movq 0x3e18(%rsp), %rdi
callq 0x5f480
jmp 0x12da967
jmp 0x12da969
movq 0x420(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12da9c4
movq %rax, %rdi
callq 0x678a0
movq 0x418(%rsp), %rax
movq %rax, 0x12e0(%rsp)
movl $0x0, 0x1294(%rsp)
movl 0x1294(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jge 0x12dab1a
movq 0x1330(%rsp), %rax
movl 0x1294(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x26b8(%rsp)
movq 0x26b8(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1280(%rsp)
movl $0x0, 0x127c(%rsp)
movl 0x127c(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jge 0x12dab02
movq 0x1380(%rsp), %rax
movq %rax, 0x26b0(%rsp)
movq 0x26b0(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1260(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x1260(%rsp), %rsi
leaq 0x1280(%rsp), %rdx
callq 0x12f6d40
movaps %xmm0, 0x1250(%rsp)
movq 0x12e0(%rsp), %rax
movaps 0x1250(%rsp), %xmm0
movq %rax, 0x28a8(%rsp)
movaps %xmm0, 0x2890(%rsp)
movaps 0x2890(%rsp), %xmm0
movq 0x28a8(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1380(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1380(%rsp)
movq 0x12e0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x12e0(%rsp)
movl 0x127c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x127c(%rsp)
jmp 0x12daa35
jmp 0x12dab04
movl 0x1294(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1294(%rsp)
jmp 0x12da9df
jmp 0x12dab1c
movl 0x138c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x138c(%rsp)
jmp 0x12d9cd9
movl $0x0, 0x1cc4(%rsp)
jmp 0x12e2360
movl 0x1c78(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jne 0x12dbaba
cmpl $0x1, 0x1c94(%rsp)
je 0x12dbaba
cmpl $0x1, 0x1c74(%rsp)
jne 0x12dbaba
movl 0x1c6c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jne 0x12dbaba
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movl 0x1c8c(%rsp), %ecx
movq 0x1c80(%rsp), %r8
movl 0x1c7c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d20(%rsp)
movq 0x1d20(%rsp), %rcx
movq %rcx, 0x408(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x417(%rsp)
je 0x12dac29
movq 0x408(%rsp), %rax
movq %rax, 0x2a58(%rsp)
movq 0x2a58(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x417(%rsp)
movb 0x417(%rsp), %al
testb $0x1, %al
jne 0x12dac36
jmp 0x12dac46
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12e2360
movl $0x0, 0x124c(%rsp)
movl 0x124c(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12dbaaa
movq 0x1cb8(%rsp), %rcx
movl 0x124c(%rsp), %eax
leaq 0x11f8(%rsp), %rdx
movq %rdx, 0x1e78(%rsp)
movq %rcx, 0x1e70(%rsp)
movl %eax, 0x1e6c(%rsp)
movq 0x1e70(%rsp), %rax
movq %rax, 0x400(%rsp)
movb $0x0, 0x1e6b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e6c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x11f8(%rsp), %r10
movq %r10, 0x31e8(%rsp)
movl %r9d, 0x31e4(%rsp)
movl %r8d, 0x31e0(%rsp)
movl %edi, 0x31dc(%rsp)
movq %rsi, 0x31d0(%rsp)
movq %rdx, 0x31c8(%rsp)
movl %ecx, 0x31c4(%rsp)
movq %rax, 0x31b8(%rsp)
movq 0x31e8(%rsp), %rcx
movq %rcx, 0x3f8(%rsp)
movq 0x31d0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x31c8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x31c4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x31b8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x31e4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x31e0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x31dc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3510(%rsp)
movl $0x10, 0x350c(%rsp)
movq 0x3510(%rsp), %rax
movslq 0x350c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x350c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x400(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1220(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12dae21
movq 0x400(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1238(%rsp)
movb $0x1, 0x1e6b(%rsp)
testb $0x1, 0x1e6b(%rsp)
jne 0x12daf5c
leaq 0x11f8(%rsp), %rax
movq %rax, 0x2160(%rsp)
movq 0x2160(%rsp), %rax
movq %rax, 0x3bb0(%rsp)
movq 0x3bb0(%rsp), %rax
movq %rax, 0x3f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12daeff
movq 0x3f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bac(%rsp) # imm = 0xFFFFFFFF
movl 0x3bac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ba8(%rsp)
cmpl $0x1, 0x3ba8(%rsp)
jne 0x12daeff
movq 0x3f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12daed0
movq 0x3f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12daece
jmp 0x12daefd
movq 0x3f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d08(%rsp)
cmpq $0x0, 0x3d08(%rsp)
je 0x12daefb
movq 0x3d08(%rsp), %rdi
callq 0x5f480
jmp 0x12daefd
jmp 0x12daeff
movq 0x3f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12daf5a
movq %rax, %rdi
callq 0x678a0
jmp 0x12daf5c
leaq 0x11f8(%rsp), %rax
movq %rax, 0x2060(%rsp)
movq 0x2060(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e0(%rsp)
leaq 0x11f8(%rsp), %rax
movq %rax, 0x2278(%rsp)
movq 0x2278(%rsp), %rax
movq %rax, 0x3980(%rsp)
movq 0x3980(%rsp), %rax
movq %rax, 0x3e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12db047
movq 0x3e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x397c(%rsp) # imm = 0xFFFFFFFF
movl 0x397c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3978(%rsp)
cmpl $0x1, 0x3978(%rsp)
jne 0x12db047
movq 0x3e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12db018
movq 0x3e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12db016
jmp 0x12db045
movq 0x3e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e20(%rsp)
cmpq $0x0, 0x3e20(%rsp)
je 0x12db043
movq 0x3e20(%rsp), %rdi
callq 0x5f480
jmp 0x12db045
jmp 0x12db047
movq 0x3e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12db0a2
movq %rax, %rdi
callq 0x678a0
movq 0x3e0(%rsp), %rax
movq %rax, 0x1240(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x124c(%rsp), %eax
leaq 0x11a8(%rsp), %rdx
movq %rdx, 0x1e60(%rsp)
movq %rcx, 0x1e58(%rsp)
movl %eax, 0x1e54(%rsp)
movq 0x1e58(%rsp), %rax
movq %rax, 0x3d8(%rsp)
movb $0x0, 0x1e53(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e54(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x11a8(%rsp), %r10
movq %r10, 0x3220(%rsp)
movl %r9d, 0x321c(%rsp)
movl %r8d, 0x3218(%rsp)
movl %edi, 0x3214(%rsp)
movq %rsi, 0x3208(%rsp)
movq %rdx, 0x3200(%rsp)
movl %ecx, 0x31fc(%rsp)
movq %rax, 0x31f0(%rsp)
movq 0x3220(%rsp), %rcx
movq %rcx, 0x3d0(%rsp)
movq 0x3208(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3200(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x31fc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x31f0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x321c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3218(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3214(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3500(%rsp)
movl $0x10, 0x34fc(%rsp)
movq 0x3500(%rsp), %rax
movslq 0x34fc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x34fc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3d8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x11d0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12db26e
movq 0x3d8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x11e8(%rsp)
movb $0x1, 0x1e53(%rsp)
testb $0x1, 0x1e53(%rsp)
jne 0x12db3a9
leaq 0x11a8(%rsp), %rax
movq %rax, 0x2168(%rsp)
movq 0x2168(%rsp), %rax
movq %rax, 0x3ba0(%rsp)
movq 0x3ba0(%rsp), %rax
movq %rax, 0x3c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12db34c
movq 0x3c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b9c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b9c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b98(%rsp)
cmpl $0x1, 0x3b98(%rsp)
jne 0x12db34c
movq 0x3c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12db31d
movq 0x3c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12db31b
jmp 0x12db34a
movq 0x3c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d10(%rsp)
cmpq $0x0, 0x3d10(%rsp)
je 0x12db348
movq 0x3d10(%rsp), %rdi
callq 0x5f480
jmp 0x12db34a
jmp 0x12db34c
movq 0x3c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12db3a7
movq %rax, %rdi
callq 0x678a0
jmp 0x12db3a9
leaq 0x11a8(%rsp), %rax
movq %rax, 0x2058(%rsp)
movq 0x2058(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3b8(%rsp)
leaq 0x11a8(%rsp), %rax
movq %rax, 0x2280(%rsp)
movq 0x2280(%rsp), %rax
movq %rax, 0x3970(%rsp)
movq 0x3970(%rsp), %rax
movq %rax, 0x3c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12db494
movq 0x3c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x396c(%rsp) # imm = 0xFFFFFFFF
movl 0x396c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3968(%rsp)
cmpl $0x1, 0x3968(%rsp)
jne 0x12db494
movq 0x3c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12db465
movq 0x3c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12db463
jmp 0x12db492
movq 0x3c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e28(%rsp)
cmpq $0x0, 0x3e28(%rsp)
je 0x12db490
movq 0x3e28(%rsp), %rdi
callq 0x5f480
jmp 0x12db492
jmp 0x12db494
movq 0x3c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12db4ef
movq %rax, %rdi
callq 0x678a0
movq 0x3b8(%rsp), %rax
movq %rax, 0x11f0(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x124c(%rsp), %eax
leaq 0x1158(%rsp), %rdx
movq %rdx, 0x2430(%rsp)
movq %rcx, 0x2428(%rsp)
movl %eax, 0x2424(%rsp)
movq 0x2428(%rsp), %rax
movq %rax, 0x3b0(%rsp)
movb $0x0, 0x2423(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2424(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1158(%rsp), %r10
movq %r10, 0x2ce0(%rsp)
movl %r9d, 0x2cdc(%rsp)
movl %r8d, 0x2cd8(%rsp)
movl %edi, 0x2cd4(%rsp)
movq %rsi, 0x2cc8(%rsp)
movq %rdx, 0x2cc0(%rsp)
movl %ecx, 0x2cbc(%rsp)
movq %rax, 0x2cb0(%rsp)
movq 0x2ce0(%rsp), %rcx
movq %rcx, 0x3a8(%rsp)
movq 0x2cc8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2cc0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2cbc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2cb0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2cdc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2cd8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2cd4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3680(%rsp)
movl $0x10, 0x367c(%rsp)
movq 0x3680(%rsp), %rax
movslq 0x367c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x367c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3b0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1180(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12db6bb
movq 0x3b0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1198(%rsp)
movb $0x1, 0x2423(%rsp)
testb $0x1, 0x2423(%rsp)
jne 0x12db7f6
leaq 0x1158(%rsp), %rax
movq %rax, 0x2438(%rsp)
movq 0x2438(%rsp), %rax
movq %rax, 0x37b0(%rsp)
movq 0x37b0(%rsp), %rax
movq %rax, 0x3a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12db799
movq 0x3a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x37ac(%rsp) # imm = 0xFFFFFFFF
movl 0x37ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x37a8(%rsp)
cmpl $0x1, 0x37a8(%rsp)
jne 0x12db799
movq 0x3a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12db76a
movq 0x3a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12db768
jmp 0x12db797
movq 0x3a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f08(%rsp)
cmpq $0x0, 0x3f08(%rsp)
je 0x12db795
movq 0x3f08(%rsp), %rdi
callq 0x5f480
jmp 0x12db797
jmp 0x12db799
movq 0x3a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12db7f4
movq %rax, %rdi
callq 0x678a0
jmp 0x12db7f6
leaq 0x1158(%rsp), %rax
movq %rax, 0x25b0(%rsp)
movq 0x25b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x390(%rsp)
leaq 0x1158(%rsp), %rax
movq %rax, 0x2288(%rsp)
movq 0x2288(%rsp), %rax
movq %rax, 0x3960(%rsp)
movq 0x3960(%rsp), %rax
movq %rax, 0x398(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12db8e1
movq 0x398(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x395c(%rsp) # imm = 0xFFFFFFFF
movl 0x395c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3958(%rsp)
cmpl $0x1, 0x3958(%rsp)
jne 0x12db8e1
movq 0x398(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12db8b2
movq 0x398(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12db8b0
jmp 0x12db8df
movq 0x398(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e30(%rsp)
cmpq $0x0, 0x3e30(%rsp)
je 0x12db8dd
movq 0x3e30(%rsp), %rdi
callq 0x5f480
jmp 0x12db8df
jmp 0x12db8e1
movq 0x398(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12db93c
movq %rax, %rdi
callq 0x678a0
movq 0x390(%rsp), %rax
movq %rax, 0x11a0(%rsp)
movl $0x0, 0x1154(%rsp)
movl 0x1154(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jge 0x12dba92
movl $0x0, 0x1150(%rsp)
movl 0x1150(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jge 0x12dba7a
movq 0x1240(%rsp), %rax
movq %rax, 0x26a8(%rsp)
movq 0x26a8(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1140(%rsp)
movq 0x11f0(%rsp), %rax
movl 0x1150(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x26a0(%rsp)
movq 0x26a0(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1130(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x1140(%rsp), %rsi
leaq 0x1130(%rsp), %rdx
callq 0x12f6d40
movaps %xmm0, 0x1120(%rsp)
movq 0x11a0(%rsp), %rax
movaps 0x1120(%rsp), %xmm0
movq %rax, 0x2888(%rsp)
movaps %xmm0, 0x2870(%rsp)
movaps 0x2870(%rsp), %xmm0
movq 0x2888(%rsp), %rax
movups %xmm0, (%rax)
movq 0x1240(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1240(%rsp)
movq 0x11a0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x11a0(%rsp)
movl 0x1150(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1150(%rsp)
jmp 0x12db976
jmp 0x12dba7c
movl 0x1154(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1154(%rsp)
jmp 0x12db957
jmp 0x12dba94
movl 0x124c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x124c(%rsp)
jmp 0x12dac51
movl $0x0, 0x1cc4(%rsp)
jmp 0x12e2360
cmpl $0x1, 0x1c78(%rsp)
je 0x12dca32
cmpl $0x1, 0x1c98(%rsp)
jne 0x12dca32
movl 0x1c74(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jne 0x12dca32
movl 0x1c6c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jne 0x12dca32
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c6c(%rsp), %ecx
movq 0x1c60(%rsp), %r8
movl 0x1c5c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d18(%rsp)
movq 0x1d18(%rsp), %rcx
movq %rcx, 0x380(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x38f(%rsp)
je 0x12dbba1
movq 0x380(%rsp), %rax
movq %rax, 0x2a60(%rsp)
movq 0x2a60(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x38f(%rsp)
movb 0x38f(%rsp), %al
testb $0x1, %al
jne 0x12dbbae
jmp 0x12dbbbe
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12e2360
movl $0x0, 0x111c(%rsp)
movl 0x111c(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12dca22
movq 0x1cb8(%rsp), %rcx
movl 0x111c(%rsp), %eax
leaq 0x10c8(%rsp), %rdx
movq %rdx, 0x1e48(%rsp)
movq %rcx, 0x1e40(%rsp)
movl %eax, 0x1e3c(%rsp)
movq 0x1e40(%rsp), %rax
movq %rax, 0x378(%rsp)
movb $0x0, 0x1e3b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e3c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x10c8(%rsp), %r10
movq %r10, 0x3258(%rsp)
movl %r9d, 0x3254(%rsp)
movl %r8d, 0x3250(%rsp)
movl %edi, 0x324c(%rsp)
movq %rsi, 0x3240(%rsp)
movq %rdx, 0x3238(%rsp)
movl %ecx, 0x3234(%rsp)
movq %rax, 0x3228(%rsp)
movq 0x3258(%rsp), %rcx
movq %rcx, 0x370(%rsp)
movq 0x3240(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3238(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3234(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3228(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3254(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3250(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x324c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x34f0(%rsp)
movl $0x10, 0x34ec(%rsp)
movq 0x34f0(%rsp), %rax
movslq 0x34ec(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x34ec(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x378(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x10f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12dbd99
movq 0x378(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1108(%rsp)
movb $0x1, 0x1e3b(%rsp)
testb $0x1, 0x1e3b(%rsp)
jne 0x12dbed4
leaq 0x10c8(%rsp), %rax
movq %rax, 0x2170(%rsp)
movq 0x2170(%rsp), %rax
movq %rax, 0x3b90(%rsp)
movq 0x3b90(%rsp), %rax
movq %rax, 0x368(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12dbe77
movq 0x368(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b8c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b8c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b88(%rsp)
cmpl $0x1, 0x3b88(%rsp)
jne 0x12dbe77
movq 0x368(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12dbe48
movq 0x368(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12dbe46
jmp 0x12dbe75
movq 0x368(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d18(%rsp)
cmpq $0x0, 0x3d18(%rsp)
je 0x12dbe73
movq 0x3d18(%rsp), %rdi
callq 0x5f480
jmp 0x12dbe75
jmp 0x12dbe77
movq 0x368(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12dbed2
movq %rax, %rdi
callq 0x678a0
jmp 0x12dbed4
leaq 0x10c8(%rsp), %rax
movq %rax, 0x2050(%rsp)
movq 0x2050(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x358(%rsp)
leaq 0x10c8(%rsp), %rax
movq %rax, 0x2290(%rsp)
movq 0x2290(%rsp), %rax
movq %rax, 0x3950(%rsp)
movq 0x3950(%rsp), %rax
movq %rax, 0x360(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12dbfbf
movq 0x360(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x394c(%rsp) # imm = 0xFFFFFFFF
movl 0x394c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3948(%rsp)
cmpl $0x1, 0x3948(%rsp)
jne 0x12dbfbf
movq 0x360(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12dbf90
movq 0x360(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12dbf8e
jmp 0x12dbfbd
movq 0x360(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e38(%rsp)
cmpq $0x0, 0x3e38(%rsp)
je 0x12dbfbb
movq 0x3e38(%rsp), %rdi
callq 0x5f480
jmp 0x12dbfbd
jmp 0x12dbfbf
movq 0x360(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12dc01a
movq %rax, %rdi
callq 0x678a0
movq 0x358(%rsp), %rax
movq %rax, 0x1110(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x111c(%rsp), %eax
leaq 0x1078(%rsp), %rdx
movq %rdx, 0x1e30(%rsp)
movq %rcx, 0x1e28(%rsp)
movl %eax, 0x1e24(%rsp)
movq 0x1e28(%rsp), %rax
movq %rax, 0x350(%rsp)
movb $0x0, 0x1e23(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e24(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1078(%rsp), %r10
movq %r10, 0x3290(%rsp)
movl %r9d, 0x328c(%rsp)
movl %r8d, 0x3288(%rsp)
movl %edi, 0x3284(%rsp)
movq %rsi, 0x3278(%rsp)
movq %rdx, 0x3270(%rsp)
movl %ecx, 0x326c(%rsp)
movq %rax, 0x3260(%rsp)
movq 0x3290(%rsp), %rcx
movq %rcx, 0x348(%rsp)
movq 0x3278(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3270(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x326c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3260(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x328c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3288(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3284(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x34e0(%rsp)
movl $0x10, 0x34dc(%rsp)
movq 0x34e0(%rsp), %rax
movslq 0x34dc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x34dc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x350(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x10a0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12dc1e6
movq 0x350(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x10b8(%rsp)
movb $0x1, 0x1e23(%rsp)
testb $0x1, 0x1e23(%rsp)
jne 0x12dc321
leaq 0x1078(%rsp), %rax
movq %rax, 0x2178(%rsp)
movq 0x2178(%rsp), %rax
movq %rax, 0x3b80(%rsp)
movq 0x3b80(%rsp), %rax
movq %rax, 0x340(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12dc2c4
movq 0x340(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b7c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b7c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b78(%rsp)
cmpl $0x1, 0x3b78(%rsp)
jne 0x12dc2c4
movq 0x340(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12dc295
movq 0x340(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12dc293
jmp 0x12dc2c2
movq 0x340(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d20(%rsp)
cmpq $0x0, 0x3d20(%rsp)
je 0x12dc2c0
movq 0x3d20(%rsp), %rdi
callq 0x5f480
jmp 0x12dc2c2
jmp 0x12dc2c4
movq 0x340(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12dc31f
movq %rax, %rdi
callq 0x678a0
jmp 0x12dc321
leaq 0x1078(%rsp), %rax
movq %rax, 0x2048(%rsp)
movq 0x2048(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x330(%rsp)
leaq 0x1078(%rsp), %rax
movq %rax, 0x2298(%rsp)
movq 0x2298(%rsp), %rax
movq %rax, 0x3940(%rsp)
movq 0x3940(%rsp), %rax
movq %rax, 0x338(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12dc40c
movq 0x338(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x393c(%rsp) # imm = 0xFFFFFFFF
movl 0x393c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3938(%rsp)
cmpl $0x1, 0x3938(%rsp)
jne 0x12dc40c
movq 0x338(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12dc3dd
movq 0x338(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12dc3db
jmp 0x12dc40a
movq 0x338(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e40(%rsp)
cmpq $0x0, 0x3e40(%rsp)
je 0x12dc408
movq 0x3e40(%rsp), %rdi
callq 0x5f480
jmp 0x12dc40a
jmp 0x12dc40c
movq 0x338(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12dc467
movq %rax, %rdi
callq 0x678a0
movq 0x330(%rsp), %rax
movq %rax, 0x10c0(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x111c(%rsp), %eax
leaq 0x1028(%rsp), %rdx
movq %rdx, 0x2410(%rsp)
movq %rcx, 0x2408(%rsp)
movl %eax, 0x2404(%rsp)
movq 0x2408(%rsp), %rax
movq %rax, 0x328(%rsp)
movb $0x0, 0x2403(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2404(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1028(%rsp), %r10
movq %r10, 0x2d18(%rsp)
movl %r9d, 0x2d14(%rsp)
movl %r8d, 0x2d10(%rsp)
movl %edi, 0x2d0c(%rsp)
movq %rsi, 0x2d00(%rsp)
movq %rdx, 0x2cf8(%rsp)
movl %ecx, 0x2cf4(%rsp)
movq %rax, 0x2ce8(%rsp)
movq 0x2d18(%rsp), %rcx
movq %rcx, 0x320(%rsp)
movq 0x2d00(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2cf8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2cf4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2ce8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2d14(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2d10(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2d0c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3670(%rsp)
movl $0x10, 0x366c(%rsp)
movq 0x3670(%rsp), %rax
movslq 0x366c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x366c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x328(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1050(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12dc633
movq 0x328(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1068(%rsp)
movb $0x1, 0x2403(%rsp)
testb $0x1, 0x2403(%rsp)
jne 0x12dc76e
leaq 0x1028(%rsp), %rax
movq %rax, 0x2418(%rsp)
movq 0x2418(%rsp), %rax
movq %rax, 0x37c0(%rsp)
movq 0x37c0(%rsp), %rax
movq %rax, 0x318(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12dc711
movq 0x318(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x37bc(%rsp) # imm = 0xFFFFFFFF
movl 0x37bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x37b8(%rsp)
cmpl $0x1, 0x37b8(%rsp)
jne 0x12dc711
movq 0x318(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12dc6e2
movq 0x318(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12dc6e0
jmp 0x12dc70f
movq 0x318(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3f00(%rsp)
cmpq $0x0, 0x3f00(%rsp)
je 0x12dc70d
movq 0x3f00(%rsp), %rdi
callq 0x5f480
jmp 0x12dc70f
jmp 0x12dc711
movq 0x318(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12dc76c
movq %rax, %rdi
callq 0x678a0
jmp 0x12dc76e
leaq 0x1028(%rsp), %rax
movq %rax, 0x25a8(%rsp)
movq 0x25a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x308(%rsp)
leaq 0x1028(%rsp), %rax
movq %rax, 0x22a0(%rsp)
movq 0x22a0(%rsp), %rax
movq %rax, 0x3930(%rsp)
movq 0x3930(%rsp), %rax
movq %rax, 0x310(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12dc859
movq 0x310(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x392c(%rsp) # imm = 0xFFFFFFFF
movl 0x392c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3928(%rsp)
cmpl $0x1, 0x3928(%rsp)
jne 0x12dc859
movq 0x310(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12dc82a
movq 0x310(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12dc828
jmp 0x12dc857
movq 0x310(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e48(%rsp)
cmpq $0x0, 0x3e48(%rsp)
je 0x12dc855
movq 0x3e48(%rsp), %rdi
callq 0x5f480
jmp 0x12dc857
jmp 0x12dc859
movq 0x310(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12dc8b4
movq %rax, %rdi
callq 0x678a0
movq 0x308(%rsp), %rax
movq %rax, 0x1070(%rsp)
movl $0x0, 0x1024(%rsp)
movl 0x1024(%rsp), %eax
cmpl 0x1c74(%rsp), %eax
jge 0x12dca0a
movq 0x1110(%rsp), %rax
movl 0x1024(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2698(%rsp)
movq 0x2698(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x1010(%rsp)
movl $0x0, 0x100c(%rsp)
movl 0x100c(%rsp), %eax
cmpl 0x1c78(%rsp), %eax
jge 0x12dc9f2
movq 0x10c0(%rsp), %rax
movq %rax, 0x2690(%rsp)
movq 0x2690(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xff0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x1010(%rsp), %rsi
leaq 0xff0(%rsp), %rdx
callq 0x12f6d40
movaps %xmm0, 0xfe0(%rsp)
movq 0x1070(%rsp), %rax
movaps 0xfe0(%rsp), %xmm0
movq %rax, 0x2868(%rsp)
movaps %xmm0, 0x2850(%rsp)
movaps 0x2850(%rsp), %xmm0
movq 0x2868(%rsp), %rax
movups %xmm0, (%rax)
movq 0x10c0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x10c0(%rsp)
movq 0x1070(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1070(%rsp)
movl 0x100c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x100c(%rsp)
jmp 0x12dc925
jmp 0x12dc9f4
movl 0x1024(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1024(%rsp)
jmp 0x12dc8cf
jmp 0x12dca0c
movl 0x111c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x111c(%rsp)
jmp 0x12dbbc9
movl $0x0, 0x1cc4(%rsp)
jmp 0x12e2360
movl 0x1c78(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jne 0x12dd9aa
cmpl $0x1, 0x1c74(%rsp)
je 0x12dd9aa
cmpl $0x1, 0x1c94(%rsp)
jne 0x12dd9aa
movl 0x1c6c(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jne 0x12dd9aa
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c6c(%rsp), %ecx
movq 0x1c60(%rsp), %r8
movl 0x1c5c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d10(%rsp)
movq 0x1d10(%rsp), %rcx
movq %rcx, 0x2f8(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x307(%rsp)
je 0x12dcb19
movq 0x2f8(%rsp), %rax
movq %rax, 0x2a68(%rsp)
movq 0x2a68(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x307(%rsp)
movb 0x307(%rsp), %al
testb $0x1, %al
jne 0x12dcb26
jmp 0x12dcb36
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12e2360
movl $0x0, 0xfdc(%rsp)
movl 0xfdc(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12dd99a
movq 0x1cb8(%rsp), %rcx
movl 0xfdc(%rsp), %eax
leaq 0xf88(%rsp), %rdx
movq %rdx, 0x1e18(%rsp)
movq %rcx, 0x1e10(%rsp)
movl %eax, 0x1e0c(%rsp)
movq 0x1e10(%rsp), %rax
movq %rax, 0x2f0(%rsp)
movb $0x0, 0x1e0b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1e0c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xf88(%rsp), %r10
movq %r10, 0x32c8(%rsp)
movl %r9d, 0x32c4(%rsp)
movl %r8d, 0x32c0(%rsp)
movl %edi, 0x32bc(%rsp)
movq %rsi, 0x32b0(%rsp)
movq %rdx, 0x32a8(%rsp)
movl %ecx, 0x32a4(%rsp)
movq %rax, 0x3298(%rsp)
movq 0x32c8(%rsp), %rcx
movq %rcx, 0x2e8(%rsp)
movq 0x32b0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x32a8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x32a4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3298(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x32c4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x32c0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x32bc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x34d0(%rsp)
movl $0x10, 0x34cc(%rsp)
movq 0x34d0(%rsp), %rax
movslq 0x34cc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x34cc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2f0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xfb0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12dcd11
movq 0x2f0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xfc8(%rsp)
movb $0x1, 0x1e0b(%rsp)
testb $0x1, 0x1e0b(%rsp)
jne 0x12dce4c
leaq 0xf88(%rsp), %rax
movq %rax, 0x2180(%rsp)
movq 0x2180(%rsp), %rax
movq %rax, 0x3b70(%rsp)
movq 0x3b70(%rsp), %rax
movq %rax, 0x2e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12dcdef
movq 0x2e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b6c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b6c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b68(%rsp)
cmpl $0x1, 0x3b68(%rsp)
jne 0x12dcdef
movq 0x2e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12dcdc0
movq 0x2e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12dcdbe
jmp 0x12dcded
movq 0x2e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d28(%rsp)
cmpq $0x0, 0x3d28(%rsp)
je 0x12dcdeb
movq 0x3d28(%rsp), %rdi
callq 0x5f480
jmp 0x12dcded
jmp 0x12dcdef
movq 0x2e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12dce4a
movq %rax, %rdi
callq 0x678a0
jmp 0x12dce4c
leaq 0xf88(%rsp), %rax
movq %rax, 0x2040(%rsp)
movq 0x2040(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2d0(%rsp)
leaq 0xf88(%rsp), %rax
movq %rax, 0x22a8(%rsp)
movq 0x22a8(%rsp), %rax
movq %rax, 0x3920(%rsp)
movq 0x3920(%rsp), %rax
movq %rax, 0x2d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12dcf37
movq 0x2d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x391c(%rsp) # imm = 0xFFFFFFFF
movl 0x391c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3918(%rsp)
cmpl $0x1, 0x3918(%rsp)
jne 0x12dcf37
movq 0x2d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12dcf08
movq 0x2d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12dcf06
jmp 0x12dcf35
movq 0x2d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e50(%rsp)
cmpq $0x0, 0x3e50(%rsp)
je 0x12dcf33
movq 0x3e50(%rsp), %rdi
callq 0x5f480
jmp 0x12dcf35
jmp 0x12dcf37
movq 0x2d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12dcf92
movq %rax, %rdi
callq 0x678a0
movq 0x2d0(%rsp), %rax
movq %rax, 0xfd0(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0xfdc(%rsp), %eax
leaq 0xf38(%rsp), %rdx
movq %rdx, 0x1e00(%rsp)
movq %rcx, 0x1df8(%rsp)
movl %eax, 0x1df4(%rsp)
movq 0x1df8(%rsp), %rax
movq %rax, 0x2c8(%rsp)
movb $0x0, 0x1df3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1df4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xf38(%rsp), %r10
movq %r10, 0x3300(%rsp)
movl %r9d, 0x32fc(%rsp)
movl %r8d, 0x32f8(%rsp)
movl %edi, 0x32f4(%rsp)
movq %rsi, 0x32e8(%rsp)
movq %rdx, 0x32e0(%rsp)
movl %ecx, 0x32dc(%rsp)
movq %rax, 0x32d0(%rsp)
movq 0x3300(%rsp), %rcx
movq %rcx, 0x2c0(%rsp)
movq 0x32e8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x32e0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x32dc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x32d0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x32fc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x32f8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x32f4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x34c0(%rsp)
movl $0x10, 0x34bc(%rsp)
movq 0x34c0(%rsp), %rax
movslq 0x34bc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x34bc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2c8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf60(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12dd15e
movq 0x2c8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xf78(%rsp)
movb $0x1, 0x1df3(%rsp)
testb $0x1, 0x1df3(%rsp)
jne 0x12dd299
leaq 0xf38(%rsp), %rax
movq %rax, 0x2188(%rsp)
movq 0x2188(%rsp), %rax
movq %rax, 0x3b60(%rsp)
movq 0x3b60(%rsp), %rax
movq %rax, 0x2b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12dd23c
movq 0x2b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b5c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b5c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b58(%rsp)
cmpl $0x1, 0x3b58(%rsp)
jne 0x12dd23c
movq 0x2b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12dd20d
movq 0x2b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12dd20b
jmp 0x12dd23a
movq 0x2b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d30(%rsp)
cmpq $0x0, 0x3d30(%rsp)
je 0x12dd238
movq 0x3d30(%rsp), %rdi
callq 0x5f480
jmp 0x12dd23a
jmp 0x12dd23c
movq 0x2b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12dd297
movq %rax, %rdi
callq 0x678a0
jmp 0x12dd299
leaq 0xf38(%rsp), %rax
movq %rax, 0x2038(%rsp)
movq 0x2038(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2a8(%rsp)
leaq 0xf38(%rsp), %rax
movq %rax, 0x22b0(%rsp)
movq 0x22b0(%rsp), %rax
movq %rax, 0x3910(%rsp)
movq 0x3910(%rsp), %rax
movq %rax, 0x2b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12dd384
movq 0x2b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x390c(%rsp) # imm = 0xFFFFFFFF
movl 0x390c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3908(%rsp)
cmpl $0x1, 0x3908(%rsp)
jne 0x12dd384
movq 0x2b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12dd355
movq 0x2b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12dd353
jmp 0x12dd382
movq 0x2b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e58(%rsp)
cmpq $0x0, 0x3e58(%rsp)
je 0x12dd380
movq 0x3e58(%rsp), %rdi
callq 0x5f480
jmp 0x12dd382
jmp 0x12dd384
movq 0x2b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12dd3df
movq %rax, %rdi
callq 0x678a0
movq 0x2a8(%rsp), %rax
movq %rax, 0xf80(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0xfdc(%rsp), %eax
leaq 0xee8(%rsp), %rdx
movq %rdx, 0x23f0(%rsp)
movq %rcx, 0x23e8(%rsp)
movl %eax, 0x23e4(%rsp)
movq 0x23e8(%rsp), %rax
movq %rax, 0x2a0(%rsp)
movb $0x0, 0x23e3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x23e4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xee8(%rsp), %r10
movq %r10, 0x2d50(%rsp)
movl %r9d, 0x2d4c(%rsp)
movl %r8d, 0x2d48(%rsp)
movl %edi, 0x2d44(%rsp)
movq %rsi, 0x2d38(%rsp)
movq %rdx, 0x2d30(%rsp)
movl %ecx, 0x2d2c(%rsp)
movq %rax, 0x2d20(%rsp)
movq 0x2d50(%rsp), %rcx
movq %rcx, 0x298(%rsp)
movq 0x2d38(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2d30(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2d2c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2d20(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2d4c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2d48(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2d44(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3660(%rsp)
movl $0x10, 0x365c(%rsp)
movq 0x3660(%rsp), %rax
movslq 0x365c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x365c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2a0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf10(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12dd5ab
movq 0x2a0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xf28(%rsp)
movb $0x1, 0x23e3(%rsp)
testb $0x1, 0x23e3(%rsp)
jne 0x12dd6e6
leaq 0xee8(%rsp), %rax
movq %rax, 0x23f8(%rsp)
movq 0x23f8(%rsp), %rax
movq %rax, 0x37d0(%rsp)
movq 0x37d0(%rsp), %rax
movq %rax, 0x290(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12dd689
movq 0x290(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x37cc(%rsp) # imm = 0xFFFFFFFF
movl 0x37cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x37c8(%rsp)
cmpl $0x1, 0x37c8(%rsp)
jne 0x12dd689
movq 0x290(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12dd65a
movq 0x290(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12dd658
jmp 0x12dd687
movq 0x290(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ef8(%rsp)
cmpq $0x0, 0x3ef8(%rsp)
je 0x12dd685
movq 0x3ef8(%rsp), %rdi
callq 0x5f480
jmp 0x12dd687
jmp 0x12dd689
movq 0x290(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12dd6e4
movq %rax, %rdi
callq 0x678a0
jmp 0x12dd6e6
leaq 0xee8(%rsp), %rax
movq %rax, 0x25a0(%rsp)
movq 0x25a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x280(%rsp)
leaq 0xee8(%rsp), %rax
movq %rax, 0x22b8(%rsp)
movq 0x22b8(%rsp), %rax
movq %rax, 0x3900(%rsp)
movq 0x3900(%rsp), %rax
movq %rax, 0x288(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12dd7d1
movq 0x288(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x38fc(%rsp) # imm = 0xFFFFFFFF
movl 0x38fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x38f8(%rsp)
cmpl $0x1, 0x38f8(%rsp)
jne 0x12dd7d1
movq 0x288(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12dd7a2
movq 0x288(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12dd7a0
jmp 0x12dd7cf
movq 0x288(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e60(%rsp)
cmpq $0x0, 0x3e60(%rsp)
je 0x12dd7cd
movq 0x3e60(%rsp), %rdi
callq 0x5f480
jmp 0x12dd7cf
jmp 0x12dd7d1
movq 0x288(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12dd82c
movq %rax, %rdi
callq 0x678a0
movq 0x280(%rsp), %rax
movq %rax, 0xf30(%rsp)
movl $0x0, 0xee4(%rsp)
movl 0xee4(%rsp), %eax
cmpl 0x1c74(%rsp), %eax
jge 0x12dd982
movl $0x0, 0xee0(%rsp)
movl 0xee0(%rsp), %eax
cmpl 0x1c78(%rsp), %eax
jge 0x12dd96a
movq 0xfd0(%rsp), %rax
movl 0xee0(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2688(%rsp)
movq 0x2688(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xed0(%rsp)
movq 0xf80(%rsp), %rax
movq %rax, 0x2680(%rsp)
movq 0x2680(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xec0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0xed0(%rsp), %rsi
leaq 0xec0(%rsp), %rdx
callq 0x12f6d40
movaps %xmm0, 0xeb0(%rsp)
movq 0xf30(%rsp), %rax
movaps 0xeb0(%rsp), %xmm0
movq %rax, 0x2848(%rsp)
movaps %xmm0, 0x2830(%rsp)
movaps 0x2830(%rsp), %xmm0
movq 0x2848(%rsp), %rax
movups %xmm0, (%rax)
movq 0xf80(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xf80(%rsp)
movq 0xf30(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xf30(%rsp)
movl 0xee0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xee0(%rsp)
jmp 0x12dd866
jmp 0x12dd96c
movl 0xee4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xee4(%rsp)
jmp 0x12dd847
jmp 0x12dd984
movl 0xfdc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xfdc(%rsp)
jmp 0x12dcb41
movl $0x0, 0x1cc4(%rsp)
jmp 0x12e2360
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12f4440
movl %eax, 0x1cc4(%rsp)
jmp 0x12e2360
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movl 0x1c8c(%rsp), %ecx
movq 0x1c80(%rsp), %r8
movl 0x1c7c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d08(%rsp)
movq 0x1d08(%rsp), %rcx
movq %rcx, 0x270(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x27f(%rsp)
je 0x12dda7e
movq 0x270(%rsp), %rax
movq %rax, 0x2a70(%rsp)
movq 0x2a70(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x27f(%rsp)
movb 0x27f(%rsp), %al
testb $0x1, %al
jne 0x12dda8b
jmp 0x12dda9b
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12e2360
movq 0x1cb0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x12de51b
movl $0x0, 0xeac(%rsp)
movl 0xeac(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jge 0x12de50b
movq 0x1cb8(%rsp), %rcx
movl 0xeac(%rsp), %eax
leaq 0xe58(%rsp), %rdx
movq %rdx, 0x1de8(%rsp)
movq %rcx, 0x1de0(%rsp)
movl %eax, 0x1ddc(%rsp)
movq 0x1de0(%rsp), %rax
movq %rax, 0x268(%rsp)
movb $0x0, 0x1ddb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1ddc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xe58(%rsp), %r10
movq %r10, 0x3338(%rsp)
movl %r9d, 0x3334(%rsp)
movl %r8d, 0x3330(%rsp)
movl %edi, 0x332c(%rsp)
movq %rsi, 0x3320(%rsp)
movq %rdx, 0x3318(%rsp)
movl %ecx, 0x3314(%rsp)
movq %rax, 0x3308(%rsp)
movq 0x3338(%rsp), %rcx
movq %rcx, 0x260(%rsp)
movq 0x3320(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3318(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3314(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3308(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3334(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3330(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x332c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x34b0(%rsp)
movl $0x10, 0x34ac(%rsp)
movq 0x34b0(%rsp), %rax
movslq 0x34ac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x34ac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x268(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xe80(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12ddc88
movq 0x268(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xe98(%rsp)
movb $0x1, 0x1ddb(%rsp)
testb $0x1, 0x1ddb(%rsp)
jne 0x12dddc3
leaq 0xe58(%rsp), %rax
movq %rax, 0x2190(%rsp)
movq 0x2190(%rsp), %rax
movq %rax, 0x3b50(%rsp)
movq 0x3b50(%rsp), %rax
movq %rax, 0x258(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ddd66
movq 0x258(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b4c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b4c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b48(%rsp)
cmpl $0x1, 0x3b48(%rsp)
jne 0x12ddd66
movq 0x258(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ddd37
movq 0x258(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ddd35
jmp 0x12ddd64
movq 0x258(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d38(%rsp)
cmpq $0x0, 0x3d38(%rsp)
je 0x12ddd62
movq 0x3d38(%rsp), %rdi
callq 0x5f480
jmp 0x12ddd64
jmp 0x12ddd66
movq 0x258(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12dddc1
movq %rax, %rdi
callq 0x678a0
jmp 0x12dddc3
leaq 0xe58(%rsp), %rax
movq %rax, 0x2030(%rsp)
movq 0x2030(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x248(%rsp)
leaq 0xe58(%rsp), %rax
movq %rax, 0x22c0(%rsp)
movq 0x22c0(%rsp), %rax
movq %rax, 0x38f0(%rsp)
movq 0x38f0(%rsp), %rax
movq %rax, 0x250(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ddeae
movq 0x250(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x38ec(%rsp) # imm = 0xFFFFFFFF
movl 0x38ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x38e8(%rsp)
cmpl $0x1, 0x38e8(%rsp)
jne 0x12ddeae
movq 0x250(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12dde7f
movq 0x250(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12dde7d
jmp 0x12ddeac
movq 0x250(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e68(%rsp)
cmpq $0x0, 0x3e68(%rsp)
je 0x12ddeaa
movq 0x3e68(%rsp), %rdi
callq 0x5f480
jmp 0x12ddeac
jmp 0x12ddeae
movq 0x250(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ddf09
movq %rax, %rdi
callq 0x678a0
movq 0x248(%rsp), %rax
movq %rax, 0xea0(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0xeac(%rsp), %eax
movq %rcx, 0x2a18(%rsp)
movl %eax, 0x2a14(%rsp)
movq 0x2a18(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2a14(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xe50(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0xeac(%rsp), %eax
leaq 0xe00(%rsp), %rdx
movq %rdx, 0x23d0(%rsp)
movq %rcx, 0x23c8(%rsp)
movl %eax, 0x23c4(%rsp)
movq 0x23c8(%rsp), %rax
movq %rax, 0x240(%rsp)
movb $0x0, 0x23c3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x23c4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xe00(%rsp), %r10
movq %r10, 0x2d88(%rsp)
movl %r9d, 0x2d84(%rsp)
movl %r8d, 0x2d80(%rsp)
movl %edi, 0x2d7c(%rsp)
movq %rsi, 0x2d70(%rsp)
movq %rdx, 0x2d68(%rsp)
movl %ecx, 0x2d64(%rsp)
movq %rax, 0x2d58(%rsp)
movq 0x2d88(%rsp), %rcx
movq %rcx, 0x238(%rsp)
movq 0x2d70(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2d68(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2d64(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2d58(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2d84(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2d80(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2d7c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3650(%rsp)
movl $0x10, 0x364c(%rsp)
movq 0x3650(%rsp), %rax
movslq 0x364c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x364c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x240(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xe28(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12de11e
movq 0x240(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xe40(%rsp)
movb $0x1, 0x23c3(%rsp)
testb $0x1, 0x23c3(%rsp)
jne 0x12de259
leaq 0xe00(%rsp), %rax
movq %rax, 0x23d8(%rsp)
movq 0x23d8(%rsp), %rax
movq %rax, 0x37e0(%rsp)
movq 0x37e0(%rsp), %rax
movq %rax, 0x230(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12de1fc
movq 0x230(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x37dc(%rsp) # imm = 0xFFFFFFFF
movl 0x37dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x37d8(%rsp)
cmpl $0x1, 0x37d8(%rsp)
jne 0x12de1fc
movq 0x230(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12de1cd
movq 0x230(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12de1cb
jmp 0x12de1fa
movq 0x230(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ef0(%rsp)
cmpq $0x0, 0x3ef0(%rsp)
je 0x12de1f8
movq 0x3ef0(%rsp), %rdi
callq 0x5f480
jmp 0x12de1fa
jmp 0x12de1fc
movq 0x230(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12de257
movq %rax, %rdi
callq 0x678a0
jmp 0x12de259
leaq 0xe00(%rsp), %rax
movq %rax, 0x2598(%rsp)
movq 0x2598(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x220(%rsp)
leaq 0xe00(%rsp), %rax
movq %rax, 0x22c8(%rsp)
movq 0x22c8(%rsp), %rax
movq %rax, 0x38e0(%rsp)
movq 0x38e0(%rsp), %rax
movq %rax, 0x228(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12de344
movq 0x228(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x38dc(%rsp) # imm = 0xFFFFFFFF
movl 0x38dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x38d8(%rsp)
cmpl $0x1, 0x38d8(%rsp)
jne 0x12de344
movq 0x228(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12de315
movq 0x228(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12de313
jmp 0x12de342
movq 0x228(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e70(%rsp)
cmpq $0x0, 0x3e70(%rsp)
je 0x12de340
movq 0x3e70(%rsp), %rdi
callq 0x5f480
jmp 0x12de342
jmp 0x12de344
movq 0x228(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12de39f
movq %rax, %rdi
callq 0x678a0
movq 0x220(%rsp), %rax
movq %rax, 0xe48(%rsp)
movl $0x0, 0xdfc(%rsp)
movl 0xdfc(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jge 0x12de4f3
movq 0xe50(%rsp), %rax
movq %rax, 0x2678(%rsp)
movq 0x2678(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xde0(%rsp)
movl $0x0, 0xddc(%rsp)
movl 0xddc(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jge 0x12de4c9
movq 0xea0(%rsp), %rax
movq %rax, 0x2670(%rsp)
movq 0x2670(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xdc0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0xdc0(%rsp), %rsi
leaq 0xde0(%rsp), %rdx
callq 0x12f6d40
movaps %xmm0, 0xdb0(%rsp)
movq 0xe48(%rsp), %rax
movaps 0xdb0(%rsp), %xmm0
movq %rax, 0x2828(%rsp)
movaps %xmm0, 0x2810(%rsp)
movaps 0x2810(%rsp), %xmm0
movq 0x2828(%rsp), %rax
movups %xmm0, (%rax)
movq 0xea0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xea0(%rsp)
movq 0xe48(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xe48(%rsp)
movl 0xddc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xddc(%rsp)
jmp 0x12de3fc
movq 0xe50(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xe50(%rsp)
movl 0xdfc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdfc(%rsp)
jmp 0x12de3ba
jmp 0x12de4f5
movl 0xeac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xeac(%rsp)
jmp 0x12ddab8
movl $0x0, 0x1cc4(%rsp)
jmp 0x12e2360
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x12def79
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x12de576
cmpl $0x1, 0x1c5c(%rsp)
jne 0x12de576
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12f53c0
movl %eax, 0x1cc4(%rsp)
jmp 0x12e2360
movl $0x0, 0xdac(%rsp)
movl 0xdac(%rsp), %eax
cmpl 0x1c8c(%rsp), %eax
jge 0x12def69
movq 0x1cb8(%rsp), %rcx
movl 0xdac(%rsp), %eax
leaq 0xd58(%rsp), %rdx
movq %rdx, 0x1dd0(%rsp)
movq %rcx, 0x1dc8(%rsp)
movl %eax, 0x1dc4(%rsp)
movq 0x1dc8(%rsp), %rax
movq %rax, 0x218(%rsp)
movb $0x0, 0x1dc3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1dc4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xd58(%rsp), %r10
movq %r10, 0x3370(%rsp)
movl %r9d, 0x336c(%rsp)
movl %r8d, 0x3368(%rsp)
movl %edi, 0x3364(%rsp)
movq %rsi, 0x3358(%rsp)
movq %rdx, 0x3350(%rsp)
movl %ecx, 0x334c(%rsp)
movq %rax, 0x3340(%rsp)
movq 0x3370(%rsp), %rcx
movq %rcx, 0x210(%rsp)
movq 0x3358(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3350(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x334c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3340(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x336c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3368(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3364(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x34a0(%rsp)
movl $0x10, 0x349c(%rsp)
movq 0x34a0(%rsp), %rax
movslq 0x349c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x349c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x218(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xd80(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12de751
movq 0x218(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd98(%rsp)
movb $0x1, 0x1dc3(%rsp)
testb $0x1, 0x1dc3(%rsp)
jne 0x12de88c
leaq 0xd58(%rsp), %rax
movq %rax, 0x2198(%rsp)
movq 0x2198(%rsp), %rax
movq %rax, 0x3b40(%rsp)
movq 0x3b40(%rsp), %rax
movq %rax, 0x208(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12de82f
movq 0x208(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b3c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b3c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b38(%rsp)
cmpl $0x1, 0x3b38(%rsp)
jne 0x12de82f
movq 0x208(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12de800
movq 0x208(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12de7fe
jmp 0x12de82d
movq 0x208(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d40(%rsp)
cmpq $0x0, 0x3d40(%rsp)
je 0x12de82b
movq 0x3d40(%rsp), %rdi
callq 0x5f480
jmp 0x12de82d
jmp 0x12de82f
movq 0x208(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12de88a
movq %rax, %rdi
callq 0x678a0
jmp 0x12de88c
leaq 0xd58(%rsp), %rax
movq %rax, 0x2028(%rsp)
movq 0x2028(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1f8(%rsp)
leaq 0xd58(%rsp), %rax
movq %rax, 0x22d0(%rsp)
movq 0x22d0(%rsp), %rax
movq %rax, 0x38d0(%rsp)
movq 0x38d0(%rsp), %rax
movq %rax, 0x200(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12de977
movq 0x200(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x38cc(%rsp) # imm = 0xFFFFFFFF
movl 0x38cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x38c8(%rsp)
cmpl $0x1, 0x38c8(%rsp)
jne 0x12de977
movq 0x200(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12de948
movq 0x200(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12de946
jmp 0x12de975
movq 0x200(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e78(%rsp)
cmpq $0x0, 0x3e78(%rsp)
je 0x12de973
movq 0x3e78(%rsp), %rdi
callq 0x5f480
jmp 0x12de975
jmp 0x12de977
movq 0x200(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12de9d2
movq %rax, %rdi
callq 0x678a0
movq 0x1f8(%rsp), %rax
movq %rax, 0xda0(%rsp)
movq 0x1cb0(%rsp), %rax
movq %rax, 0x2020(%rsp)
movq 0x2020(%rsp), %rax
movq (%rax), %rax
movl 0xdac(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2668(%rsp)
movq 0x2668(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xd40(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0xdac(%rsp), %eax
leaq 0xcf0(%rsp), %rdx
movq %rdx, 0x23b0(%rsp)
movq %rcx, 0x23a8(%rsp)
movl %eax, 0x23a4(%rsp)
movq 0x23a8(%rsp), %rax
movq %rax, 0x1f0(%rsp)
movb $0x0, 0x23a3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x23a4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xcf0(%rsp), %r10
movq %r10, 0x2dc0(%rsp)
movl %r9d, 0x2dbc(%rsp)
movl %r8d, 0x2db8(%rsp)
movl %edi, 0x2db4(%rsp)
movq %rsi, 0x2da8(%rsp)
movq %rdx, 0x2da0(%rsp)
movl %ecx, 0x2d9c(%rsp)
movq %rax, 0x2d90(%rsp)
movq 0x2dc0(%rsp), %rcx
movq %rcx, 0x1e8(%rsp)
movq 0x2da8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2da0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2d9c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2d90(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2dbc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2db8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2db4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3640(%rsp)
movl $0x10, 0x363c(%rsp)
movq 0x3640(%rsp), %rax
movslq 0x363c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x363c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x1f0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xd18(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12debe8
movq 0x1f0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd30(%rsp)
movb $0x1, 0x23a3(%rsp)
testb $0x1, 0x23a3(%rsp)
jne 0x12ded23
leaq 0xcf0(%rsp), %rax
movq %rax, 0x23b8(%rsp)
movq 0x23b8(%rsp), %rax
movq %rax, 0x37f0(%rsp)
movq 0x37f0(%rsp), %rax
movq %rax, 0x1e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12decc6
movq 0x1e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x37ec(%rsp) # imm = 0xFFFFFFFF
movl 0x37ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x37e8(%rsp)
cmpl $0x1, 0x37e8(%rsp)
jne 0x12decc6
movq 0x1e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12dec97
movq 0x1e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12dec95
jmp 0x12decc4
movq 0x1e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ee8(%rsp)
cmpq $0x0, 0x3ee8(%rsp)
je 0x12decc2
movq 0x3ee8(%rsp), %rdi
callq 0x5f480
jmp 0x12decc4
jmp 0x12decc6
movq 0x1e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ded21
movq %rax, %rdi
callq 0x678a0
jmp 0x12ded23
leaq 0xcf0(%rsp), %rax
movq %rax, 0x2590(%rsp)
movq 0x2590(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1d0(%rsp)
leaq 0xcf0(%rsp), %rax
movq %rax, 0x22d8(%rsp)
movq 0x22d8(%rsp), %rax
movq %rax, 0x38c0(%rsp)
movq 0x38c0(%rsp), %rax
movq %rax, 0x1d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12dee0e
movq 0x1d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x38bc(%rsp) # imm = 0xFFFFFFFF
movl 0x38bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x38b8(%rsp)
cmpl $0x1, 0x38b8(%rsp)
jne 0x12dee0e
movq 0x1d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12deddf
movq 0x1d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12deddd
jmp 0x12dee0c
movq 0x1d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e80(%rsp)
cmpq $0x0, 0x3e80(%rsp)
je 0x12dee0a
movq 0x3e80(%rsp), %rdi
callq 0x5f480
jmp 0x12dee0c
jmp 0x12dee0e
movq 0x1d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12dee69
movq %rax, %rdi
callq 0x678a0
movq 0x1d0(%rsp), %rax
movq %rax, 0xd38(%rsp)
movl $0x0, 0xcec(%rsp)
movl 0xcec(%rsp), %eax
cmpl 0x1c88(%rsp), %eax
jge 0x12def51
movq 0xda0(%rsp), %rax
movq %rax, 0x2660(%rsp)
movq 0x2660(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xcd0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0xcd0(%rsp), %rsi
leaq 0xd40(%rsp), %rdx
callq 0x12f6d40
movaps %xmm0, 0xcc0(%rsp)
movq 0xd38(%rsp), %rax
movaps 0xcc0(%rsp), %xmm0
movq %rax, 0x2808(%rsp)
movaps %xmm0, 0x27f0(%rsp)
movaps 0x27f0(%rsp), %xmm0
movq 0x2808(%rsp), %rax
movups %xmm0, (%rax)
movq 0xda0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xda0(%rsp)
movq 0xd38(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xd38(%rsp)
movl 0xcec(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xcec(%rsp)
jmp 0x12dee84
jmp 0x12def53
movl 0xdac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdac(%rsp)
jmp 0x12de581
movl $0x0, 0x1cc4(%rsp)
jmp 0x12e2360
jmp 0x12e2353
movq 0x1cb8(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x12e0a1a
movq 0x1cb0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x12dfb14
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c70(%rsp), %ecx
movl 0x1c6c(%rsp), %r8d
movq 0x1c60(%rsp), %r9
movl 0x1c5c(%rsp), %r10d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1d00(%rsp)
movq 0x1d00(%rsp), %rcx
movq %rcx, 0x1c0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1cf(%rsp)
je 0x12df052
movq 0x1c0(%rsp), %rax
movq %rax, 0x2a78(%rsp)
movq 0x2a78(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1cf(%rsp)
movb 0x1cf(%rsp), %al
testb $0x1, %al
jne 0x12df05f
jmp 0x12df06f
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12e2360
movl $0x0, 0xcbc(%rsp)
movl 0xcbc(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12dfb04
movq 0x1cb8(%rsp), %rcx
movl 0xcbc(%rsp), %eax
movq %rcx, 0x29b8(%rsp)
movl %eax, 0x29b4(%rsp)
movq 0x29b8(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x29b4(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xcb0(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0xcbc(%rsp), %eax
leaq 0xc60(%rsp), %rdx
movq %rdx, 0x1db8(%rsp)
movq %rcx, 0x1db0(%rsp)
movl %eax, 0x1dac(%rsp)
movq 0x1db0(%rsp), %rax
movq %rax, 0x1b8(%rsp)
movb $0x0, 0x1dab(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1dac(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xc60(%rsp), %r10
movq %r10, 0x33a8(%rsp)
movl %r9d, 0x33a4(%rsp)
movl %r8d, 0x33a0(%rsp)
movl %edi, 0x339c(%rsp)
movq %rsi, 0x3390(%rsp)
movq %rdx, 0x3388(%rsp)
movl %ecx, 0x3384(%rsp)
movq %rax, 0x3378(%rsp)
movq 0x33a8(%rsp), %rcx
movq %rcx, 0x1b0(%rsp)
movq 0x3390(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3388(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3384(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3378(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x33a4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x33a0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x339c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3490(%rsp)
movl $0x10, 0x348c(%rsp)
movq 0x3490(%rsp), %rax
movslq 0x348c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x348c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x1b8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc88(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12df293
movq 0x1b8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xca0(%rsp)
movb $0x1, 0x1dab(%rsp)
testb $0x1, 0x1dab(%rsp)
jne 0x12df3ce
leaq 0xc60(%rsp), %rax
movq %rax, 0x21a0(%rsp)
movq 0x21a0(%rsp), %rax
movq %rax, 0x3b30(%rsp)
movq 0x3b30(%rsp), %rax
movq %rax, 0x1a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12df371
movq 0x1a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b2c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b2c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b28(%rsp)
cmpl $0x1, 0x3b28(%rsp)
jne 0x12df371
movq 0x1a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12df342
movq 0x1a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12df340
jmp 0x12df36f
movq 0x1a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d48(%rsp)
cmpq $0x0, 0x3d48(%rsp)
je 0x12df36d
movq 0x3d48(%rsp), %rdi
callq 0x5f480
jmp 0x12df36f
jmp 0x12df371
movq 0x1a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12df3cc
movq %rax, %rdi
callq 0x678a0
jmp 0x12df3ce
leaq 0xc60(%rsp), %rax
movq %rax, 0x2018(%rsp)
movq 0x2018(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x198(%rsp)
leaq 0xc60(%rsp), %rax
movq %rax, 0x22e0(%rsp)
movq 0x22e0(%rsp), %rax
movq %rax, 0x38b0(%rsp)
movq 0x38b0(%rsp), %rax
movq %rax, 0x1a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12df4b9
movq 0x1a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x38ac(%rsp) # imm = 0xFFFFFFFF
movl 0x38ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x38a8(%rsp)
cmpl $0x1, 0x38a8(%rsp)
jne 0x12df4b9
movq 0x1a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12df48a
movq 0x1a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12df488
jmp 0x12df4b7
movq 0x1a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e88(%rsp)
cmpq $0x0, 0x3e88(%rsp)
je 0x12df4b5
movq 0x3e88(%rsp), %rdi
callq 0x5f480
jmp 0x12df4b7
jmp 0x12df4b9
movq 0x1a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12df514
movq %rax, %rdi
callq 0x678a0
movq 0x198(%rsp), %rax
movq %rax, 0xca8(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0xcbc(%rsp), %eax
leaq 0xc10(%rsp), %rdx
movq %rdx, 0x2390(%rsp)
movq %rcx, 0x2388(%rsp)
movl %eax, 0x2384(%rsp)
movq 0x2388(%rsp), %rax
movq %rax, 0x190(%rsp)
movb $0x0, 0x2383(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2384(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xc10(%rsp), %r10
movq %r10, 0x2df8(%rsp)
movl %r9d, 0x2df4(%rsp)
movl %r8d, 0x2df0(%rsp)
movl %edi, 0x2dec(%rsp)
movq %rsi, 0x2de0(%rsp)
movq %rdx, 0x2dd8(%rsp)
movl %ecx, 0x2dd4(%rsp)
movq %rax, 0x2dc8(%rsp)
movq 0x2df8(%rsp), %rcx
movq %rcx, 0x188(%rsp)
movq 0x2de0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2dd8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2dd4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2dc8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2df4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2df0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2dec(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3630(%rsp)
movl $0x10, 0x362c(%rsp)
movq 0x3630(%rsp), %rax
movslq 0x362c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x362c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x190(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc38(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12df6e0
movq 0x190(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xc50(%rsp)
movb $0x1, 0x2383(%rsp)
testb $0x1, 0x2383(%rsp)
jne 0x12df81b
leaq 0xc10(%rsp), %rax
movq %rax, 0x2398(%rsp)
movq 0x2398(%rsp), %rax
movq %rax, 0x3800(%rsp)
movq 0x3800(%rsp), %rax
movq %rax, 0x180(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12df7be
movq 0x180(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x37fc(%rsp) # imm = 0xFFFFFFFF
movl 0x37fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x37f8(%rsp)
cmpl $0x1, 0x37f8(%rsp)
jne 0x12df7be
movq 0x180(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12df78f
movq 0x180(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12df78d
jmp 0x12df7bc
movq 0x180(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ee0(%rsp)
cmpq $0x0, 0x3ee0(%rsp)
je 0x12df7ba
movq 0x3ee0(%rsp), %rdi
callq 0x5f480
jmp 0x12df7bc
jmp 0x12df7be
movq 0x180(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12df819
movq %rax, %rdi
callq 0x678a0
jmp 0x12df81b
leaq 0xc10(%rsp), %rax
movq %rax, 0x2588(%rsp)
movq 0x2588(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x170(%rsp)
leaq 0xc10(%rsp), %rax
movq %rax, 0x22e8(%rsp)
movq 0x22e8(%rsp), %rax
movq %rax, 0x38a0(%rsp)
movq 0x38a0(%rsp), %rax
movq %rax, 0x178(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12df906
movq 0x178(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x389c(%rsp) # imm = 0xFFFFFFFF
movl 0x389c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3898(%rsp)
cmpl $0x1, 0x3898(%rsp)
jne 0x12df906
movq 0x178(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12df8d7
movq 0x178(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12df8d5
jmp 0x12df904
movq 0x178(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e90(%rsp)
cmpq $0x0, 0x3e90(%rsp)
je 0x12df902
movq 0x3e90(%rsp), %rdi
callq 0x5f480
jmp 0x12df904
jmp 0x12df906
movq 0x178(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12df961
movq %rax, %rdi
callq 0x678a0
movq 0x170(%rsp), %rax
movq %rax, 0xc58(%rsp)
movl $0x0, 0xc0c(%rsp)
movl 0xc0c(%rsp), %eax
cmpl 0x1c70(%rsp), %eax
jge 0x12dfaec
movq 0xcb0(%rsp), %rax
movq %rax, 0x2658(%rsp)
movq 0x2658(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xbf0(%rsp)
movl $0x0, 0xbec(%rsp)
movl 0xbec(%rsp), %eax
cmpl 0x1c74(%rsp), %eax
jge 0x12dfac2
movl $0x0, 0xbe8(%rsp)
movl 0xbe8(%rsp), %eax
cmpl 0x1c78(%rsp), %eax
jge 0x12dfaaa
movq 0xca8(%rsp), %rax
movq %rax, 0x2650(%rsp)
movq 0x2650(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xbd0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0xbf0(%rsp), %rsi
leaq 0xbd0(%rsp), %rdx
callq 0x12f6d40
movaps %xmm0, 0xbc0(%rsp)
movq 0xc58(%rsp), %rax
movaps 0xbc0(%rsp), %xmm0
movq %rax, 0x27e8(%rsp)
movaps %xmm0, 0x27d0(%rsp)
movaps 0x27d0(%rsp), %xmm0
movq 0x27e8(%rsp), %rax
movups %xmm0, (%rax)
movq 0xca8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xca8(%rsp)
movq 0xc58(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xc58(%rsp)
movl 0xbe8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xbe8(%rsp)
jmp 0x12df9dd
jmp 0x12dfaac
movl 0xbec(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xbec(%rsp)
jmp 0x12df9be
movq 0xcb0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xcb0(%rsp)
movl 0xc0c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xc0c(%rsp)
jmp 0x12df97c
jmp 0x12dfaee
movl 0xcbc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xcbc(%rsp)
jmp 0x12df07a
movl $0x0, 0x1cc4(%rsp)
jmp 0x12e2360
movq 0x1cb0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x12e0654
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c6c(%rsp), %ecx
movq 0x1c60(%rsp), %r8
movl 0x1c5c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1cf8(%rsp)
movq 0x1cf8(%rsp), %rcx
movq %rcx, 0x160(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x16f(%rsp)
je 0x12dfbc9
movq 0x160(%rsp), %rax
movq %rax, 0x2a80(%rsp)
movq 0x2a80(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x16f(%rsp)
movb 0x16f(%rsp), %al
testb $0x1, %al
jne 0x12dfbd6
jmp 0x12dfbe6
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12e2360
movl $0x0, 0xbbc(%rsp)
movl 0xbbc(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12e0644
movq 0x1cb8(%rsp), %rcx
movl 0xbbc(%rsp), %eax
movq %rcx, 0x2a08(%rsp)
movl %eax, 0x2a04(%rsp)
movq 0x2a08(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2a04(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xbb0(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0xbbc(%rsp), %eax
leaq 0xb60(%rsp), %rdx
movq %rdx, 0x1da0(%rsp)
movq %rcx, 0x1d98(%rsp)
movl %eax, 0x1d94(%rsp)
movq 0x1d98(%rsp), %rax
movq %rax, 0x158(%rsp)
movb $0x0, 0x1d93(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1d94(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xb60(%rsp), %r10
movq %r10, 0x33e0(%rsp)
movl %r9d, 0x33dc(%rsp)
movl %r8d, 0x33d8(%rsp)
movl %edi, 0x33d4(%rsp)
movq %rsi, 0x33c8(%rsp)
movq %rdx, 0x33c0(%rsp)
movl %ecx, 0x33bc(%rsp)
movq %rax, 0x33b0(%rsp)
movq 0x33e0(%rsp), %rcx
movq %rcx, 0x150(%rsp)
movq 0x33c8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x33c0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x33bc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x33b0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x33dc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x33d8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x33d4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3480(%rsp)
movl $0x10, 0x347c(%rsp)
movq 0x3480(%rsp), %rax
movslq 0x347c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x347c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x158(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xb88(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12dfe0a
movq 0x158(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xba0(%rsp)
movb $0x1, 0x1d93(%rsp)
testb $0x1, 0x1d93(%rsp)
jne 0x12dff45
leaq 0xb60(%rsp), %rax
movq %rax, 0x21a8(%rsp)
movq 0x21a8(%rsp), %rax
movq %rax, 0x3b20(%rsp)
movq 0x3b20(%rsp), %rax
movq %rax, 0x148(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12dfee8
movq 0x148(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b1c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b1c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b18(%rsp)
cmpl $0x1, 0x3b18(%rsp)
jne 0x12dfee8
movq 0x148(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12dfeb9
movq 0x148(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12dfeb7
jmp 0x12dfee6
movq 0x148(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d50(%rsp)
cmpq $0x0, 0x3d50(%rsp)
je 0x12dfee4
movq 0x3d50(%rsp), %rdi
callq 0x5f480
jmp 0x12dfee6
jmp 0x12dfee8
movq 0x148(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12dff43
movq %rax, %rdi
callq 0x678a0
jmp 0x12dff45
leaq 0xb60(%rsp), %rax
movq %rax, 0x2010(%rsp)
movq 0x2010(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x138(%rsp)
leaq 0xb60(%rsp), %rax
movq %rax, 0x22f0(%rsp)
movq 0x22f0(%rsp), %rax
movq %rax, 0x3890(%rsp)
movq 0x3890(%rsp), %rax
movq %rax, 0x140(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e0030
movq 0x140(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x388c(%rsp) # imm = 0xFFFFFFFF
movl 0x388c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3888(%rsp)
cmpl $0x1, 0x3888(%rsp)
jne 0x12e0030
movq 0x140(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e0001
movq 0x140(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12dffff
jmp 0x12e002e
movq 0x140(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e98(%rsp)
cmpq $0x0, 0x3e98(%rsp)
je 0x12e002c
movq 0x3e98(%rsp), %rdi
callq 0x5f480
jmp 0x12e002e
jmp 0x12e0030
movq 0x140(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e008b
movq %rax, %rdi
callq 0x678a0
movq 0x138(%rsp), %rax
movq %rax, 0xba8(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0xbbc(%rsp), %eax
leaq 0xb10(%rsp), %rdx
movq %rdx, 0x2370(%rsp)
movq %rcx, 0x2368(%rsp)
movl %eax, 0x2364(%rsp)
movq 0x2368(%rsp), %rax
movq %rax, 0x130(%rsp)
movb $0x0, 0x2363(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2364(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xb10(%rsp), %r10
movq %r10, 0x2e30(%rsp)
movl %r9d, 0x2e2c(%rsp)
movl %r8d, 0x2e28(%rsp)
movl %edi, 0x2e24(%rsp)
movq %rsi, 0x2e18(%rsp)
movq %rdx, 0x2e10(%rsp)
movl %ecx, 0x2e0c(%rsp)
movq %rax, 0x2e00(%rsp)
movq 0x2e30(%rsp), %rcx
movq %rcx, 0x128(%rsp)
movq 0x2e18(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2e10(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2e0c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2e00(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2e2c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2e28(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2e24(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3620(%rsp)
movl $0x10, 0x361c(%rsp)
movq 0x3620(%rsp), %rax
movslq 0x361c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x361c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x130(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xb38(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12e0257
movq 0x130(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xb50(%rsp)
movb $0x1, 0x2363(%rsp)
testb $0x1, 0x2363(%rsp)
jne 0x12e0392
leaq 0xb10(%rsp), %rax
movq %rax, 0x2378(%rsp)
movq 0x2378(%rsp), %rax
movq %rax, 0x3810(%rsp)
movq 0x3810(%rsp), %rax
movq %rax, 0x120(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e0335
movq 0x120(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x380c(%rsp) # imm = 0xFFFFFFFF
movl 0x380c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3808(%rsp)
cmpl $0x1, 0x3808(%rsp)
jne 0x12e0335
movq 0x120(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e0306
movq 0x120(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e0304
jmp 0x12e0333
movq 0x120(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ed8(%rsp)
cmpq $0x0, 0x3ed8(%rsp)
je 0x12e0331
movq 0x3ed8(%rsp), %rdi
callq 0x5f480
jmp 0x12e0333
jmp 0x12e0335
movq 0x120(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e0390
movq %rax, %rdi
callq 0x678a0
jmp 0x12e0392
leaq 0xb10(%rsp), %rax
movq %rax, 0x2580(%rsp)
movq 0x2580(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x110(%rsp)
leaq 0xb10(%rsp), %rax
movq %rax, 0x22f8(%rsp)
movq 0x22f8(%rsp), %rax
movq %rax, 0x3880(%rsp)
movq 0x3880(%rsp), %rax
movq %rax, 0x118(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e047d
movq 0x118(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x387c(%rsp) # imm = 0xFFFFFFFF
movl 0x387c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3878(%rsp)
cmpl $0x1, 0x3878(%rsp)
jne 0x12e047d
movq 0x118(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e044e
movq 0x118(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e044c
jmp 0x12e047b
movq 0x118(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ea0(%rsp)
cmpq $0x0, 0x3ea0(%rsp)
je 0x12e0479
movq 0x3ea0(%rsp), %rdi
callq 0x5f480
jmp 0x12e047b
jmp 0x12e047d
movq 0x118(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e04d8
movq %rax, %rdi
callq 0x678a0
movq 0x110(%rsp), %rax
movq %rax, 0xb58(%rsp)
movl $0x0, 0xb0c(%rsp)
movl 0xb0c(%rsp), %eax
cmpl 0x1c74(%rsp), %eax
jge 0x12e062c
movq 0xbb0(%rsp), %rax
movq %rax, 0x2648(%rsp)
movq 0x2648(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xaf0(%rsp)
movl $0x0, 0xaec(%rsp)
movl 0xaec(%rsp), %eax
cmpl 0x1c78(%rsp), %eax
jge 0x12e0602
movq 0xba8(%rsp), %rax
movq %rax, 0x2640(%rsp)
movq 0x2640(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xad0(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0xaf0(%rsp), %rsi
leaq 0xad0(%rsp), %rdx
callq 0x12f6d40
movaps %xmm0, 0xac0(%rsp)
movq 0xb58(%rsp), %rax
movaps 0xac0(%rsp), %xmm0
movq %rax, 0x27c8(%rsp)
movaps %xmm0, 0x27b0(%rsp)
movaps 0x27b0(%rsp), %xmm0
movq 0x27c8(%rsp), %rax
movups %xmm0, (%rax)
movq 0xba8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xba8(%rsp)
movq 0xb58(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xb58(%rsp)
movl 0xaec(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xaec(%rsp)
jmp 0x12e0535
movq 0xbb0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xbb0(%rsp)
movl 0xb0c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xb0c(%rsp)
jmp 0x12e04f3
jmp 0x12e062e
movl 0xbbc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xbbc(%rsp)
jmp 0x12dfbf1
movl $0x0, 0x1cc4(%rsp)
jmp 0x12e2360
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movq 0x1c80(%rsp), %rcx
movl 0x1c7c(%rsp), %r8d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1cf0(%rsp)
movq 0x1cf0(%rsp), %rcx
movq %rcx, 0x100(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x10f(%rsp)
je 0x12e06ec
movq 0x100(%rsp), %rax
movq %rax, 0x2a88(%rsp)
movq 0x2a88(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x10f(%rsp)
movb 0x10f(%rsp), %al
testb $0x1, %al
jne 0x12e06f9
jmp 0x12e0709
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12e2360
movq 0x1cb0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x12e0748
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12f4440
movl %eax, 0x1cc4(%rsp)
jmp 0x12e2360
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x12e0a15
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movl 0x1c94(%rsp), %edx
movq 0x1c80(%rsp), %rcx
movl 0x1c7c(%rsp), %r8d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1ce8(%rsp)
movq 0x1ce8(%rsp), %rcx
movq %rcx, 0xf0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xff(%rsp)
je 0x12e07f2
movq 0xf0(%rsp), %rax
movq %rax, 0x2a90(%rsp)
movq 0x2a90(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xff(%rsp)
movb 0xff(%rsp), %al
testb $0x1, %al
jne 0x12e07ff
jmp 0x12e080f
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12e2360
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x12e0858
cmpl $0x1, 0x1c5c(%rsp)
jne 0x12e0858
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12f53c0
movl %eax, 0x1cc4(%rsp)
jmp 0x12e2360
movq 0x1cb8(%rsp), %rax
movq %rax, 0x2008(%rsp)
movq 0x2008(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xab8(%rsp)
movq 0x1cb0(%rsp), %rax
movq %rax, 0x2000(%rsp)
movq 0x2000(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xab0(%rsp)
movq 0x1ca8(%rsp), %rax
movq %rax, 0x2578(%rsp)
movq 0x2578(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xaa8(%rsp)
movl $0x0, 0xaa4(%rsp)
movl 0xaa4(%rsp), %eax
cmpl 0x1c94(%rsp), %eax
jge 0x12e0a05
movq 0xab0(%rsp), %rax
movq %rax, 0x2638(%rsp)
movq 0x2638(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xa90(%rsp)
movl $0x0, 0xa8c(%rsp)
movl 0xa8c(%rsp), %eax
cmpl 0x1c98(%rsp), %eax
jge 0x12e09db
movq 0xab8(%rsp), %rax
movq %rax, 0x2630(%rsp)
movq 0x2630(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xa70(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0xa70(%rsp), %rsi
leaq 0xa90(%rsp), %rdx
callq 0x12f6d40
movaps %xmm0, 0xa60(%rsp)
movq 0xaa8(%rsp), %rax
movaps 0xa60(%rsp), %xmm0
movq %rax, 0x27a8(%rsp)
movaps %xmm0, 0x2790(%rsp)
movaps 0x2790(%rsp), %xmm0
movq 0x27a8(%rsp), %rax
movups %xmm0, (%rax)
movq 0xab8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xab8(%rsp)
movq 0xaa8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xaa8(%rsp)
movl 0xa8c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xa8c(%rsp)
jmp 0x12e090e
movq 0xab0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xab0(%rsp)
movl 0xaa4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xaa4(%rsp)
jmp 0x12e08cc
movl $0x0, 0x1cc4(%rsp)
jmp 0x12e2360
jmp 0x12e2351
movq 0x1cb8(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x12e234f
movq 0x1cb8(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x12e0a75
cmpl $0x1, 0x1c7c(%rsp)
jne 0x12e0a75
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12f5f30
movl %eax, 0x1cc4(%rsp)
jmp 0x12e2360
movq 0x1cb0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x12e1557
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c70(%rsp), %ecx
movl 0x1c6c(%rsp), %r8d
movq 0x1c60(%rsp), %r9
movl 0x1c5c(%rsp), %r10d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1ce0(%rsp)
movq 0x1ce0(%rsp), %rcx
movq %rcx, 0xe0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xef(%rsp)
je 0x12e0b37
movq 0xe0(%rsp), %rax
movq %rax, 0x2a98(%rsp)
movq 0x2a98(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xef(%rsp)
movb 0xef(%rsp), %al
testb $0x1, %al
jne 0x12e0b44
jmp 0x12e0b54
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12e2360
movl $0x0, 0xa5c(%rsp)
movl 0xa5c(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12e1547
movq 0x1cb8(%rsp), %rax
movq %rax, 0x1ff8(%rsp)
movq 0x1ff8(%rsp), %rax
movq (%rax), %rax
movl 0xa5c(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2628(%rsp)
movq 0x2628(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0xa40(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0xa5c(%rsp), %eax
leaq 0x9f0(%rsp), %rdx
movq %rdx, 0x1d88(%rsp)
movq %rcx, 0x1d80(%rsp)
movl %eax, 0x1d7c(%rsp)
movq 0x1d80(%rsp), %rax
movq %rax, 0xd8(%rsp)
movb $0x0, 0x1d7b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1d7c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x9f0(%rsp), %r10
movq %r10, 0x3418(%rsp)
movl %r9d, 0x3414(%rsp)
movl %r8d, 0x3410(%rsp)
movl %edi, 0x340c(%rsp)
movq %rsi, 0x3400(%rsp)
movq %rdx, 0x33f8(%rsp)
movl %ecx, 0x33f4(%rsp)
movq %rax, 0x33e8(%rsp)
movq 0x3418(%rsp), %rcx
movq %rcx, 0xd0(%rsp)
movq 0x3400(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x33f8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x33f4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x33e8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3414(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3410(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x340c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3470(%rsp)
movl $0x10, 0x346c(%rsp)
movq 0x3470(%rsp), %rax
movslq 0x346c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x346c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xd8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xa18(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12e0d79
movq 0xd8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xa30(%rsp)
movb $0x1, 0x1d7b(%rsp)
testb $0x1, 0x1d7b(%rsp)
jne 0x12e0eb4
leaq 0x9f0(%rsp), %rax
movq %rax, 0x21b0(%rsp)
movq 0x21b0(%rsp), %rax
movq %rax, 0x3b10(%rsp)
movq 0x3b10(%rsp), %rax
movq %rax, 0xc8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e0e57
movq 0xc8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3b0c(%rsp) # imm = 0xFFFFFFFF
movl 0x3b0c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b08(%rsp)
cmpl $0x1, 0x3b08(%rsp)
jne 0x12e0e57
movq 0xc8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e0e28
movq 0xc8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e0e26
jmp 0x12e0e55
movq 0xc8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d58(%rsp)
cmpq $0x0, 0x3d58(%rsp)
je 0x12e0e53
movq 0x3d58(%rsp), %rdi
callq 0x5f480
jmp 0x12e0e55
jmp 0x12e0e57
movq 0xc8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e0eb2
movq %rax, %rdi
callq 0x678a0
jmp 0x12e0eb4
leaq 0x9f0(%rsp), %rax
movq %rax, 0x1ff0(%rsp)
movq 0x1ff0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xb8(%rsp)
leaq 0x9f0(%rsp), %rax
movq %rax, 0x2300(%rsp)
movq 0x2300(%rsp), %rax
movq %rax, 0x3870(%rsp)
movq 0x3870(%rsp), %rax
movq %rax, 0xc0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e0f9f
movq 0xc0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x386c(%rsp) # imm = 0xFFFFFFFF
movl 0x386c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3868(%rsp)
cmpl $0x1, 0x3868(%rsp)
jne 0x12e0f9f
movq 0xc0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e0f70
movq 0xc0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e0f6e
jmp 0x12e0f9d
movq 0xc0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ea8(%rsp)
cmpq $0x0, 0x3ea8(%rsp)
je 0x12e0f9b
movq 0x3ea8(%rsp), %rdi
callq 0x5f480
jmp 0x12e0f9d
jmp 0x12e0f9f
movq 0xc0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e0ffa
movq %rax, %rdi
callq 0x678a0
movq 0xb8(%rsp), %rax
movq %rax, 0xa38(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0xa5c(%rsp), %eax
leaq 0x9a0(%rsp), %rdx
movq %rdx, 0x2350(%rsp)
movq %rcx, 0x2348(%rsp)
movl %eax, 0x2344(%rsp)
movq 0x2348(%rsp), %rax
movq %rax, 0xb0(%rsp)
movb $0x0, 0x2343(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2344(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x9a0(%rsp), %r10
movq %r10, 0x2e68(%rsp)
movl %r9d, 0x2e64(%rsp)
movl %r8d, 0x2e60(%rsp)
movl %edi, 0x2e5c(%rsp)
movq %rsi, 0x2e50(%rsp)
movq %rdx, 0x2e48(%rsp)
movl %ecx, 0x2e44(%rsp)
movq %rax, 0x2e38(%rsp)
movq 0x2e68(%rsp), %rcx
movq %rcx, 0xa8(%rsp)
movq 0x2e50(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2e48(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2e44(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2e38(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2e64(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2e60(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2e5c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3610(%rsp)
movl $0x10, 0x360c(%rsp)
movq 0x3610(%rsp), %rax
movslq 0x360c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x360c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xb0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x9c8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12e11c6
movq 0xb0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x9e0(%rsp)
movb $0x1, 0x2343(%rsp)
testb $0x1, 0x2343(%rsp)
jne 0x12e1301
leaq 0x9a0(%rsp), %rax
movq %rax, 0x2358(%rsp)
movq 0x2358(%rsp), %rax
movq %rax, 0x3820(%rsp)
movq 0x3820(%rsp), %rax
movq %rax, 0xa0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e12a4
movq 0xa0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x381c(%rsp) # imm = 0xFFFFFFFF
movl 0x381c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3818(%rsp)
cmpl $0x1, 0x3818(%rsp)
jne 0x12e12a4
movq 0xa0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e1275
movq 0xa0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e1273
jmp 0x12e12a2
movq 0xa0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ed0(%rsp)
cmpq $0x0, 0x3ed0(%rsp)
je 0x12e12a0
movq 0x3ed0(%rsp), %rdi
callq 0x5f480
jmp 0x12e12a2
jmp 0x12e12a4
movq 0xa0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e12ff
movq %rax, %rdi
callq 0x678a0
jmp 0x12e1301
leaq 0x9a0(%rsp), %rax
movq %rax, 0x2570(%rsp)
movq 0x2570(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x90(%rsp)
leaq 0x9a0(%rsp), %rax
movq %rax, 0x2308(%rsp)
movq 0x2308(%rsp), %rax
movq %rax, 0x3860(%rsp)
movq 0x3860(%rsp), %rax
movq %rax, 0x98(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e13ec
movq 0x98(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x385c(%rsp) # imm = 0xFFFFFFFF
movl 0x385c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3858(%rsp)
cmpl $0x1, 0x3858(%rsp)
jne 0x12e13ec
movq 0x98(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e13bd
movq 0x98(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e13bb
jmp 0x12e13ea
movq 0x98(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3eb0(%rsp)
cmpq $0x0, 0x3eb0(%rsp)
je 0x12e13e8
movq 0x3eb0(%rsp), %rdi
callq 0x5f480
jmp 0x12e13ea
jmp 0x12e13ec
movq 0x98(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e1447
movq %rax, %rdi
callq 0x678a0
movq 0x90(%rsp), %rax
movq %rax, 0x9e8(%rsp)
movl $0x0, 0x99c(%rsp)
movl 0x99c(%rsp), %eax
cmpl 0x1c68(%rsp), %eax
jge 0x12e152f
movq 0xa38(%rsp), %rax
movq %rax, 0x2620(%rsp)
movq 0x2620(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x980(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0xa40(%rsp), %rsi
leaq 0x980(%rsp), %rdx
callq 0x12f6d40
movaps %xmm0, 0x970(%rsp)
movq 0x9e8(%rsp), %rax
movaps 0x970(%rsp), %xmm0
movq %rax, 0x2788(%rsp)
movaps %xmm0, 0x2770(%rsp)
movaps 0x2770(%rsp), %xmm0
movq 0x2788(%rsp), %rax
movups %xmm0, (%rax)
movq 0xa38(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xa38(%rsp)
movq 0x9e8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x9e8(%rsp)
movl 0x99c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x99c(%rsp)
jmp 0x12e1462
jmp 0x12e1531
movl 0xa5c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xa5c(%rsp)
jmp 0x12e0b5f
movl $0x0, 0x1cc4(%rsp)
jmp 0x12e2360
movq 0x1cb0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x12e1fc0
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movl 0x1c6c(%rsp), %ecx
movq 0x1c60(%rsp), %r8
movl 0x1c5c(%rsp), %r9d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1cd8(%rsp)
movq 0x1cd8(%rsp), %rcx
movq %rcx, 0x80(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x8f(%rsp)
je 0x12e160c
movq 0x80(%rsp), %rax
movq %rax, 0x2aa0(%rsp)
movq 0x2aa0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x8f(%rsp)
movb 0x8f(%rsp), %al
testb $0x1, %al
jne 0x12e1619
jmp 0x12e1629
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12e2360
movl $0x0, 0x96c(%rsp)
movl 0x96c(%rsp), %eax
cmpl 0x1c6c(%rsp), %eax
jge 0x12e1fb0
movq 0x1cb8(%rsp), %rax
movq %rax, 0x1fe8(%rsp)
movq 0x1fe8(%rsp), %rax
movq (%rax), %rax
movl 0x96c(%rsp), %ecx
shll $0x2, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2618(%rsp)
movq 0x2618(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x950(%rsp)
movq 0x1cb0(%rsp), %rcx
movl 0x96c(%rsp), %eax
leaq 0x900(%rsp), %rdx
movq %rdx, 0x1d70(%rsp)
movq %rcx, 0x1d68(%rsp)
movl %eax, 0x1d64(%rsp)
movq 0x1d68(%rsp), %rax
movq %rax, 0x78(%rsp)
movb $0x0, 0x1d63(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1d64(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x900(%rsp), %r10
movq %r10, 0x3450(%rsp)
movl %r9d, 0x344c(%rsp)
movl %r8d, 0x3448(%rsp)
movl %edi, 0x3444(%rsp)
movq %rsi, 0x3438(%rsp)
movq %rdx, 0x3430(%rsp)
movl %ecx, 0x342c(%rsp)
movq %rax, 0x3420(%rsp)
movq 0x3450(%rsp), %rcx
movq %rcx, 0x70(%rsp)
movq 0x3438(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3430(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x342c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3420(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x344c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3448(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3444(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3460(%rsp)
movl $0x10, 0x345c(%rsp)
movq 0x3460(%rsp), %rax
movslq 0x345c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x345c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x78(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x928(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12e1842
movq 0x78(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x940(%rsp)
movb $0x1, 0x1d63(%rsp)
testb $0x1, 0x1d63(%rsp)
jne 0x12e196b
leaq 0x900(%rsp), %rax
movq %rax, 0x21b8(%rsp)
movq 0x21b8(%rsp), %rax
movq %rax, 0x3b00(%rsp)
movq 0x3b00(%rsp), %rax
movq %rax, 0x68(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e1911
movq 0x68(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3afc(%rsp) # imm = 0xFFFFFFFF
movl 0x3afc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3af8(%rsp)
cmpl $0x1, 0x3af8(%rsp)
jne 0x12e1911
movq 0x68(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e18e5
movq 0x68(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e18e3
jmp 0x12e190f
movq 0x68(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d60(%rsp)
cmpq $0x0, 0x3d60(%rsp)
je 0x12e190d
movq 0x3d60(%rsp), %rdi
callq 0x5f480
jmp 0x12e190f
jmp 0x12e1911
movq 0x68(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e1969
movq %rax, %rdi
callq 0x678a0
jmp 0x12e196b
leaq 0x900(%rsp), %rax
movq %rax, 0x1fe0(%rsp)
movq 0x1fe0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x58(%rsp)
leaq 0x900(%rsp), %rax
movq %rax, 0x2310(%rsp)
movq 0x2310(%rsp), %rax
movq %rax, 0x3850(%rsp)
movq 0x3850(%rsp), %rax
movq %rax, 0x60(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e1a44
movq 0x60(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x384c(%rsp) # imm = 0xFFFFFFFF
movl 0x384c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3848(%rsp)
cmpl $0x1, 0x3848(%rsp)
jne 0x12e1a44
movq 0x60(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e1a18
movq 0x60(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e1a16
jmp 0x12e1a42
movq 0x60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3eb8(%rsp)
cmpq $0x0, 0x3eb8(%rsp)
je 0x12e1a40
movq 0x3eb8(%rsp), %rdi
callq 0x5f480
jmp 0x12e1a42
jmp 0x12e1a44
movq 0x60(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e1a9c
movq %rax, %rdi
callq 0x678a0
movq 0x58(%rsp), %rax
movq %rax, 0x948(%rsp)
movq 0x1ca8(%rsp), %rcx
movl 0x96c(%rsp), %eax
leaq 0x8b0(%rsp), %rdx
movq %rdx, 0x2330(%rsp)
movq %rcx, 0x2328(%rsp)
movl %eax, 0x2324(%rsp)
movq 0x2328(%rsp), %rax
movq %rax, 0x50(%rsp)
movb $0x0, 0x2323(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2324(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x8b0(%rsp), %r10
movq %r10, 0x2ea0(%rsp)
movl %r9d, 0x2e9c(%rsp)
movl %r8d, 0x2e98(%rsp)
movl %edi, 0x2e94(%rsp)
movq %rsi, 0x2e88(%rsp)
movq %rdx, 0x2e80(%rsp)
movl %ecx, 0x2e7c(%rsp)
movq %rax, 0x2e70(%rsp)
movq 0x2ea0(%rsp), %rcx
movq %rcx, 0x48(%rsp)
movq 0x2e88(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2e80(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2e7c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2e70(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2e9c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2e98(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2e94(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3600(%rsp)
movl $0x10, 0x35fc(%rsp)
movq 0x3600(%rsp), %rax
movslq 0x35fc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x35fc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x50(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x8d8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12e1c59
movq 0x50(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x8f0(%rsp)
movb $0x1, 0x2323(%rsp)
testb $0x1, 0x2323(%rsp)
jne 0x12e1d82
leaq 0x8b0(%rsp), %rax
movq %rax, 0x2338(%rsp)
movq 0x2338(%rsp), %rax
movq %rax, 0x3830(%rsp)
movq 0x3830(%rsp), %rax
movq %rax, 0x40(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e1d28
movq 0x40(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x382c(%rsp) # imm = 0xFFFFFFFF
movl 0x382c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3828(%rsp)
cmpl $0x1, 0x3828(%rsp)
jne 0x12e1d28
movq 0x40(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e1cfc
movq 0x40(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e1cfa
jmp 0x12e1d26
movq 0x40(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ec8(%rsp)
cmpq $0x0, 0x3ec8(%rsp)
je 0x12e1d24
movq 0x3ec8(%rsp), %rdi
callq 0x5f480
jmp 0x12e1d26
jmp 0x12e1d28
movq 0x40(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e1d80
movq %rax, %rdi
callq 0x678a0
jmp 0x12e1d82
leaq 0x8b0(%rsp), %rax
movq %rax, 0x2568(%rsp)
movq 0x2568(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x30(%rsp)
leaq 0x8b0(%rsp), %rax
movq %rax, 0x2318(%rsp)
movq 0x2318(%rsp), %rax
movq %rax, 0x3840(%rsp)
movq 0x3840(%rsp), %rax
movq %rax, 0x38(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e1e5b
movq 0x38(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x383c(%rsp) # imm = 0xFFFFFFFF
movl 0x383c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3838(%rsp)
cmpl $0x1, 0x3838(%rsp)
jne 0x12e1e5b
movq 0x38(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e1e2f
movq 0x38(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e1e2d
jmp 0x12e1e59
movq 0x38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3ec0(%rsp)
cmpq $0x0, 0x3ec0(%rsp)
je 0x12e1e57
movq 0x3ec0(%rsp), %rdi
callq 0x5f480
jmp 0x12e1e59
jmp 0x12e1e5b
movq 0x38(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e1eb3
movq %rax, %rdi
callq 0x678a0
movq 0x30(%rsp), %rax
movq %rax, 0x8f8(%rsp)
movl $0x0, 0x8ac(%rsp)
movl 0x8ac(%rsp), %eax
cmpl 0x1c68(%rsp), %eax
jge 0x12e1f98
movq 0x948(%rsp), %rax
movq %rax, 0x2610(%rsp)
movq 0x2610(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x890(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x950(%rsp), %rsi
leaq 0x890(%rsp), %rdx
callq 0x12f6d40
movaps %xmm0, 0x880(%rsp)
movq 0x8f8(%rsp), %rax
movaps 0x880(%rsp), %xmm0
movq %rax, 0x2768(%rsp)
movaps %xmm0, 0x2750(%rsp)
movaps 0x2750(%rsp), %xmm0
movq 0x2768(%rsp), %rax
movups %xmm0, (%rax)
movq 0x948(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x948(%rsp)
movq 0x8f8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x8f8(%rsp)
movl 0x8ac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x8ac(%rsp)
jmp 0x12e1ecb
jmp 0x12e1f9a
movl 0x96c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x96c(%rsp)
jmp 0x12e1634
movl $0x0, 0x1cc4(%rsp)
jmp 0x12e2360
movq 0x1cb0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x12e2235
movq 0x1ca8(%rsp), %rdi
movl 0x1c78(%rsp), %esi
movl 0x1c74(%rsp), %edx
movq 0x1c60(%rsp), %rcx
movl 0x1c5c(%rsp), %r8d
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1cd0(%rsp)
movq 0x1cd0(%rsp), %rcx
movq %rcx, 0x20(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x2f(%rsp)
je 0x12e205e
movq 0x20(%rsp), %rax
movq %rax, 0x2aa8(%rsp)
movq 0x2aa8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x2f(%rsp)
movb 0x2f(%rsp), %al
testb $0x1, %al
jne 0x12e2068
jmp 0x12e2078
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12e2360
movq 0x1cb8(%rsp), %rax
movq %rax, 0x1fd8(%rsp)
movq 0x1fd8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x878(%rsp)
movq 0x1cb0(%rsp), %rax
movq %rax, 0x1fd0(%rsp)
movq 0x1fd0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x870(%rsp)
movq 0x1ca8(%rsp), %rax
movq %rax, 0x2560(%rsp)
movq 0x2560(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x868(%rsp)
movl $0x0, 0x864(%rsp)
movl 0x864(%rsp), %eax
cmpl 0x1c74(%rsp), %eax
jge 0x12e2225
movq 0x878(%rsp), %rax
movq %rax, 0x2608(%rsp)
movq 0x2608(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x850(%rsp)
movl $0x0, 0x84c(%rsp)
movl 0x84c(%rsp), %eax
cmpl 0x1c78(%rsp), %eax
jge 0x12e21fb
movq 0x870(%rsp), %rax
movq %rax, 0x2600(%rsp)
movq 0x2600(%rsp), %rax
movups (%rax), %xmm0
movaps %xmm0, 0x830(%rsp)
leaq 0x1c9f(%rsp), %rdi
leaq 0x850(%rsp), %rsi
leaq 0x830(%rsp), %rdx
callq 0x12f6d40
movaps %xmm0, 0x820(%rsp)
movq 0x868(%rsp), %rax
movaps 0x820(%rsp), %xmm0
movq %rax, 0x2748(%rsp)
movaps %xmm0, 0x2730(%rsp)
movaps 0x2730(%rsp), %xmm0
movq 0x2748(%rsp), %rax
movups %xmm0, (%rax)
movq 0x870(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x870(%rsp)
movq 0x868(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x868(%rsp)
movl 0x84c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x84c(%rsp)
jmp 0x12e212e
movq 0x878(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x878(%rsp)
movl 0x864(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x864(%rsp)
jmp 0x12e20ec
movl $0x0, 0x1cc4(%rsp)
jmp 0x12e2360
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x12e234d
movq 0x1ca8(%rsp), %rdi
movl 0x1c98(%rsp), %esi
movq 0x1c80(%rsp), %rdx
movl 0x1c7c(%rsp), %ecx
movq 0x1ca0(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6be00
movq 0x1ca8(%rsp), %rax
movq %rax, 0x1cc8(%rsp)
movq 0x1cc8(%rsp), %rcx
movq %rcx, 0x10(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1f(%rsp)
je 0x12e22cb
movq 0x10(%rsp), %rax
movq %rax, 0x2ab0(%rsp)
movq 0x2ab0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1f(%rsp)
movb 0x1f(%rsp), %al
testb $0x1, %al
jne 0x12e22d5
jmp 0x12e22e2
movl $0xffffff9c, 0x1cc4(%rsp) # imm = 0xFFFFFF9C
jmp 0x12e2360
movq 0x1cb0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x12e2328
cmpl $0x1, 0x1c5c(%rsp)
jne 0x12e2328
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12f53c0
movl %eax, 0x1cc4(%rsp)
jmp 0x12e2360
movq 0x1cb8(%rsp), %rdi
movq 0x1cb0(%rsp), %rsi
movq 0x1ca8(%rsp), %rdx
movq 0x1ca0(%rsp), %rcx
callq 0x12f4440
jmp 0x12e234f
jmp 0x12e2351
jmp 0x12e2353
jmp 0x12e2355
movl $0x0, 0x1cc4(%rsp)
movl 0x1cc4(%rsp), %eax
addq $0x3f58, %rsp # imm = 0x3F58
retq
nop
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,836
|
virtual thunk to ncnn::BinaryOp_x86::forward(std::vector<ncnn::Mat, std::allocator<ncnn::Mat>> const&, std::vector<ncnn::Mat, std::allocator<ncnn::Mat>>&, ncnn::Option const&) const
|
int BinaryOp_x86::forward(const std::vector<Mat>& bottom_blobs, std::vector<Mat>& top_blobs, const Option& opt) const
{
#if __SSE2__
using namespace BinaryOp_x86_functor;
const Mat& bottom_blob = bottom_blobs[0];
const Mat& bottom_blob1 = bottom_blobs[1];
Mat& top_blob = top_blobs[0];
int elempack = bottom_blob.elempack;
int elempack1 = bottom_blob1.elempack;
#if __AVX__
#if __AVX512F__
if (elempack == 16 || elempack1 == 16)
{
if (op_type == Operation_ADD)
return binary_op_pack16<binary_op_add>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_SUB)
return binary_op_pack16<binary_op_sub>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_MUL)
return binary_op_pack16<binary_op_mul>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_DIV)
return binary_op_pack16<binary_op_div>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_MAX)
return binary_op_pack16<binary_op_max>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_MIN)
return binary_op_pack16<binary_op_min>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_POW)
return binary_op_pack16<binary_op_pow>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_RSUB)
return binary_op_pack16<binary_op_sub>(bottom_blob1, bottom_blob, top_blob, opt);
if (op_type == Operation_RDIV)
return binary_op_pack16<binary_op_div>(bottom_blob1, bottom_blob, top_blob, opt);
}
#endif // __AVX512F__
if (elempack == 8 || elempack1 == 8)
{
if (op_type == Operation_ADD)
return binary_op_pack8<binary_op_add>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_SUB)
return binary_op_pack8<binary_op_sub>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_MUL)
return binary_op_pack8<binary_op_mul>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_DIV)
return binary_op_pack8<binary_op_div>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_MAX)
return binary_op_pack8<binary_op_max>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_MIN)
return binary_op_pack8<binary_op_min>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_POW)
return binary_op_pack8<binary_op_pow>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_RSUB)
return binary_op_pack8<binary_op_sub>(bottom_blob1, bottom_blob, top_blob, opt);
if (op_type == Operation_RDIV)
return binary_op_pack8<binary_op_div>(bottom_blob1, bottom_blob, top_blob, opt);
}
#endif // __AVX__
if (elempack == 4 || elempack1 == 4)
{
if (op_type == Operation_ADD)
return binary_op_pack4<binary_op_add>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_SUB)
return binary_op_pack4<binary_op_sub>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_MUL)
return binary_op_pack4<binary_op_mul>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_DIV)
return binary_op_pack4<binary_op_div>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_MAX)
return binary_op_pack4<binary_op_max>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_MIN)
return binary_op_pack4<binary_op_min>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_POW)
return binary_op_pack4<binary_op_pow>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_RSUB)
return binary_op_pack4<binary_op_sub>(bottom_blob1, bottom_blob, top_blob, opt);
if (op_type == Operation_RDIV)
return binary_op_pack4<binary_op_div>(bottom_blob1, bottom_blob, top_blob, opt);
}
#endif // __SSE2__
return BinaryOp::forward(bottom_blobs, top_blobs, opt);
}
|
movq %rdi, -0x8(%rsp)
movq %rsi, -0x10(%rsp)
movq %rdx, -0x18(%rsp)
movq %rcx, -0x20(%rsp)
movq -0x8(%rsp), %rdi
movq (%rdi), %rax
movq -0x40(%rax), %rax
addq %rax, %rdi
movq -0x10(%rsp), %rsi
movq -0x18(%rsp), %rdx
movq -0x20(%rsp), %rcx
jmp 0x1278250
nopw (%rax,%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,837
|
ncnn::BinaryOp_x86::forward_inplace(ncnn::Mat&, ncnn::Option const&) const
|
int BinaryOp_x86::forward_inplace(Mat& bottom_top_blob, const Option& opt) const
{
using namespace BinaryOp_x86_functor;
if (op_type == Operation_ADD)
return binary_op_scalar_inplace<binary_op_add>(bottom_top_blob, b, opt);
if (op_type == Operation_SUB)
return binary_op_scalar_inplace<binary_op_sub>(bottom_top_blob, b, opt);
if (op_type == Operation_MUL)
return binary_op_scalar_inplace<binary_op_mul>(bottom_top_blob, b, opt);
if (op_type == Operation_DIV)
return binary_op_scalar_inplace<binary_op_div>(bottom_top_blob, b, opt);
if (op_type == Operation_MAX)
return binary_op_scalar_inplace<binary_op_max>(bottom_top_blob, b, opt);
if (op_type == Operation_MIN)
return binary_op_scalar_inplace<binary_op_min>(bottom_top_blob, b, opt);
if (op_type == Operation_POW)
return binary_op_scalar_inplace<binary_op_pow>(bottom_top_blob, b, opt);
if (op_type == Operation_RSUB)
return binary_op_scalar_inplace<binary_op_rsub>(bottom_top_blob, b, opt);
if (op_type == Operation_RDIV)
return binary_op_scalar_inplace<binary_op_rdiv>(bottom_top_blob, b, opt);
return 0;
}
|
subq $0x28, %rsp
movq %rdi, 0x18(%rsp)
movq %rsi, 0x10(%rsp)
movq %rdx, 0x8(%rsp)
movq 0x18(%rsp), %rax
movq %rax, (%rsp)
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x0, 0xd0(%rax,%rcx)
jne 0x12e2409
movq (%rsp), %rax
movq 0x10(%rsp), %rdi
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
movss 0xd8(%rax,%rcx), %xmm0
movq 0x8(%rsp), %rsi
callq 0x12e2620
movl %eax, 0x24(%rsp)
jmp 0x12e2613
movq (%rsp), %rax
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x1, 0xd0(%rax,%rcx)
jne 0x12e244a
movq (%rsp), %rax
movq 0x10(%rsp), %rdi
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
movss 0xd8(%rax,%rcx), %xmm0
movq 0x8(%rsp), %rsi
callq 0x12e2c50
movl %eax, 0x24(%rsp)
jmp 0x12e2613
movq (%rsp), %rax
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x2, 0xd0(%rax,%rcx)
jne 0x12e248b
movq (%rsp), %rax
movq 0x10(%rsp), %rdi
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
movss 0xd8(%rax,%rcx), %xmm0
movq 0x8(%rsp), %rsi
callq 0x12e3280
movl %eax, 0x24(%rsp)
jmp 0x12e2613
movq (%rsp), %rax
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x3, 0xd0(%rax,%rcx)
jne 0x12e24cc
movq (%rsp), %rax
movq 0x10(%rsp), %rdi
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
movss 0xd8(%rax,%rcx), %xmm0
movq 0x8(%rsp), %rsi
callq 0x12e38b0
movl %eax, 0x24(%rsp)
jmp 0x12e2613
movq (%rsp), %rax
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x4, 0xd0(%rax,%rcx)
jne 0x12e250d
movq (%rsp), %rax
movq 0x10(%rsp), %rdi
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
movss 0xd8(%rax,%rcx), %xmm0
movq 0x8(%rsp), %rsi
callq 0x12e3ee0
movl %eax, 0x24(%rsp)
jmp 0x12e2613
movq (%rsp), %rax
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x5, 0xd0(%rax,%rcx)
jne 0x12e254e
movq (%rsp), %rax
movq 0x10(%rsp), %rdi
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
movss 0xd8(%rax,%rcx), %xmm0
movq 0x8(%rsp), %rsi
callq 0x12e4510
movl %eax, 0x24(%rsp)
jmp 0x12e2613
movq (%rsp), %rax
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x6, 0xd0(%rax,%rcx)
jne 0x12e258f
movq (%rsp), %rax
movq 0x10(%rsp), %rdi
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
movss 0xd8(%rax,%rcx), %xmm0
movq 0x8(%rsp), %rsi
callq 0x12e4b40
movl %eax, 0x24(%rsp)
jmp 0x12e2613
movq (%rsp), %rax
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x7, 0xd0(%rax,%rcx)
jne 0x12e25cd
movq (%rsp), %rax
movq 0x10(%rsp), %rdi
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
movss 0xd8(%rax,%rcx), %xmm0
movq 0x8(%rsp), %rsi
callq 0x12e5170
movl %eax, 0x24(%rsp)
jmp 0x12e2613
movq (%rsp), %rax
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x8, 0xd0(%rax,%rcx)
jne 0x12e260b
movq (%rsp), %rax
movq 0x10(%rsp), %rdi
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
movss 0xd8(%rax,%rcx), %xmm0
movq 0x8(%rsp), %rsi
callq 0x12e57a0
movl %eax, 0x24(%rsp)
jmp 0x12e2613
movl $0x0, 0x24(%rsp)
movl 0x24(%rsp), %eax
addq $0x28, %rsp
retq
nopl (%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,838
|
int ncnn::binary_op_scalar_inplace<ncnn::BinaryOp_x86_functor::binary_op_add>(ncnn::Mat&, float, ncnn::Option const&)
|
static int binary_op_scalar_inplace(Mat& a, float b, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int elempack = a.elempack;
int size = w * h * d * elempack;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
float* ptr = a.channel(q);
int i = 0;
#if __SSE2__
#if __AVX__
#if __AVX512F__
__m512 _b_avx512 = _mm512_set1_ps(b);
for (; i + 15 < size; i += 16)
{
__m512 _p = _mm512_loadu_ps(ptr);
_p = op.func_pack16(_p, _b_avx512);
_mm512_storeu_ps(ptr, _p);
ptr += 16;
}
#endif // __AVX512F__
__m256 _b_avx = _mm256_set1_ps(b);
for (; i + 7 < size; i += 8)
{
__m256 _p = _mm256_loadu_ps(ptr);
_p = op.func_pack8(_p, _b_avx);
_mm256_storeu_ps(ptr, _p);
ptr += 8;
}
#endif // __AVX__
__m128 _b = _mm_set1_ps((float)b);
for (; i + 3 < size; i += 4)
{
__m128 _p = _mm_load_ps(ptr);
_p = op.func_pack4(_p, _b);
_mm_store_ps(ptr, _p);
ptr += 4;
}
#endif // __SSE2__
for (; i < size; i++)
{
*ptr = op.func(*ptr, b);
ptr++;
}
}
return 0;
}
|
subq $0x1c8, %rsp # imm = 0x1C8
movq %rdi, 0xd8(%rsp)
movss %xmm0, 0xd4(%rsp)
movq %rsi, 0xc8(%rsp)
movq 0xd8(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0xc0(%rsp)
movq 0xd8(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0xbc(%rsp)
movq 0xd8(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0xb8(%rsp)
movq 0xd8(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0xb4(%rsp)
movq 0xd8(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0xb0(%rsp)
movl 0xc0(%rsp), %eax
imull 0xbc(%rsp), %eax
imull 0xb8(%rsp), %eax
imull 0xb0(%rsp), %eax
movl %eax, 0xac(%rsp)
movl $0x0, 0xa8(%rsp)
movl 0xa8(%rsp), %eax
cmpl 0xb4(%rsp), %eax
jge 0x12e2c37
movq 0xd8(%rsp), %rcx
movl 0xa8(%rsp), %eax
leaq 0x58(%rsp), %rdx
movq %rdx, 0xf8(%rsp)
movq %rcx, 0xf0(%rsp)
movl %eax, 0xec(%rsp)
movq 0xf0(%rsp), %rax
movq %rax, 0x28(%rsp)
movb $0x0, 0xeb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0xec(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x58(%rsp), %r10
movq %r10, 0x180(%rsp)
movl %r9d, 0x17c(%rsp)
movl %r8d, 0x178(%rsp)
movl %edi, 0x174(%rsp)
movq %rsi, 0x168(%rsp)
movq %rdx, 0x160(%rsp)
movl %ecx, 0x15c(%rsp)
movq %rax, 0x150(%rsp)
movq 0x180(%rsp), %rcx
movq %rcx, 0x20(%rsp)
movq 0x168(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x160(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x15c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x150(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x17c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x178(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x174(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x190(%rsp)
movl $0x10, 0x18c(%rsp)
movq 0x190(%rsp), %rax
movslq 0x18c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x18c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x28(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x80(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12e2889
movq 0x28(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x98(%rsp)
movb $0x1, 0xeb(%rsp)
testb $0x1, 0xeb(%rsp)
jne 0x12e29af
leaq 0x58(%rsp), %rax
movq %rax, 0x100(%rsp)
movq 0x100(%rsp), %rax
movq %rax, 0x1a0(%rsp)
movq 0x1a0(%rsp), %rax
movq %rax, 0x18(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e2955
movq 0x18(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x19c(%rsp) # imm = 0xFFFFFFFF
movl 0x19c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x198(%rsp)
cmpl $0x1, 0x198(%rsp)
jne 0x12e2955
movq 0x18(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e2929
movq 0x18(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e2927
jmp 0x12e2953
movq 0x18(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1c0(%rsp)
cmpq $0x0, 0x1c0(%rsp)
je 0x12e2951
movq 0x1c0(%rsp), %rdi
callq 0x5f480
jmp 0x12e2953
jmp 0x12e2955
movq 0x18(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e29ad
movq %rax, %rdi
callq 0x678a0
jmp 0x12e29af
leaq 0x58(%rsp), %rax
movq %rax, 0x108(%rsp)
movq 0x108(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8(%rsp)
leaq 0x58(%rsp), %rax
movq %rax, 0xe0(%rsp)
movq 0xe0(%rsp), %rax
movq %rax, 0x1b0(%rsp)
movq 0x1b0(%rsp), %rax
movq %rax, 0x10(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e2a82
movq 0x10(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x1ac(%rsp) # imm = 0xFFFFFFFF
movl 0x1ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x1a8(%rsp)
cmpl $0x1, 0x1a8(%rsp)
jne 0x12e2a82
movq 0x10(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e2a56
movq 0x10(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e2a54
jmp 0x12e2a80
movq 0x10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1b8(%rsp)
cmpq $0x0, 0x1b8(%rsp)
je 0x12e2a7e
movq 0x1b8(%rsp), %rdi
callq 0x5f480
jmp 0x12e2a80
jmp 0x12e2a82
movq 0x10(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e2ada
movq %rax, %rdi
callq 0x678a0
movq 0x8(%rsp), %rax
movq %rax, 0xa0(%rsp)
movl $0x0, 0x54(%rsp)
movss 0xd4(%rsp), %xmm0
movss %xmm0, 0x120(%rsp)
movaps 0x120(%rsp), %xmm0
shufps $0x0, %xmm0, %xmm0 # xmm0 = xmm0[0,0,0,0]
movaps %xmm0, 0x110(%rsp)
movaps 0x110(%rsp), %xmm0
movaps %xmm0, 0x40(%rsp)
movl 0x54(%rsp), %eax
addl $0x3, %eax
cmpl 0xac(%rsp), %eax
jge 0x12e2bc6
movq 0xa0(%rsp), %rax
movq %rax, 0x128(%rsp)
movq 0x128(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm0, 0x30(%rsp)
leaq 0xc7(%rsp), %rdi
leaq 0x30(%rsp), %rsi
leaq 0x40(%rsp), %rdx
callq 0x12f6aa0
movaps %xmm0, 0x30(%rsp)
movq 0xa0(%rsp), %rax
movaps 0x30(%rsp), %xmm0
movq %rax, 0x148(%rsp)
movaps %xmm0, 0x130(%rsp)
movaps 0x130(%rsp), %xmm0
movq 0x148(%rsp), %rax
movaps %xmm0, (%rax)
movq 0xa0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xa0(%rsp)
movl 0x54(%rsp), %eax
addl $0x4, %eax
movl %eax, 0x54(%rsp)
jmp 0x12e2b22
jmp 0x12e2bc8
movl 0x54(%rsp), %eax
cmpl 0xac(%rsp), %eax
jge 0x12e2c1f
movq 0xa0(%rsp), %rsi
leaq 0xc7(%rsp), %rdi
leaq 0xd4(%rsp), %rdx
callq 0x12f6ae0
movq 0xa0(%rsp), %rax
movss %xmm0, (%rax)
movq 0xa0(%rsp), %rax
addq $0x4, %rax
movq %rax, 0xa0(%rsp)
movl 0x54(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x54(%rsp)
jmp 0x12e2bc8
jmp 0x12e2c21
movl 0xa8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xa8(%rsp)
jmp 0x12e26cb
xorl %eax, %eax
addq $0x1c8, %rsp # imm = 0x1C8
retq
nopw %cs:(%rax,%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,839
|
int ncnn::binary_op_scalar_inplace<ncnn::BinaryOp_x86_functor::binary_op_sub>(ncnn::Mat&, float, ncnn::Option const&)
|
static int binary_op_scalar_inplace(Mat& a, float b, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int elempack = a.elempack;
int size = w * h * d * elempack;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
float* ptr = a.channel(q);
int i = 0;
#if __SSE2__
#if __AVX__
#if __AVX512F__
__m512 _b_avx512 = _mm512_set1_ps(b);
for (; i + 15 < size; i += 16)
{
__m512 _p = _mm512_loadu_ps(ptr);
_p = op.func_pack16(_p, _b_avx512);
_mm512_storeu_ps(ptr, _p);
ptr += 16;
}
#endif // __AVX512F__
__m256 _b_avx = _mm256_set1_ps(b);
for (; i + 7 < size; i += 8)
{
__m256 _p = _mm256_loadu_ps(ptr);
_p = op.func_pack8(_p, _b_avx);
_mm256_storeu_ps(ptr, _p);
ptr += 8;
}
#endif // __AVX__
__m128 _b = _mm_set1_ps((float)b);
for (; i + 3 < size; i += 4)
{
__m128 _p = _mm_load_ps(ptr);
_p = op.func_pack4(_p, _b);
_mm_store_ps(ptr, _p);
ptr += 4;
}
#endif // __SSE2__
for (; i < size; i++)
{
*ptr = op.func(*ptr, b);
ptr++;
}
}
return 0;
}
|
subq $0x1c8, %rsp # imm = 0x1C8
movq %rdi, 0xd8(%rsp)
movss %xmm0, 0xd4(%rsp)
movq %rsi, 0xc8(%rsp)
movq 0xd8(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0xc0(%rsp)
movq 0xd8(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0xbc(%rsp)
movq 0xd8(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0xb8(%rsp)
movq 0xd8(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0xb4(%rsp)
movq 0xd8(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0xb0(%rsp)
movl 0xc0(%rsp), %eax
imull 0xbc(%rsp), %eax
imull 0xb8(%rsp), %eax
imull 0xb0(%rsp), %eax
movl %eax, 0xac(%rsp)
movl $0x0, 0xa8(%rsp)
movl 0xa8(%rsp), %eax
cmpl 0xb4(%rsp), %eax
jge 0x12e3267
movq 0xd8(%rsp), %rcx
movl 0xa8(%rsp), %eax
leaq 0x58(%rsp), %rdx
movq %rdx, 0xf8(%rsp)
movq %rcx, 0xf0(%rsp)
movl %eax, 0xec(%rsp)
movq 0xf0(%rsp), %rax
movq %rax, 0x28(%rsp)
movb $0x0, 0xeb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0xec(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x58(%rsp), %r10
movq %r10, 0x180(%rsp)
movl %r9d, 0x17c(%rsp)
movl %r8d, 0x178(%rsp)
movl %edi, 0x174(%rsp)
movq %rsi, 0x168(%rsp)
movq %rdx, 0x160(%rsp)
movl %ecx, 0x15c(%rsp)
movq %rax, 0x150(%rsp)
movq 0x180(%rsp), %rcx
movq %rcx, 0x20(%rsp)
movq 0x168(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x160(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x15c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x150(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x17c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x178(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x174(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x190(%rsp)
movl $0x10, 0x18c(%rsp)
movq 0x190(%rsp), %rax
movslq 0x18c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x18c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x28(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x80(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12e2eb9
movq 0x28(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x98(%rsp)
movb $0x1, 0xeb(%rsp)
testb $0x1, 0xeb(%rsp)
jne 0x12e2fdf
leaq 0x58(%rsp), %rax
movq %rax, 0x100(%rsp)
movq 0x100(%rsp), %rax
movq %rax, 0x1a0(%rsp)
movq 0x1a0(%rsp), %rax
movq %rax, 0x18(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e2f85
movq 0x18(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x19c(%rsp) # imm = 0xFFFFFFFF
movl 0x19c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x198(%rsp)
cmpl $0x1, 0x198(%rsp)
jne 0x12e2f85
movq 0x18(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e2f59
movq 0x18(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e2f57
jmp 0x12e2f83
movq 0x18(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1c0(%rsp)
cmpq $0x0, 0x1c0(%rsp)
je 0x12e2f81
movq 0x1c0(%rsp), %rdi
callq 0x5f480
jmp 0x12e2f83
jmp 0x12e2f85
movq 0x18(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e2fdd
movq %rax, %rdi
callq 0x678a0
jmp 0x12e2fdf
leaq 0x58(%rsp), %rax
movq %rax, 0x108(%rsp)
movq 0x108(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8(%rsp)
leaq 0x58(%rsp), %rax
movq %rax, 0xe0(%rsp)
movq 0xe0(%rsp), %rax
movq %rax, 0x1b0(%rsp)
movq 0x1b0(%rsp), %rax
movq %rax, 0x10(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e30b2
movq 0x10(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x1ac(%rsp) # imm = 0xFFFFFFFF
movl 0x1ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x1a8(%rsp)
cmpl $0x1, 0x1a8(%rsp)
jne 0x12e30b2
movq 0x10(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e3086
movq 0x10(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e3084
jmp 0x12e30b0
movq 0x10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1b8(%rsp)
cmpq $0x0, 0x1b8(%rsp)
je 0x12e30ae
movq 0x1b8(%rsp), %rdi
callq 0x5f480
jmp 0x12e30b0
jmp 0x12e30b2
movq 0x10(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e310a
movq %rax, %rdi
callq 0x678a0
movq 0x8(%rsp), %rax
movq %rax, 0xa0(%rsp)
movl $0x0, 0x54(%rsp)
movss 0xd4(%rsp), %xmm0
movss %xmm0, 0x120(%rsp)
movaps 0x120(%rsp), %xmm0
shufps $0x0, %xmm0, %xmm0 # xmm0 = xmm0[0,0,0,0]
movaps %xmm0, 0x110(%rsp)
movaps 0x110(%rsp), %xmm0
movaps %xmm0, 0x40(%rsp)
movl 0x54(%rsp), %eax
addl $0x3, %eax
cmpl 0xac(%rsp), %eax
jge 0x12e31f6
movq 0xa0(%rsp), %rax
movq %rax, 0x128(%rsp)
movq 0x128(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm0, 0x30(%rsp)
leaq 0xc7(%rsp), %rdi
leaq 0x30(%rsp), %rsi
leaq 0x40(%rsp), %rdx
callq 0x12f6b10
movaps %xmm0, 0x30(%rsp)
movq 0xa0(%rsp), %rax
movaps 0x30(%rsp), %xmm0
movq %rax, 0x148(%rsp)
movaps %xmm0, 0x130(%rsp)
movaps 0x130(%rsp), %xmm0
movq 0x148(%rsp), %rax
movaps %xmm0, (%rax)
movq 0xa0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xa0(%rsp)
movl 0x54(%rsp), %eax
addl $0x4, %eax
movl %eax, 0x54(%rsp)
jmp 0x12e3152
jmp 0x12e31f8
movl 0x54(%rsp), %eax
cmpl 0xac(%rsp), %eax
jge 0x12e324f
movq 0xa0(%rsp), %rsi
leaq 0xc7(%rsp), %rdi
leaq 0xd4(%rsp), %rdx
callq 0x12f6b50
movq 0xa0(%rsp), %rax
movss %xmm0, (%rax)
movq 0xa0(%rsp), %rax
addq $0x4, %rax
movq %rax, 0xa0(%rsp)
movl 0x54(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x54(%rsp)
jmp 0x12e31f8
jmp 0x12e3251
movl 0xa8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xa8(%rsp)
jmp 0x12e2cfb
xorl %eax, %eax
addq $0x1c8, %rsp # imm = 0x1C8
retq
nopw %cs:(%rax,%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,840
|
int ncnn::binary_op_scalar_inplace<ncnn::BinaryOp_x86_functor::binary_op_mul>(ncnn::Mat&, float, ncnn::Option const&)
|
static int binary_op_scalar_inplace(Mat& a, float b, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int elempack = a.elempack;
int size = w * h * d * elempack;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
float* ptr = a.channel(q);
int i = 0;
#if __SSE2__
#if __AVX__
#if __AVX512F__
__m512 _b_avx512 = _mm512_set1_ps(b);
for (; i + 15 < size; i += 16)
{
__m512 _p = _mm512_loadu_ps(ptr);
_p = op.func_pack16(_p, _b_avx512);
_mm512_storeu_ps(ptr, _p);
ptr += 16;
}
#endif // __AVX512F__
__m256 _b_avx = _mm256_set1_ps(b);
for (; i + 7 < size; i += 8)
{
__m256 _p = _mm256_loadu_ps(ptr);
_p = op.func_pack8(_p, _b_avx);
_mm256_storeu_ps(ptr, _p);
ptr += 8;
}
#endif // __AVX__
__m128 _b = _mm_set1_ps((float)b);
for (; i + 3 < size; i += 4)
{
__m128 _p = _mm_load_ps(ptr);
_p = op.func_pack4(_p, _b);
_mm_store_ps(ptr, _p);
ptr += 4;
}
#endif // __SSE2__
for (; i < size; i++)
{
*ptr = op.func(*ptr, b);
ptr++;
}
}
return 0;
}
|
subq $0x1c8, %rsp # imm = 0x1C8
movq %rdi, 0xd8(%rsp)
movss %xmm0, 0xd4(%rsp)
movq %rsi, 0xc8(%rsp)
movq 0xd8(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0xc0(%rsp)
movq 0xd8(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0xbc(%rsp)
movq 0xd8(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0xb8(%rsp)
movq 0xd8(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0xb4(%rsp)
movq 0xd8(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0xb0(%rsp)
movl 0xc0(%rsp), %eax
imull 0xbc(%rsp), %eax
imull 0xb8(%rsp), %eax
imull 0xb0(%rsp), %eax
movl %eax, 0xac(%rsp)
movl $0x0, 0xa8(%rsp)
movl 0xa8(%rsp), %eax
cmpl 0xb4(%rsp), %eax
jge 0x12e3897
movq 0xd8(%rsp), %rcx
movl 0xa8(%rsp), %eax
leaq 0x58(%rsp), %rdx
movq %rdx, 0xf8(%rsp)
movq %rcx, 0xf0(%rsp)
movl %eax, 0xec(%rsp)
movq 0xf0(%rsp), %rax
movq %rax, 0x28(%rsp)
movb $0x0, 0xeb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0xec(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x58(%rsp), %r10
movq %r10, 0x180(%rsp)
movl %r9d, 0x17c(%rsp)
movl %r8d, 0x178(%rsp)
movl %edi, 0x174(%rsp)
movq %rsi, 0x168(%rsp)
movq %rdx, 0x160(%rsp)
movl %ecx, 0x15c(%rsp)
movq %rax, 0x150(%rsp)
movq 0x180(%rsp), %rcx
movq %rcx, 0x20(%rsp)
movq 0x168(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x160(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x15c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x150(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x17c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x178(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x174(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x190(%rsp)
movl $0x10, 0x18c(%rsp)
movq 0x190(%rsp), %rax
movslq 0x18c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x18c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x28(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x80(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12e34e9
movq 0x28(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x98(%rsp)
movb $0x1, 0xeb(%rsp)
testb $0x1, 0xeb(%rsp)
jne 0x12e360f
leaq 0x58(%rsp), %rax
movq %rax, 0x100(%rsp)
movq 0x100(%rsp), %rax
movq %rax, 0x1a0(%rsp)
movq 0x1a0(%rsp), %rax
movq %rax, 0x18(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e35b5
movq 0x18(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x19c(%rsp) # imm = 0xFFFFFFFF
movl 0x19c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x198(%rsp)
cmpl $0x1, 0x198(%rsp)
jne 0x12e35b5
movq 0x18(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e3589
movq 0x18(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e3587
jmp 0x12e35b3
movq 0x18(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1c0(%rsp)
cmpq $0x0, 0x1c0(%rsp)
je 0x12e35b1
movq 0x1c0(%rsp), %rdi
callq 0x5f480
jmp 0x12e35b3
jmp 0x12e35b5
movq 0x18(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e360d
movq %rax, %rdi
callq 0x678a0
jmp 0x12e360f
leaq 0x58(%rsp), %rax
movq %rax, 0x108(%rsp)
movq 0x108(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8(%rsp)
leaq 0x58(%rsp), %rax
movq %rax, 0xe0(%rsp)
movq 0xe0(%rsp), %rax
movq %rax, 0x1b0(%rsp)
movq 0x1b0(%rsp), %rax
movq %rax, 0x10(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e36e2
movq 0x10(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x1ac(%rsp) # imm = 0xFFFFFFFF
movl 0x1ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x1a8(%rsp)
cmpl $0x1, 0x1a8(%rsp)
jne 0x12e36e2
movq 0x10(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e36b6
movq 0x10(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e36b4
jmp 0x12e36e0
movq 0x10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1b8(%rsp)
cmpq $0x0, 0x1b8(%rsp)
je 0x12e36de
movq 0x1b8(%rsp), %rdi
callq 0x5f480
jmp 0x12e36e0
jmp 0x12e36e2
movq 0x10(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e373a
movq %rax, %rdi
callq 0x678a0
movq 0x8(%rsp), %rax
movq %rax, 0xa0(%rsp)
movl $0x0, 0x54(%rsp)
movss 0xd4(%rsp), %xmm0
movss %xmm0, 0x120(%rsp)
movaps 0x120(%rsp), %xmm0
shufps $0x0, %xmm0, %xmm0 # xmm0 = xmm0[0,0,0,0]
movaps %xmm0, 0x110(%rsp)
movaps 0x110(%rsp), %xmm0
movaps %xmm0, 0x40(%rsp)
movl 0x54(%rsp), %eax
addl $0x3, %eax
cmpl 0xac(%rsp), %eax
jge 0x12e3826
movq 0xa0(%rsp), %rax
movq %rax, 0x128(%rsp)
movq 0x128(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm0, 0x30(%rsp)
leaq 0xc7(%rsp), %rdi
leaq 0x30(%rsp), %rsi
leaq 0x40(%rsp), %rdx
callq 0x12f6b80
movaps %xmm0, 0x30(%rsp)
movq 0xa0(%rsp), %rax
movaps 0x30(%rsp), %xmm0
movq %rax, 0x148(%rsp)
movaps %xmm0, 0x130(%rsp)
movaps 0x130(%rsp), %xmm0
movq 0x148(%rsp), %rax
movaps %xmm0, (%rax)
movq 0xa0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xa0(%rsp)
movl 0x54(%rsp), %eax
addl $0x4, %eax
movl %eax, 0x54(%rsp)
jmp 0x12e3782
jmp 0x12e3828
movl 0x54(%rsp), %eax
cmpl 0xac(%rsp), %eax
jge 0x12e387f
movq 0xa0(%rsp), %rsi
leaq 0xc7(%rsp), %rdi
leaq 0xd4(%rsp), %rdx
callq 0x12f6bc0
movq 0xa0(%rsp), %rax
movss %xmm0, (%rax)
movq 0xa0(%rsp), %rax
addq $0x4, %rax
movq %rax, 0xa0(%rsp)
movl 0x54(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x54(%rsp)
jmp 0x12e3828
jmp 0x12e3881
movl 0xa8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xa8(%rsp)
jmp 0x12e332b
xorl %eax, %eax
addq $0x1c8, %rsp # imm = 0x1C8
retq
nopw %cs:(%rax,%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,841
|
int ncnn::binary_op_scalar_inplace<ncnn::BinaryOp_x86_functor::binary_op_div>(ncnn::Mat&, float, ncnn::Option const&)
|
static int binary_op_scalar_inplace(Mat& a, float b, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int elempack = a.elempack;
int size = w * h * d * elempack;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
float* ptr = a.channel(q);
int i = 0;
#if __SSE2__
#if __AVX__
#if __AVX512F__
__m512 _b_avx512 = _mm512_set1_ps(b);
for (; i + 15 < size; i += 16)
{
__m512 _p = _mm512_loadu_ps(ptr);
_p = op.func_pack16(_p, _b_avx512);
_mm512_storeu_ps(ptr, _p);
ptr += 16;
}
#endif // __AVX512F__
__m256 _b_avx = _mm256_set1_ps(b);
for (; i + 7 < size; i += 8)
{
__m256 _p = _mm256_loadu_ps(ptr);
_p = op.func_pack8(_p, _b_avx);
_mm256_storeu_ps(ptr, _p);
ptr += 8;
}
#endif // __AVX__
__m128 _b = _mm_set1_ps((float)b);
for (; i + 3 < size; i += 4)
{
__m128 _p = _mm_load_ps(ptr);
_p = op.func_pack4(_p, _b);
_mm_store_ps(ptr, _p);
ptr += 4;
}
#endif // __SSE2__
for (; i < size; i++)
{
*ptr = op.func(*ptr, b);
ptr++;
}
}
return 0;
}
|
subq $0x1c8, %rsp # imm = 0x1C8
movq %rdi, 0xd8(%rsp)
movss %xmm0, 0xd4(%rsp)
movq %rsi, 0xc8(%rsp)
movq 0xd8(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0xc0(%rsp)
movq 0xd8(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0xbc(%rsp)
movq 0xd8(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0xb8(%rsp)
movq 0xd8(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0xb4(%rsp)
movq 0xd8(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0xb0(%rsp)
movl 0xc0(%rsp), %eax
imull 0xbc(%rsp), %eax
imull 0xb8(%rsp), %eax
imull 0xb0(%rsp), %eax
movl %eax, 0xac(%rsp)
movl $0x0, 0xa8(%rsp)
movl 0xa8(%rsp), %eax
cmpl 0xb4(%rsp), %eax
jge 0x12e3ec7
movq 0xd8(%rsp), %rcx
movl 0xa8(%rsp), %eax
leaq 0x58(%rsp), %rdx
movq %rdx, 0xf8(%rsp)
movq %rcx, 0xf0(%rsp)
movl %eax, 0xec(%rsp)
movq 0xf0(%rsp), %rax
movq %rax, 0x28(%rsp)
movb $0x0, 0xeb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0xec(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x58(%rsp), %r10
movq %r10, 0x180(%rsp)
movl %r9d, 0x17c(%rsp)
movl %r8d, 0x178(%rsp)
movl %edi, 0x174(%rsp)
movq %rsi, 0x168(%rsp)
movq %rdx, 0x160(%rsp)
movl %ecx, 0x15c(%rsp)
movq %rax, 0x150(%rsp)
movq 0x180(%rsp), %rcx
movq %rcx, 0x20(%rsp)
movq 0x168(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x160(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x15c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x150(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x17c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x178(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x174(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x190(%rsp)
movl $0x10, 0x18c(%rsp)
movq 0x190(%rsp), %rax
movslq 0x18c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x18c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x28(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x80(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12e3b19
movq 0x28(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x98(%rsp)
movb $0x1, 0xeb(%rsp)
testb $0x1, 0xeb(%rsp)
jne 0x12e3c3f
leaq 0x58(%rsp), %rax
movq %rax, 0x100(%rsp)
movq 0x100(%rsp), %rax
movq %rax, 0x1a0(%rsp)
movq 0x1a0(%rsp), %rax
movq %rax, 0x18(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e3be5
movq 0x18(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x19c(%rsp) # imm = 0xFFFFFFFF
movl 0x19c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x198(%rsp)
cmpl $0x1, 0x198(%rsp)
jne 0x12e3be5
movq 0x18(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e3bb9
movq 0x18(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e3bb7
jmp 0x12e3be3
movq 0x18(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1c0(%rsp)
cmpq $0x0, 0x1c0(%rsp)
je 0x12e3be1
movq 0x1c0(%rsp), %rdi
callq 0x5f480
jmp 0x12e3be3
jmp 0x12e3be5
movq 0x18(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e3c3d
movq %rax, %rdi
callq 0x678a0
jmp 0x12e3c3f
leaq 0x58(%rsp), %rax
movq %rax, 0x108(%rsp)
movq 0x108(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8(%rsp)
leaq 0x58(%rsp), %rax
movq %rax, 0xe0(%rsp)
movq 0xe0(%rsp), %rax
movq %rax, 0x1b0(%rsp)
movq 0x1b0(%rsp), %rax
movq %rax, 0x10(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e3d12
movq 0x10(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x1ac(%rsp) # imm = 0xFFFFFFFF
movl 0x1ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x1a8(%rsp)
cmpl $0x1, 0x1a8(%rsp)
jne 0x12e3d12
movq 0x10(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e3ce6
movq 0x10(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e3ce4
jmp 0x12e3d10
movq 0x10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1b8(%rsp)
cmpq $0x0, 0x1b8(%rsp)
je 0x12e3d0e
movq 0x1b8(%rsp), %rdi
callq 0x5f480
jmp 0x12e3d10
jmp 0x12e3d12
movq 0x10(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e3d6a
movq %rax, %rdi
callq 0x678a0
movq 0x8(%rsp), %rax
movq %rax, 0xa0(%rsp)
movl $0x0, 0x54(%rsp)
movss 0xd4(%rsp), %xmm0
movss %xmm0, 0x120(%rsp)
movaps 0x120(%rsp), %xmm0
shufps $0x0, %xmm0, %xmm0 # xmm0 = xmm0[0,0,0,0]
movaps %xmm0, 0x110(%rsp)
movaps 0x110(%rsp), %xmm0
movaps %xmm0, 0x40(%rsp)
movl 0x54(%rsp), %eax
addl $0x3, %eax
cmpl 0xac(%rsp), %eax
jge 0x12e3e56
movq 0xa0(%rsp), %rax
movq %rax, 0x128(%rsp)
movq 0x128(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm0, 0x30(%rsp)
leaq 0xc7(%rsp), %rdi
leaq 0x30(%rsp), %rsi
leaq 0x40(%rsp), %rdx
callq 0x12f6bf0
movaps %xmm0, 0x30(%rsp)
movq 0xa0(%rsp), %rax
movaps 0x30(%rsp), %xmm0
movq %rax, 0x148(%rsp)
movaps %xmm0, 0x130(%rsp)
movaps 0x130(%rsp), %xmm0
movq 0x148(%rsp), %rax
movaps %xmm0, (%rax)
movq 0xa0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xa0(%rsp)
movl 0x54(%rsp), %eax
addl $0x4, %eax
movl %eax, 0x54(%rsp)
jmp 0x12e3db2
jmp 0x12e3e58
movl 0x54(%rsp), %eax
cmpl 0xac(%rsp), %eax
jge 0x12e3eaf
movq 0xa0(%rsp), %rsi
leaq 0xc7(%rsp), %rdi
leaq 0xd4(%rsp), %rdx
callq 0x12f6c30
movq 0xa0(%rsp), %rax
movss %xmm0, (%rax)
movq 0xa0(%rsp), %rax
addq $0x4, %rax
movq %rax, 0xa0(%rsp)
movl 0x54(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x54(%rsp)
jmp 0x12e3e58
jmp 0x12e3eb1
movl 0xa8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xa8(%rsp)
jmp 0x12e395b
xorl %eax, %eax
addq $0x1c8, %rsp # imm = 0x1C8
retq
nopw %cs:(%rax,%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,842
|
int ncnn::binary_op_scalar_inplace<ncnn::BinaryOp_x86_functor::binary_op_max>(ncnn::Mat&, float, ncnn::Option const&)
|
static int binary_op_scalar_inplace(Mat& a, float b, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int elempack = a.elempack;
int size = w * h * d * elempack;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
float* ptr = a.channel(q);
int i = 0;
#if __SSE2__
#if __AVX__
#if __AVX512F__
__m512 _b_avx512 = _mm512_set1_ps(b);
for (; i + 15 < size; i += 16)
{
__m512 _p = _mm512_loadu_ps(ptr);
_p = op.func_pack16(_p, _b_avx512);
_mm512_storeu_ps(ptr, _p);
ptr += 16;
}
#endif // __AVX512F__
__m256 _b_avx = _mm256_set1_ps(b);
for (; i + 7 < size; i += 8)
{
__m256 _p = _mm256_loadu_ps(ptr);
_p = op.func_pack8(_p, _b_avx);
_mm256_storeu_ps(ptr, _p);
ptr += 8;
}
#endif // __AVX__
__m128 _b = _mm_set1_ps((float)b);
for (; i + 3 < size; i += 4)
{
__m128 _p = _mm_load_ps(ptr);
_p = op.func_pack4(_p, _b);
_mm_store_ps(ptr, _p);
ptr += 4;
}
#endif // __SSE2__
for (; i < size; i++)
{
*ptr = op.func(*ptr, b);
ptr++;
}
}
return 0;
}
|
subq $0x1c8, %rsp # imm = 0x1C8
movq %rdi, 0xd8(%rsp)
movss %xmm0, 0xd4(%rsp)
movq %rsi, 0xc8(%rsp)
movq 0xd8(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0xc0(%rsp)
movq 0xd8(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0xbc(%rsp)
movq 0xd8(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0xb8(%rsp)
movq 0xd8(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0xb4(%rsp)
movq 0xd8(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0xb0(%rsp)
movl 0xc0(%rsp), %eax
imull 0xbc(%rsp), %eax
imull 0xb8(%rsp), %eax
imull 0xb0(%rsp), %eax
movl %eax, 0xac(%rsp)
movl $0x0, 0xa8(%rsp)
movl 0xa8(%rsp), %eax
cmpl 0xb4(%rsp), %eax
jge 0x12e44f7
movq 0xd8(%rsp), %rcx
movl 0xa8(%rsp), %eax
leaq 0x58(%rsp), %rdx
movq %rdx, 0xf8(%rsp)
movq %rcx, 0xf0(%rsp)
movl %eax, 0xec(%rsp)
movq 0xf0(%rsp), %rax
movq %rax, 0x28(%rsp)
movb $0x0, 0xeb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0xec(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x58(%rsp), %r10
movq %r10, 0x180(%rsp)
movl %r9d, 0x17c(%rsp)
movl %r8d, 0x178(%rsp)
movl %edi, 0x174(%rsp)
movq %rsi, 0x168(%rsp)
movq %rdx, 0x160(%rsp)
movl %ecx, 0x15c(%rsp)
movq %rax, 0x150(%rsp)
movq 0x180(%rsp), %rcx
movq %rcx, 0x20(%rsp)
movq 0x168(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x160(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x15c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x150(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x17c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x178(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x174(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x190(%rsp)
movl $0x10, 0x18c(%rsp)
movq 0x190(%rsp), %rax
movslq 0x18c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x18c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x28(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x80(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12e4149
movq 0x28(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x98(%rsp)
movb $0x1, 0xeb(%rsp)
testb $0x1, 0xeb(%rsp)
jne 0x12e426f
leaq 0x58(%rsp), %rax
movq %rax, 0x100(%rsp)
movq 0x100(%rsp), %rax
movq %rax, 0x1a0(%rsp)
movq 0x1a0(%rsp), %rax
movq %rax, 0x18(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e4215
movq 0x18(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x19c(%rsp) # imm = 0xFFFFFFFF
movl 0x19c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x198(%rsp)
cmpl $0x1, 0x198(%rsp)
jne 0x12e4215
movq 0x18(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e41e9
movq 0x18(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e41e7
jmp 0x12e4213
movq 0x18(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1c0(%rsp)
cmpq $0x0, 0x1c0(%rsp)
je 0x12e4211
movq 0x1c0(%rsp), %rdi
callq 0x5f480
jmp 0x12e4213
jmp 0x12e4215
movq 0x18(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e426d
movq %rax, %rdi
callq 0x678a0
jmp 0x12e426f
leaq 0x58(%rsp), %rax
movq %rax, 0x108(%rsp)
movq 0x108(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8(%rsp)
leaq 0x58(%rsp), %rax
movq %rax, 0xe0(%rsp)
movq 0xe0(%rsp), %rax
movq %rax, 0x1b0(%rsp)
movq 0x1b0(%rsp), %rax
movq %rax, 0x10(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e4342
movq 0x10(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x1ac(%rsp) # imm = 0xFFFFFFFF
movl 0x1ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x1a8(%rsp)
cmpl $0x1, 0x1a8(%rsp)
jne 0x12e4342
movq 0x10(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e4316
movq 0x10(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e4314
jmp 0x12e4340
movq 0x10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1b8(%rsp)
cmpq $0x0, 0x1b8(%rsp)
je 0x12e433e
movq 0x1b8(%rsp), %rdi
callq 0x5f480
jmp 0x12e4340
jmp 0x12e4342
movq 0x10(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e439a
movq %rax, %rdi
callq 0x678a0
movq 0x8(%rsp), %rax
movq %rax, 0xa0(%rsp)
movl $0x0, 0x54(%rsp)
movss 0xd4(%rsp), %xmm0
movss %xmm0, 0x120(%rsp)
movaps 0x120(%rsp), %xmm0
shufps $0x0, %xmm0, %xmm0 # xmm0 = xmm0[0,0,0,0]
movaps %xmm0, 0x110(%rsp)
movaps 0x110(%rsp), %xmm0
movaps %xmm0, 0x40(%rsp)
movl 0x54(%rsp), %eax
addl $0x3, %eax
cmpl 0xac(%rsp), %eax
jge 0x12e4486
movq 0xa0(%rsp), %rax
movq %rax, 0x128(%rsp)
movq 0x128(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm0, 0x30(%rsp)
leaq 0xc7(%rsp), %rdi
leaq 0x30(%rsp), %rsi
leaq 0x40(%rsp), %rdx
callq 0x12f6c60
movaps %xmm0, 0x30(%rsp)
movq 0xa0(%rsp), %rax
movaps 0x30(%rsp), %xmm0
movq %rax, 0x148(%rsp)
movaps %xmm0, 0x130(%rsp)
movaps 0x130(%rsp), %xmm0
movq 0x148(%rsp), %rax
movaps %xmm0, (%rax)
movq 0xa0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xa0(%rsp)
movl 0x54(%rsp), %eax
addl $0x4, %eax
movl %eax, 0x54(%rsp)
jmp 0x12e43e2
jmp 0x12e4488
movl 0x54(%rsp), %eax
cmpl 0xac(%rsp), %eax
jge 0x12e44df
movq 0xa0(%rsp), %rsi
leaq 0xc7(%rsp), %rdi
leaq 0xd4(%rsp), %rdx
callq 0x12f6ca0
movq 0xa0(%rsp), %rax
movss %xmm0, (%rax)
movq 0xa0(%rsp), %rax
addq $0x4, %rax
movq %rax, 0xa0(%rsp)
movl 0x54(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x54(%rsp)
jmp 0x12e4488
jmp 0x12e44e1
movl 0xa8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xa8(%rsp)
jmp 0x12e3f8b
xorl %eax, %eax
addq $0x1c8, %rsp # imm = 0x1C8
retq
nopw %cs:(%rax,%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,843
|
int ncnn::binary_op_scalar_inplace<ncnn::BinaryOp_x86_functor::binary_op_min>(ncnn::Mat&, float, ncnn::Option const&)
|
static int binary_op_scalar_inplace(Mat& a, float b, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int elempack = a.elempack;
int size = w * h * d * elempack;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
float* ptr = a.channel(q);
int i = 0;
#if __SSE2__
#if __AVX__
#if __AVX512F__
__m512 _b_avx512 = _mm512_set1_ps(b);
for (; i + 15 < size; i += 16)
{
__m512 _p = _mm512_loadu_ps(ptr);
_p = op.func_pack16(_p, _b_avx512);
_mm512_storeu_ps(ptr, _p);
ptr += 16;
}
#endif // __AVX512F__
__m256 _b_avx = _mm256_set1_ps(b);
for (; i + 7 < size; i += 8)
{
__m256 _p = _mm256_loadu_ps(ptr);
_p = op.func_pack8(_p, _b_avx);
_mm256_storeu_ps(ptr, _p);
ptr += 8;
}
#endif // __AVX__
__m128 _b = _mm_set1_ps((float)b);
for (; i + 3 < size; i += 4)
{
__m128 _p = _mm_load_ps(ptr);
_p = op.func_pack4(_p, _b);
_mm_store_ps(ptr, _p);
ptr += 4;
}
#endif // __SSE2__
for (; i < size; i++)
{
*ptr = op.func(*ptr, b);
ptr++;
}
}
return 0;
}
|
subq $0x1c8, %rsp # imm = 0x1C8
movq %rdi, 0xd8(%rsp)
movss %xmm0, 0xd4(%rsp)
movq %rsi, 0xc8(%rsp)
movq 0xd8(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0xc0(%rsp)
movq 0xd8(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0xbc(%rsp)
movq 0xd8(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0xb8(%rsp)
movq 0xd8(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0xb4(%rsp)
movq 0xd8(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0xb0(%rsp)
movl 0xc0(%rsp), %eax
imull 0xbc(%rsp), %eax
imull 0xb8(%rsp), %eax
imull 0xb0(%rsp), %eax
movl %eax, 0xac(%rsp)
movl $0x0, 0xa8(%rsp)
movl 0xa8(%rsp), %eax
cmpl 0xb4(%rsp), %eax
jge 0x12e4b27
movq 0xd8(%rsp), %rcx
movl 0xa8(%rsp), %eax
leaq 0x58(%rsp), %rdx
movq %rdx, 0xf8(%rsp)
movq %rcx, 0xf0(%rsp)
movl %eax, 0xec(%rsp)
movq 0xf0(%rsp), %rax
movq %rax, 0x28(%rsp)
movb $0x0, 0xeb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0xec(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x58(%rsp), %r10
movq %r10, 0x180(%rsp)
movl %r9d, 0x17c(%rsp)
movl %r8d, 0x178(%rsp)
movl %edi, 0x174(%rsp)
movq %rsi, 0x168(%rsp)
movq %rdx, 0x160(%rsp)
movl %ecx, 0x15c(%rsp)
movq %rax, 0x150(%rsp)
movq 0x180(%rsp), %rcx
movq %rcx, 0x20(%rsp)
movq 0x168(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x160(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x15c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x150(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x17c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x178(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x174(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x190(%rsp)
movl $0x10, 0x18c(%rsp)
movq 0x190(%rsp), %rax
movslq 0x18c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x18c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x28(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x80(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12e4779
movq 0x28(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x98(%rsp)
movb $0x1, 0xeb(%rsp)
testb $0x1, 0xeb(%rsp)
jne 0x12e489f
leaq 0x58(%rsp), %rax
movq %rax, 0x100(%rsp)
movq 0x100(%rsp), %rax
movq %rax, 0x1a0(%rsp)
movq 0x1a0(%rsp), %rax
movq %rax, 0x18(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e4845
movq 0x18(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x19c(%rsp) # imm = 0xFFFFFFFF
movl 0x19c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x198(%rsp)
cmpl $0x1, 0x198(%rsp)
jne 0x12e4845
movq 0x18(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e4819
movq 0x18(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e4817
jmp 0x12e4843
movq 0x18(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1c0(%rsp)
cmpq $0x0, 0x1c0(%rsp)
je 0x12e4841
movq 0x1c0(%rsp), %rdi
callq 0x5f480
jmp 0x12e4843
jmp 0x12e4845
movq 0x18(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e489d
movq %rax, %rdi
callq 0x678a0
jmp 0x12e489f
leaq 0x58(%rsp), %rax
movq %rax, 0x108(%rsp)
movq 0x108(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8(%rsp)
leaq 0x58(%rsp), %rax
movq %rax, 0xe0(%rsp)
movq 0xe0(%rsp), %rax
movq %rax, 0x1b0(%rsp)
movq 0x1b0(%rsp), %rax
movq %rax, 0x10(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e4972
movq 0x10(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x1ac(%rsp) # imm = 0xFFFFFFFF
movl 0x1ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x1a8(%rsp)
cmpl $0x1, 0x1a8(%rsp)
jne 0x12e4972
movq 0x10(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e4946
movq 0x10(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e4944
jmp 0x12e4970
movq 0x10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1b8(%rsp)
cmpq $0x0, 0x1b8(%rsp)
je 0x12e496e
movq 0x1b8(%rsp), %rdi
callq 0x5f480
jmp 0x12e4970
jmp 0x12e4972
movq 0x10(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e49ca
movq %rax, %rdi
callq 0x678a0
movq 0x8(%rsp), %rax
movq %rax, 0xa0(%rsp)
movl $0x0, 0x54(%rsp)
movss 0xd4(%rsp), %xmm0
movss %xmm0, 0x120(%rsp)
movaps 0x120(%rsp), %xmm0
shufps $0x0, %xmm0, %xmm0 # xmm0 = xmm0[0,0,0,0]
movaps %xmm0, 0x110(%rsp)
movaps 0x110(%rsp), %xmm0
movaps %xmm0, 0x40(%rsp)
movl 0x54(%rsp), %eax
addl $0x3, %eax
cmpl 0xac(%rsp), %eax
jge 0x12e4ab6
movq 0xa0(%rsp), %rax
movq %rax, 0x128(%rsp)
movq 0x128(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm0, 0x30(%rsp)
leaq 0xc7(%rsp), %rdi
leaq 0x30(%rsp), %rsi
leaq 0x40(%rsp), %rdx
callq 0x12f6cd0
movaps %xmm0, 0x30(%rsp)
movq 0xa0(%rsp), %rax
movaps 0x30(%rsp), %xmm0
movq %rax, 0x148(%rsp)
movaps %xmm0, 0x130(%rsp)
movaps 0x130(%rsp), %xmm0
movq 0x148(%rsp), %rax
movaps %xmm0, (%rax)
movq 0xa0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xa0(%rsp)
movl 0x54(%rsp), %eax
addl $0x4, %eax
movl %eax, 0x54(%rsp)
jmp 0x12e4a12
jmp 0x12e4ab8
movl 0x54(%rsp), %eax
cmpl 0xac(%rsp), %eax
jge 0x12e4b0f
movq 0xa0(%rsp), %rsi
leaq 0xc7(%rsp), %rdi
leaq 0xd4(%rsp), %rdx
callq 0x12f6d10
movq 0xa0(%rsp), %rax
movss %xmm0, (%rax)
movq 0xa0(%rsp), %rax
addq $0x4, %rax
movq %rax, 0xa0(%rsp)
movl 0x54(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x54(%rsp)
jmp 0x12e4ab8
jmp 0x12e4b11
movl 0xa8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xa8(%rsp)
jmp 0x12e45bb
xorl %eax, %eax
addq $0x1c8, %rsp # imm = 0x1C8
retq
nopw %cs:(%rax,%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,844
|
int ncnn::binary_op_scalar_inplace<ncnn::BinaryOp_x86_functor::binary_op_pow>(ncnn::Mat&, float, ncnn::Option const&)
|
static int binary_op_scalar_inplace(Mat& a, float b, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int elempack = a.elempack;
int size = w * h * d * elempack;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
float* ptr = a.channel(q);
int i = 0;
#if __SSE2__
#if __AVX__
#if __AVX512F__
__m512 _b_avx512 = _mm512_set1_ps(b);
for (; i + 15 < size; i += 16)
{
__m512 _p = _mm512_loadu_ps(ptr);
_p = op.func_pack16(_p, _b_avx512);
_mm512_storeu_ps(ptr, _p);
ptr += 16;
}
#endif // __AVX512F__
__m256 _b_avx = _mm256_set1_ps(b);
for (; i + 7 < size; i += 8)
{
__m256 _p = _mm256_loadu_ps(ptr);
_p = op.func_pack8(_p, _b_avx);
_mm256_storeu_ps(ptr, _p);
ptr += 8;
}
#endif // __AVX__
__m128 _b = _mm_set1_ps((float)b);
for (; i + 3 < size; i += 4)
{
__m128 _p = _mm_load_ps(ptr);
_p = op.func_pack4(_p, _b);
_mm_store_ps(ptr, _p);
ptr += 4;
}
#endif // __SSE2__
for (; i < size; i++)
{
*ptr = op.func(*ptr, b);
ptr++;
}
}
return 0;
}
|
subq $0x1c8, %rsp # imm = 0x1C8
movq %rdi, 0xd8(%rsp)
movss %xmm0, 0xd4(%rsp)
movq %rsi, 0xc8(%rsp)
movq 0xd8(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0xc0(%rsp)
movq 0xd8(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0xbc(%rsp)
movq 0xd8(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0xb8(%rsp)
movq 0xd8(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0xb4(%rsp)
movq 0xd8(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0xb0(%rsp)
movl 0xc0(%rsp), %eax
imull 0xbc(%rsp), %eax
imull 0xb8(%rsp), %eax
imull 0xb0(%rsp), %eax
movl %eax, 0xac(%rsp)
movl $0x0, 0xa8(%rsp)
movl 0xa8(%rsp), %eax
cmpl 0xb4(%rsp), %eax
jge 0x12e5157
movq 0xd8(%rsp), %rcx
movl 0xa8(%rsp), %eax
leaq 0x58(%rsp), %rdx
movq %rdx, 0xf8(%rsp)
movq %rcx, 0xf0(%rsp)
movl %eax, 0xec(%rsp)
movq 0xf0(%rsp), %rax
movq %rax, 0x28(%rsp)
movb $0x0, 0xeb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0xec(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x58(%rsp), %r10
movq %r10, 0x180(%rsp)
movl %r9d, 0x17c(%rsp)
movl %r8d, 0x178(%rsp)
movl %edi, 0x174(%rsp)
movq %rsi, 0x168(%rsp)
movq %rdx, 0x160(%rsp)
movl %ecx, 0x15c(%rsp)
movq %rax, 0x150(%rsp)
movq 0x180(%rsp), %rcx
movq %rcx, 0x20(%rsp)
movq 0x168(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x160(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x15c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x150(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x17c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x178(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x174(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x190(%rsp)
movl $0x10, 0x18c(%rsp)
movq 0x190(%rsp), %rax
movslq 0x18c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x18c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x28(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x80(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12e4da9
movq 0x28(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x98(%rsp)
movb $0x1, 0xeb(%rsp)
testb $0x1, 0xeb(%rsp)
jne 0x12e4ecf
leaq 0x58(%rsp), %rax
movq %rax, 0x100(%rsp)
movq 0x100(%rsp), %rax
movq %rax, 0x1a0(%rsp)
movq 0x1a0(%rsp), %rax
movq %rax, 0x18(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e4e75
movq 0x18(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x19c(%rsp) # imm = 0xFFFFFFFF
movl 0x19c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x198(%rsp)
cmpl $0x1, 0x198(%rsp)
jne 0x12e4e75
movq 0x18(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e4e49
movq 0x18(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e4e47
jmp 0x12e4e73
movq 0x18(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1c0(%rsp)
cmpq $0x0, 0x1c0(%rsp)
je 0x12e4e71
movq 0x1c0(%rsp), %rdi
callq 0x5f480
jmp 0x12e4e73
jmp 0x12e4e75
movq 0x18(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e4ecd
movq %rax, %rdi
callq 0x678a0
jmp 0x12e4ecf
leaq 0x58(%rsp), %rax
movq %rax, 0x108(%rsp)
movq 0x108(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8(%rsp)
leaq 0x58(%rsp), %rax
movq %rax, 0xe0(%rsp)
movq 0xe0(%rsp), %rax
movq %rax, 0x1b0(%rsp)
movq 0x1b0(%rsp), %rax
movq %rax, 0x10(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e4fa2
movq 0x10(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x1ac(%rsp) # imm = 0xFFFFFFFF
movl 0x1ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x1a8(%rsp)
cmpl $0x1, 0x1a8(%rsp)
jne 0x12e4fa2
movq 0x10(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e4f76
movq 0x10(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e4f74
jmp 0x12e4fa0
movq 0x10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1b8(%rsp)
cmpq $0x0, 0x1b8(%rsp)
je 0x12e4f9e
movq 0x1b8(%rsp), %rdi
callq 0x5f480
jmp 0x12e4fa0
jmp 0x12e4fa2
movq 0x10(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e4ffa
movq %rax, %rdi
callq 0x678a0
movq 0x8(%rsp), %rax
movq %rax, 0xa0(%rsp)
movl $0x0, 0x54(%rsp)
movss 0xd4(%rsp), %xmm0
movss %xmm0, 0x120(%rsp)
movaps 0x120(%rsp), %xmm0
shufps $0x0, %xmm0, %xmm0 # xmm0 = xmm0[0,0,0,0]
movaps %xmm0, 0x110(%rsp)
movaps 0x110(%rsp), %xmm0
movaps %xmm0, 0x40(%rsp)
movl 0x54(%rsp), %eax
addl $0x3, %eax
cmpl 0xac(%rsp), %eax
jge 0x12e50e6
movq 0xa0(%rsp), %rax
movq %rax, 0x128(%rsp)
movq 0x128(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm0, 0x30(%rsp)
leaq 0xc7(%rsp), %rdi
leaq 0x30(%rsp), %rsi
leaq 0x40(%rsp), %rdx
callq 0x12f6d40
movaps %xmm0, 0x30(%rsp)
movq 0xa0(%rsp), %rax
movaps 0x30(%rsp), %xmm0
movq %rax, 0x148(%rsp)
movaps %xmm0, 0x130(%rsp)
movaps 0x130(%rsp), %xmm0
movq 0x148(%rsp), %rax
movaps %xmm0, (%rax)
movq 0xa0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xa0(%rsp)
movl 0x54(%rsp), %eax
addl $0x4, %eax
movl %eax, 0x54(%rsp)
jmp 0x12e5042
jmp 0x12e50e8
movl 0x54(%rsp), %eax
cmpl 0xac(%rsp), %eax
jge 0x12e513f
movq 0xa0(%rsp), %rsi
leaq 0xc7(%rsp), %rdi
leaq 0xd4(%rsp), %rdx
callq 0x12f7fb0
movq 0xa0(%rsp), %rax
movss %xmm0, (%rax)
movq 0xa0(%rsp), %rax
addq $0x4, %rax
movq %rax, 0xa0(%rsp)
movl 0x54(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x54(%rsp)
jmp 0x12e50e8
jmp 0x12e5141
movl 0xa8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xa8(%rsp)
jmp 0x12e4beb
xorl %eax, %eax
addq $0x1c8, %rsp # imm = 0x1C8
retq
nopw %cs:(%rax,%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,845
|
int ncnn::binary_op_scalar_inplace<ncnn::BinaryOp_x86_functor::binary_op_rsub>(ncnn::Mat&, float, ncnn::Option const&)
|
static int binary_op_scalar_inplace(Mat& a, float b, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int elempack = a.elempack;
int size = w * h * d * elempack;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
float* ptr = a.channel(q);
int i = 0;
#if __SSE2__
#if __AVX__
#if __AVX512F__
__m512 _b_avx512 = _mm512_set1_ps(b);
for (; i + 15 < size; i += 16)
{
__m512 _p = _mm512_loadu_ps(ptr);
_p = op.func_pack16(_p, _b_avx512);
_mm512_storeu_ps(ptr, _p);
ptr += 16;
}
#endif // __AVX512F__
__m256 _b_avx = _mm256_set1_ps(b);
for (; i + 7 < size; i += 8)
{
__m256 _p = _mm256_loadu_ps(ptr);
_p = op.func_pack8(_p, _b_avx);
_mm256_storeu_ps(ptr, _p);
ptr += 8;
}
#endif // __AVX__
__m128 _b = _mm_set1_ps((float)b);
for (; i + 3 < size; i += 4)
{
__m128 _p = _mm_load_ps(ptr);
_p = op.func_pack4(_p, _b);
_mm_store_ps(ptr, _p);
ptr += 4;
}
#endif // __SSE2__
for (; i < size; i++)
{
*ptr = op.func(*ptr, b);
ptr++;
}
}
return 0;
}
|
subq $0x1c8, %rsp # imm = 0x1C8
movq %rdi, 0xd8(%rsp)
movss %xmm0, 0xd4(%rsp)
movq %rsi, 0xc8(%rsp)
movq 0xd8(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0xc0(%rsp)
movq 0xd8(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0xbc(%rsp)
movq 0xd8(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0xb8(%rsp)
movq 0xd8(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0xb4(%rsp)
movq 0xd8(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0xb0(%rsp)
movl 0xc0(%rsp), %eax
imull 0xbc(%rsp), %eax
imull 0xb8(%rsp), %eax
imull 0xb0(%rsp), %eax
movl %eax, 0xac(%rsp)
movl $0x0, 0xa8(%rsp)
movl 0xa8(%rsp), %eax
cmpl 0xb4(%rsp), %eax
jge 0x12e5787
movq 0xd8(%rsp), %rcx
movl 0xa8(%rsp), %eax
leaq 0x58(%rsp), %rdx
movq %rdx, 0xf8(%rsp)
movq %rcx, 0xf0(%rsp)
movl %eax, 0xec(%rsp)
movq 0xf0(%rsp), %rax
movq %rax, 0x28(%rsp)
movb $0x0, 0xeb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0xec(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x58(%rsp), %r10
movq %r10, 0x180(%rsp)
movl %r9d, 0x17c(%rsp)
movl %r8d, 0x178(%rsp)
movl %edi, 0x174(%rsp)
movq %rsi, 0x168(%rsp)
movq %rdx, 0x160(%rsp)
movl %ecx, 0x15c(%rsp)
movq %rax, 0x150(%rsp)
movq 0x180(%rsp), %rcx
movq %rcx, 0x20(%rsp)
movq 0x168(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x160(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x15c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x150(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x17c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x178(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x174(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x190(%rsp)
movl $0x10, 0x18c(%rsp)
movq 0x190(%rsp), %rax
movslq 0x18c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x18c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x28(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x80(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12e53d9
movq 0x28(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x98(%rsp)
movb $0x1, 0xeb(%rsp)
testb $0x1, 0xeb(%rsp)
jne 0x12e54ff
leaq 0x58(%rsp), %rax
movq %rax, 0x100(%rsp)
movq 0x100(%rsp), %rax
movq %rax, 0x1a0(%rsp)
movq 0x1a0(%rsp), %rax
movq %rax, 0x18(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e54a5
movq 0x18(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x19c(%rsp) # imm = 0xFFFFFFFF
movl 0x19c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x198(%rsp)
cmpl $0x1, 0x198(%rsp)
jne 0x12e54a5
movq 0x18(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e5479
movq 0x18(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e5477
jmp 0x12e54a3
movq 0x18(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1c0(%rsp)
cmpq $0x0, 0x1c0(%rsp)
je 0x12e54a1
movq 0x1c0(%rsp), %rdi
callq 0x5f480
jmp 0x12e54a3
jmp 0x12e54a5
movq 0x18(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e54fd
movq %rax, %rdi
callq 0x678a0
jmp 0x12e54ff
leaq 0x58(%rsp), %rax
movq %rax, 0x108(%rsp)
movq 0x108(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8(%rsp)
leaq 0x58(%rsp), %rax
movq %rax, 0xe0(%rsp)
movq 0xe0(%rsp), %rax
movq %rax, 0x1b0(%rsp)
movq 0x1b0(%rsp), %rax
movq %rax, 0x10(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e55d2
movq 0x10(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x1ac(%rsp) # imm = 0xFFFFFFFF
movl 0x1ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x1a8(%rsp)
cmpl $0x1, 0x1a8(%rsp)
jne 0x12e55d2
movq 0x10(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e55a6
movq 0x10(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e55a4
jmp 0x12e55d0
movq 0x10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1b8(%rsp)
cmpq $0x0, 0x1b8(%rsp)
je 0x12e55ce
movq 0x1b8(%rsp), %rdi
callq 0x5f480
jmp 0x12e55d0
jmp 0x12e55d2
movq 0x10(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e562a
movq %rax, %rdi
callq 0x678a0
movq 0x8(%rsp), %rax
movq %rax, 0xa0(%rsp)
movl $0x0, 0x54(%rsp)
movss 0xd4(%rsp), %xmm0
movss %xmm0, 0x120(%rsp)
movaps 0x120(%rsp), %xmm0
shufps $0x0, %xmm0, %xmm0 # xmm0 = xmm0[0,0,0,0]
movaps %xmm0, 0x110(%rsp)
movaps 0x110(%rsp), %xmm0
movaps %xmm0, 0x40(%rsp)
movl 0x54(%rsp), %eax
addl $0x3, %eax
cmpl 0xac(%rsp), %eax
jge 0x12e5716
movq 0xa0(%rsp), %rax
movq %rax, 0x128(%rsp)
movq 0x128(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm0, 0x30(%rsp)
leaq 0xc7(%rsp), %rdi
leaq 0x30(%rsp), %rsi
leaq 0x40(%rsp), %rdx
callq 0x12f7fe0
movaps %xmm0, 0x30(%rsp)
movq 0xa0(%rsp), %rax
movaps 0x30(%rsp), %xmm0
movq %rax, 0x148(%rsp)
movaps %xmm0, 0x130(%rsp)
movaps 0x130(%rsp), %xmm0
movq 0x148(%rsp), %rax
movaps %xmm0, (%rax)
movq 0xa0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xa0(%rsp)
movl 0x54(%rsp), %eax
addl $0x4, %eax
movl %eax, 0x54(%rsp)
jmp 0x12e5672
jmp 0x12e5718
movl 0x54(%rsp), %eax
cmpl 0xac(%rsp), %eax
jge 0x12e576f
movq 0xa0(%rsp), %rsi
leaq 0xc7(%rsp), %rdi
leaq 0xd4(%rsp), %rdx
callq 0x12f8020
movq 0xa0(%rsp), %rax
movss %xmm0, (%rax)
movq 0xa0(%rsp), %rax
addq $0x4, %rax
movq %rax, 0xa0(%rsp)
movl 0x54(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x54(%rsp)
jmp 0x12e5718
jmp 0x12e5771
movl 0xa8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xa8(%rsp)
jmp 0x12e521b
xorl %eax, %eax
addq $0x1c8, %rsp # imm = 0x1C8
retq
nopw %cs:(%rax,%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,846
|
int ncnn::binary_op_scalar_inplace<ncnn::BinaryOp_x86_functor::binary_op_rdiv>(ncnn::Mat&, float, ncnn::Option const&)
|
static int binary_op_scalar_inplace(Mat& a, float b, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int elempack = a.elempack;
int size = w * h * d * elempack;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
float* ptr = a.channel(q);
int i = 0;
#if __SSE2__
#if __AVX__
#if __AVX512F__
__m512 _b_avx512 = _mm512_set1_ps(b);
for (; i + 15 < size; i += 16)
{
__m512 _p = _mm512_loadu_ps(ptr);
_p = op.func_pack16(_p, _b_avx512);
_mm512_storeu_ps(ptr, _p);
ptr += 16;
}
#endif // __AVX512F__
__m256 _b_avx = _mm256_set1_ps(b);
for (; i + 7 < size; i += 8)
{
__m256 _p = _mm256_loadu_ps(ptr);
_p = op.func_pack8(_p, _b_avx);
_mm256_storeu_ps(ptr, _p);
ptr += 8;
}
#endif // __AVX__
__m128 _b = _mm_set1_ps((float)b);
for (; i + 3 < size; i += 4)
{
__m128 _p = _mm_load_ps(ptr);
_p = op.func_pack4(_p, _b);
_mm_store_ps(ptr, _p);
ptr += 4;
}
#endif // __SSE2__
for (; i < size; i++)
{
*ptr = op.func(*ptr, b);
ptr++;
}
}
return 0;
}
|
subq $0x1c8, %rsp # imm = 0x1C8
movq %rdi, 0xd8(%rsp)
movss %xmm0, 0xd4(%rsp)
movq %rsi, 0xc8(%rsp)
movq 0xd8(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0xc0(%rsp)
movq 0xd8(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0xbc(%rsp)
movq 0xd8(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0xb8(%rsp)
movq 0xd8(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0xb4(%rsp)
movq 0xd8(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0xb0(%rsp)
movl 0xc0(%rsp), %eax
imull 0xbc(%rsp), %eax
imull 0xb8(%rsp), %eax
imull 0xb0(%rsp), %eax
movl %eax, 0xac(%rsp)
movl $0x0, 0xa8(%rsp)
movl 0xa8(%rsp), %eax
cmpl 0xb4(%rsp), %eax
jge 0x12e5db7
movq 0xd8(%rsp), %rcx
movl 0xa8(%rsp), %eax
leaq 0x58(%rsp), %rdx
movq %rdx, 0xf8(%rsp)
movq %rcx, 0xf0(%rsp)
movl %eax, 0xec(%rsp)
movq 0xf0(%rsp), %rax
movq %rax, 0x28(%rsp)
movb $0x0, 0xeb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0xec(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x58(%rsp), %r10
movq %r10, 0x180(%rsp)
movl %r9d, 0x17c(%rsp)
movl %r8d, 0x178(%rsp)
movl %edi, 0x174(%rsp)
movq %rsi, 0x168(%rsp)
movq %rdx, 0x160(%rsp)
movl %ecx, 0x15c(%rsp)
movq %rax, 0x150(%rsp)
movq 0x180(%rsp), %rcx
movq %rcx, 0x20(%rsp)
movq 0x168(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x160(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x15c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x150(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x17c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x178(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x174(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x190(%rsp)
movl $0x10, 0x18c(%rsp)
movq 0x190(%rsp), %rax
movslq 0x18c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x18c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x28(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x80(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12e5a09
movq 0x28(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x98(%rsp)
movb $0x1, 0xeb(%rsp)
testb $0x1, 0xeb(%rsp)
jne 0x12e5b2f
leaq 0x58(%rsp), %rax
movq %rax, 0x100(%rsp)
movq 0x100(%rsp), %rax
movq %rax, 0x1a0(%rsp)
movq 0x1a0(%rsp), %rax
movq %rax, 0x18(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e5ad5
movq 0x18(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x19c(%rsp) # imm = 0xFFFFFFFF
movl 0x19c(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x198(%rsp)
cmpl $0x1, 0x198(%rsp)
jne 0x12e5ad5
movq 0x18(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e5aa9
movq 0x18(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e5aa7
jmp 0x12e5ad3
movq 0x18(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1c0(%rsp)
cmpq $0x0, 0x1c0(%rsp)
je 0x12e5ad1
movq 0x1c0(%rsp), %rdi
callq 0x5f480
jmp 0x12e5ad3
jmp 0x12e5ad5
movq 0x18(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e5b2d
movq %rax, %rdi
callq 0x678a0
jmp 0x12e5b2f
leaq 0x58(%rsp), %rax
movq %rax, 0x108(%rsp)
movq 0x108(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8(%rsp)
leaq 0x58(%rsp), %rax
movq %rax, 0xe0(%rsp)
movq 0xe0(%rsp), %rax
movq %rax, 0x1b0(%rsp)
movq 0x1b0(%rsp), %rax
movq %rax, 0x10(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e5c02
movq 0x10(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x1ac(%rsp) # imm = 0xFFFFFFFF
movl 0x1ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x1a8(%rsp)
cmpl $0x1, 0x1a8(%rsp)
jne 0x12e5c02
movq 0x10(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e5bd6
movq 0x10(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e5bd4
jmp 0x12e5c00
movq 0x10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1b8(%rsp)
cmpq $0x0, 0x1b8(%rsp)
je 0x12e5bfe
movq 0x1b8(%rsp), %rdi
callq 0x5f480
jmp 0x12e5c00
jmp 0x12e5c02
movq 0x10(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e5c5a
movq %rax, %rdi
callq 0x678a0
movq 0x8(%rsp), %rax
movq %rax, 0xa0(%rsp)
movl $0x0, 0x54(%rsp)
movss 0xd4(%rsp), %xmm0
movss %xmm0, 0x120(%rsp)
movaps 0x120(%rsp), %xmm0
shufps $0x0, %xmm0, %xmm0 # xmm0 = xmm0[0,0,0,0]
movaps %xmm0, 0x110(%rsp)
movaps 0x110(%rsp), %xmm0
movaps %xmm0, 0x40(%rsp)
movl 0x54(%rsp), %eax
addl $0x3, %eax
cmpl 0xac(%rsp), %eax
jge 0x12e5d46
movq 0xa0(%rsp), %rax
movq %rax, 0x128(%rsp)
movq 0x128(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm0, 0x30(%rsp)
leaq 0xc7(%rsp), %rdi
leaq 0x30(%rsp), %rsi
leaq 0x40(%rsp), %rdx
callq 0x12f8050
movaps %xmm0, 0x30(%rsp)
movq 0xa0(%rsp), %rax
movaps 0x30(%rsp), %xmm0
movq %rax, 0x148(%rsp)
movaps %xmm0, 0x130(%rsp)
movaps 0x130(%rsp), %xmm0
movq 0x148(%rsp), %rax
movaps %xmm0, (%rax)
movq 0xa0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xa0(%rsp)
movl 0x54(%rsp), %eax
addl $0x4, %eax
movl %eax, 0x54(%rsp)
jmp 0x12e5ca2
jmp 0x12e5d48
movl 0x54(%rsp), %eax
cmpl 0xac(%rsp), %eax
jge 0x12e5d9f
movq 0xa0(%rsp), %rsi
leaq 0xc7(%rsp), %rdi
leaq 0xd4(%rsp), %rdx
callq 0x12f8090
movq 0xa0(%rsp), %rax
movss %xmm0, (%rax)
movq 0xa0(%rsp), %rax
addq $0x4, %rax
movq %rax, 0xa0(%rsp)
movl 0x54(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x54(%rsp)
jmp 0x12e5d48
jmp 0x12e5da1
movl 0xa8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xa8(%rsp)
jmp 0x12e584b
xorl %eax, %eax
addq $0x1c8, %rsp # imm = 0x1C8
retq
nopw %cs:(%rax,%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,847
|
virtual thunk to ncnn::BinaryOp_x86::forward_inplace(ncnn::Mat&, ncnn::Option const&) const
|
int BinaryOp_x86::forward_inplace(Mat& bottom_top_blob, const Option& opt) const
{
using namespace BinaryOp_x86_functor;
if (op_type == Operation_ADD)
return binary_op_scalar_inplace<binary_op_add>(bottom_top_blob, b, opt);
if (op_type == Operation_SUB)
return binary_op_scalar_inplace<binary_op_sub>(bottom_top_blob, b, opt);
if (op_type == Operation_MUL)
return binary_op_scalar_inplace<binary_op_mul>(bottom_top_blob, b, opt);
if (op_type == Operation_DIV)
return binary_op_scalar_inplace<binary_op_div>(bottom_top_blob, b, opt);
if (op_type == Operation_MAX)
return binary_op_scalar_inplace<binary_op_max>(bottom_top_blob, b, opt);
if (op_type == Operation_MIN)
return binary_op_scalar_inplace<binary_op_min>(bottom_top_blob, b, opt);
if (op_type == Operation_POW)
return binary_op_scalar_inplace<binary_op_pow>(bottom_top_blob, b, opt);
if (op_type == Operation_RSUB)
return binary_op_scalar_inplace<binary_op_rsub>(bottom_top_blob, b, opt);
if (op_type == Operation_RDIV)
return binary_op_scalar_inplace<binary_op_rdiv>(bottom_top_blob, b, opt);
return 0;
}
|
movq %rdi, -0x8(%rsp)
movq %rsi, -0x10(%rsp)
movq %rdx, -0x18(%rsp)
movq -0x8(%rsp), %rdi
movq (%rdi), %rax
movq -0x58(%rax), %rax
addq %rax, %rdi
movq -0x10(%rsp), %rsi
movq -0x18(%rsp), %rdx
jmp 0x12e23b0
nopl (%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,848
|
int ncnn::binary_op_7_13_19_29<ncnn::BinaryOp_x86_functor::binary_op_add>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op_7_13_19_29(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int elempack = a.elempack;
int size = w * h * d * elempack;
// type 7 13 19 29
c.create_like(a, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
int i = 0;
#if __SSE2__
#if __AVX__
#if __AVX512F__
for (; i + 15 < size; i += 16)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
ptr1 += 16;
outptr += 16;
}
#endif // __AVX512F__
for (; i + 7 < size; i += 8)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _p1 = _mm256_loadu_ps(ptr1);
__m256 _outp = op.func_pack8(_p, _p1);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
ptr1 += 8;
outptr += 8;
}
#endif // __AVX__
for (; i + 3 < size; i += 4)
{
__m128 _p = _mm_load_ps(ptr);
__m128 _p1 = _mm_load_ps(ptr1);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_store_ps(outptr, _outp);
ptr += 4;
ptr1 += 4;
outptr += 4;
}
#endif // __SSE2__
for (; i < size; i++)
{
*outptr = op.func(*ptr, *ptr1);
ptr += 1;
ptr1 += 1;
outptr += 1;
}
}
return 0;
}
|
subq $0x4a8, %rsp # imm = 0x4A8
movq %rdi, 0x200(%rsp)
movq %rsi, 0x1f8(%rsp)
movq %rdx, 0x1f0(%rsp)
movq %rcx, 0x1e8(%rsp)
movq 0x200(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x1e0(%rsp)
movq 0x200(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x1dc(%rsp)
movq 0x200(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x1d8(%rsp)
movq 0x200(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x1d4(%rsp)
movq 0x200(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x1d0(%rsp)
movl 0x1e0(%rsp), %eax
imull 0x1dc(%rsp), %eax
imull 0x1d8(%rsp), %eax
imull 0x1d0(%rsp), %eax
movl %eax, 0x1cc(%rsp)
movq 0x1f0(%rsp), %rdi
movq 0x200(%rsp), %rsi
movq 0x1e8(%rsp), %rax
movq 0x8(%rax), %rdx
callq 0x6fe40
movq 0x1f0(%rsp), %rax
movq %rax, 0x210(%rsp)
movq 0x210(%rsp), %rcx
movq %rcx, 0x80(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x8f(%rsp)
je 0x12e5f29
movq 0x80(%rsp), %rax
movq %rax, 0x2f0(%rsp)
movq 0x2f0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x8f(%rsp)
movb 0x8f(%rsp), %al
testb $0x1, %al
jne 0x12e5f36
jmp 0x12e5f46
movl $0xffffff9c, 0x20c(%rsp) # imm = 0xFFFFFF9C
jmp 0x12e6d6c
movl $0x0, 0x1c8(%rsp)
movl 0x1c8(%rsp), %eax
cmpl 0x1d4(%rsp), %eax
jge 0x12e6d61
movq 0x200(%rsp), %rcx
movl 0x1c8(%rsp), %eax
leaq 0x178(%rsp), %rdx
movq %rdx, 0x240(%rsp)
movq %rcx, 0x238(%rsp)
movl %eax, 0x234(%rsp)
movq 0x238(%rsp), %rax
movq %rax, 0x78(%rsp)
movb $0x0, 0x233(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x234(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x178(%rsp), %r10
movq %r10, 0x360(%rsp)
movl %r9d, 0x35c(%rsp)
movl %r8d, 0x358(%rsp)
movl %edi, 0x354(%rsp)
movq %rsi, 0x348(%rsp)
movq %rdx, 0x340(%rsp)
movl %ecx, 0x33c(%rsp)
movq %rax, 0x330(%rsp)
movq 0x360(%rsp), %rcx
movq %rcx, 0x70(%rsp)
movq 0x348(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x340(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x33c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x330(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x35c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x358(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x354(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b8(%rsp)
movl $0x10, 0x3b4(%rsp)
movq 0x3b8(%rsp), %rax
movslq 0x3b4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x78(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1a0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12e6115
movq 0x78(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1b8(%rsp)
movb $0x1, 0x233(%rsp)
testb $0x1, 0x233(%rsp)
jne 0x12e623e
leaq 0x178(%rsp), %rax
movq %rax, 0x258(%rsp)
movq 0x258(%rsp), %rax
movq %rax, 0x458(%rsp)
movq 0x458(%rsp), %rax
movq %rax, 0x68(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e61e4
movq 0x68(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x454(%rsp) # imm = 0xFFFFFFFF
movl 0x454(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x450(%rsp)
cmpl $0x1, 0x450(%rsp)
jne 0x12e61e4
movq 0x68(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e61b8
movq 0x68(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e61b6
jmp 0x12e61e2
movq 0x68(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x460(%rsp)
cmpq $0x0, 0x460(%rsp)
je 0x12e61e0
movq 0x460(%rsp), %rdi
callq 0x5f480
jmp 0x12e61e2
jmp 0x12e61e4
movq 0x68(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e623c
movq %rax, %rdi
callq 0x678a0
jmp 0x12e623e
leaq 0x178(%rsp), %rax
movq %rax, 0x250(%rsp)
movq 0x250(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x60(%rsp)
leaq 0x178(%rsp), %rax
movq %rax, 0x268(%rsp)
movq 0x268(%rsp), %rax
movq %rax, 0x438(%rsp)
movq 0x438(%rsp), %rax
movq %rax, 0x58(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e6317
movq 0x58(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x434(%rsp) # imm = 0xFFFFFFFF
movl 0x434(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x430(%rsp)
cmpl $0x1, 0x430(%rsp)
jne 0x12e6317
movq 0x58(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e62eb
movq 0x58(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e62e9
jmp 0x12e6315
movq 0x58(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x470(%rsp)
cmpq $0x0, 0x470(%rsp)
je 0x12e6313
movq 0x470(%rsp), %rdi
callq 0x5f480
jmp 0x12e6315
jmp 0x12e6317
movq 0x58(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e636f
movq %rax, %rdi
callq 0x678a0
movq 0x60(%rsp), %rax
movq %rax, 0x1c0(%rsp)
movq 0x1f8(%rsp), %rcx
movl 0x1c8(%rsp), %eax
leaq 0x118(%rsp), %rdx
movq %rdx, 0x228(%rsp)
movq %rcx, 0x220(%rsp)
movl %eax, 0x21c(%rsp)
movq 0x220(%rsp), %rax
movq %rax, 0x50(%rsp)
movb $0x0, 0x21b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x21c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x118(%rsp), %r10
movq %r10, 0x398(%rsp)
movl %r9d, 0x394(%rsp)
movl %r8d, 0x390(%rsp)
movl %edi, 0x38c(%rsp)
movq %rsi, 0x380(%rsp)
movq %rdx, 0x378(%rsp)
movl %ecx, 0x374(%rsp)
movq %rax, 0x368(%rsp)
movq 0x398(%rsp), %rcx
movq %rcx, 0x48(%rsp)
movq 0x380(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x378(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x374(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x368(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x394(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x390(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x38c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3a8(%rsp)
movl $0x10, 0x3a4(%rsp)
movq 0x3a8(%rsp), %rax
movslq 0x3a4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3a4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x50(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x140(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12e652c
movq 0x50(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x158(%rsp)
movb $0x1, 0x21b(%rsp)
testb $0x1, 0x21b(%rsp)
jne 0x12e6655
leaq 0x118(%rsp), %rax
movq %rax, 0x260(%rsp)
movq 0x260(%rsp), %rax
movq %rax, 0x448(%rsp)
movq 0x448(%rsp), %rax
movq %rax, 0x40(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e65fb
movq 0x40(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x444(%rsp) # imm = 0xFFFFFFFF
movl 0x444(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x440(%rsp)
cmpl $0x1, 0x440(%rsp)
jne 0x12e65fb
movq 0x40(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e65cf
movq 0x40(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e65cd
jmp 0x12e65f9
movq 0x40(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x468(%rsp)
cmpq $0x0, 0x468(%rsp)
je 0x12e65f7
movq 0x468(%rsp), %rdi
callq 0x5f480
jmp 0x12e65f9
jmp 0x12e65fb
movq 0x40(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e6653
movq %rax, %rdi
callq 0x678a0
jmp 0x12e6655
leaq 0x118(%rsp), %rax
movq %rax, 0x248(%rsp)
movq 0x248(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x38(%rsp)
leaq 0x118(%rsp), %rax
movq %rax, 0x278(%rsp)
movq 0x278(%rsp), %rax
movq %rax, 0x418(%rsp)
movq 0x418(%rsp), %rax
movq %rax, 0x30(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e672e
movq 0x30(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x414(%rsp) # imm = 0xFFFFFFFF
movl 0x414(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x410(%rsp)
cmpl $0x1, 0x410(%rsp)
jne 0x12e672e
movq 0x30(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e6702
movq 0x30(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e6700
jmp 0x12e672c
movq 0x30(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x480(%rsp)
cmpq $0x0, 0x480(%rsp)
je 0x12e672a
movq 0x480(%rsp), %rdi
callq 0x5f480
jmp 0x12e672c
jmp 0x12e672e
movq 0x30(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e6786
movq %rax, %rdi
callq 0x678a0
movq 0x38(%rsp), %rax
movq %rax, 0x160(%rsp)
movq 0x1f0(%rsp), %rcx
movl 0x1c8(%rsp), %eax
leaq 0xc8(%rsp), %rdx
movq %rdx, 0x2a8(%rsp)
movq %rcx, 0x2a0(%rsp)
movl %eax, 0x29c(%rsp)
movq 0x2a0(%rsp), %rax
movq %rax, 0x28(%rsp)
movb $0x0, 0x29b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x29c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xc8(%rsp), %r10
movq %r10, 0x328(%rsp)
movl %r9d, 0x324(%rsp)
movl %r8d, 0x320(%rsp)
movl %edi, 0x31c(%rsp)
movq %rsi, 0x310(%rsp)
movq %rdx, 0x308(%rsp)
movl %ecx, 0x304(%rsp)
movq %rax, 0x2f8(%rsp)
movq 0x328(%rsp), %rcx
movq %rcx, 0x20(%rsp)
movq 0x310(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x308(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x304(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2f8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x324(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x320(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x31c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c8(%rsp)
movl $0x10, 0x3c4(%rsp)
movq 0x3c8(%rsp), %rax
movslq 0x3c4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x28(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12e6943
movq 0x28(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x108(%rsp)
movb $0x1, 0x29b(%rsp)
testb $0x1, 0x29b(%rsp)
jne 0x12e6a6c
leaq 0xc8(%rsp), %rax
movq %rax, 0x2b0(%rsp)
movq 0x2b0(%rsp), %rax
movq %rax, 0x3d8(%rsp)
movq 0x3d8(%rsp), %rax
movq %rax, 0x18(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e6a12
movq 0x18(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3d4(%rsp) # imm = 0xFFFFFFFF
movl 0x3d4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3d0(%rsp)
cmpl $0x1, 0x3d0(%rsp)
jne 0x12e6a12
movq 0x18(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e69e6
movq 0x18(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e69e4
jmp 0x12e6a10
movq 0x18(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4a0(%rsp)
cmpq $0x0, 0x4a0(%rsp)
je 0x12e6a0e
movq 0x4a0(%rsp), %rdi
callq 0x5f480
jmp 0x12e6a10
jmp 0x12e6a12
movq 0x18(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e6a6a
movq %rax, %rdi
callq 0x678a0
jmp 0x12e6a6c
leaq 0xc8(%rsp), %rax
movq %rax, 0x2b8(%rsp)
movq 0x2b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x10(%rsp)
leaq 0xc8(%rsp), %rax
movq %rax, 0x288(%rsp)
movq 0x288(%rsp), %rax
movq %rax, 0x3f8(%rsp)
movq 0x3f8(%rsp), %rax
movq %rax, 0x8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e6b45
movq 0x8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f4(%rsp) # imm = 0xFFFFFFFF
movl 0x3f4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f0(%rsp)
cmpl $0x1, 0x3f0(%rsp)
jne 0x12e6b45
movq 0x8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e6b19
movq 0x8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e6b17
jmp 0x12e6b43
movq 0x8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x490(%rsp)
cmpq $0x0, 0x490(%rsp)
je 0x12e6b41
movq 0x490(%rsp), %rdi
callq 0x5f480
jmp 0x12e6b43
jmp 0x12e6b45
movq 0x8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e6b9d
movq %rax, %rdi
callq 0x678a0
movq 0x10(%rsp), %rax
movq %rax, 0x110(%rsp)
movl $0x0, 0xc4(%rsp)
movl 0xc4(%rsp), %eax
addl $0x3, %eax
cmpl 0x1cc(%rsp), %eax
jge 0x12e6cbc
movq 0x1c0(%rsp), %rax
movq %rax, 0x2c8(%rsp)
movq 0x2c8(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm0, 0xb0(%rsp)
movq 0x160(%rsp), %rax
movq %rax, 0x2c0(%rsp)
movq 0x2c0(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm0, 0xa0(%rsp)
leaq 0x1e7(%rsp), %rdi
leaq 0xb0(%rsp), %rsi
leaq 0xa0(%rsp), %rdx
callq 0x12f6aa0
movaps %xmm0, 0x90(%rsp)
movq 0x110(%rsp), %rax
movaps 0x90(%rsp), %xmm0
movq %rax, 0x2e8(%rsp)
movaps %xmm0, 0x2d0(%rsp)
movaps 0x2d0(%rsp), %xmm0
movq 0x2e8(%rsp), %rax
movaps %xmm0, (%rax)
movq 0x1c0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1c0(%rsp)
movq 0x160(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x160(%rsp)
movq 0x110(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x110(%rsp)
movl 0xc4(%rsp), %eax
addl $0x4, %eax
movl %eax, 0xc4(%rsp)
jmp 0x12e6bb5
jmp 0x12e6cbe
movl 0xc4(%rsp), %eax
cmpl 0x1cc(%rsp), %eax
jge 0x12e6d49
movq 0x1c0(%rsp), %rsi
movq 0x160(%rsp), %rdx
leaq 0x1e7(%rsp), %rdi
callq 0x12f6ae0
movq 0x110(%rsp), %rax
movss %xmm0, (%rax)
movq 0x1c0(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x1c0(%rsp)
movq 0x160(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x160(%rsp)
movq 0x110(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x110(%rsp)
movl 0xc4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xc4(%rsp)
jmp 0x12e6cbe
jmp 0x12e6d4b
movl 0x1c8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c8(%rsp)
jmp 0x12e5f51
movl $0x0, 0x20c(%rsp)
movl 0x20c(%rsp), %eax
addq $0x4a8, %rsp # imm = 0x4A8
retq
nopl (%rax,%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,849
|
int ncnn::binary_op_6_11_16_25<ncnn::BinaryOp_x86_functor::binary_op_add>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op_6_11_16_25(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int elempack = a.elempack;
int size = w * h * d * elempack;
// type 6 11 16 25
c.create_like(a, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float b0 = b[0];
float* outptr = c.channel(q);
int i = 0;
#if __SSE2__
#if __AVX__
#if __AVX512F__
__m512 _b0_avx512 = _mm512_set1_ps(b0);
for (; i + 15 < size; i += 16)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0_avx512);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
#endif // __AVX512F__
__m256 _b0_avx = _mm256_set1_ps(b0);
for (; i + 7 < size; i += 8)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _outp = op.func_pack8(_p, _b0_avx);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
outptr += 8;
}
#endif // __AVX__
__m128 _b0 = _mm_set1_ps(b0);
for (; i + 3 < size; i += 4)
{
__m128 _p = _mm_load_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_store_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
#endif // __SSE2__
for (; i < size; i++)
{
*outptr = op.func(*ptr, b0);
ptr += 1;
outptr += 1;
}
}
return 0;
}
|
subq $0x338, %rsp # imm = 0x338
movq %rdi, 0x178(%rsp)
movq %rsi, 0x170(%rsp)
movq %rdx, 0x168(%rsp)
movq %rcx, 0x160(%rsp)
movq 0x178(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x158(%rsp)
movq 0x178(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x154(%rsp)
movq 0x178(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x150(%rsp)
movq 0x178(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x14c(%rsp)
movq 0x178(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x148(%rsp)
movl 0x158(%rsp), %eax
imull 0x154(%rsp), %eax
imull 0x150(%rsp), %eax
imull 0x148(%rsp), %eax
movl %eax, 0x144(%rsp)
movq 0x168(%rsp), %rdi
movq 0x178(%rsp), %rsi
movq 0x160(%rsp), %rax
movq 0x8(%rax), %rdx
callq 0x6fe40
movq 0x168(%rsp), %rax
movq %rax, 0x188(%rsp)
movq 0x188(%rsp), %rcx
movq %rcx, 0x50(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x5f(%rsp)
je 0x12e6e9d
movq 0x50(%rsp), %rax
movq %rax, 0x230(%rsp)
movq 0x230(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x5f(%rsp)
movb 0x5f(%rsp), %al
testb $0x1, %al
jne 0x12e6ea7
jmp 0x12e6eb7
movl $0xffffff9c, 0x184(%rsp) # imm = 0xFFFFFF9C
jmp 0x12e78dd
movl $0x0, 0x140(%rsp)
movl 0x140(%rsp), %eax
cmpl 0x14c(%rsp), %eax
jge 0x12e78d2
movq 0x178(%rsp), %rcx
movl 0x140(%rsp), %eax
leaq 0xf0(%rsp), %rdx
movq %rdx, 0x1a0(%rsp)
movq %rcx, 0x198(%rsp)
movl %eax, 0x194(%rsp)
movq 0x198(%rsp), %rax
movq %rax, 0x48(%rsp)
movb $0x0, 0x193(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x194(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xf0(%rsp), %r10
movq %r10, 0x2a0(%rsp)
movl %r9d, 0x29c(%rsp)
movl %r8d, 0x298(%rsp)
movl %edi, 0x294(%rsp)
movq %rsi, 0x288(%rsp)
movq %rdx, 0x280(%rsp)
movl %ecx, 0x27c(%rsp)
movq %rax, 0x270(%rsp)
movq 0x2a0(%rsp), %rcx
movq %rcx, 0x40(%rsp)
movq 0x288(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x280(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x27c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x270(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x29c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x298(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x294(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x2b0(%rsp)
movl $0x10, 0x2ac(%rsp)
movq 0x2b0(%rsp), %rax
movslq 0x2ac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x2ac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x48(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x118(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12e7086
movq 0x48(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x130(%rsp)
movb $0x1, 0x193(%rsp)
testb $0x1, 0x193(%rsp)
jne 0x12e71af
leaq 0xf0(%rsp), %rax
movq %rax, 0x1b0(%rsp)
movq 0x1b0(%rsp), %rax
movq %rax, 0x300(%rsp)
movq 0x300(%rsp), %rax
movq %rax, 0x38(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e7155
movq 0x38(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2fc(%rsp) # imm = 0xFFFFFFFF
movl 0x2fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2f8(%rsp)
cmpl $0x1, 0x2f8(%rsp)
jne 0x12e7155
movq 0x38(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e7129
movq 0x38(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e7127
jmp 0x12e7153
movq 0x38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x308(%rsp)
cmpq $0x0, 0x308(%rsp)
je 0x12e7151
movq 0x308(%rsp), %rdi
callq 0x5f480
jmp 0x12e7153
jmp 0x12e7155
movq 0x38(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e71ad
movq %rax, %rdi
callq 0x678a0
jmp 0x12e71af
leaq 0xf0(%rsp), %rax
movq %rax, 0x1a8(%rsp)
movq 0x1a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x28(%rsp)
leaq 0xf0(%rsp), %rax
movq %rax, 0x1b8(%rsp)
movq 0x1b8(%rsp), %rax
movq %rax, 0x2f0(%rsp)
movq 0x2f0(%rsp), %rax
movq %rax, 0x30(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e7288
movq 0x30(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2ec(%rsp) # imm = 0xFFFFFFFF
movl 0x2ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2e8(%rsp)
cmpl $0x1, 0x2e8(%rsp)
jne 0x12e7288
movq 0x30(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e725c
movq 0x30(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e725a
jmp 0x12e7286
movq 0x30(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x310(%rsp)
cmpq $0x0, 0x310(%rsp)
je 0x12e7284
movq 0x310(%rsp), %rdi
callq 0x5f480
jmp 0x12e7286
jmp 0x12e7288
movq 0x30(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e72e0
movq %rax, %rdi
callq 0x678a0
movq 0x28(%rsp), %rax
movq %rax, 0x138(%rsp)
movq 0x170(%rsp), %rax
movq %rax, 0x330(%rsp)
movq $0x0, 0x328(%rsp)
movq 0x330(%rsp), %rax
movq (%rax), %rax
movq 0x328(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xec(%rsp)
movq 0x168(%rsp), %rcx
movl 0x140(%rsp), %eax
leaq 0x98(%rsp), %rdx
movq %rdx, 0x1d8(%rsp)
movq %rcx, 0x1d0(%rsp)
movl %eax, 0x1cc(%rsp)
movq 0x1d0(%rsp), %rax
movq %rax, 0x20(%rsp)
movb $0x0, 0x1cb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1cc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x98(%rsp), %r10
movq %r10, 0x268(%rsp)
movl %r9d, 0x264(%rsp)
movl %r8d, 0x260(%rsp)
movl %edi, 0x25c(%rsp)
movq %rsi, 0x250(%rsp)
movq %rdx, 0x248(%rsp)
movl %ecx, 0x244(%rsp)
movq %rax, 0x238(%rsp)
movq 0x268(%rsp), %rcx
movq %rcx, 0x18(%rsp)
movq 0x250(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x248(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x244(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x238(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x264(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x260(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x25c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x2c0(%rsp)
movl $0x10, 0x2bc(%rsp)
movq 0x2c0(%rsp), %rax
movslq 0x2bc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x2bc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x20(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12e74da
movq 0x20(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd8(%rsp)
movb $0x1, 0x1cb(%rsp)
testb $0x1, 0x1cb(%rsp)
jne 0x12e7603
leaq 0x98(%rsp), %rax
movq %rax, 0x1e0(%rsp)
movq 0x1e0(%rsp), %rax
movq %rax, 0x2d0(%rsp)
movq 0x2d0(%rsp), %rax
movq %rax, 0x10(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e75a9
movq 0x10(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2cc(%rsp) # imm = 0xFFFFFFFF
movl 0x2cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2c8(%rsp)
cmpl $0x1, 0x2c8(%rsp)
jne 0x12e75a9
movq 0x10(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e757d
movq 0x10(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e757b
jmp 0x12e75a7
movq 0x10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x320(%rsp)
cmpq $0x0, 0x320(%rsp)
je 0x12e75a5
movq 0x320(%rsp), %rdi
callq 0x5f480
jmp 0x12e75a7
jmp 0x12e75a9
movq 0x10(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e7601
movq %rax, %rdi
callq 0x678a0
jmp 0x12e7603
leaq 0x98(%rsp), %rax
movq %rax, 0x1e8(%rsp)
movq 0x1e8(%rsp), %rax
movq (%rax), %rax
movq %rax, (%rsp)
leaq 0x98(%rsp), %rax
movq %rax, 0x1c0(%rsp)
movq 0x1c0(%rsp), %rax
movq %rax, 0x2e0(%rsp)
movq 0x2e0(%rsp), %rax
movq %rax, 0x8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e76db
movq 0x8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2dc(%rsp) # imm = 0xFFFFFFFF
movl 0x2dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2d8(%rsp)
cmpl $0x1, 0x2d8(%rsp)
jne 0x12e76db
movq 0x8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e76af
movq 0x8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e76ad
jmp 0x12e76d9
movq 0x8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x318(%rsp)
cmpq $0x0, 0x318(%rsp)
je 0x12e76d7
movq 0x318(%rsp), %rdi
callq 0x5f480
jmp 0x12e76d9
jmp 0x12e76db
movq 0x8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e7733
movq %rax, %rdi
callq 0x678a0
movq (%rsp), %rax
movq %rax, 0xe0(%rsp)
movl $0x0, 0x94(%rsp)
movss 0xec(%rsp), %xmm0
movss %xmm0, 0x200(%rsp)
movaps 0x200(%rsp), %xmm0
shufps $0x0, %xmm0, %xmm0 # xmm0 = xmm0[0,0,0,0]
movaps %xmm0, 0x1f0(%rsp)
movaps 0x1f0(%rsp), %xmm0
movaps %xmm0, 0x80(%rsp)
movl 0x94(%rsp), %eax
addl $0x3, %eax
cmpl 0x144(%rsp), %eax
jge 0x12e7844
movq 0x138(%rsp), %rax
movq %rax, 0x208(%rsp)
movq 0x208(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm0, 0x70(%rsp)
leaq 0x15f(%rsp), %rdi
leaq 0x70(%rsp), %rsi
leaq 0x80(%rsp), %rdx
callq 0x12f6aa0
movaps %xmm0, 0x60(%rsp)
movq 0xe0(%rsp), %rax
movaps 0x60(%rsp), %xmm0
movq %rax, 0x228(%rsp)
movaps %xmm0, 0x210(%rsp)
movaps 0x210(%rsp), %xmm0
movq 0x228(%rsp), %rax
movaps %xmm0, (%rax)
movq 0x138(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x138(%rsp)
movq 0xe0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xe0(%rsp)
movl 0x94(%rsp), %eax
addl $0x4, %eax
movl %eax, 0x94(%rsp)
jmp 0x12e7780
jmp 0x12e7846
movl 0x94(%rsp), %eax
cmpl 0x144(%rsp), %eax
jge 0x12e78ba
movq 0x138(%rsp), %rsi
leaq 0x15f(%rsp), %rdi
leaq 0xec(%rsp), %rdx
callq 0x12f6ae0
movq 0xe0(%rsp), %rax
movss %xmm0, (%rax)
movq 0x138(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x138(%rsp)
movq 0xe0(%rsp), %rax
addq $0x4, %rax
movq %rax, 0xe0(%rsp)
movl 0x94(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x94(%rsp)
jmp 0x12e7846
jmp 0x12e78bc
movl 0x140(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x140(%rsp)
jmp 0x12e6ec2
movl $0x0, 0x184(%rsp)
movl 0x184(%rsp), %eax
addq $0x338, %rsp # imm = 0x338
retq
nopl (%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,850
|
int ncnn::binary_op_2_3_4_20<ncnn::BinaryOp_x86_functor::binary_op_add>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op_2_3_4_20(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = b.w;
int h = b.h;
int d = b.d;
int channels = b.c;
int elempack = b.elempack;
int size = w * h * d * elempack;
// type 2 3 4 20
c.create_like(b, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float a0 = a[0];
const float* ptr = b.channel(q);
float* outptr = c.channel(q);
int i = 0;
#if __SSE2__
#if __AVX__
#if __AVX512F__
__m512 _a0_avx512 = _mm512_set1_ps(a0);
for (; i + 15 < size; i += 16)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_a0_avx512, _p);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
#endif // __AVX512F__
__m256 _a0_avx = _mm256_set1_ps(a0);
for (; i + 7 < size; i += 8)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _outp = op.func_pack8(_a0_avx, _p);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
outptr += 8;
}
#endif // __AVX__
__m128 _a0 = _mm_set1_ps(a0);
for (; i + 3 < size; i += 4)
{
__m128 _p = _mm_load_ps(ptr);
__m128 _outp = op.func_pack4(_a0, _p);
_mm_store_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
#endif // __SSE2__
for (; i < size; i++)
{
*outptr = op.func(a0, *ptr);
ptr += 1;
outptr += 1;
}
}
return 0;
}
|
subq $0x338, %rsp # imm = 0x338
movq %rdi, 0x178(%rsp)
movq %rsi, 0x170(%rsp)
movq %rdx, 0x168(%rsp)
movq %rcx, 0x160(%rsp)
movq 0x170(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x158(%rsp)
movq 0x170(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x154(%rsp)
movq 0x170(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x150(%rsp)
movq 0x170(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x14c(%rsp)
movq 0x170(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x148(%rsp)
movl 0x158(%rsp), %eax
imull 0x154(%rsp), %eax
imull 0x150(%rsp), %eax
imull 0x148(%rsp), %eax
movl %eax, 0x144(%rsp)
movq 0x168(%rsp), %rdi
movq 0x170(%rsp), %rsi
movq 0x160(%rsp), %rax
movq 0x8(%rax), %rdx
callq 0x6fe40
movq 0x168(%rsp), %rax
movq %rax, 0x188(%rsp)
movq 0x188(%rsp), %rcx
movq %rcx, 0x50(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x5f(%rsp)
je 0x12e7a0d
movq 0x50(%rsp), %rax
movq %rax, 0x230(%rsp)
movq 0x230(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x5f(%rsp)
movb 0x5f(%rsp), %al
testb $0x1, %al
jne 0x12e7a17
jmp 0x12e7a27
movl $0xffffff9c, 0x184(%rsp) # imm = 0xFFFFFF9C
jmp 0x12e844d
movl $0x0, 0x140(%rsp)
movl 0x140(%rsp), %eax
cmpl 0x14c(%rsp), %eax
jge 0x12e8442
movq 0x178(%rsp), %rax
movq %rax, 0x330(%rsp)
movq $0x0, 0x328(%rsp)
movq 0x330(%rsp), %rax
movq (%rax), %rax
movq 0x328(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x13c(%rsp)
movq 0x170(%rsp), %rcx
movl 0x140(%rsp), %eax
leaq 0xe8(%rsp), %rdx
movq %rdx, 0x1a0(%rsp)
movq %rcx, 0x198(%rsp)
movl %eax, 0x194(%rsp)
movq 0x198(%rsp), %rax
movq %rax, 0x48(%rsp)
movb $0x0, 0x193(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x194(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xe8(%rsp), %r10
movq %r10, 0x2a0(%rsp)
movl %r9d, 0x29c(%rsp)
movl %r8d, 0x298(%rsp)
movl %edi, 0x294(%rsp)
movq %rsi, 0x288(%rsp)
movq %rdx, 0x280(%rsp)
movl %ecx, 0x27c(%rsp)
movq %rax, 0x270(%rsp)
movq 0x2a0(%rsp), %rcx
movq %rcx, 0x40(%rsp)
movq 0x288(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x280(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x27c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x270(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x29c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x298(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x294(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x2b0(%rsp)
movl $0x10, 0x2ac(%rsp)
movq 0x2b0(%rsp), %rax
movslq 0x2ac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x2ac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x48(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x110(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12e7c33
movq 0x48(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x128(%rsp)
movb $0x1, 0x193(%rsp)
testb $0x1, 0x193(%rsp)
jne 0x12e7d5c
leaq 0xe8(%rsp), %rax
movq %rax, 0x1b0(%rsp)
movq 0x1b0(%rsp), %rax
movq %rax, 0x300(%rsp)
movq 0x300(%rsp), %rax
movq %rax, 0x38(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e7d02
movq 0x38(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2fc(%rsp) # imm = 0xFFFFFFFF
movl 0x2fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2f8(%rsp)
cmpl $0x1, 0x2f8(%rsp)
jne 0x12e7d02
movq 0x38(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e7cd6
movq 0x38(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e7cd4
jmp 0x12e7d00
movq 0x38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x308(%rsp)
cmpq $0x0, 0x308(%rsp)
je 0x12e7cfe
movq 0x308(%rsp), %rdi
callq 0x5f480
jmp 0x12e7d00
jmp 0x12e7d02
movq 0x38(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e7d5a
movq %rax, %rdi
callq 0x678a0
jmp 0x12e7d5c
leaq 0xe8(%rsp), %rax
movq %rax, 0x1a8(%rsp)
movq 0x1a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x28(%rsp)
leaq 0xe8(%rsp), %rax
movq %rax, 0x1b8(%rsp)
movq 0x1b8(%rsp), %rax
movq %rax, 0x2f0(%rsp)
movq 0x2f0(%rsp), %rax
movq %rax, 0x30(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e7e35
movq 0x30(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2ec(%rsp) # imm = 0xFFFFFFFF
movl 0x2ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2e8(%rsp)
cmpl $0x1, 0x2e8(%rsp)
jne 0x12e7e35
movq 0x30(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e7e09
movq 0x30(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e7e07
jmp 0x12e7e33
movq 0x30(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x310(%rsp)
cmpq $0x0, 0x310(%rsp)
je 0x12e7e31
movq 0x310(%rsp), %rdi
callq 0x5f480
jmp 0x12e7e33
jmp 0x12e7e35
movq 0x30(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e7e8d
movq %rax, %rdi
callq 0x678a0
movq 0x28(%rsp), %rax
movq %rax, 0x130(%rsp)
movq 0x168(%rsp), %rcx
movl 0x140(%rsp), %eax
leaq 0x98(%rsp), %rdx
movq %rdx, 0x1d8(%rsp)
movq %rcx, 0x1d0(%rsp)
movl %eax, 0x1cc(%rsp)
movq 0x1d0(%rsp), %rax
movq %rax, 0x20(%rsp)
movb $0x0, 0x1cb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1cc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x98(%rsp), %r10
movq %r10, 0x268(%rsp)
movl %r9d, 0x264(%rsp)
movl %r8d, 0x260(%rsp)
movl %edi, 0x25c(%rsp)
movq %rsi, 0x250(%rsp)
movq %rdx, 0x248(%rsp)
movl %ecx, 0x244(%rsp)
movq %rax, 0x238(%rsp)
movq 0x268(%rsp), %rcx
movq %rcx, 0x18(%rsp)
movq 0x250(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x248(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x244(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x238(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x264(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x260(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x25c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x2c0(%rsp)
movl $0x10, 0x2bc(%rsp)
movq 0x2c0(%rsp), %rax
movslq 0x2bc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x2bc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x20(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12e804a
movq 0x20(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd8(%rsp)
movb $0x1, 0x1cb(%rsp)
testb $0x1, 0x1cb(%rsp)
jne 0x12e8173
leaq 0x98(%rsp), %rax
movq %rax, 0x1e0(%rsp)
movq 0x1e0(%rsp), %rax
movq %rax, 0x2d0(%rsp)
movq 0x2d0(%rsp), %rax
movq %rax, 0x10(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e8119
movq 0x10(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2cc(%rsp) # imm = 0xFFFFFFFF
movl 0x2cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2c8(%rsp)
cmpl $0x1, 0x2c8(%rsp)
jne 0x12e8119
movq 0x10(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e80ed
movq 0x10(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e80eb
jmp 0x12e8117
movq 0x10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x320(%rsp)
cmpq $0x0, 0x320(%rsp)
je 0x12e8115
movq 0x320(%rsp), %rdi
callq 0x5f480
jmp 0x12e8117
jmp 0x12e8119
movq 0x10(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e8171
movq %rax, %rdi
callq 0x678a0
jmp 0x12e8173
leaq 0x98(%rsp), %rax
movq %rax, 0x1e8(%rsp)
movq 0x1e8(%rsp), %rax
movq (%rax), %rax
movq %rax, (%rsp)
leaq 0x98(%rsp), %rax
movq %rax, 0x1c0(%rsp)
movq 0x1c0(%rsp), %rax
movq %rax, 0x2e0(%rsp)
movq 0x2e0(%rsp), %rax
movq %rax, 0x8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e824b
movq 0x8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2dc(%rsp) # imm = 0xFFFFFFFF
movl 0x2dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2d8(%rsp)
cmpl $0x1, 0x2d8(%rsp)
jne 0x12e824b
movq 0x8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e821f
movq 0x8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e821d
jmp 0x12e8249
movq 0x8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x318(%rsp)
cmpq $0x0, 0x318(%rsp)
je 0x12e8247
movq 0x318(%rsp), %rdi
callq 0x5f480
jmp 0x12e8249
jmp 0x12e824b
movq 0x8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e82a3
movq %rax, %rdi
callq 0x678a0
movq (%rsp), %rax
movq %rax, 0xe0(%rsp)
movl $0x0, 0x94(%rsp)
movss 0x13c(%rsp), %xmm0
movss %xmm0, 0x200(%rsp)
movaps 0x200(%rsp), %xmm0
shufps $0x0, %xmm0, %xmm0 # xmm0 = xmm0[0,0,0,0]
movaps %xmm0, 0x1f0(%rsp)
movaps 0x1f0(%rsp), %xmm0
movaps %xmm0, 0x80(%rsp)
movl 0x94(%rsp), %eax
addl $0x3, %eax
cmpl 0x144(%rsp), %eax
jge 0x12e83b4
movq 0x130(%rsp), %rax
movq %rax, 0x208(%rsp)
movq 0x208(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm0, 0x70(%rsp)
leaq 0x15f(%rsp), %rdi
leaq 0x80(%rsp), %rsi
leaq 0x70(%rsp), %rdx
callq 0x12f6aa0
movaps %xmm0, 0x60(%rsp)
movq 0xe0(%rsp), %rax
movaps 0x60(%rsp), %xmm0
movq %rax, 0x228(%rsp)
movaps %xmm0, 0x210(%rsp)
movaps 0x210(%rsp), %xmm0
movq 0x228(%rsp), %rax
movaps %xmm0, (%rax)
movq 0x130(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x130(%rsp)
movq 0xe0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xe0(%rsp)
movl 0x94(%rsp), %eax
addl $0x4, %eax
movl %eax, 0x94(%rsp)
jmp 0x12e82f0
jmp 0x12e83b6
movl 0x94(%rsp), %eax
cmpl 0x144(%rsp), %eax
jge 0x12e842a
movq 0x130(%rsp), %rdx
leaq 0x15f(%rsp), %rdi
leaq 0x13c(%rsp), %rsi
callq 0x12f6ae0
movq 0xe0(%rsp), %rax
movss %xmm0, (%rax)
movq 0x130(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x130(%rsp)
movq 0xe0(%rsp), %rax
addq $0x4, %rax
movq %rax, 0xe0(%rsp)
movl 0x94(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x94(%rsp)
jmp 0x12e83b6
jmp 0x12e842c
movl 0x140(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x140(%rsp)
jmp 0x12e7a32
movl $0x0, 0x184(%rsp)
movl 0x184(%rsp), %eax
addq $0x338, %rsp # imm = 0x338
retq
nopl (%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,851
|
int ncnn::binary_op_7_13_19_29<ncnn::BinaryOp_x86_functor::binary_op_sub>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op_7_13_19_29(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int elempack = a.elempack;
int size = w * h * d * elempack;
// type 7 13 19 29
c.create_like(a, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
int i = 0;
#if __SSE2__
#if __AVX__
#if __AVX512F__
for (; i + 15 < size; i += 16)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
ptr1 += 16;
outptr += 16;
}
#endif // __AVX512F__
for (; i + 7 < size; i += 8)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _p1 = _mm256_loadu_ps(ptr1);
__m256 _outp = op.func_pack8(_p, _p1);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
ptr1 += 8;
outptr += 8;
}
#endif // __AVX__
for (; i + 3 < size; i += 4)
{
__m128 _p = _mm_load_ps(ptr);
__m128 _p1 = _mm_load_ps(ptr1);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_store_ps(outptr, _outp);
ptr += 4;
ptr1 += 4;
outptr += 4;
}
#endif // __SSE2__
for (; i < size; i++)
{
*outptr = op.func(*ptr, *ptr1);
ptr += 1;
ptr1 += 1;
outptr += 1;
}
}
return 0;
}
|
subq $0x438, %rsp # imm = 0x438
movq %rdi, 0x1f8(%rsp)
movq %rsi, 0x1f0(%rsp)
movq %rdx, 0x1e8(%rsp)
movq %rcx, 0x1e0(%rsp)
movq 0x1f8(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x1d8(%rsp)
movq 0x1f8(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x1d4(%rsp)
movq 0x1f8(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x1d0(%rsp)
movq 0x1f8(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x1cc(%rsp)
movq 0x1f8(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x1c8(%rsp)
movl 0x1d8(%rsp), %eax
imull 0x1d4(%rsp), %eax
imull 0x1d0(%rsp), %eax
imull 0x1c8(%rsp), %eax
movl %eax, 0x1c4(%rsp)
movq 0x1e8(%rsp), %rdi
movq 0x1f8(%rsp), %rsi
movq 0x1e0(%rsp), %rax
movq 0x8(%rax), %rdx
callq 0x6fe40
movq 0x1e8(%rsp), %rax
movq %rax, 0x208(%rsp)
movq 0x208(%rsp), %rcx
movq %rcx, 0x80(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x8f(%rsp)
je 0x12e8589
movq 0x80(%rsp), %rax
movq %rax, 0x2c8(%rsp)
movq 0x2c8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x8f(%rsp)
movb 0x8f(%rsp), %al
testb $0x1, %al
jne 0x12e8596
jmp 0x12e85a6
movl $0xffffff9c, 0x204(%rsp) # imm = 0xFFFFFF9C
jmp 0x12e93cc
movl $0x0, 0x1c0(%rsp)
movl 0x1c0(%rsp), %eax
cmpl 0x1cc(%rsp), %eax
jge 0x12e93c1
movq 0x1f8(%rsp), %rcx
movl 0x1c0(%rsp), %eax
leaq 0x170(%rsp), %rdx
movq %rdx, 0x238(%rsp)
movq %rcx, 0x230(%rsp)
movl %eax, 0x22c(%rsp)
movq 0x230(%rsp), %rax
movq %rax, 0x78(%rsp)
movb $0x0, 0x22b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x170(%rsp), %r10
movq %r10, 0x338(%rsp)
movl %r9d, 0x334(%rsp)
movl %r8d, 0x330(%rsp)
movl %edi, 0x32c(%rsp)
movq %rsi, 0x320(%rsp)
movq %rdx, 0x318(%rsp)
movl %ecx, 0x314(%rsp)
movq %rax, 0x308(%rsp)
movq 0x338(%rsp), %rcx
movq %rcx, 0x70(%rsp)
movq 0x320(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x318(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x314(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x308(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x334(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x330(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x32c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x390(%rsp)
movl $0x10, 0x38c(%rsp)
movq 0x390(%rsp), %rax
movslq 0x38c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x38c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x78(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x198(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12e8775
movq 0x78(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1b0(%rsp)
movb $0x1, 0x22b(%rsp)
testb $0x1, 0x22b(%rsp)
jne 0x12e889e
leaq 0x170(%rsp), %rax
movq %rax, 0x250(%rsp)
movq 0x250(%rsp), %rax
movq %rax, 0x400(%rsp)
movq 0x400(%rsp), %rax
movq %rax, 0x68(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e8844
movq 0x68(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fc(%rsp) # imm = 0xFFFFFFFF
movl 0x3fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f8(%rsp)
cmpl $0x1, 0x3f8(%rsp)
jne 0x12e8844
movq 0x68(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e8818
movq 0x68(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e8816
jmp 0x12e8842
movq 0x68(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x408(%rsp)
cmpq $0x0, 0x408(%rsp)
je 0x12e8840
movq 0x408(%rsp), %rdi
callq 0x5f480
jmp 0x12e8842
jmp 0x12e8844
movq 0x68(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e889c
movq %rax, %rdi
callq 0x678a0
jmp 0x12e889e
leaq 0x170(%rsp), %rax
movq %rax, 0x248(%rsp)
movq 0x248(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x58(%rsp)
leaq 0x170(%rsp), %rax
movq %rax, 0x260(%rsp)
movq 0x260(%rsp), %rax
movq %rax, 0x3e0(%rsp)
movq 0x3e0(%rsp), %rax
movq %rax, 0x60(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e8977
movq 0x60(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3dc(%rsp) # imm = 0xFFFFFFFF
movl 0x3dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3d8(%rsp)
cmpl $0x1, 0x3d8(%rsp)
jne 0x12e8977
movq 0x60(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e894b
movq 0x60(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e8949
jmp 0x12e8975
movq 0x60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x418(%rsp)
cmpq $0x0, 0x418(%rsp)
je 0x12e8973
movq 0x418(%rsp), %rdi
callq 0x5f480
jmp 0x12e8975
jmp 0x12e8977
movq 0x60(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e89cf
movq %rax, %rdi
callq 0x678a0
movq 0x58(%rsp), %rax
movq %rax, 0x1b8(%rsp)
movq 0x1f0(%rsp), %rcx
movl 0x1c0(%rsp), %eax
leaq 0x120(%rsp), %rdx
movq %rdx, 0x220(%rsp)
movq %rcx, 0x218(%rsp)
movl %eax, 0x214(%rsp)
movq 0x218(%rsp), %rax
movq %rax, 0x50(%rsp)
movb $0x0, 0x213(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x214(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x120(%rsp), %r10
movq %r10, 0x370(%rsp)
movl %r9d, 0x36c(%rsp)
movl %r8d, 0x368(%rsp)
movl %edi, 0x364(%rsp)
movq %rsi, 0x358(%rsp)
movq %rdx, 0x350(%rsp)
movl %ecx, 0x34c(%rsp)
movq %rax, 0x340(%rsp)
movq 0x370(%rsp), %rcx
movq %rcx, 0x48(%rsp)
movq 0x358(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x350(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x34c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x340(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x36c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x368(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x364(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x380(%rsp)
movl $0x10, 0x37c(%rsp)
movq 0x380(%rsp), %rax
movslq 0x37c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x37c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x50(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x148(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12e8b8c
movq 0x50(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x160(%rsp)
movb $0x1, 0x213(%rsp)
testb $0x1, 0x213(%rsp)
jne 0x12e8cb5
leaq 0x120(%rsp), %rax
movq %rax, 0x258(%rsp)
movq 0x258(%rsp), %rax
movq %rax, 0x3f0(%rsp)
movq 0x3f0(%rsp), %rax
movq %rax, 0x40(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e8c5b
movq 0x40(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ec(%rsp) # imm = 0xFFFFFFFF
movl 0x3ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e8(%rsp)
cmpl $0x1, 0x3e8(%rsp)
jne 0x12e8c5b
movq 0x40(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e8c2f
movq 0x40(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e8c2d
jmp 0x12e8c59
movq 0x40(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x410(%rsp)
cmpq $0x0, 0x410(%rsp)
je 0x12e8c57
movq 0x410(%rsp), %rdi
callq 0x5f480
jmp 0x12e8c59
jmp 0x12e8c5b
movq 0x40(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e8cb3
movq %rax, %rdi
callq 0x678a0
jmp 0x12e8cb5
leaq 0x120(%rsp), %rax
movq %rax, 0x240(%rsp)
movq 0x240(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x30(%rsp)
leaq 0x120(%rsp), %rax
movq %rax, 0x268(%rsp)
movq 0x268(%rsp), %rax
movq %rax, 0x3d0(%rsp)
movq 0x3d0(%rsp), %rax
movq %rax, 0x38(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e8d8e
movq 0x38(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3cc(%rsp) # imm = 0xFFFFFFFF
movl 0x3cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c8(%rsp)
cmpl $0x1, 0x3c8(%rsp)
jne 0x12e8d8e
movq 0x38(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e8d62
movq 0x38(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e8d60
jmp 0x12e8d8c
movq 0x38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x420(%rsp)
cmpq $0x0, 0x420(%rsp)
je 0x12e8d8a
movq 0x420(%rsp), %rdi
callq 0x5f480
jmp 0x12e8d8c
jmp 0x12e8d8e
movq 0x38(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e8de6
movq %rax, %rdi
callq 0x678a0
movq 0x30(%rsp), %rax
movq %rax, 0x168(%rsp)
movq 0x1e8(%rsp), %rcx
movl 0x1c0(%rsp), %eax
leaq 0xd0(%rsp), %rdx
movq %rdx, 0x288(%rsp)
movq %rcx, 0x280(%rsp)
movl %eax, 0x27c(%rsp)
movq 0x280(%rsp), %rax
movq %rax, 0x28(%rsp)
movb $0x0, 0x27b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x27c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xd0(%rsp), %r10
movq %r10, 0x300(%rsp)
movl %r9d, 0x2fc(%rsp)
movl %r8d, 0x2f8(%rsp)
movl %edi, 0x2f4(%rsp)
movq %rsi, 0x2e8(%rsp)
movq %rdx, 0x2e0(%rsp)
movl %ecx, 0x2dc(%rsp)
movq %rax, 0x2d0(%rsp)
movq 0x300(%rsp), %rcx
movq %rcx, 0x20(%rsp)
movq 0x2e8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2e0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2dc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2d0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2fc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3a0(%rsp)
movl $0x10, 0x39c(%rsp)
movq 0x3a0(%rsp), %rax
movslq 0x39c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x39c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x28(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12e8fa3
movq 0x28(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x110(%rsp)
movb $0x1, 0x27b(%rsp)
testb $0x1, 0x27b(%rsp)
jne 0x12e90cc
leaq 0xd0(%rsp), %rax
movq %rax, 0x290(%rsp)
movq 0x290(%rsp), %rax
movq %rax, 0x3b0(%rsp)
movq 0x3b0(%rsp), %rax
movq %rax, 0x18(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e9072
movq 0x18(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ac(%rsp) # imm = 0xFFFFFFFF
movl 0x3ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a8(%rsp)
cmpl $0x1, 0x3a8(%rsp)
jne 0x12e9072
movq 0x18(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e9046
movq 0x18(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e9044
jmp 0x12e9070
movq 0x18(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x430(%rsp)
cmpq $0x0, 0x430(%rsp)
je 0x12e906e
movq 0x430(%rsp), %rdi
callq 0x5f480
jmp 0x12e9070
jmp 0x12e9072
movq 0x18(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e90ca
movq %rax, %rdi
callq 0x678a0
jmp 0x12e90cc
leaq 0xd0(%rsp), %rax
movq %rax, 0x298(%rsp)
movq 0x298(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8(%rsp)
leaq 0xd0(%rsp), %rax
movq %rax, 0x270(%rsp)
movq 0x270(%rsp), %rax
movq %rax, 0x3c0(%rsp)
movq 0x3c0(%rsp), %rax
movq %rax, 0x10(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e91a5
movq 0x10(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bc(%rsp) # imm = 0xFFFFFFFF
movl 0x3bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b8(%rsp)
cmpl $0x1, 0x3b8(%rsp)
jne 0x12e91a5
movq 0x10(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e9179
movq 0x10(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e9177
jmp 0x12e91a3
movq 0x10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x428(%rsp)
cmpq $0x0, 0x428(%rsp)
je 0x12e91a1
movq 0x428(%rsp), %rdi
callq 0x5f480
jmp 0x12e91a3
jmp 0x12e91a5
movq 0x10(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e91fd
movq %rax, %rdi
callq 0x678a0
movq 0x8(%rsp), %rax
movq %rax, 0x118(%rsp)
movl $0x0, 0xcc(%rsp)
movl 0xcc(%rsp), %eax
addl $0x3, %eax
cmpl 0x1c4(%rsp), %eax
jge 0x12e931c
movq 0x1b8(%rsp), %rax
movq %rax, 0x2a8(%rsp)
movq 0x2a8(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm0, 0xb0(%rsp)
movq 0x168(%rsp), %rax
movq %rax, 0x2a0(%rsp)
movq 0x2a0(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm0, 0xa0(%rsp)
leaq 0x1df(%rsp), %rdi
leaq 0xb0(%rsp), %rsi
leaq 0xa0(%rsp), %rdx
callq 0x12f6b10
movaps %xmm0, 0x90(%rsp)
movq 0x118(%rsp), %rax
movaps 0x90(%rsp), %xmm0
movq %rax, 0x2c0(%rsp)
movaps %xmm0, 0x2b0(%rsp)
movaps 0x2b0(%rsp), %xmm0
movq 0x2c0(%rsp), %rax
movaps %xmm0, (%rax)
movq 0x1b8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1b8(%rsp)
movq 0x168(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x168(%rsp)
movq 0x118(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x118(%rsp)
movl 0xcc(%rsp), %eax
addl $0x4, %eax
movl %eax, 0xcc(%rsp)
jmp 0x12e9215
jmp 0x12e931e
movl 0xcc(%rsp), %eax
cmpl 0x1c4(%rsp), %eax
jge 0x12e93a9
movq 0x1b8(%rsp), %rsi
movq 0x168(%rsp), %rdx
leaq 0x1df(%rsp), %rdi
callq 0x12f6b50
movq 0x118(%rsp), %rax
movss %xmm0, (%rax)
movq 0x1b8(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x1b8(%rsp)
movq 0x168(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x168(%rsp)
movq 0x118(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x118(%rsp)
movl 0xcc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xcc(%rsp)
jmp 0x12e931e
jmp 0x12e93ab
movl 0x1c0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c0(%rsp)
jmp 0x12e85b1
movl $0x0, 0x204(%rsp)
movl 0x204(%rsp), %eax
addq $0x438, %rsp # imm = 0x438
retq
nopl (%rax,%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,852
|
int ncnn::binary_op_6_11_16_25<ncnn::BinaryOp_x86_functor::binary_op_sub>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op_6_11_16_25(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int elempack = a.elempack;
int size = w * h * d * elempack;
// type 6 11 16 25
c.create_like(a, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float b0 = b[0];
float* outptr = c.channel(q);
int i = 0;
#if __SSE2__
#if __AVX__
#if __AVX512F__
__m512 _b0_avx512 = _mm512_set1_ps(b0);
for (; i + 15 < size; i += 16)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0_avx512);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
#endif // __AVX512F__
__m256 _b0_avx = _mm256_set1_ps(b0);
for (; i + 7 < size; i += 8)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _outp = op.func_pack8(_p, _b0_avx);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
outptr += 8;
}
#endif // __AVX__
__m128 _b0 = _mm_set1_ps(b0);
for (; i + 3 < size; i += 4)
{
__m128 _p = _mm_load_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_store_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
#endif // __SSE2__
for (; i < size; i++)
{
*outptr = op.func(*ptr, b0);
ptr += 1;
outptr += 1;
}
}
return 0;
}
|
subq $0x338, %rsp # imm = 0x338
movq %rdi, 0x178(%rsp)
movq %rsi, 0x170(%rsp)
movq %rdx, 0x168(%rsp)
movq %rcx, 0x160(%rsp)
movq 0x178(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x158(%rsp)
movq 0x178(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x154(%rsp)
movq 0x178(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x150(%rsp)
movq 0x178(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x14c(%rsp)
movq 0x178(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x148(%rsp)
movl 0x158(%rsp), %eax
imull 0x154(%rsp), %eax
imull 0x150(%rsp), %eax
imull 0x148(%rsp), %eax
movl %eax, 0x144(%rsp)
movq 0x168(%rsp), %rdi
movq 0x178(%rsp), %rsi
movq 0x160(%rsp), %rax
movq 0x8(%rax), %rdx
callq 0x6fe40
movq 0x168(%rsp), %rax
movq %rax, 0x188(%rsp)
movq 0x188(%rsp), %rcx
movq %rcx, 0x50(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x5f(%rsp)
je 0x12e94fd
movq 0x50(%rsp), %rax
movq %rax, 0x230(%rsp)
movq 0x230(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x5f(%rsp)
movb 0x5f(%rsp), %al
testb $0x1, %al
jne 0x12e9507
jmp 0x12e9517
movl $0xffffff9c, 0x184(%rsp) # imm = 0xFFFFFF9C
jmp 0x12e9f3d
movl $0x0, 0x140(%rsp)
movl 0x140(%rsp), %eax
cmpl 0x14c(%rsp), %eax
jge 0x12e9f32
movq 0x178(%rsp), %rcx
movl 0x140(%rsp), %eax
leaq 0xf0(%rsp), %rdx
movq %rdx, 0x1a0(%rsp)
movq %rcx, 0x198(%rsp)
movl %eax, 0x194(%rsp)
movq 0x198(%rsp), %rax
movq %rax, 0x48(%rsp)
movb $0x0, 0x193(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x194(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xf0(%rsp), %r10
movq %r10, 0x2a0(%rsp)
movl %r9d, 0x29c(%rsp)
movl %r8d, 0x298(%rsp)
movl %edi, 0x294(%rsp)
movq %rsi, 0x288(%rsp)
movq %rdx, 0x280(%rsp)
movl %ecx, 0x27c(%rsp)
movq %rax, 0x270(%rsp)
movq 0x2a0(%rsp), %rcx
movq %rcx, 0x40(%rsp)
movq 0x288(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x280(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x27c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x270(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x29c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x298(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x294(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x2b0(%rsp)
movl $0x10, 0x2ac(%rsp)
movq 0x2b0(%rsp), %rax
movslq 0x2ac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x2ac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x48(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x118(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12e96e6
movq 0x48(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x130(%rsp)
movb $0x1, 0x193(%rsp)
testb $0x1, 0x193(%rsp)
jne 0x12e980f
leaq 0xf0(%rsp), %rax
movq %rax, 0x1b0(%rsp)
movq 0x1b0(%rsp), %rax
movq %rax, 0x300(%rsp)
movq 0x300(%rsp), %rax
movq %rax, 0x38(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e97b5
movq 0x38(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2fc(%rsp) # imm = 0xFFFFFFFF
movl 0x2fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2f8(%rsp)
cmpl $0x1, 0x2f8(%rsp)
jne 0x12e97b5
movq 0x38(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e9789
movq 0x38(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e9787
jmp 0x12e97b3
movq 0x38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x308(%rsp)
cmpq $0x0, 0x308(%rsp)
je 0x12e97b1
movq 0x308(%rsp), %rdi
callq 0x5f480
jmp 0x12e97b3
jmp 0x12e97b5
movq 0x38(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e980d
movq %rax, %rdi
callq 0x678a0
jmp 0x12e980f
leaq 0xf0(%rsp), %rax
movq %rax, 0x1a8(%rsp)
movq 0x1a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x28(%rsp)
leaq 0xf0(%rsp), %rax
movq %rax, 0x1b8(%rsp)
movq 0x1b8(%rsp), %rax
movq %rax, 0x2f0(%rsp)
movq 0x2f0(%rsp), %rax
movq %rax, 0x30(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e98e8
movq 0x30(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2ec(%rsp) # imm = 0xFFFFFFFF
movl 0x2ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2e8(%rsp)
cmpl $0x1, 0x2e8(%rsp)
jne 0x12e98e8
movq 0x30(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e98bc
movq 0x30(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e98ba
jmp 0x12e98e6
movq 0x30(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x310(%rsp)
cmpq $0x0, 0x310(%rsp)
je 0x12e98e4
movq 0x310(%rsp), %rdi
callq 0x5f480
jmp 0x12e98e6
jmp 0x12e98e8
movq 0x30(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e9940
movq %rax, %rdi
callq 0x678a0
movq 0x28(%rsp), %rax
movq %rax, 0x138(%rsp)
movq 0x170(%rsp), %rax
movq %rax, 0x330(%rsp)
movq $0x0, 0x328(%rsp)
movq 0x330(%rsp), %rax
movq (%rax), %rax
movq 0x328(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xec(%rsp)
movq 0x168(%rsp), %rcx
movl 0x140(%rsp), %eax
leaq 0x98(%rsp), %rdx
movq %rdx, 0x1d8(%rsp)
movq %rcx, 0x1d0(%rsp)
movl %eax, 0x1cc(%rsp)
movq 0x1d0(%rsp), %rax
movq %rax, 0x20(%rsp)
movb $0x0, 0x1cb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1cc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x98(%rsp), %r10
movq %r10, 0x268(%rsp)
movl %r9d, 0x264(%rsp)
movl %r8d, 0x260(%rsp)
movl %edi, 0x25c(%rsp)
movq %rsi, 0x250(%rsp)
movq %rdx, 0x248(%rsp)
movl %ecx, 0x244(%rsp)
movq %rax, 0x238(%rsp)
movq 0x268(%rsp), %rcx
movq %rcx, 0x18(%rsp)
movq 0x250(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x248(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x244(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x238(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x264(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x260(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x25c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x2c0(%rsp)
movl $0x10, 0x2bc(%rsp)
movq 0x2c0(%rsp), %rax
movslq 0x2bc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x2bc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x20(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12e9b3a
movq 0x20(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd8(%rsp)
movb $0x1, 0x1cb(%rsp)
testb $0x1, 0x1cb(%rsp)
jne 0x12e9c63
leaq 0x98(%rsp), %rax
movq %rax, 0x1e0(%rsp)
movq 0x1e0(%rsp), %rax
movq %rax, 0x2d0(%rsp)
movq 0x2d0(%rsp), %rax
movq %rax, 0x10(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e9c09
movq 0x10(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2cc(%rsp) # imm = 0xFFFFFFFF
movl 0x2cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2c8(%rsp)
cmpl $0x1, 0x2c8(%rsp)
jne 0x12e9c09
movq 0x10(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e9bdd
movq 0x10(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e9bdb
jmp 0x12e9c07
movq 0x10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x320(%rsp)
cmpq $0x0, 0x320(%rsp)
je 0x12e9c05
movq 0x320(%rsp), %rdi
callq 0x5f480
jmp 0x12e9c07
jmp 0x12e9c09
movq 0x10(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e9c61
movq %rax, %rdi
callq 0x678a0
jmp 0x12e9c63
leaq 0x98(%rsp), %rax
movq %rax, 0x1e8(%rsp)
movq 0x1e8(%rsp), %rax
movq (%rax), %rax
movq %rax, (%rsp)
leaq 0x98(%rsp), %rax
movq %rax, 0x1c0(%rsp)
movq 0x1c0(%rsp), %rax
movq %rax, 0x2e0(%rsp)
movq 0x2e0(%rsp), %rax
movq %rax, 0x8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12e9d3b
movq 0x8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2dc(%rsp) # imm = 0xFFFFFFFF
movl 0x2dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2d8(%rsp)
cmpl $0x1, 0x2d8(%rsp)
jne 0x12e9d3b
movq 0x8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12e9d0f
movq 0x8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12e9d0d
jmp 0x12e9d39
movq 0x8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x318(%rsp)
cmpq $0x0, 0x318(%rsp)
je 0x12e9d37
movq 0x318(%rsp), %rdi
callq 0x5f480
jmp 0x12e9d39
jmp 0x12e9d3b
movq 0x8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12e9d93
movq %rax, %rdi
callq 0x678a0
movq (%rsp), %rax
movq %rax, 0xe0(%rsp)
movl $0x0, 0x94(%rsp)
movss 0xec(%rsp), %xmm0
movss %xmm0, 0x200(%rsp)
movaps 0x200(%rsp), %xmm0
shufps $0x0, %xmm0, %xmm0 # xmm0 = xmm0[0,0,0,0]
movaps %xmm0, 0x1f0(%rsp)
movaps 0x1f0(%rsp), %xmm0
movaps %xmm0, 0x80(%rsp)
movl 0x94(%rsp), %eax
addl $0x3, %eax
cmpl 0x144(%rsp), %eax
jge 0x12e9ea4
movq 0x138(%rsp), %rax
movq %rax, 0x208(%rsp)
movq 0x208(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm0, 0x70(%rsp)
leaq 0x15f(%rsp), %rdi
leaq 0x70(%rsp), %rsi
leaq 0x80(%rsp), %rdx
callq 0x12f6b10
movaps %xmm0, 0x60(%rsp)
movq 0xe0(%rsp), %rax
movaps 0x60(%rsp), %xmm0
movq %rax, 0x228(%rsp)
movaps %xmm0, 0x210(%rsp)
movaps 0x210(%rsp), %xmm0
movq 0x228(%rsp), %rax
movaps %xmm0, (%rax)
movq 0x138(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x138(%rsp)
movq 0xe0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xe0(%rsp)
movl 0x94(%rsp), %eax
addl $0x4, %eax
movl %eax, 0x94(%rsp)
jmp 0x12e9de0
jmp 0x12e9ea6
movl 0x94(%rsp), %eax
cmpl 0x144(%rsp), %eax
jge 0x12e9f1a
movq 0x138(%rsp), %rsi
leaq 0x15f(%rsp), %rdi
leaq 0xec(%rsp), %rdx
callq 0x12f6b50
movq 0xe0(%rsp), %rax
movss %xmm0, (%rax)
movq 0x138(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x138(%rsp)
movq 0xe0(%rsp), %rax
addq $0x4, %rax
movq %rax, 0xe0(%rsp)
movl 0x94(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x94(%rsp)
jmp 0x12e9ea6
jmp 0x12e9f1c
movl 0x140(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x140(%rsp)
jmp 0x12e9522
movl $0x0, 0x184(%rsp)
movl 0x184(%rsp), %eax
addq $0x338, %rsp # imm = 0x338
retq
nopl (%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,853
|
int ncnn::binary_op_2_3_4_20<ncnn::BinaryOp_x86_functor::binary_op_sub>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op_2_3_4_20(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = b.w;
int h = b.h;
int d = b.d;
int channels = b.c;
int elempack = b.elempack;
int size = w * h * d * elempack;
// type 2 3 4 20
c.create_like(b, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float a0 = a[0];
const float* ptr = b.channel(q);
float* outptr = c.channel(q);
int i = 0;
#if __SSE2__
#if __AVX__
#if __AVX512F__
__m512 _a0_avx512 = _mm512_set1_ps(a0);
for (; i + 15 < size; i += 16)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_a0_avx512, _p);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
#endif // __AVX512F__
__m256 _a0_avx = _mm256_set1_ps(a0);
for (; i + 7 < size; i += 8)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _outp = op.func_pack8(_a0_avx, _p);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
outptr += 8;
}
#endif // __AVX__
__m128 _a0 = _mm_set1_ps(a0);
for (; i + 3 < size; i += 4)
{
__m128 _p = _mm_load_ps(ptr);
__m128 _outp = op.func_pack4(_a0, _p);
_mm_store_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
#endif // __SSE2__
for (; i < size; i++)
{
*outptr = op.func(a0, *ptr);
ptr += 1;
outptr += 1;
}
}
return 0;
}
|
subq $0x338, %rsp # imm = 0x338
movq %rdi, 0x178(%rsp)
movq %rsi, 0x170(%rsp)
movq %rdx, 0x168(%rsp)
movq %rcx, 0x160(%rsp)
movq 0x170(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x158(%rsp)
movq 0x170(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x154(%rsp)
movq 0x170(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x150(%rsp)
movq 0x170(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x14c(%rsp)
movq 0x170(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x148(%rsp)
movl 0x158(%rsp), %eax
imull 0x154(%rsp), %eax
imull 0x150(%rsp), %eax
imull 0x148(%rsp), %eax
movl %eax, 0x144(%rsp)
movq 0x168(%rsp), %rdi
movq 0x170(%rsp), %rsi
movq 0x160(%rsp), %rax
movq 0x8(%rax), %rdx
callq 0x6fe40
movq 0x168(%rsp), %rax
movq %rax, 0x188(%rsp)
movq 0x188(%rsp), %rcx
movq %rcx, 0x50(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x5f(%rsp)
je 0x12ea06d
movq 0x50(%rsp), %rax
movq %rax, 0x230(%rsp)
movq 0x230(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x5f(%rsp)
movb 0x5f(%rsp), %al
testb $0x1, %al
jne 0x12ea077
jmp 0x12ea087
movl $0xffffff9c, 0x184(%rsp) # imm = 0xFFFFFF9C
jmp 0x12eaaad
movl $0x0, 0x140(%rsp)
movl 0x140(%rsp), %eax
cmpl 0x14c(%rsp), %eax
jge 0x12eaaa2
movq 0x178(%rsp), %rax
movq %rax, 0x330(%rsp)
movq $0x0, 0x328(%rsp)
movq 0x330(%rsp), %rax
movq (%rax), %rax
movq 0x328(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x13c(%rsp)
movq 0x170(%rsp), %rcx
movl 0x140(%rsp), %eax
leaq 0xe8(%rsp), %rdx
movq %rdx, 0x1a0(%rsp)
movq %rcx, 0x198(%rsp)
movl %eax, 0x194(%rsp)
movq 0x198(%rsp), %rax
movq %rax, 0x48(%rsp)
movb $0x0, 0x193(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x194(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xe8(%rsp), %r10
movq %r10, 0x2a0(%rsp)
movl %r9d, 0x29c(%rsp)
movl %r8d, 0x298(%rsp)
movl %edi, 0x294(%rsp)
movq %rsi, 0x288(%rsp)
movq %rdx, 0x280(%rsp)
movl %ecx, 0x27c(%rsp)
movq %rax, 0x270(%rsp)
movq 0x2a0(%rsp), %rcx
movq %rcx, 0x40(%rsp)
movq 0x288(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x280(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x27c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x270(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x29c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x298(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x294(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x2b0(%rsp)
movl $0x10, 0x2ac(%rsp)
movq 0x2b0(%rsp), %rax
movslq 0x2ac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x2ac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x48(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x110(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12ea293
movq 0x48(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x128(%rsp)
movb $0x1, 0x193(%rsp)
testb $0x1, 0x193(%rsp)
jne 0x12ea3bc
leaq 0xe8(%rsp), %rax
movq %rax, 0x1b0(%rsp)
movq 0x1b0(%rsp), %rax
movq %rax, 0x300(%rsp)
movq 0x300(%rsp), %rax
movq %rax, 0x38(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ea362
movq 0x38(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2fc(%rsp) # imm = 0xFFFFFFFF
movl 0x2fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2f8(%rsp)
cmpl $0x1, 0x2f8(%rsp)
jne 0x12ea362
movq 0x38(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ea336
movq 0x38(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ea334
jmp 0x12ea360
movq 0x38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x308(%rsp)
cmpq $0x0, 0x308(%rsp)
je 0x12ea35e
movq 0x308(%rsp), %rdi
callq 0x5f480
jmp 0x12ea360
jmp 0x12ea362
movq 0x38(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ea3ba
movq %rax, %rdi
callq 0x678a0
jmp 0x12ea3bc
leaq 0xe8(%rsp), %rax
movq %rax, 0x1a8(%rsp)
movq 0x1a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x28(%rsp)
leaq 0xe8(%rsp), %rax
movq %rax, 0x1b8(%rsp)
movq 0x1b8(%rsp), %rax
movq %rax, 0x2f0(%rsp)
movq 0x2f0(%rsp), %rax
movq %rax, 0x30(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ea495
movq 0x30(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2ec(%rsp) # imm = 0xFFFFFFFF
movl 0x2ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2e8(%rsp)
cmpl $0x1, 0x2e8(%rsp)
jne 0x12ea495
movq 0x30(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ea469
movq 0x30(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ea467
jmp 0x12ea493
movq 0x30(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x310(%rsp)
cmpq $0x0, 0x310(%rsp)
je 0x12ea491
movq 0x310(%rsp), %rdi
callq 0x5f480
jmp 0x12ea493
jmp 0x12ea495
movq 0x30(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ea4ed
movq %rax, %rdi
callq 0x678a0
movq 0x28(%rsp), %rax
movq %rax, 0x130(%rsp)
movq 0x168(%rsp), %rcx
movl 0x140(%rsp), %eax
leaq 0x98(%rsp), %rdx
movq %rdx, 0x1d8(%rsp)
movq %rcx, 0x1d0(%rsp)
movl %eax, 0x1cc(%rsp)
movq 0x1d0(%rsp), %rax
movq %rax, 0x20(%rsp)
movb $0x0, 0x1cb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1cc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x98(%rsp), %r10
movq %r10, 0x268(%rsp)
movl %r9d, 0x264(%rsp)
movl %r8d, 0x260(%rsp)
movl %edi, 0x25c(%rsp)
movq %rsi, 0x250(%rsp)
movq %rdx, 0x248(%rsp)
movl %ecx, 0x244(%rsp)
movq %rax, 0x238(%rsp)
movq 0x268(%rsp), %rcx
movq %rcx, 0x18(%rsp)
movq 0x250(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x248(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x244(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x238(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x264(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x260(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x25c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x2c0(%rsp)
movl $0x10, 0x2bc(%rsp)
movq 0x2c0(%rsp), %rax
movslq 0x2bc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x2bc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x20(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12ea6aa
movq 0x20(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd8(%rsp)
movb $0x1, 0x1cb(%rsp)
testb $0x1, 0x1cb(%rsp)
jne 0x12ea7d3
leaq 0x98(%rsp), %rax
movq %rax, 0x1e0(%rsp)
movq 0x1e0(%rsp), %rax
movq %rax, 0x2d0(%rsp)
movq 0x2d0(%rsp), %rax
movq %rax, 0x10(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ea779
movq 0x10(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2cc(%rsp) # imm = 0xFFFFFFFF
movl 0x2cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2c8(%rsp)
cmpl $0x1, 0x2c8(%rsp)
jne 0x12ea779
movq 0x10(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ea74d
movq 0x10(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ea74b
jmp 0x12ea777
movq 0x10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x320(%rsp)
cmpq $0x0, 0x320(%rsp)
je 0x12ea775
movq 0x320(%rsp), %rdi
callq 0x5f480
jmp 0x12ea777
jmp 0x12ea779
movq 0x10(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ea7d1
movq %rax, %rdi
callq 0x678a0
jmp 0x12ea7d3
leaq 0x98(%rsp), %rax
movq %rax, 0x1e8(%rsp)
movq 0x1e8(%rsp), %rax
movq (%rax), %rax
movq %rax, (%rsp)
leaq 0x98(%rsp), %rax
movq %rax, 0x1c0(%rsp)
movq 0x1c0(%rsp), %rax
movq %rax, 0x2e0(%rsp)
movq 0x2e0(%rsp), %rax
movq %rax, 0x8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ea8ab
movq 0x8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2dc(%rsp) # imm = 0xFFFFFFFF
movl 0x2dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2d8(%rsp)
cmpl $0x1, 0x2d8(%rsp)
jne 0x12ea8ab
movq 0x8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ea87f
movq 0x8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ea87d
jmp 0x12ea8a9
movq 0x8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x318(%rsp)
cmpq $0x0, 0x318(%rsp)
je 0x12ea8a7
movq 0x318(%rsp), %rdi
callq 0x5f480
jmp 0x12ea8a9
jmp 0x12ea8ab
movq 0x8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ea903
movq %rax, %rdi
callq 0x678a0
movq (%rsp), %rax
movq %rax, 0xe0(%rsp)
movl $0x0, 0x94(%rsp)
movss 0x13c(%rsp), %xmm0
movss %xmm0, 0x200(%rsp)
movaps 0x200(%rsp), %xmm0
shufps $0x0, %xmm0, %xmm0 # xmm0 = xmm0[0,0,0,0]
movaps %xmm0, 0x1f0(%rsp)
movaps 0x1f0(%rsp), %xmm0
movaps %xmm0, 0x80(%rsp)
movl 0x94(%rsp), %eax
addl $0x3, %eax
cmpl 0x144(%rsp), %eax
jge 0x12eaa14
movq 0x130(%rsp), %rax
movq %rax, 0x208(%rsp)
movq 0x208(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm0, 0x70(%rsp)
leaq 0x15f(%rsp), %rdi
leaq 0x80(%rsp), %rsi
leaq 0x70(%rsp), %rdx
callq 0x12f6b10
movaps %xmm0, 0x60(%rsp)
movq 0xe0(%rsp), %rax
movaps 0x60(%rsp), %xmm0
movq %rax, 0x228(%rsp)
movaps %xmm0, 0x210(%rsp)
movaps 0x210(%rsp), %xmm0
movq 0x228(%rsp), %rax
movaps %xmm0, (%rax)
movq 0x130(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x130(%rsp)
movq 0xe0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xe0(%rsp)
movl 0x94(%rsp), %eax
addl $0x4, %eax
movl %eax, 0x94(%rsp)
jmp 0x12ea950
jmp 0x12eaa16
movl 0x94(%rsp), %eax
cmpl 0x144(%rsp), %eax
jge 0x12eaa8a
movq 0x130(%rsp), %rdx
leaq 0x15f(%rsp), %rdi
leaq 0x13c(%rsp), %rsi
callq 0x12f6b50
movq 0xe0(%rsp), %rax
movss %xmm0, (%rax)
movq 0x130(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x130(%rsp)
movq 0xe0(%rsp), %rax
addq $0x4, %rax
movq %rax, 0xe0(%rsp)
movl 0x94(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x94(%rsp)
jmp 0x12eaa16
jmp 0x12eaa8c
movl 0x140(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x140(%rsp)
jmp 0x12ea092
movl $0x0, 0x184(%rsp)
movl 0x184(%rsp), %eax
addq $0x338, %rsp # imm = 0x338
retq
nopl (%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,854
|
int ncnn::binary_op_7_13_19_29<ncnn::BinaryOp_x86_functor::binary_op_mul>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op_7_13_19_29(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int elempack = a.elempack;
int size = w * h * d * elempack;
// type 7 13 19 29
c.create_like(a, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
int i = 0;
#if __SSE2__
#if __AVX__
#if __AVX512F__
for (; i + 15 < size; i += 16)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
ptr1 += 16;
outptr += 16;
}
#endif // __AVX512F__
for (; i + 7 < size; i += 8)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _p1 = _mm256_loadu_ps(ptr1);
__m256 _outp = op.func_pack8(_p, _p1);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
ptr1 += 8;
outptr += 8;
}
#endif // __AVX__
for (; i + 3 < size; i += 4)
{
__m128 _p = _mm_load_ps(ptr);
__m128 _p1 = _mm_load_ps(ptr1);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_store_ps(outptr, _outp);
ptr += 4;
ptr1 += 4;
outptr += 4;
}
#endif // __SSE2__
for (; i < size; i++)
{
*outptr = op.func(*ptr, *ptr1);
ptr += 1;
ptr1 += 1;
outptr += 1;
}
}
return 0;
}
|
subq $0x438, %rsp # imm = 0x438
movq %rdi, 0x1f8(%rsp)
movq %rsi, 0x1f0(%rsp)
movq %rdx, 0x1e8(%rsp)
movq %rcx, 0x1e0(%rsp)
movq 0x1f8(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x1d8(%rsp)
movq 0x1f8(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x1d4(%rsp)
movq 0x1f8(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x1d0(%rsp)
movq 0x1f8(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x1cc(%rsp)
movq 0x1f8(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x1c8(%rsp)
movl 0x1d8(%rsp), %eax
imull 0x1d4(%rsp), %eax
imull 0x1d0(%rsp), %eax
imull 0x1c8(%rsp), %eax
movl %eax, 0x1c4(%rsp)
movq 0x1e8(%rsp), %rdi
movq 0x1f8(%rsp), %rsi
movq 0x1e0(%rsp), %rax
movq 0x8(%rax), %rdx
callq 0x6fe40
movq 0x1e8(%rsp), %rax
movq %rax, 0x208(%rsp)
movq 0x208(%rsp), %rcx
movq %rcx, 0x80(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x8f(%rsp)
je 0x12eabe9
movq 0x80(%rsp), %rax
movq %rax, 0x2c8(%rsp)
movq 0x2c8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x8f(%rsp)
movb 0x8f(%rsp), %al
testb $0x1, %al
jne 0x12eabf6
jmp 0x12eac06
movl $0xffffff9c, 0x204(%rsp) # imm = 0xFFFFFF9C
jmp 0x12eba2c
movl $0x0, 0x1c0(%rsp)
movl 0x1c0(%rsp), %eax
cmpl 0x1cc(%rsp), %eax
jge 0x12eba21
movq 0x1f8(%rsp), %rcx
movl 0x1c0(%rsp), %eax
leaq 0x170(%rsp), %rdx
movq %rdx, 0x238(%rsp)
movq %rcx, 0x230(%rsp)
movl %eax, 0x22c(%rsp)
movq 0x230(%rsp), %rax
movq %rax, 0x78(%rsp)
movb $0x0, 0x22b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x170(%rsp), %r10
movq %r10, 0x338(%rsp)
movl %r9d, 0x334(%rsp)
movl %r8d, 0x330(%rsp)
movl %edi, 0x32c(%rsp)
movq %rsi, 0x320(%rsp)
movq %rdx, 0x318(%rsp)
movl %ecx, 0x314(%rsp)
movq %rax, 0x308(%rsp)
movq 0x338(%rsp), %rcx
movq %rcx, 0x70(%rsp)
movq 0x320(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x318(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x314(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x308(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x334(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x330(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x32c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x390(%rsp)
movl $0x10, 0x38c(%rsp)
movq 0x390(%rsp), %rax
movslq 0x38c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x38c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x78(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x198(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12eadd5
movq 0x78(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1b0(%rsp)
movb $0x1, 0x22b(%rsp)
testb $0x1, 0x22b(%rsp)
jne 0x12eaefe
leaq 0x170(%rsp), %rax
movq %rax, 0x250(%rsp)
movq 0x250(%rsp), %rax
movq %rax, 0x400(%rsp)
movq 0x400(%rsp), %rax
movq %rax, 0x68(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12eaea4
movq 0x68(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fc(%rsp) # imm = 0xFFFFFFFF
movl 0x3fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f8(%rsp)
cmpl $0x1, 0x3f8(%rsp)
jne 0x12eaea4
movq 0x68(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12eae78
movq 0x68(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12eae76
jmp 0x12eaea2
movq 0x68(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x408(%rsp)
cmpq $0x0, 0x408(%rsp)
je 0x12eaea0
movq 0x408(%rsp), %rdi
callq 0x5f480
jmp 0x12eaea2
jmp 0x12eaea4
movq 0x68(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12eaefc
movq %rax, %rdi
callq 0x678a0
jmp 0x12eaefe
leaq 0x170(%rsp), %rax
movq %rax, 0x248(%rsp)
movq 0x248(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x58(%rsp)
leaq 0x170(%rsp), %rax
movq %rax, 0x260(%rsp)
movq 0x260(%rsp), %rax
movq %rax, 0x3e0(%rsp)
movq 0x3e0(%rsp), %rax
movq %rax, 0x60(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12eafd7
movq 0x60(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3dc(%rsp) # imm = 0xFFFFFFFF
movl 0x3dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3d8(%rsp)
cmpl $0x1, 0x3d8(%rsp)
jne 0x12eafd7
movq 0x60(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12eafab
movq 0x60(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12eafa9
jmp 0x12eafd5
movq 0x60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x418(%rsp)
cmpq $0x0, 0x418(%rsp)
je 0x12eafd3
movq 0x418(%rsp), %rdi
callq 0x5f480
jmp 0x12eafd5
jmp 0x12eafd7
movq 0x60(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12eb02f
movq %rax, %rdi
callq 0x678a0
movq 0x58(%rsp), %rax
movq %rax, 0x1b8(%rsp)
movq 0x1f0(%rsp), %rcx
movl 0x1c0(%rsp), %eax
leaq 0x120(%rsp), %rdx
movq %rdx, 0x220(%rsp)
movq %rcx, 0x218(%rsp)
movl %eax, 0x214(%rsp)
movq 0x218(%rsp), %rax
movq %rax, 0x50(%rsp)
movb $0x0, 0x213(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x214(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x120(%rsp), %r10
movq %r10, 0x370(%rsp)
movl %r9d, 0x36c(%rsp)
movl %r8d, 0x368(%rsp)
movl %edi, 0x364(%rsp)
movq %rsi, 0x358(%rsp)
movq %rdx, 0x350(%rsp)
movl %ecx, 0x34c(%rsp)
movq %rax, 0x340(%rsp)
movq 0x370(%rsp), %rcx
movq %rcx, 0x48(%rsp)
movq 0x358(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x350(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x34c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x340(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x36c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x368(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x364(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x380(%rsp)
movl $0x10, 0x37c(%rsp)
movq 0x380(%rsp), %rax
movslq 0x37c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x37c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x50(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x148(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12eb1ec
movq 0x50(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x160(%rsp)
movb $0x1, 0x213(%rsp)
testb $0x1, 0x213(%rsp)
jne 0x12eb315
leaq 0x120(%rsp), %rax
movq %rax, 0x258(%rsp)
movq 0x258(%rsp), %rax
movq %rax, 0x3f0(%rsp)
movq 0x3f0(%rsp), %rax
movq %rax, 0x40(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12eb2bb
movq 0x40(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ec(%rsp) # imm = 0xFFFFFFFF
movl 0x3ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e8(%rsp)
cmpl $0x1, 0x3e8(%rsp)
jne 0x12eb2bb
movq 0x40(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12eb28f
movq 0x40(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12eb28d
jmp 0x12eb2b9
movq 0x40(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x410(%rsp)
cmpq $0x0, 0x410(%rsp)
je 0x12eb2b7
movq 0x410(%rsp), %rdi
callq 0x5f480
jmp 0x12eb2b9
jmp 0x12eb2bb
movq 0x40(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12eb313
movq %rax, %rdi
callq 0x678a0
jmp 0x12eb315
leaq 0x120(%rsp), %rax
movq %rax, 0x240(%rsp)
movq 0x240(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x30(%rsp)
leaq 0x120(%rsp), %rax
movq %rax, 0x268(%rsp)
movq 0x268(%rsp), %rax
movq %rax, 0x3d0(%rsp)
movq 0x3d0(%rsp), %rax
movq %rax, 0x38(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12eb3ee
movq 0x38(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3cc(%rsp) # imm = 0xFFFFFFFF
movl 0x3cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c8(%rsp)
cmpl $0x1, 0x3c8(%rsp)
jne 0x12eb3ee
movq 0x38(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12eb3c2
movq 0x38(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12eb3c0
jmp 0x12eb3ec
movq 0x38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x420(%rsp)
cmpq $0x0, 0x420(%rsp)
je 0x12eb3ea
movq 0x420(%rsp), %rdi
callq 0x5f480
jmp 0x12eb3ec
jmp 0x12eb3ee
movq 0x38(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12eb446
movq %rax, %rdi
callq 0x678a0
movq 0x30(%rsp), %rax
movq %rax, 0x168(%rsp)
movq 0x1e8(%rsp), %rcx
movl 0x1c0(%rsp), %eax
leaq 0xd0(%rsp), %rdx
movq %rdx, 0x288(%rsp)
movq %rcx, 0x280(%rsp)
movl %eax, 0x27c(%rsp)
movq 0x280(%rsp), %rax
movq %rax, 0x28(%rsp)
movb $0x0, 0x27b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x27c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xd0(%rsp), %r10
movq %r10, 0x300(%rsp)
movl %r9d, 0x2fc(%rsp)
movl %r8d, 0x2f8(%rsp)
movl %edi, 0x2f4(%rsp)
movq %rsi, 0x2e8(%rsp)
movq %rdx, 0x2e0(%rsp)
movl %ecx, 0x2dc(%rsp)
movq %rax, 0x2d0(%rsp)
movq 0x300(%rsp), %rcx
movq %rcx, 0x20(%rsp)
movq 0x2e8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2e0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2dc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2d0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2fc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3a0(%rsp)
movl $0x10, 0x39c(%rsp)
movq 0x3a0(%rsp), %rax
movslq 0x39c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x39c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x28(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12eb603
movq 0x28(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x110(%rsp)
movb $0x1, 0x27b(%rsp)
testb $0x1, 0x27b(%rsp)
jne 0x12eb72c
leaq 0xd0(%rsp), %rax
movq %rax, 0x290(%rsp)
movq 0x290(%rsp), %rax
movq %rax, 0x3b0(%rsp)
movq 0x3b0(%rsp), %rax
movq %rax, 0x18(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12eb6d2
movq 0x18(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ac(%rsp) # imm = 0xFFFFFFFF
movl 0x3ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a8(%rsp)
cmpl $0x1, 0x3a8(%rsp)
jne 0x12eb6d2
movq 0x18(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12eb6a6
movq 0x18(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12eb6a4
jmp 0x12eb6d0
movq 0x18(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x430(%rsp)
cmpq $0x0, 0x430(%rsp)
je 0x12eb6ce
movq 0x430(%rsp), %rdi
callq 0x5f480
jmp 0x12eb6d0
jmp 0x12eb6d2
movq 0x18(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12eb72a
movq %rax, %rdi
callq 0x678a0
jmp 0x12eb72c
leaq 0xd0(%rsp), %rax
movq %rax, 0x298(%rsp)
movq 0x298(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8(%rsp)
leaq 0xd0(%rsp), %rax
movq %rax, 0x270(%rsp)
movq 0x270(%rsp), %rax
movq %rax, 0x3c0(%rsp)
movq 0x3c0(%rsp), %rax
movq %rax, 0x10(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12eb805
movq 0x10(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bc(%rsp) # imm = 0xFFFFFFFF
movl 0x3bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b8(%rsp)
cmpl $0x1, 0x3b8(%rsp)
jne 0x12eb805
movq 0x10(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12eb7d9
movq 0x10(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12eb7d7
jmp 0x12eb803
movq 0x10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x428(%rsp)
cmpq $0x0, 0x428(%rsp)
je 0x12eb801
movq 0x428(%rsp), %rdi
callq 0x5f480
jmp 0x12eb803
jmp 0x12eb805
movq 0x10(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12eb85d
movq %rax, %rdi
callq 0x678a0
movq 0x8(%rsp), %rax
movq %rax, 0x118(%rsp)
movl $0x0, 0xcc(%rsp)
movl 0xcc(%rsp), %eax
addl $0x3, %eax
cmpl 0x1c4(%rsp), %eax
jge 0x12eb97c
movq 0x1b8(%rsp), %rax
movq %rax, 0x2a8(%rsp)
movq 0x2a8(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm0, 0xb0(%rsp)
movq 0x168(%rsp), %rax
movq %rax, 0x2a0(%rsp)
movq 0x2a0(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm0, 0xa0(%rsp)
leaq 0x1df(%rsp), %rdi
leaq 0xb0(%rsp), %rsi
leaq 0xa0(%rsp), %rdx
callq 0x12f6b80
movaps %xmm0, 0x90(%rsp)
movq 0x118(%rsp), %rax
movaps 0x90(%rsp), %xmm0
movq %rax, 0x2c0(%rsp)
movaps %xmm0, 0x2b0(%rsp)
movaps 0x2b0(%rsp), %xmm0
movq 0x2c0(%rsp), %rax
movaps %xmm0, (%rax)
movq 0x1b8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1b8(%rsp)
movq 0x168(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x168(%rsp)
movq 0x118(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x118(%rsp)
movl 0xcc(%rsp), %eax
addl $0x4, %eax
movl %eax, 0xcc(%rsp)
jmp 0x12eb875
jmp 0x12eb97e
movl 0xcc(%rsp), %eax
cmpl 0x1c4(%rsp), %eax
jge 0x12eba09
movq 0x1b8(%rsp), %rsi
movq 0x168(%rsp), %rdx
leaq 0x1df(%rsp), %rdi
callq 0x12f6bc0
movq 0x118(%rsp), %rax
movss %xmm0, (%rax)
movq 0x1b8(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x1b8(%rsp)
movq 0x168(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x168(%rsp)
movq 0x118(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x118(%rsp)
movl 0xcc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xcc(%rsp)
jmp 0x12eb97e
jmp 0x12eba0b
movl 0x1c0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c0(%rsp)
jmp 0x12eac11
movl $0x0, 0x204(%rsp)
movl 0x204(%rsp), %eax
addq $0x438, %rsp # imm = 0x438
retq
nopl (%rax,%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,855
|
int ncnn::binary_op_6_11_16_25<ncnn::BinaryOp_x86_functor::binary_op_mul>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op_6_11_16_25(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int elempack = a.elempack;
int size = w * h * d * elempack;
// type 6 11 16 25
c.create_like(a, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float b0 = b[0];
float* outptr = c.channel(q);
int i = 0;
#if __SSE2__
#if __AVX__
#if __AVX512F__
__m512 _b0_avx512 = _mm512_set1_ps(b0);
for (; i + 15 < size; i += 16)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0_avx512);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
#endif // __AVX512F__
__m256 _b0_avx = _mm256_set1_ps(b0);
for (; i + 7 < size; i += 8)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _outp = op.func_pack8(_p, _b0_avx);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
outptr += 8;
}
#endif // __AVX__
__m128 _b0 = _mm_set1_ps(b0);
for (; i + 3 < size; i += 4)
{
__m128 _p = _mm_load_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_store_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
#endif // __SSE2__
for (; i < size; i++)
{
*outptr = op.func(*ptr, b0);
ptr += 1;
outptr += 1;
}
}
return 0;
}
|
subq $0x338, %rsp # imm = 0x338
movq %rdi, 0x178(%rsp)
movq %rsi, 0x170(%rsp)
movq %rdx, 0x168(%rsp)
movq %rcx, 0x160(%rsp)
movq 0x178(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x158(%rsp)
movq 0x178(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x154(%rsp)
movq 0x178(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x150(%rsp)
movq 0x178(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x14c(%rsp)
movq 0x178(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x148(%rsp)
movl 0x158(%rsp), %eax
imull 0x154(%rsp), %eax
imull 0x150(%rsp), %eax
imull 0x148(%rsp), %eax
movl %eax, 0x144(%rsp)
movq 0x168(%rsp), %rdi
movq 0x178(%rsp), %rsi
movq 0x160(%rsp), %rax
movq 0x8(%rax), %rdx
callq 0x6fe40
movq 0x168(%rsp), %rax
movq %rax, 0x188(%rsp)
movq 0x188(%rsp), %rcx
movq %rcx, 0x50(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x5f(%rsp)
je 0x12ebb5d
movq 0x50(%rsp), %rax
movq %rax, 0x230(%rsp)
movq 0x230(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x5f(%rsp)
movb 0x5f(%rsp), %al
testb $0x1, %al
jne 0x12ebb67
jmp 0x12ebb77
movl $0xffffff9c, 0x184(%rsp) # imm = 0xFFFFFF9C
jmp 0x12ec59d
movl $0x0, 0x140(%rsp)
movl 0x140(%rsp), %eax
cmpl 0x14c(%rsp), %eax
jge 0x12ec592
movq 0x178(%rsp), %rcx
movl 0x140(%rsp), %eax
leaq 0xf0(%rsp), %rdx
movq %rdx, 0x1a0(%rsp)
movq %rcx, 0x198(%rsp)
movl %eax, 0x194(%rsp)
movq 0x198(%rsp), %rax
movq %rax, 0x48(%rsp)
movb $0x0, 0x193(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x194(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xf0(%rsp), %r10
movq %r10, 0x2a0(%rsp)
movl %r9d, 0x29c(%rsp)
movl %r8d, 0x298(%rsp)
movl %edi, 0x294(%rsp)
movq %rsi, 0x288(%rsp)
movq %rdx, 0x280(%rsp)
movl %ecx, 0x27c(%rsp)
movq %rax, 0x270(%rsp)
movq 0x2a0(%rsp), %rcx
movq %rcx, 0x40(%rsp)
movq 0x288(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x280(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x27c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x270(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x29c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x298(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x294(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x2b0(%rsp)
movl $0x10, 0x2ac(%rsp)
movq 0x2b0(%rsp), %rax
movslq 0x2ac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x2ac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x48(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x118(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12ebd46
movq 0x48(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x130(%rsp)
movb $0x1, 0x193(%rsp)
testb $0x1, 0x193(%rsp)
jne 0x12ebe6f
leaq 0xf0(%rsp), %rax
movq %rax, 0x1b0(%rsp)
movq 0x1b0(%rsp), %rax
movq %rax, 0x300(%rsp)
movq 0x300(%rsp), %rax
movq %rax, 0x38(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ebe15
movq 0x38(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2fc(%rsp) # imm = 0xFFFFFFFF
movl 0x2fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2f8(%rsp)
cmpl $0x1, 0x2f8(%rsp)
jne 0x12ebe15
movq 0x38(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ebde9
movq 0x38(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ebde7
jmp 0x12ebe13
movq 0x38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x308(%rsp)
cmpq $0x0, 0x308(%rsp)
je 0x12ebe11
movq 0x308(%rsp), %rdi
callq 0x5f480
jmp 0x12ebe13
jmp 0x12ebe15
movq 0x38(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ebe6d
movq %rax, %rdi
callq 0x678a0
jmp 0x12ebe6f
leaq 0xf0(%rsp), %rax
movq %rax, 0x1a8(%rsp)
movq 0x1a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x28(%rsp)
leaq 0xf0(%rsp), %rax
movq %rax, 0x1b8(%rsp)
movq 0x1b8(%rsp), %rax
movq %rax, 0x2f0(%rsp)
movq 0x2f0(%rsp), %rax
movq %rax, 0x30(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ebf48
movq 0x30(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2ec(%rsp) # imm = 0xFFFFFFFF
movl 0x2ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2e8(%rsp)
cmpl $0x1, 0x2e8(%rsp)
jne 0x12ebf48
movq 0x30(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ebf1c
movq 0x30(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ebf1a
jmp 0x12ebf46
movq 0x30(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x310(%rsp)
cmpq $0x0, 0x310(%rsp)
je 0x12ebf44
movq 0x310(%rsp), %rdi
callq 0x5f480
jmp 0x12ebf46
jmp 0x12ebf48
movq 0x30(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ebfa0
movq %rax, %rdi
callq 0x678a0
movq 0x28(%rsp), %rax
movq %rax, 0x138(%rsp)
movq 0x170(%rsp), %rax
movq %rax, 0x330(%rsp)
movq $0x0, 0x328(%rsp)
movq 0x330(%rsp), %rax
movq (%rax), %rax
movq 0x328(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xec(%rsp)
movq 0x168(%rsp), %rcx
movl 0x140(%rsp), %eax
leaq 0x98(%rsp), %rdx
movq %rdx, 0x1d8(%rsp)
movq %rcx, 0x1d0(%rsp)
movl %eax, 0x1cc(%rsp)
movq 0x1d0(%rsp), %rax
movq %rax, 0x20(%rsp)
movb $0x0, 0x1cb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1cc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x98(%rsp), %r10
movq %r10, 0x268(%rsp)
movl %r9d, 0x264(%rsp)
movl %r8d, 0x260(%rsp)
movl %edi, 0x25c(%rsp)
movq %rsi, 0x250(%rsp)
movq %rdx, 0x248(%rsp)
movl %ecx, 0x244(%rsp)
movq %rax, 0x238(%rsp)
movq 0x268(%rsp), %rcx
movq %rcx, 0x18(%rsp)
movq 0x250(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x248(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x244(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x238(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x264(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x260(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x25c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x2c0(%rsp)
movl $0x10, 0x2bc(%rsp)
movq 0x2c0(%rsp), %rax
movslq 0x2bc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x2bc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x20(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12ec19a
movq 0x20(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd8(%rsp)
movb $0x1, 0x1cb(%rsp)
testb $0x1, 0x1cb(%rsp)
jne 0x12ec2c3
leaq 0x98(%rsp), %rax
movq %rax, 0x1e0(%rsp)
movq 0x1e0(%rsp), %rax
movq %rax, 0x2d0(%rsp)
movq 0x2d0(%rsp), %rax
movq %rax, 0x10(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ec269
movq 0x10(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2cc(%rsp) # imm = 0xFFFFFFFF
movl 0x2cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2c8(%rsp)
cmpl $0x1, 0x2c8(%rsp)
jne 0x12ec269
movq 0x10(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ec23d
movq 0x10(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ec23b
jmp 0x12ec267
movq 0x10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x320(%rsp)
cmpq $0x0, 0x320(%rsp)
je 0x12ec265
movq 0x320(%rsp), %rdi
callq 0x5f480
jmp 0x12ec267
jmp 0x12ec269
movq 0x10(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ec2c1
movq %rax, %rdi
callq 0x678a0
jmp 0x12ec2c3
leaq 0x98(%rsp), %rax
movq %rax, 0x1e8(%rsp)
movq 0x1e8(%rsp), %rax
movq (%rax), %rax
movq %rax, (%rsp)
leaq 0x98(%rsp), %rax
movq %rax, 0x1c0(%rsp)
movq 0x1c0(%rsp), %rax
movq %rax, 0x2e0(%rsp)
movq 0x2e0(%rsp), %rax
movq %rax, 0x8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ec39b
movq 0x8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2dc(%rsp) # imm = 0xFFFFFFFF
movl 0x2dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2d8(%rsp)
cmpl $0x1, 0x2d8(%rsp)
jne 0x12ec39b
movq 0x8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ec36f
movq 0x8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ec36d
jmp 0x12ec399
movq 0x8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x318(%rsp)
cmpq $0x0, 0x318(%rsp)
je 0x12ec397
movq 0x318(%rsp), %rdi
callq 0x5f480
jmp 0x12ec399
jmp 0x12ec39b
movq 0x8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ec3f3
movq %rax, %rdi
callq 0x678a0
movq (%rsp), %rax
movq %rax, 0xe0(%rsp)
movl $0x0, 0x94(%rsp)
movss 0xec(%rsp), %xmm0
movss %xmm0, 0x200(%rsp)
movaps 0x200(%rsp), %xmm0
shufps $0x0, %xmm0, %xmm0 # xmm0 = xmm0[0,0,0,0]
movaps %xmm0, 0x1f0(%rsp)
movaps 0x1f0(%rsp), %xmm0
movaps %xmm0, 0x80(%rsp)
movl 0x94(%rsp), %eax
addl $0x3, %eax
cmpl 0x144(%rsp), %eax
jge 0x12ec504
movq 0x138(%rsp), %rax
movq %rax, 0x208(%rsp)
movq 0x208(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm0, 0x70(%rsp)
leaq 0x15f(%rsp), %rdi
leaq 0x70(%rsp), %rsi
leaq 0x80(%rsp), %rdx
callq 0x12f6b80
movaps %xmm0, 0x60(%rsp)
movq 0xe0(%rsp), %rax
movaps 0x60(%rsp), %xmm0
movq %rax, 0x228(%rsp)
movaps %xmm0, 0x210(%rsp)
movaps 0x210(%rsp), %xmm0
movq 0x228(%rsp), %rax
movaps %xmm0, (%rax)
movq 0x138(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x138(%rsp)
movq 0xe0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xe0(%rsp)
movl 0x94(%rsp), %eax
addl $0x4, %eax
movl %eax, 0x94(%rsp)
jmp 0x12ec440
jmp 0x12ec506
movl 0x94(%rsp), %eax
cmpl 0x144(%rsp), %eax
jge 0x12ec57a
movq 0x138(%rsp), %rsi
leaq 0x15f(%rsp), %rdi
leaq 0xec(%rsp), %rdx
callq 0x12f6bc0
movq 0xe0(%rsp), %rax
movss %xmm0, (%rax)
movq 0x138(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x138(%rsp)
movq 0xe0(%rsp), %rax
addq $0x4, %rax
movq %rax, 0xe0(%rsp)
movl 0x94(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x94(%rsp)
jmp 0x12ec506
jmp 0x12ec57c
movl 0x140(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x140(%rsp)
jmp 0x12ebb82
movl $0x0, 0x184(%rsp)
movl 0x184(%rsp), %eax
addq $0x338, %rsp # imm = 0x338
retq
nopl (%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,856
|
int ncnn::binary_op_2_3_4_20<ncnn::BinaryOp_x86_functor::binary_op_mul>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op_2_3_4_20(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = b.w;
int h = b.h;
int d = b.d;
int channels = b.c;
int elempack = b.elempack;
int size = w * h * d * elempack;
// type 2 3 4 20
c.create_like(b, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float a0 = a[0];
const float* ptr = b.channel(q);
float* outptr = c.channel(q);
int i = 0;
#if __SSE2__
#if __AVX__
#if __AVX512F__
__m512 _a0_avx512 = _mm512_set1_ps(a0);
for (; i + 15 < size; i += 16)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_a0_avx512, _p);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
#endif // __AVX512F__
__m256 _a0_avx = _mm256_set1_ps(a0);
for (; i + 7 < size; i += 8)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _outp = op.func_pack8(_a0_avx, _p);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
outptr += 8;
}
#endif // __AVX__
__m128 _a0 = _mm_set1_ps(a0);
for (; i + 3 < size; i += 4)
{
__m128 _p = _mm_load_ps(ptr);
__m128 _outp = op.func_pack4(_a0, _p);
_mm_store_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
#endif // __SSE2__
for (; i < size; i++)
{
*outptr = op.func(a0, *ptr);
ptr += 1;
outptr += 1;
}
}
return 0;
}
|
subq $0x338, %rsp # imm = 0x338
movq %rdi, 0x178(%rsp)
movq %rsi, 0x170(%rsp)
movq %rdx, 0x168(%rsp)
movq %rcx, 0x160(%rsp)
movq 0x170(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x158(%rsp)
movq 0x170(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x154(%rsp)
movq 0x170(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x150(%rsp)
movq 0x170(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x14c(%rsp)
movq 0x170(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x148(%rsp)
movl 0x158(%rsp), %eax
imull 0x154(%rsp), %eax
imull 0x150(%rsp), %eax
imull 0x148(%rsp), %eax
movl %eax, 0x144(%rsp)
movq 0x168(%rsp), %rdi
movq 0x170(%rsp), %rsi
movq 0x160(%rsp), %rax
movq 0x8(%rax), %rdx
callq 0x6fe40
movq 0x168(%rsp), %rax
movq %rax, 0x188(%rsp)
movq 0x188(%rsp), %rcx
movq %rcx, 0x50(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x5f(%rsp)
je 0x12ec6cd
movq 0x50(%rsp), %rax
movq %rax, 0x230(%rsp)
movq 0x230(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x5f(%rsp)
movb 0x5f(%rsp), %al
testb $0x1, %al
jne 0x12ec6d7
jmp 0x12ec6e7
movl $0xffffff9c, 0x184(%rsp) # imm = 0xFFFFFF9C
jmp 0x12ed10d
movl $0x0, 0x140(%rsp)
movl 0x140(%rsp), %eax
cmpl 0x14c(%rsp), %eax
jge 0x12ed102
movq 0x178(%rsp), %rax
movq %rax, 0x330(%rsp)
movq $0x0, 0x328(%rsp)
movq 0x330(%rsp), %rax
movq (%rax), %rax
movq 0x328(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x13c(%rsp)
movq 0x170(%rsp), %rcx
movl 0x140(%rsp), %eax
leaq 0xe8(%rsp), %rdx
movq %rdx, 0x1a0(%rsp)
movq %rcx, 0x198(%rsp)
movl %eax, 0x194(%rsp)
movq 0x198(%rsp), %rax
movq %rax, 0x48(%rsp)
movb $0x0, 0x193(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x194(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xe8(%rsp), %r10
movq %r10, 0x2a0(%rsp)
movl %r9d, 0x29c(%rsp)
movl %r8d, 0x298(%rsp)
movl %edi, 0x294(%rsp)
movq %rsi, 0x288(%rsp)
movq %rdx, 0x280(%rsp)
movl %ecx, 0x27c(%rsp)
movq %rax, 0x270(%rsp)
movq 0x2a0(%rsp), %rcx
movq %rcx, 0x40(%rsp)
movq 0x288(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x280(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x27c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x270(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x29c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x298(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x294(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x2b0(%rsp)
movl $0x10, 0x2ac(%rsp)
movq 0x2b0(%rsp), %rax
movslq 0x2ac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x2ac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x48(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x110(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12ec8f3
movq 0x48(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x128(%rsp)
movb $0x1, 0x193(%rsp)
testb $0x1, 0x193(%rsp)
jne 0x12eca1c
leaq 0xe8(%rsp), %rax
movq %rax, 0x1b0(%rsp)
movq 0x1b0(%rsp), %rax
movq %rax, 0x300(%rsp)
movq 0x300(%rsp), %rax
movq %rax, 0x38(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ec9c2
movq 0x38(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2fc(%rsp) # imm = 0xFFFFFFFF
movl 0x2fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2f8(%rsp)
cmpl $0x1, 0x2f8(%rsp)
jne 0x12ec9c2
movq 0x38(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ec996
movq 0x38(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ec994
jmp 0x12ec9c0
movq 0x38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x308(%rsp)
cmpq $0x0, 0x308(%rsp)
je 0x12ec9be
movq 0x308(%rsp), %rdi
callq 0x5f480
jmp 0x12ec9c0
jmp 0x12ec9c2
movq 0x38(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12eca1a
movq %rax, %rdi
callq 0x678a0
jmp 0x12eca1c
leaq 0xe8(%rsp), %rax
movq %rax, 0x1a8(%rsp)
movq 0x1a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x28(%rsp)
leaq 0xe8(%rsp), %rax
movq %rax, 0x1b8(%rsp)
movq 0x1b8(%rsp), %rax
movq %rax, 0x2f0(%rsp)
movq 0x2f0(%rsp), %rax
movq %rax, 0x30(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ecaf5
movq 0x30(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2ec(%rsp) # imm = 0xFFFFFFFF
movl 0x2ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2e8(%rsp)
cmpl $0x1, 0x2e8(%rsp)
jne 0x12ecaf5
movq 0x30(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ecac9
movq 0x30(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ecac7
jmp 0x12ecaf3
movq 0x30(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x310(%rsp)
cmpq $0x0, 0x310(%rsp)
je 0x12ecaf1
movq 0x310(%rsp), %rdi
callq 0x5f480
jmp 0x12ecaf3
jmp 0x12ecaf5
movq 0x30(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ecb4d
movq %rax, %rdi
callq 0x678a0
movq 0x28(%rsp), %rax
movq %rax, 0x130(%rsp)
movq 0x168(%rsp), %rcx
movl 0x140(%rsp), %eax
leaq 0x98(%rsp), %rdx
movq %rdx, 0x1d8(%rsp)
movq %rcx, 0x1d0(%rsp)
movl %eax, 0x1cc(%rsp)
movq 0x1d0(%rsp), %rax
movq %rax, 0x20(%rsp)
movb $0x0, 0x1cb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1cc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x98(%rsp), %r10
movq %r10, 0x268(%rsp)
movl %r9d, 0x264(%rsp)
movl %r8d, 0x260(%rsp)
movl %edi, 0x25c(%rsp)
movq %rsi, 0x250(%rsp)
movq %rdx, 0x248(%rsp)
movl %ecx, 0x244(%rsp)
movq %rax, 0x238(%rsp)
movq 0x268(%rsp), %rcx
movq %rcx, 0x18(%rsp)
movq 0x250(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x248(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x244(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x238(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x264(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x260(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x25c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x2c0(%rsp)
movl $0x10, 0x2bc(%rsp)
movq 0x2c0(%rsp), %rax
movslq 0x2bc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x2bc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x20(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12ecd0a
movq 0x20(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd8(%rsp)
movb $0x1, 0x1cb(%rsp)
testb $0x1, 0x1cb(%rsp)
jne 0x12ece33
leaq 0x98(%rsp), %rax
movq %rax, 0x1e0(%rsp)
movq 0x1e0(%rsp), %rax
movq %rax, 0x2d0(%rsp)
movq 0x2d0(%rsp), %rax
movq %rax, 0x10(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ecdd9
movq 0x10(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2cc(%rsp) # imm = 0xFFFFFFFF
movl 0x2cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2c8(%rsp)
cmpl $0x1, 0x2c8(%rsp)
jne 0x12ecdd9
movq 0x10(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ecdad
movq 0x10(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ecdab
jmp 0x12ecdd7
movq 0x10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x320(%rsp)
cmpq $0x0, 0x320(%rsp)
je 0x12ecdd5
movq 0x320(%rsp), %rdi
callq 0x5f480
jmp 0x12ecdd7
jmp 0x12ecdd9
movq 0x10(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ece31
movq %rax, %rdi
callq 0x678a0
jmp 0x12ece33
leaq 0x98(%rsp), %rax
movq %rax, 0x1e8(%rsp)
movq 0x1e8(%rsp), %rax
movq (%rax), %rax
movq %rax, (%rsp)
leaq 0x98(%rsp), %rax
movq %rax, 0x1c0(%rsp)
movq 0x1c0(%rsp), %rax
movq %rax, 0x2e0(%rsp)
movq 0x2e0(%rsp), %rax
movq %rax, 0x8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ecf0b
movq 0x8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2dc(%rsp) # imm = 0xFFFFFFFF
movl 0x2dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2d8(%rsp)
cmpl $0x1, 0x2d8(%rsp)
jne 0x12ecf0b
movq 0x8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ecedf
movq 0x8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ecedd
jmp 0x12ecf09
movq 0x8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x318(%rsp)
cmpq $0x0, 0x318(%rsp)
je 0x12ecf07
movq 0x318(%rsp), %rdi
callq 0x5f480
jmp 0x12ecf09
jmp 0x12ecf0b
movq 0x8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ecf63
movq %rax, %rdi
callq 0x678a0
movq (%rsp), %rax
movq %rax, 0xe0(%rsp)
movl $0x0, 0x94(%rsp)
movss 0x13c(%rsp), %xmm0
movss %xmm0, 0x200(%rsp)
movaps 0x200(%rsp), %xmm0
shufps $0x0, %xmm0, %xmm0 # xmm0 = xmm0[0,0,0,0]
movaps %xmm0, 0x1f0(%rsp)
movaps 0x1f0(%rsp), %xmm0
movaps %xmm0, 0x80(%rsp)
movl 0x94(%rsp), %eax
addl $0x3, %eax
cmpl 0x144(%rsp), %eax
jge 0x12ed074
movq 0x130(%rsp), %rax
movq %rax, 0x208(%rsp)
movq 0x208(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm0, 0x70(%rsp)
leaq 0x15f(%rsp), %rdi
leaq 0x80(%rsp), %rsi
leaq 0x70(%rsp), %rdx
callq 0x12f6b80
movaps %xmm0, 0x60(%rsp)
movq 0xe0(%rsp), %rax
movaps 0x60(%rsp), %xmm0
movq %rax, 0x228(%rsp)
movaps %xmm0, 0x210(%rsp)
movaps 0x210(%rsp), %xmm0
movq 0x228(%rsp), %rax
movaps %xmm0, (%rax)
movq 0x130(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x130(%rsp)
movq 0xe0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xe0(%rsp)
movl 0x94(%rsp), %eax
addl $0x4, %eax
movl %eax, 0x94(%rsp)
jmp 0x12ecfb0
jmp 0x12ed076
movl 0x94(%rsp), %eax
cmpl 0x144(%rsp), %eax
jge 0x12ed0ea
movq 0x130(%rsp), %rdx
leaq 0x15f(%rsp), %rdi
leaq 0x13c(%rsp), %rsi
callq 0x12f6bc0
movq 0xe0(%rsp), %rax
movss %xmm0, (%rax)
movq 0x130(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x130(%rsp)
movq 0xe0(%rsp), %rax
addq $0x4, %rax
movq %rax, 0xe0(%rsp)
movl 0x94(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x94(%rsp)
jmp 0x12ed076
jmp 0x12ed0ec
movl 0x140(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x140(%rsp)
jmp 0x12ec6f2
movl $0x0, 0x184(%rsp)
movl 0x184(%rsp), %eax
addq $0x338, %rsp # imm = 0x338
retq
nopl (%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,857
|
int ncnn::binary_op_7_13_19_29<ncnn::BinaryOp_x86_functor::binary_op_div>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op_7_13_19_29(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int elempack = a.elempack;
int size = w * h * d * elempack;
// type 7 13 19 29
c.create_like(a, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
int i = 0;
#if __SSE2__
#if __AVX__
#if __AVX512F__
for (; i + 15 < size; i += 16)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
ptr1 += 16;
outptr += 16;
}
#endif // __AVX512F__
for (; i + 7 < size; i += 8)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _p1 = _mm256_loadu_ps(ptr1);
__m256 _outp = op.func_pack8(_p, _p1);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
ptr1 += 8;
outptr += 8;
}
#endif // __AVX__
for (; i + 3 < size; i += 4)
{
__m128 _p = _mm_load_ps(ptr);
__m128 _p1 = _mm_load_ps(ptr1);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_store_ps(outptr, _outp);
ptr += 4;
ptr1 += 4;
outptr += 4;
}
#endif // __SSE2__
for (; i < size; i++)
{
*outptr = op.func(*ptr, *ptr1);
ptr += 1;
ptr1 += 1;
outptr += 1;
}
}
return 0;
}
|
subq $0x438, %rsp # imm = 0x438
movq %rdi, 0x1f8(%rsp)
movq %rsi, 0x1f0(%rsp)
movq %rdx, 0x1e8(%rsp)
movq %rcx, 0x1e0(%rsp)
movq 0x1f8(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x1d8(%rsp)
movq 0x1f8(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x1d4(%rsp)
movq 0x1f8(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x1d0(%rsp)
movq 0x1f8(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x1cc(%rsp)
movq 0x1f8(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x1c8(%rsp)
movl 0x1d8(%rsp), %eax
imull 0x1d4(%rsp), %eax
imull 0x1d0(%rsp), %eax
imull 0x1c8(%rsp), %eax
movl %eax, 0x1c4(%rsp)
movq 0x1e8(%rsp), %rdi
movq 0x1f8(%rsp), %rsi
movq 0x1e0(%rsp), %rax
movq 0x8(%rax), %rdx
callq 0x6fe40
movq 0x1e8(%rsp), %rax
movq %rax, 0x208(%rsp)
movq 0x208(%rsp), %rcx
movq %rcx, 0x80(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x8f(%rsp)
je 0x12ed249
movq 0x80(%rsp), %rax
movq %rax, 0x2c8(%rsp)
movq 0x2c8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x8f(%rsp)
movb 0x8f(%rsp), %al
testb $0x1, %al
jne 0x12ed256
jmp 0x12ed266
movl $0xffffff9c, 0x204(%rsp) # imm = 0xFFFFFF9C
jmp 0x12ee08c
movl $0x0, 0x1c0(%rsp)
movl 0x1c0(%rsp), %eax
cmpl 0x1cc(%rsp), %eax
jge 0x12ee081
movq 0x1f8(%rsp), %rcx
movl 0x1c0(%rsp), %eax
leaq 0x170(%rsp), %rdx
movq %rdx, 0x238(%rsp)
movq %rcx, 0x230(%rsp)
movl %eax, 0x22c(%rsp)
movq 0x230(%rsp), %rax
movq %rax, 0x78(%rsp)
movb $0x0, 0x22b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x170(%rsp), %r10
movq %r10, 0x338(%rsp)
movl %r9d, 0x334(%rsp)
movl %r8d, 0x330(%rsp)
movl %edi, 0x32c(%rsp)
movq %rsi, 0x320(%rsp)
movq %rdx, 0x318(%rsp)
movl %ecx, 0x314(%rsp)
movq %rax, 0x308(%rsp)
movq 0x338(%rsp), %rcx
movq %rcx, 0x70(%rsp)
movq 0x320(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x318(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x314(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x308(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x334(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x330(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x32c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x390(%rsp)
movl $0x10, 0x38c(%rsp)
movq 0x390(%rsp), %rax
movslq 0x38c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x38c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x78(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x198(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12ed435
movq 0x78(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1b0(%rsp)
movb $0x1, 0x22b(%rsp)
testb $0x1, 0x22b(%rsp)
jne 0x12ed55e
leaq 0x170(%rsp), %rax
movq %rax, 0x250(%rsp)
movq 0x250(%rsp), %rax
movq %rax, 0x400(%rsp)
movq 0x400(%rsp), %rax
movq %rax, 0x68(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ed504
movq 0x68(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fc(%rsp) # imm = 0xFFFFFFFF
movl 0x3fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f8(%rsp)
cmpl $0x1, 0x3f8(%rsp)
jne 0x12ed504
movq 0x68(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ed4d8
movq 0x68(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ed4d6
jmp 0x12ed502
movq 0x68(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x408(%rsp)
cmpq $0x0, 0x408(%rsp)
je 0x12ed500
movq 0x408(%rsp), %rdi
callq 0x5f480
jmp 0x12ed502
jmp 0x12ed504
movq 0x68(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ed55c
movq %rax, %rdi
callq 0x678a0
jmp 0x12ed55e
leaq 0x170(%rsp), %rax
movq %rax, 0x248(%rsp)
movq 0x248(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x58(%rsp)
leaq 0x170(%rsp), %rax
movq %rax, 0x260(%rsp)
movq 0x260(%rsp), %rax
movq %rax, 0x3e0(%rsp)
movq 0x3e0(%rsp), %rax
movq %rax, 0x60(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ed637
movq 0x60(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3dc(%rsp) # imm = 0xFFFFFFFF
movl 0x3dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3d8(%rsp)
cmpl $0x1, 0x3d8(%rsp)
jne 0x12ed637
movq 0x60(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ed60b
movq 0x60(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ed609
jmp 0x12ed635
movq 0x60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x418(%rsp)
cmpq $0x0, 0x418(%rsp)
je 0x12ed633
movq 0x418(%rsp), %rdi
callq 0x5f480
jmp 0x12ed635
jmp 0x12ed637
movq 0x60(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ed68f
movq %rax, %rdi
callq 0x678a0
movq 0x58(%rsp), %rax
movq %rax, 0x1b8(%rsp)
movq 0x1f0(%rsp), %rcx
movl 0x1c0(%rsp), %eax
leaq 0x120(%rsp), %rdx
movq %rdx, 0x220(%rsp)
movq %rcx, 0x218(%rsp)
movl %eax, 0x214(%rsp)
movq 0x218(%rsp), %rax
movq %rax, 0x50(%rsp)
movb $0x0, 0x213(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x214(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x120(%rsp), %r10
movq %r10, 0x370(%rsp)
movl %r9d, 0x36c(%rsp)
movl %r8d, 0x368(%rsp)
movl %edi, 0x364(%rsp)
movq %rsi, 0x358(%rsp)
movq %rdx, 0x350(%rsp)
movl %ecx, 0x34c(%rsp)
movq %rax, 0x340(%rsp)
movq 0x370(%rsp), %rcx
movq %rcx, 0x48(%rsp)
movq 0x358(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x350(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x34c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x340(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x36c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x368(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x364(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x380(%rsp)
movl $0x10, 0x37c(%rsp)
movq 0x380(%rsp), %rax
movslq 0x37c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x37c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x50(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x148(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12ed84c
movq 0x50(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x160(%rsp)
movb $0x1, 0x213(%rsp)
testb $0x1, 0x213(%rsp)
jne 0x12ed975
leaq 0x120(%rsp), %rax
movq %rax, 0x258(%rsp)
movq 0x258(%rsp), %rax
movq %rax, 0x3f0(%rsp)
movq 0x3f0(%rsp), %rax
movq %rax, 0x40(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ed91b
movq 0x40(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ec(%rsp) # imm = 0xFFFFFFFF
movl 0x3ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e8(%rsp)
cmpl $0x1, 0x3e8(%rsp)
jne 0x12ed91b
movq 0x40(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ed8ef
movq 0x40(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ed8ed
jmp 0x12ed919
movq 0x40(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x410(%rsp)
cmpq $0x0, 0x410(%rsp)
je 0x12ed917
movq 0x410(%rsp), %rdi
callq 0x5f480
jmp 0x12ed919
jmp 0x12ed91b
movq 0x40(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ed973
movq %rax, %rdi
callq 0x678a0
jmp 0x12ed975
leaq 0x120(%rsp), %rax
movq %rax, 0x240(%rsp)
movq 0x240(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x30(%rsp)
leaq 0x120(%rsp), %rax
movq %rax, 0x268(%rsp)
movq 0x268(%rsp), %rax
movq %rax, 0x3d0(%rsp)
movq 0x3d0(%rsp), %rax
movq %rax, 0x38(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12eda4e
movq 0x38(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3cc(%rsp) # imm = 0xFFFFFFFF
movl 0x3cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c8(%rsp)
cmpl $0x1, 0x3c8(%rsp)
jne 0x12eda4e
movq 0x38(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12eda22
movq 0x38(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12eda20
jmp 0x12eda4c
movq 0x38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x420(%rsp)
cmpq $0x0, 0x420(%rsp)
je 0x12eda4a
movq 0x420(%rsp), %rdi
callq 0x5f480
jmp 0x12eda4c
jmp 0x12eda4e
movq 0x38(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12edaa6
movq %rax, %rdi
callq 0x678a0
movq 0x30(%rsp), %rax
movq %rax, 0x168(%rsp)
movq 0x1e8(%rsp), %rcx
movl 0x1c0(%rsp), %eax
leaq 0xd0(%rsp), %rdx
movq %rdx, 0x288(%rsp)
movq %rcx, 0x280(%rsp)
movl %eax, 0x27c(%rsp)
movq 0x280(%rsp), %rax
movq %rax, 0x28(%rsp)
movb $0x0, 0x27b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x27c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xd0(%rsp), %r10
movq %r10, 0x300(%rsp)
movl %r9d, 0x2fc(%rsp)
movl %r8d, 0x2f8(%rsp)
movl %edi, 0x2f4(%rsp)
movq %rsi, 0x2e8(%rsp)
movq %rdx, 0x2e0(%rsp)
movl %ecx, 0x2dc(%rsp)
movq %rax, 0x2d0(%rsp)
movq 0x300(%rsp), %rcx
movq %rcx, 0x20(%rsp)
movq 0x2e8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2e0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2dc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2d0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2fc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3a0(%rsp)
movl $0x10, 0x39c(%rsp)
movq 0x3a0(%rsp), %rax
movslq 0x39c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x39c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x28(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12edc63
movq 0x28(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x110(%rsp)
movb $0x1, 0x27b(%rsp)
testb $0x1, 0x27b(%rsp)
jne 0x12edd8c
leaq 0xd0(%rsp), %rax
movq %rax, 0x290(%rsp)
movq 0x290(%rsp), %rax
movq %rax, 0x3b0(%rsp)
movq 0x3b0(%rsp), %rax
movq %rax, 0x18(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12edd32
movq 0x18(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ac(%rsp) # imm = 0xFFFFFFFF
movl 0x3ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a8(%rsp)
cmpl $0x1, 0x3a8(%rsp)
jne 0x12edd32
movq 0x18(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12edd06
movq 0x18(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12edd04
jmp 0x12edd30
movq 0x18(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x430(%rsp)
cmpq $0x0, 0x430(%rsp)
je 0x12edd2e
movq 0x430(%rsp), %rdi
callq 0x5f480
jmp 0x12edd30
jmp 0x12edd32
movq 0x18(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12edd8a
movq %rax, %rdi
callq 0x678a0
jmp 0x12edd8c
leaq 0xd0(%rsp), %rax
movq %rax, 0x298(%rsp)
movq 0x298(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8(%rsp)
leaq 0xd0(%rsp), %rax
movq %rax, 0x270(%rsp)
movq 0x270(%rsp), %rax
movq %rax, 0x3c0(%rsp)
movq 0x3c0(%rsp), %rax
movq %rax, 0x10(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ede65
movq 0x10(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bc(%rsp) # imm = 0xFFFFFFFF
movl 0x3bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b8(%rsp)
cmpl $0x1, 0x3b8(%rsp)
jne 0x12ede65
movq 0x10(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ede39
movq 0x10(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ede37
jmp 0x12ede63
movq 0x10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x428(%rsp)
cmpq $0x0, 0x428(%rsp)
je 0x12ede61
movq 0x428(%rsp), %rdi
callq 0x5f480
jmp 0x12ede63
jmp 0x12ede65
movq 0x10(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12edebd
movq %rax, %rdi
callq 0x678a0
movq 0x8(%rsp), %rax
movq %rax, 0x118(%rsp)
movl $0x0, 0xcc(%rsp)
movl 0xcc(%rsp), %eax
addl $0x3, %eax
cmpl 0x1c4(%rsp), %eax
jge 0x12edfdc
movq 0x1b8(%rsp), %rax
movq %rax, 0x2a8(%rsp)
movq 0x2a8(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm0, 0xb0(%rsp)
movq 0x168(%rsp), %rax
movq %rax, 0x2a0(%rsp)
movq 0x2a0(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm0, 0xa0(%rsp)
leaq 0x1df(%rsp), %rdi
leaq 0xb0(%rsp), %rsi
leaq 0xa0(%rsp), %rdx
callq 0x12f6bf0
movaps %xmm0, 0x90(%rsp)
movq 0x118(%rsp), %rax
movaps 0x90(%rsp), %xmm0
movq %rax, 0x2c0(%rsp)
movaps %xmm0, 0x2b0(%rsp)
movaps 0x2b0(%rsp), %xmm0
movq 0x2c0(%rsp), %rax
movaps %xmm0, (%rax)
movq 0x1b8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1b8(%rsp)
movq 0x168(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x168(%rsp)
movq 0x118(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x118(%rsp)
movl 0xcc(%rsp), %eax
addl $0x4, %eax
movl %eax, 0xcc(%rsp)
jmp 0x12eded5
jmp 0x12edfde
movl 0xcc(%rsp), %eax
cmpl 0x1c4(%rsp), %eax
jge 0x12ee069
movq 0x1b8(%rsp), %rsi
movq 0x168(%rsp), %rdx
leaq 0x1df(%rsp), %rdi
callq 0x12f6c30
movq 0x118(%rsp), %rax
movss %xmm0, (%rax)
movq 0x1b8(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x1b8(%rsp)
movq 0x168(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x168(%rsp)
movq 0x118(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x118(%rsp)
movl 0xcc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xcc(%rsp)
jmp 0x12edfde
jmp 0x12ee06b
movl 0x1c0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c0(%rsp)
jmp 0x12ed271
movl $0x0, 0x204(%rsp)
movl 0x204(%rsp), %eax
addq $0x438, %rsp # imm = 0x438
retq
nopl (%rax,%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,858
|
int ncnn::binary_op_6_11_16_25<ncnn::BinaryOp_x86_functor::binary_op_div>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op_6_11_16_25(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int elempack = a.elempack;
int size = w * h * d * elempack;
// type 6 11 16 25
c.create_like(a, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float b0 = b[0];
float* outptr = c.channel(q);
int i = 0;
#if __SSE2__
#if __AVX__
#if __AVX512F__
__m512 _b0_avx512 = _mm512_set1_ps(b0);
for (; i + 15 < size; i += 16)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0_avx512);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
#endif // __AVX512F__
__m256 _b0_avx = _mm256_set1_ps(b0);
for (; i + 7 < size; i += 8)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _outp = op.func_pack8(_p, _b0_avx);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
outptr += 8;
}
#endif // __AVX__
__m128 _b0 = _mm_set1_ps(b0);
for (; i + 3 < size; i += 4)
{
__m128 _p = _mm_load_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_store_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
#endif // __SSE2__
for (; i < size; i++)
{
*outptr = op.func(*ptr, b0);
ptr += 1;
outptr += 1;
}
}
return 0;
}
|
subq $0x338, %rsp # imm = 0x338
movq %rdi, 0x178(%rsp)
movq %rsi, 0x170(%rsp)
movq %rdx, 0x168(%rsp)
movq %rcx, 0x160(%rsp)
movq 0x178(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x158(%rsp)
movq 0x178(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x154(%rsp)
movq 0x178(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x150(%rsp)
movq 0x178(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x14c(%rsp)
movq 0x178(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x148(%rsp)
movl 0x158(%rsp), %eax
imull 0x154(%rsp), %eax
imull 0x150(%rsp), %eax
imull 0x148(%rsp), %eax
movl %eax, 0x144(%rsp)
movq 0x168(%rsp), %rdi
movq 0x178(%rsp), %rsi
movq 0x160(%rsp), %rax
movq 0x8(%rax), %rdx
callq 0x6fe40
movq 0x168(%rsp), %rax
movq %rax, 0x188(%rsp)
movq 0x188(%rsp), %rcx
movq %rcx, 0x50(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x5f(%rsp)
je 0x12ee1bd
movq 0x50(%rsp), %rax
movq %rax, 0x230(%rsp)
movq 0x230(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x5f(%rsp)
movb 0x5f(%rsp), %al
testb $0x1, %al
jne 0x12ee1c7
jmp 0x12ee1d7
movl $0xffffff9c, 0x184(%rsp) # imm = 0xFFFFFF9C
jmp 0x12eebfd
movl $0x0, 0x140(%rsp)
movl 0x140(%rsp), %eax
cmpl 0x14c(%rsp), %eax
jge 0x12eebf2
movq 0x178(%rsp), %rcx
movl 0x140(%rsp), %eax
leaq 0xf0(%rsp), %rdx
movq %rdx, 0x1a0(%rsp)
movq %rcx, 0x198(%rsp)
movl %eax, 0x194(%rsp)
movq 0x198(%rsp), %rax
movq %rax, 0x48(%rsp)
movb $0x0, 0x193(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x194(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xf0(%rsp), %r10
movq %r10, 0x2a0(%rsp)
movl %r9d, 0x29c(%rsp)
movl %r8d, 0x298(%rsp)
movl %edi, 0x294(%rsp)
movq %rsi, 0x288(%rsp)
movq %rdx, 0x280(%rsp)
movl %ecx, 0x27c(%rsp)
movq %rax, 0x270(%rsp)
movq 0x2a0(%rsp), %rcx
movq %rcx, 0x40(%rsp)
movq 0x288(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x280(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x27c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x270(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x29c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x298(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x294(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x2b0(%rsp)
movl $0x10, 0x2ac(%rsp)
movq 0x2b0(%rsp), %rax
movslq 0x2ac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x2ac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x48(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x118(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12ee3a6
movq 0x48(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x130(%rsp)
movb $0x1, 0x193(%rsp)
testb $0x1, 0x193(%rsp)
jne 0x12ee4cf
leaq 0xf0(%rsp), %rax
movq %rax, 0x1b0(%rsp)
movq 0x1b0(%rsp), %rax
movq %rax, 0x300(%rsp)
movq 0x300(%rsp), %rax
movq %rax, 0x38(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ee475
movq 0x38(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2fc(%rsp) # imm = 0xFFFFFFFF
movl 0x2fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2f8(%rsp)
cmpl $0x1, 0x2f8(%rsp)
jne 0x12ee475
movq 0x38(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ee449
movq 0x38(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ee447
jmp 0x12ee473
movq 0x38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x308(%rsp)
cmpq $0x0, 0x308(%rsp)
je 0x12ee471
movq 0x308(%rsp), %rdi
callq 0x5f480
jmp 0x12ee473
jmp 0x12ee475
movq 0x38(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ee4cd
movq %rax, %rdi
callq 0x678a0
jmp 0x12ee4cf
leaq 0xf0(%rsp), %rax
movq %rax, 0x1a8(%rsp)
movq 0x1a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x28(%rsp)
leaq 0xf0(%rsp), %rax
movq %rax, 0x1b8(%rsp)
movq 0x1b8(%rsp), %rax
movq %rax, 0x2f0(%rsp)
movq 0x2f0(%rsp), %rax
movq %rax, 0x30(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ee5a8
movq 0x30(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2ec(%rsp) # imm = 0xFFFFFFFF
movl 0x2ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2e8(%rsp)
cmpl $0x1, 0x2e8(%rsp)
jne 0x12ee5a8
movq 0x30(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ee57c
movq 0x30(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ee57a
jmp 0x12ee5a6
movq 0x30(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x310(%rsp)
cmpq $0x0, 0x310(%rsp)
je 0x12ee5a4
movq 0x310(%rsp), %rdi
callq 0x5f480
jmp 0x12ee5a6
jmp 0x12ee5a8
movq 0x30(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ee600
movq %rax, %rdi
callq 0x678a0
movq 0x28(%rsp), %rax
movq %rax, 0x138(%rsp)
movq 0x170(%rsp), %rax
movq %rax, 0x330(%rsp)
movq $0x0, 0x328(%rsp)
movq 0x330(%rsp), %rax
movq (%rax), %rax
movq 0x328(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xec(%rsp)
movq 0x168(%rsp), %rcx
movl 0x140(%rsp), %eax
leaq 0x98(%rsp), %rdx
movq %rdx, 0x1d8(%rsp)
movq %rcx, 0x1d0(%rsp)
movl %eax, 0x1cc(%rsp)
movq 0x1d0(%rsp), %rax
movq %rax, 0x20(%rsp)
movb $0x0, 0x1cb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1cc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x98(%rsp), %r10
movq %r10, 0x268(%rsp)
movl %r9d, 0x264(%rsp)
movl %r8d, 0x260(%rsp)
movl %edi, 0x25c(%rsp)
movq %rsi, 0x250(%rsp)
movq %rdx, 0x248(%rsp)
movl %ecx, 0x244(%rsp)
movq %rax, 0x238(%rsp)
movq 0x268(%rsp), %rcx
movq %rcx, 0x18(%rsp)
movq 0x250(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x248(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x244(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x238(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x264(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x260(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x25c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x2c0(%rsp)
movl $0x10, 0x2bc(%rsp)
movq 0x2c0(%rsp), %rax
movslq 0x2bc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x2bc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x20(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12ee7fa
movq 0x20(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd8(%rsp)
movb $0x1, 0x1cb(%rsp)
testb $0x1, 0x1cb(%rsp)
jne 0x12ee923
leaq 0x98(%rsp), %rax
movq %rax, 0x1e0(%rsp)
movq 0x1e0(%rsp), %rax
movq %rax, 0x2d0(%rsp)
movq 0x2d0(%rsp), %rax
movq %rax, 0x10(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ee8c9
movq 0x10(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2cc(%rsp) # imm = 0xFFFFFFFF
movl 0x2cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2c8(%rsp)
cmpl $0x1, 0x2c8(%rsp)
jne 0x12ee8c9
movq 0x10(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ee89d
movq 0x10(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ee89b
jmp 0x12ee8c7
movq 0x10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x320(%rsp)
cmpq $0x0, 0x320(%rsp)
je 0x12ee8c5
movq 0x320(%rsp), %rdi
callq 0x5f480
jmp 0x12ee8c7
jmp 0x12ee8c9
movq 0x10(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ee921
movq %rax, %rdi
callq 0x678a0
jmp 0x12ee923
leaq 0x98(%rsp), %rax
movq %rax, 0x1e8(%rsp)
movq 0x1e8(%rsp), %rax
movq (%rax), %rax
movq %rax, (%rsp)
leaq 0x98(%rsp), %rax
movq %rax, 0x1c0(%rsp)
movq 0x1c0(%rsp), %rax
movq %rax, 0x2e0(%rsp)
movq 0x2e0(%rsp), %rax
movq %rax, 0x8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ee9fb
movq 0x8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2dc(%rsp) # imm = 0xFFFFFFFF
movl 0x2dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2d8(%rsp)
cmpl $0x1, 0x2d8(%rsp)
jne 0x12ee9fb
movq 0x8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ee9cf
movq 0x8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ee9cd
jmp 0x12ee9f9
movq 0x8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x318(%rsp)
cmpq $0x0, 0x318(%rsp)
je 0x12ee9f7
movq 0x318(%rsp), %rdi
callq 0x5f480
jmp 0x12ee9f9
jmp 0x12ee9fb
movq 0x8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12eea53
movq %rax, %rdi
callq 0x678a0
movq (%rsp), %rax
movq %rax, 0xe0(%rsp)
movl $0x0, 0x94(%rsp)
movss 0xec(%rsp), %xmm0
movss %xmm0, 0x200(%rsp)
movaps 0x200(%rsp), %xmm0
shufps $0x0, %xmm0, %xmm0 # xmm0 = xmm0[0,0,0,0]
movaps %xmm0, 0x1f0(%rsp)
movaps 0x1f0(%rsp), %xmm0
movaps %xmm0, 0x80(%rsp)
movl 0x94(%rsp), %eax
addl $0x3, %eax
cmpl 0x144(%rsp), %eax
jge 0x12eeb64
movq 0x138(%rsp), %rax
movq %rax, 0x208(%rsp)
movq 0x208(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm0, 0x70(%rsp)
leaq 0x15f(%rsp), %rdi
leaq 0x70(%rsp), %rsi
leaq 0x80(%rsp), %rdx
callq 0x12f6bf0
movaps %xmm0, 0x60(%rsp)
movq 0xe0(%rsp), %rax
movaps 0x60(%rsp), %xmm0
movq %rax, 0x228(%rsp)
movaps %xmm0, 0x210(%rsp)
movaps 0x210(%rsp), %xmm0
movq 0x228(%rsp), %rax
movaps %xmm0, (%rax)
movq 0x138(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x138(%rsp)
movq 0xe0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xe0(%rsp)
movl 0x94(%rsp), %eax
addl $0x4, %eax
movl %eax, 0x94(%rsp)
jmp 0x12eeaa0
jmp 0x12eeb66
movl 0x94(%rsp), %eax
cmpl 0x144(%rsp), %eax
jge 0x12eebda
movq 0x138(%rsp), %rsi
leaq 0x15f(%rsp), %rdi
leaq 0xec(%rsp), %rdx
callq 0x12f6c30
movq 0xe0(%rsp), %rax
movss %xmm0, (%rax)
movq 0x138(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x138(%rsp)
movq 0xe0(%rsp), %rax
addq $0x4, %rax
movq %rax, 0xe0(%rsp)
movl 0x94(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x94(%rsp)
jmp 0x12eeb66
jmp 0x12eebdc
movl 0x140(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x140(%rsp)
jmp 0x12ee1e2
movl $0x0, 0x184(%rsp)
movl 0x184(%rsp), %eax
addq $0x338, %rsp # imm = 0x338
retq
nopl (%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,859
|
int ncnn::binary_op_2_3_4_20<ncnn::BinaryOp_x86_functor::binary_op_div>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op_2_3_4_20(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = b.w;
int h = b.h;
int d = b.d;
int channels = b.c;
int elempack = b.elempack;
int size = w * h * d * elempack;
// type 2 3 4 20
c.create_like(b, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float a0 = a[0];
const float* ptr = b.channel(q);
float* outptr = c.channel(q);
int i = 0;
#if __SSE2__
#if __AVX__
#if __AVX512F__
__m512 _a0_avx512 = _mm512_set1_ps(a0);
for (; i + 15 < size; i += 16)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_a0_avx512, _p);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
#endif // __AVX512F__
__m256 _a0_avx = _mm256_set1_ps(a0);
for (; i + 7 < size; i += 8)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _outp = op.func_pack8(_a0_avx, _p);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
outptr += 8;
}
#endif // __AVX__
__m128 _a0 = _mm_set1_ps(a0);
for (; i + 3 < size; i += 4)
{
__m128 _p = _mm_load_ps(ptr);
__m128 _outp = op.func_pack4(_a0, _p);
_mm_store_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
#endif // __SSE2__
for (; i < size; i++)
{
*outptr = op.func(a0, *ptr);
ptr += 1;
outptr += 1;
}
}
return 0;
}
|
subq $0x338, %rsp # imm = 0x338
movq %rdi, 0x178(%rsp)
movq %rsi, 0x170(%rsp)
movq %rdx, 0x168(%rsp)
movq %rcx, 0x160(%rsp)
movq 0x170(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x158(%rsp)
movq 0x170(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x154(%rsp)
movq 0x170(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x150(%rsp)
movq 0x170(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x14c(%rsp)
movq 0x170(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x148(%rsp)
movl 0x158(%rsp), %eax
imull 0x154(%rsp), %eax
imull 0x150(%rsp), %eax
imull 0x148(%rsp), %eax
movl %eax, 0x144(%rsp)
movq 0x168(%rsp), %rdi
movq 0x170(%rsp), %rsi
movq 0x160(%rsp), %rax
movq 0x8(%rax), %rdx
callq 0x6fe40
movq 0x168(%rsp), %rax
movq %rax, 0x188(%rsp)
movq 0x188(%rsp), %rcx
movq %rcx, 0x50(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x5f(%rsp)
je 0x12eed2d
movq 0x50(%rsp), %rax
movq %rax, 0x230(%rsp)
movq 0x230(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x5f(%rsp)
movb 0x5f(%rsp), %al
testb $0x1, %al
jne 0x12eed37
jmp 0x12eed47
movl $0xffffff9c, 0x184(%rsp) # imm = 0xFFFFFF9C
jmp 0x12ef76d
movl $0x0, 0x140(%rsp)
movl 0x140(%rsp), %eax
cmpl 0x14c(%rsp), %eax
jge 0x12ef762
movq 0x178(%rsp), %rax
movq %rax, 0x330(%rsp)
movq $0x0, 0x328(%rsp)
movq 0x330(%rsp), %rax
movq (%rax), %rax
movq 0x328(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x13c(%rsp)
movq 0x170(%rsp), %rcx
movl 0x140(%rsp), %eax
leaq 0xe8(%rsp), %rdx
movq %rdx, 0x1a0(%rsp)
movq %rcx, 0x198(%rsp)
movl %eax, 0x194(%rsp)
movq 0x198(%rsp), %rax
movq %rax, 0x48(%rsp)
movb $0x0, 0x193(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x194(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xe8(%rsp), %r10
movq %r10, 0x2a0(%rsp)
movl %r9d, 0x29c(%rsp)
movl %r8d, 0x298(%rsp)
movl %edi, 0x294(%rsp)
movq %rsi, 0x288(%rsp)
movq %rdx, 0x280(%rsp)
movl %ecx, 0x27c(%rsp)
movq %rax, 0x270(%rsp)
movq 0x2a0(%rsp), %rcx
movq %rcx, 0x40(%rsp)
movq 0x288(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x280(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x27c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x270(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x29c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x298(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x294(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x2b0(%rsp)
movl $0x10, 0x2ac(%rsp)
movq 0x2b0(%rsp), %rax
movslq 0x2ac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x2ac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x48(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x110(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12eef53
movq 0x48(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x128(%rsp)
movb $0x1, 0x193(%rsp)
testb $0x1, 0x193(%rsp)
jne 0x12ef07c
leaq 0xe8(%rsp), %rax
movq %rax, 0x1b0(%rsp)
movq 0x1b0(%rsp), %rax
movq %rax, 0x300(%rsp)
movq 0x300(%rsp), %rax
movq %rax, 0x38(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ef022
movq 0x38(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2fc(%rsp) # imm = 0xFFFFFFFF
movl 0x2fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2f8(%rsp)
cmpl $0x1, 0x2f8(%rsp)
jne 0x12ef022
movq 0x38(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12eeff6
movq 0x38(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12eeff4
jmp 0x12ef020
movq 0x38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x308(%rsp)
cmpq $0x0, 0x308(%rsp)
je 0x12ef01e
movq 0x308(%rsp), %rdi
callq 0x5f480
jmp 0x12ef020
jmp 0x12ef022
movq 0x38(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ef07a
movq %rax, %rdi
callq 0x678a0
jmp 0x12ef07c
leaq 0xe8(%rsp), %rax
movq %rax, 0x1a8(%rsp)
movq 0x1a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x28(%rsp)
leaq 0xe8(%rsp), %rax
movq %rax, 0x1b8(%rsp)
movq 0x1b8(%rsp), %rax
movq %rax, 0x2f0(%rsp)
movq 0x2f0(%rsp), %rax
movq %rax, 0x30(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ef155
movq 0x30(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2ec(%rsp) # imm = 0xFFFFFFFF
movl 0x2ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2e8(%rsp)
cmpl $0x1, 0x2e8(%rsp)
jne 0x12ef155
movq 0x30(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ef129
movq 0x30(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ef127
jmp 0x12ef153
movq 0x30(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x310(%rsp)
cmpq $0x0, 0x310(%rsp)
je 0x12ef151
movq 0x310(%rsp), %rdi
callq 0x5f480
jmp 0x12ef153
jmp 0x12ef155
movq 0x30(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ef1ad
movq %rax, %rdi
callq 0x678a0
movq 0x28(%rsp), %rax
movq %rax, 0x130(%rsp)
movq 0x168(%rsp), %rcx
movl 0x140(%rsp), %eax
leaq 0x98(%rsp), %rdx
movq %rdx, 0x1d8(%rsp)
movq %rcx, 0x1d0(%rsp)
movl %eax, 0x1cc(%rsp)
movq 0x1d0(%rsp), %rax
movq %rax, 0x20(%rsp)
movb $0x0, 0x1cb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1cc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x98(%rsp), %r10
movq %r10, 0x268(%rsp)
movl %r9d, 0x264(%rsp)
movl %r8d, 0x260(%rsp)
movl %edi, 0x25c(%rsp)
movq %rsi, 0x250(%rsp)
movq %rdx, 0x248(%rsp)
movl %ecx, 0x244(%rsp)
movq %rax, 0x238(%rsp)
movq 0x268(%rsp), %rcx
movq %rcx, 0x18(%rsp)
movq 0x250(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x248(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x244(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x238(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x264(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x260(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x25c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x2c0(%rsp)
movl $0x10, 0x2bc(%rsp)
movq 0x2c0(%rsp), %rax
movslq 0x2bc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x2bc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x20(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12ef36a
movq 0x20(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd8(%rsp)
movb $0x1, 0x1cb(%rsp)
testb $0x1, 0x1cb(%rsp)
jne 0x12ef493
leaq 0x98(%rsp), %rax
movq %rax, 0x1e0(%rsp)
movq 0x1e0(%rsp), %rax
movq %rax, 0x2d0(%rsp)
movq 0x2d0(%rsp), %rax
movq %rax, 0x10(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ef439
movq 0x10(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2cc(%rsp) # imm = 0xFFFFFFFF
movl 0x2cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2c8(%rsp)
cmpl $0x1, 0x2c8(%rsp)
jne 0x12ef439
movq 0x10(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ef40d
movq 0x10(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ef40b
jmp 0x12ef437
movq 0x10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x320(%rsp)
cmpq $0x0, 0x320(%rsp)
je 0x12ef435
movq 0x320(%rsp), %rdi
callq 0x5f480
jmp 0x12ef437
jmp 0x12ef439
movq 0x10(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ef491
movq %rax, %rdi
callq 0x678a0
jmp 0x12ef493
leaq 0x98(%rsp), %rax
movq %rax, 0x1e8(%rsp)
movq 0x1e8(%rsp), %rax
movq (%rax), %rax
movq %rax, (%rsp)
leaq 0x98(%rsp), %rax
movq %rax, 0x1c0(%rsp)
movq 0x1c0(%rsp), %rax
movq %rax, 0x2e0(%rsp)
movq 0x2e0(%rsp), %rax
movq %rax, 0x8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ef56b
movq 0x8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2dc(%rsp) # imm = 0xFFFFFFFF
movl 0x2dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2d8(%rsp)
cmpl $0x1, 0x2d8(%rsp)
jne 0x12ef56b
movq 0x8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ef53f
movq 0x8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12ef53d
jmp 0x12ef569
movq 0x8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x318(%rsp)
cmpq $0x0, 0x318(%rsp)
je 0x12ef567
movq 0x318(%rsp), %rdi
callq 0x5f480
jmp 0x12ef569
jmp 0x12ef56b
movq 0x8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ef5c3
movq %rax, %rdi
callq 0x678a0
movq (%rsp), %rax
movq %rax, 0xe0(%rsp)
movl $0x0, 0x94(%rsp)
movss 0x13c(%rsp), %xmm0
movss %xmm0, 0x200(%rsp)
movaps 0x200(%rsp), %xmm0
shufps $0x0, %xmm0, %xmm0 # xmm0 = xmm0[0,0,0,0]
movaps %xmm0, 0x1f0(%rsp)
movaps 0x1f0(%rsp), %xmm0
movaps %xmm0, 0x80(%rsp)
movl 0x94(%rsp), %eax
addl $0x3, %eax
cmpl 0x144(%rsp), %eax
jge 0x12ef6d4
movq 0x130(%rsp), %rax
movq %rax, 0x208(%rsp)
movq 0x208(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm0, 0x70(%rsp)
leaq 0x15f(%rsp), %rdi
leaq 0x80(%rsp), %rsi
leaq 0x70(%rsp), %rdx
callq 0x12f6bf0
movaps %xmm0, 0x60(%rsp)
movq 0xe0(%rsp), %rax
movaps 0x60(%rsp), %xmm0
movq %rax, 0x228(%rsp)
movaps %xmm0, 0x210(%rsp)
movaps 0x210(%rsp), %xmm0
movq 0x228(%rsp), %rax
movaps %xmm0, (%rax)
movq 0x130(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x130(%rsp)
movq 0xe0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xe0(%rsp)
movl 0x94(%rsp), %eax
addl $0x4, %eax
movl %eax, 0x94(%rsp)
jmp 0x12ef610
jmp 0x12ef6d6
movl 0x94(%rsp), %eax
cmpl 0x144(%rsp), %eax
jge 0x12ef74a
movq 0x130(%rsp), %rdx
leaq 0x15f(%rsp), %rdi
leaq 0x13c(%rsp), %rsi
callq 0x12f6c30
movq 0xe0(%rsp), %rax
movss %xmm0, (%rax)
movq 0x130(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x130(%rsp)
movq 0xe0(%rsp), %rax
addq $0x4, %rax
movq %rax, 0xe0(%rsp)
movl 0x94(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x94(%rsp)
jmp 0x12ef6d6
jmp 0x12ef74c
movl 0x140(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x140(%rsp)
jmp 0x12eed52
movl $0x0, 0x184(%rsp)
movl 0x184(%rsp), %eax
addq $0x338, %rsp # imm = 0x338
retq
nopl (%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,860
|
int ncnn::binary_op_7_13_19_29<ncnn::BinaryOp_x86_functor::binary_op_max>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op_7_13_19_29(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int elempack = a.elempack;
int size = w * h * d * elempack;
// type 7 13 19 29
c.create_like(a, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
int i = 0;
#if __SSE2__
#if __AVX__
#if __AVX512F__
for (; i + 15 < size; i += 16)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
ptr1 += 16;
outptr += 16;
}
#endif // __AVX512F__
for (; i + 7 < size; i += 8)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _p1 = _mm256_loadu_ps(ptr1);
__m256 _outp = op.func_pack8(_p, _p1);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
ptr1 += 8;
outptr += 8;
}
#endif // __AVX__
for (; i + 3 < size; i += 4)
{
__m128 _p = _mm_load_ps(ptr);
__m128 _p1 = _mm_load_ps(ptr1);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_store_ps(outptr, _outp);
ptr += 4;
ptr1 += 4;
outptr += 4;
}
#endif // __SSE2__
for (; i < size; i++)
{
*outptr = op.func(*ptr, *ptr1);
ptr += 1;
ptr1 += 1;
outptr += 1;
}
}
return 0;
}
|
subq $0x438, %rsp # imm = 0x438
movq %rdi, 0x1f8(%rsp)
movq %rsi, 0x1f0(%rsp)
movq %rdx, 0x1e8(%rsp)
movq %rcx, 0x1e0(%rsp)
movq 0x1f8(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x1d8(%rsp)
movq 0x1f8(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x1d4(%rsp)
movq 0x1f8(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x1d0(%rsp)
movq 0x1f8(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x1cc(%rsp)
movq 0x1f8(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x1c8(%rsp)
movl 0x1d8(%rsp), %eax
imull 0x1d4(%rsp), %eax
imull 0x1d0(%rsp), %eax
imull 0x1c8(%rsp), %eax
movl %eax, 0x1c4(%rsp)
movq 0x1e8(%rsp), %rdi
movq 0x1f8(%rsp), %rsi
movq 0x1e0(%rsp), %rax
movq 0x8(%rax), %rdx
callq 0x6fe40
movq 0x1e8(%rsp), %rax
movq %rax, 0x208(%rsp)
movq 0x208(%rsp), %rcx
movq %rcx, 0x80(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x8f(%rsp)
je 0x12ef8a9
movq 0x80(%rsp), %rax
movq %rax, 0x2c8(%rsp)
movq 0x2c8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x8f(%rsp)
movb 0x8f(%rsp), %al
testb $0x1, %al
jne 0x12ef8b6
jmp 0x12ef8c6
movl $0xffffff9c, 0x204(%rsp) # imm = 0xFFFFFF9C
jmp 0x12f06ec
movl $0x0, 0x1c0(%rsp)
movl 0x1c0(%rsp), %eax
cmpl 0x1cc(%rsp), %eax
jge 0x12f06e1
movq 0x1f8(%rsp), %rcx
movl 0x1c0(%rsp), %eax
leaq 0x170(%rsp), %rdx
movq %rdx, 0x238(%rsp)
movq %rcx, 0x230(%rsp)
movl %eax, 0x22c(%rsp)
movq 0x230(%rsp), %rax
movq %rax, 0x78(%rsp)
movb $0x0, 0x22b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x170(%rsp), %r10
movq %r10, 0x338(%rsp)
movl %r9d, 0x334(%rsp)
movl %r8d, 0x330(%rsp)
movl %edi, 0x32c(%rsp)
movq %rsi, 0x320(%rsp)
movq %rdx, 0x318(%rsp)
movl %ecx, 0x314(%rsp)
movq %rax, 0x308(%rsp)
movq 0x338(%rsp), %rcx
movq %rcx, 0x70(%rsp)
movq 0x320(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x318(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x314(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x308(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x334(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x330(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x32c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x390(%rsp)
movl $0x10, 0x38c(%rsp)
movq 0x390(%rsp), %rax
movslq 0x38c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x38c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x78(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x198(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12efa95
movq 0x78(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1b0(%rsp)
movb $0x1, 0x22b(%rsp)
testb $0x1, 0x22b(%rsp)
jne 0x12efbbe
leaq 0x170(%rsp), %rax
movq %rax, 0x250(%rsp)
movq 0x250(%rsp), %rax
movq %rax, 0x400(%rsp)
movq 0x400(%rsp), %rax
movq %rax, 0x68(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12efb64
movq 0x68(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fc(%rsp) # imm = 0xFFFFFFFF
movl 0x3fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f8(%rsp)
cmpl $0x1, 0x3f8(%rsp)
jne 0x12efb64
movq 0x68(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12efb38
movq 0x68(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12efb36
jmp 0x12efb62
movq 0x68(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x408(%rsp)
cmpq $0x0, 0x408(%rsp)
je 0x12efb60
movq 0x408(%rsp), %rdi
callq 0x5f480
jmp 0x12efb62
jmp 0x12efb64
movq 0x68(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12efbbc
movq %rax, %rdi
callq 0x678a0
jmp 0x12efbbe
leaq 0x170(%rsp), %rax
movq %rax, 0x248(%rsp)
movq 0x248(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x58(%rsp)
leaq 0x170(%rsp), %rax
movq %rax, 0x260(%rsp)
movq 0x260(%rsp), %rax
movq %rax, 0x3e0(%rsp)
movq 0x3e0(%rsp), %rax
movq %rax, 0x60(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12efc97
movq 0x60(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3dc(%rsp) # imm = 0xFFFFFFFF
movl 0x3dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3d8(%rsp)
cmpl $0x1, 0x3d8(%rsp)
jne 0x12efc97
movq 0x60(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12efc6b
movq 0x60(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12efc69
jmp 0x12efc95
movq 0x60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x418(%rsp)
cmpq $0x0, 0x418(%rsp)
je 0x12efc93
movq 0x418(%rsp), %rdi
callq 0x5f480
jmp 0x12efc95
jmp 0x12efc97
movq 0x60(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12efcef
movq %rax, %rdi
callq 0x678a0
movq 0x58(%rsp), %rax
movq %rax, 0x1b8(%rsp)
movq 0x1f0(%rsp), %rcx
movl 0x1c0(%rsp), %eax
leaq 0x120(%rsp), %rdx
movq %rdx, 0x220(%rsp)
movq %rcx, 0x218(%rsp)
movl %eax, 0x214(%rsp)
movq 0x218(%rsp), %rax
movq %rax, 0x50(%rsp)
movb $0x0, 0x213(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x214(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x120(%rsp), %r10
movq %r10, 0x370(%rsp)
movl %r9d, 0x36c(%rsp)
movl %r8d, 0x368(%rsp)
movl %edi, 0x364(%rsp)
movq %rsi, 0x358(%rsp)
movq %rdx, 0x350(%rsp)
movl %ecx, 0x34c(%rsp)
movq %rax, 0x340(%rsp)
movq 0x370(%rsp), %rcx
movq %rcx, 0x48(%rsp)
movq 0x358(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x350(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x34c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x340(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x36c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x368(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x364(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x380(%rsp)
movl $0x10, 0x37c(%rsp)
movq 0x380(%rsp), %rax
movslq 0x37c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x37c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x50(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x148(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12efeac
movq 0x50(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x160(%rsp)
movb $0x1, 0x213(%rsp)
testb $0x1, 0x213(%rsp)
jne 0x12effd5
leaq 0x120(%rsp), %rax
movq %rax, 0x258(%rsp)
movq 0x258(%rsp), %rax
movq %rax, 0x3f0(%rsp)
movq 0x3f0(%rsp), %rax
movq %rax, 0x40(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12eff7b
movq 0x40(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ec(%rsp) # imm = 0xFFFFFFFF
movl 0x3ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e8(%rsp)
cmpl $0x1, 0x3e8(%rsp)
jne 0x12eff7b
movq 0x40(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12eff4f
movq 0x40(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12eff4d
jmp 0x12eff79
movq 0x40(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x410(%rsp)
cmpq $0x0, 0x410(%rsp)
je 0x12eff77
movq 0x410(%rsp), %rdi
callq 0x5f480
jmp 0x12eff79
jmp 0x12eff7b
movq 0x40(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12effd3
movq %rax, %rdi
callq 0x678a0
jmp 0x12effd5
leaq 0x120(%rsp), %rax
movq %rax, 0x240(%rsp)
movq 0x240(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x30(%rsp)
leaq 0x120(%rsp), %rax
movq %rax, 0x268(%rsp)
movq 0x268(%rsp), %rax
movq %rax, 0x3d0(%rsp)
movq 0x3d0(%rsp), %rax
movq %rax, 0x38(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f00ae
movq 0x38(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3cc(%rsp) # imm = 0xFFFFFFFF
movl 0x3cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c8(%rsp)
cmpl $0x1, 0x3c8(%rsp)
jne 0x12f00ae
movq 0x38(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f0082
movq 0x38(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12f0080
jmp 0x12f00ac
movq 0x38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x420(%rsp)
cmpq $0x0, 0x420(%rsp)
je 0x12f00aa
movq 0x420(%rsp), %rdi
callq 0x5f480
jmp 0x12f00ac
jmp 0x12f00ae
movq 0x38(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f0106
movq %rax, %rdi
callq 0x678a0
movq 0x30(%rsp), %rax
movq %rax, 0x168(%rsp)
movq 0x1e8(%rsp), %rcx
movl 0x1c0(%rsp), %eax
leaq 0xd0(%rsp), %rdx
movq %rdx, 0x288(%rsp)
movq %rcx, 0x280(%rsp)
movl %eax, 0x27c(%rsp)
movq 0x280(%rsp), %rax
movq %rax, 0x28(%rsp)
movb $0x0, 0x27b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x27c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xd0(%rsp), %r10
movq %r10, 0x300(%rsp)
movl %r9d, 0x2fc(%rsp)
movl %r8d, 0x2f8(%rsp)
movl %edi, 0x2f4(%rsp)
movq %rsi, 0x2e8(%rsp)
movq %rdx, 0x2e0(%rsp)
movl %ecx, 0x2dc(%rsp)
movq %rax, 0x2d0(%rsp)
movq 0x300(%rsp), %rcx
movq %rcx, 0x20(%rsp)
movq 0x2e8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2e0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2dc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2d0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2fc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3a0(%rsp)
movl $0x10, 0x39c(%rsp)
movq 0x3a0(%rsp), %rax
movslq 0x39c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x39c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x28(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12f02c3
movq 0x28(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x110(%rsp)
movb $0x1, 0x27b(%rsp)
testb $0x1, 0x27b(%rsp)
jne 0x12f03ec
leaq 0xd0(%rsp), %rax
movq %rax, 0x290(%rsp)
movq 0x290(%rsp), %rax
movq %rax, 0x3b0(%rsp)
movq 0x3b0(%rsp), %rax
movq %rax, 0x18(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f0392
movq 0x18(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ac(%rsp) # imm = 0xFFFFFFFF
movl 0x3ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a8(%rsp)
cmpl $0x1, 0x3a8(%rsp)
jne 0x12f0392
movq 0x18(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f0366
movq 0x18(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12f0364
jmp 0x12f0390
movq 0x18(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x430(%rsp)
cmpq $0x0, 0x430(%rsp)
je 0x12f038e
movq 0x430(%rsp), %rdi
callq 0x5f480
jmp 0x12f0390
jmp 0x12f0392
movq 0x18(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f03ea
movq %rax, %rdi
callq 0x678a0
jmp 0x12f03ec
leaq 0xd0(%rsp), %rax
movq %rax, 0x298(%rsp)
movq 0x298(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8(%rsp)
leaq 0xd0(%rsp), %rax
movq %rax, 0x270(%rsp)
movq 0x270(%rsp), %rax
movq %rax, 0x3c0(%rsp)
movq 0x3c0(%rsp), %rax
movq %rax, 0x10(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f04c5
movq 0x10(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bc(%rsp) # imm = 0xFFFFFFFF
movl 0x3bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b8(%rsp)
cmpl $0x1, 0x3b8(%rsp)
jne 0x12f04c5
movq 0x10(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f0499
movq 0x10(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12f0497
jmp 0x12f04c3
movq 0x10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x428(%rsp)
cmpq $0x0, 0x428(%rsp)
je 0x12f04c1
movq 0x428(%rsp), %rdi
callq 0x5f480
jmp 0x12f04c3
jmp 0x12f04c5
movq 0x10(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f051d
movq %rax, %rdi
callq 0x678a0
movq 0x8(%rsp), %rax
movq %rax, 0x118(%rsp)
movl $0x0, 0xcc(%rsp)
movl 0xcc(%rsp), %eax
addl $0x3, %eax
cmpl 0x1c4(%rsp), %eax
jge 0x12f063c
movq 0x1b8(%rsp), %rax
movq %rax, 0x2a8(%rsp)
movq 0x2a8(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm0, 0xb0(%rsp)
movq 0x168(%rsp), %rax
movq %rax, 0x2a0(%rsp)
movq 0x2a0(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm0, 0xa0(%rsp)
leaq 0x1df(%rsp), %rdi
leaq 0xb0(%rsp), %rsi
leaq 0xa0(%rsp), %rdx
callq 0x12f6c60
movaps %xmm0, 0x90(%rsp)
movq 0x118(%rsp), %rax
movaps 0x90(%rsp), %xmm0
movq %rax, 0x2c0(%rsp)
movaps %xmm0, 0x2b0(%rsp)
movaps 0x2b0(%rsp), %xmm0
movq 0x2c0(%rsp), %rax
movaps %xmm0, (%rax)
movq 0x1b8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1b8(%rsp)
movq 0x168(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x168(%rsp)
movq 0x118(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x118(%rsp)
movl 0xcc(%rsp), %eax
addl $0x4, %eax
movl %eax, 0xcc(%rsp)
jmp 0x12f0535
jmp 0x12f063e
movl 0xcc(%rsp), %eax
cmpl 0x1c4(%rsp), %eax
jge 0x12f06c9
movq 0x1b8(%rsp), %rsi
movq 0x168(%rsp), %rdx
leaq 0x1df(%rsp), %rdi
callq 0x12f6ca0
movq 0x118(%rsp), %rax
movss %xmm0, (%rax)
movq 0x1b8(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x1b8(%rsp)
movq 0x168(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x168(%rsp)
movq 0x118(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x118(%rsp)
movl 0xcc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xcc(%rsp)
jmp 0x12f063e
jmp 0x12f06cb
movl 0x1c0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c0(%rsp)
jmp 0x12ef8d1
movl $0x0, 0x204(%rsp)
movl 0x204(%rsp), %eax
addq $0x438, %rsp # imm = 0x438
retq
nopl (%rax,%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,861
|
int ncnn::binary_op_6_11_16_25<ncnn::BinaryOp_x86_functor::binary_op_max>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op_6_11_16_25(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int elempack = a.elempack;
int size = w * h * d * elempack;
// type 6 11 16 25
c.create_like(a, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float b0 = b[0];
float* outptr = c.channel(q);
int i = 0;
#if __SSE2__
#if __AVX__
#if __AVX512F__
__m512 _b0_avx512 = _mm512_set1_ps(b0);
for (; i + 15 < size; i += 16)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0_avx512);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
#endif // __AVX512F__
__m256 _b0_avx = _mm256_set1_ps(b0);
for (; i + 7 < size; i += 8)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _outp = op.func_pack8(_p, _b0_avx);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
outptr += 8;
}
#endif // __AVX__
__m128 _b0 = _mm_set1_ps(b0);
for (; i + 3 < size; i += 4)
{
__m128 _p = _mm_load_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_store_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
#endif // __SSE2__
for (; i < size; i++)
{
*outptr = op.func(*ptr, b0);
ptr += 1;
outptr += 1;
}
}
return 0;
}
|
subq $0x338, %rsp # imm = 0x338
movq %rdi, 0x178(%rsp)
movq %rsi, 0x170(%rsp)
movq %rdx, 0x168(%rsp)
movq %rcx, 0x160(%rsp)
movq 0x178(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x158(%rsp)
movq 0x178(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x154(%rsp)
movq 0x178(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x150(%rsp)
movq 0x178(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x14c(%rsp)
movq 0x178(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x148(%rsp)
movl 0x158(%rsp), %eax
imull 0x154(%rsp), %eax
imull 0x150(%rsp), %eax
imull 0x148(%rsp), %eax
movl %eax, 0x144(%rsp)
movq 0x168(%rsp), %rdi
movq 0x178(%rsp), %rsi
movq 0x160(%rsp), %rax
movq 0x8(%rax), %rdx
callq 0x6fe40
movq 0x168(%rsp), %rax
movq %rax, 0x188(%rsp)
movq 0x188(%rsp), %rcx
movq %rcx, 0x50(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x5f(%rsp)
je 0x12f081d
movq 0x50(%rsp), %rax
movq %rax, 0x230(%rsp)
movq 0x230(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x5f(%rsp)
movb 0x5f(%rsp), %al
testb $0x1, %al
jne 0x12f0827
jmp 0x12f0837
movl $0xffffff9c, 0x184(%rsp) # imm = 0xFFFFFF9C
jmp 0x12f125d
movl $0x0, 0x140(%rsp)
movl 0x140(%rsp), %eax
cmpl 0x14c(%rsp), %eax
jge 0x12f1252
movq 0x178(%rsp), %rcx
movl 0x140(%rsp), %eax
leaq 0xf0(%rsp), %rdx
movq %rdx, 0x1a0(%rsp)
movq %rcx, 0x198(%rsp)
movl %eax, 0x194(%rsp)
movq 0x198(%rsp), %rax
movq %rax, 0x48(%rsp)
movb $0x0, 0x193(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x194(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xf0(%rsp), %r10
movq %r10, 0x2a0(%rsp)
movl %r9d, 0x29c(%rsp)
movl %r8d, 0x298(%rsp)
movl %edi, 0x294(%rsp)
movq %rsi, 0x288(%rsp)
movq %rdx, 0x280(%rsp)
movl %ecx, 0x27c(%rsp)
movq %rax, 0x270(%rsp)
movq 0x2a0(%rsp), %rcx
movq %rcx, 0x40(%rsp)
movq 0x288(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x280(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x27c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x270(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x29c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x298(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x294(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x2b0(%rsp)
movl $0x10, 0x2ac(%rsp)
movq 0x2b0(%rsp), %rax
movslq 0x2ac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x2ac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x48(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x118(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12f0a06
movq 0x48(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x130(%rsp)
movb $0x1, 0x193(%rsp)
testb $0x1, 0x193(%rsp)
jne 0x12f0b2f
leaq 0xf0(%rsp), %rax
movq %rax, 0x1b0(%rsp)
movq 0x1b0(%rsp), %rax
movq %rax, 0x300(%rsp)
movq 0x300(%rsp), %rax
movq %rax, 0x38(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f0ad5
movq 0x38(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2fc(%rsp) # imm = 0xFFFFFFFF
movl 0x2fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2f8(%rsp)
cmpl $0x1, 0x2f8(%rsp)
jne 0x12f0ad5
movq 0x38(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f0aa9
movq 0x38(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12f0aa7
jmp 0x12f0ad3
movq 0x38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x308(%rsp)
cmpq $0x0, 0x308(%rsp)
je 0x12f0ad1
movq 0x308(%rsp), %rdi
callq 0x5f480
jmp 0x12f0ad3
jmp 0x12f0ad5
movq 0x38(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f0b2d
movq %rax, %rdi
callq 0x678a0
jmp 0x12f0b2f
leaq 0xf0(%rsp), %rax
movq %rax, 0x1a8(%rsp)
movq 0x1a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x28(%rsp)
leaq 0xf0(%rsp), %rax
movq %rax, 0x1b8(%rsp)
movq 0x1b8(%rsp), %rax
movq %rax, 0x2f0(%rsp)
movq 0x2f0(%rsp), %rax
movq %rax, 0x30(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f0c08
movq 0x30(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2ec(%rsp) # imm = 0xFFFFFFFF
movl 0x2ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2e8(%rsp)
cmpl $0x1, 0x2e8(%rsp)
jne 0x12f0c08
movq 0x30(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f0bdc
movq 0x30(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12f0bda
jmp 0x12f0c06
movq 0x30(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x310(%rsp)
cmpq $0x0, 0x310(%rsp)
je 0x12f0c04
movq 0x310(%rsp), %rdi
callq 0x5f480
jmp 0x12f0c06
jmp 0x12f0c08
movq 0x30(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f0c60
movq %rax, %rdi
callq 0x678a0
movq 0x28(%rsp), %rax
movq %rax, 0x138(%rsp)
movq 0x170(%rsp), %rax
movq %rax, 0x330(%rsp)
movq $0x0, 0x328(%rsp)
movq 0x330(%rsp), %rax
movq (%rax), %rax
movq 0x328(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xec(%rsp)
movq 0x168(%rsp), %rcx
movl 0x140(%rsp), %eax
leaq 0x98(%rsp), %rdx
movq %rdx, 0x1d8(%rsp)
movq %rcx, 0x1d0(%rsp)
movl %eax, 0x1cc(%rsp)
movq 0x1d0(%rsp), %rax
movq %rax, 0x20(%rsp)
movb $0x0, 0x1cb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1cc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x98(%rsp), %r10
movq %r10, 0x268(%rsp)
movl %r9d, 0x264(%rsp)
movl %r8d, 0x260(%rsp)
movl %edi, 0x25c(%rsp)
movq %rsi, 0x250(%rsp)
movq %rdx, 0x248(%rsp)
movl %ecx, 0x244(%rsp)
movq %rax, 0x238(%rsp)
movq 0x268(%rsp), %rcx
movq %rcx, 0x18(%rsp)
movq 0x250(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x248(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x244(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x238(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x264(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x260(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x25c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x2c0(%rsp)
movl $0x10, 0x2bc(%rsp)
movq 0x2c0(%rsp), %rax
movslq 0x2bc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x2bc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x20(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12f0e5a
movq 0x20(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd8(%rsp)
movb $0x1, 0x1cb(%rsp)
testb $0x1, 0x1cb(%rsp)
jne 0x12f0f83
leaq 0x98(%rsp), %rax
movq %rax, 0x1e0(%rsp)
movq 0x1e0(%rsp), %rax
movq %rax, 0x2d0(%rsp)
movq 0x2d0(%rsp), %rax
movq %rax, 0x10(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f0f29
movq 0x10(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2cc(%rsp) # imm = 0xFFFFFFFF
movl 0x2cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2c8(%rsp)
cmpl $0x1, 0x2c8(%rsp)
jne 0x12f0f29
movq 0x10(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f0efd
movq 0x10(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12f0efb
jmp 0x12f0f27
movq 0x10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x320(%rsp)
cmpq $0x0, 0x320(%rsp)
je 0x12f0f25
movq 0x320(%rsp), %rdi
callq 0x5f480
jmp 0x12f0f27
jmp 0x12f0f29
movq 0x10(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f0f81
movq %rax, %rdi
callq 0x678a0
jmp 0x12f0f83
leaq 0x98(%rsp), %rax
movq %rax, 0x1e8(%rsp)
movq 0x1e8(%rsp), %rax
movq (%rax), %rax
movq %rax, (%rsp)
leaq 0x98(%rsp), %rax
movq %rax, 0x1c0(%rsp)
movq 0x1c0(%rsp), %rax
movq %rax, 0x2e0(%rsp)
movq 0x2e0(%rsp), %rax
movq %rax, 0x8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f105b
movq 0x8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2dc(%rsp) # imm = 0xFFFFFFFF
movl 0x2dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2d8(%rsp)
cmpl $0x1, 0x2d8(%rsp)
jne 0x12f105b
movq 0x8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f102f
movq 0x8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12f102d
jmp 0x12f1059
movq 0x8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x318(%rsp)
cmpq $0x0, 0x318(%rsp)
je 0x12f1057
movq 0x318(%rsp), %rdi
callq 0x5f480
jmp 0x12f1059
jmp 0x12f105b
movq 0x8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f10b3
movq %rax, %rdi
callq 0x678a0
movq (%rsp), %rax
movq %rax, 0xe0(%rsp)
movl $0x0, 0x94(%rsp)
movss 0xec(%rsp), %xmm0
movss %xmm0, 0x200(%rsp)
movaps 0x200(%rsp), %xmm0
shufps $0x0, %xmm0, %xmm0 # xmm0 = xmm0[0,0,0,0]
movaps %xmm0, 0x1f0(%rsp)
movaps 0x1f0(%rsp), %xmm0
movaps %xmm0, 0x80(%rsp)
movl 0x94(%rsp), %eax
addl $0x3, %eax
cmpl 0x144(%rsp), %eax
jge 0x12f11c4
movq 0x138(%rsp), %rax
movq %rax, 0x208(%rsp)
movq 0x208(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm0, 0x70(%rsp)
leaq 0x15f(%rsp), %rdi
leaq 0x70(%rsp), %rsi
leaq 0x80(%rsp), %rdx
callq 0x12f6c60
movaps %xmm0, 0x60(%rsp)
movq 0xe0(%rsp), %rax
movaps 0x60(%rsp), %xmm0
movq %rax, 0x228(%rsp)
movaps %xmm0, 0x210(%rsp)
movaps 0x210(%rsp), %xmm0
movq 0x228(%rsp), %rax
movaps %xmm0, (%rax)
movq 0x138(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x138(%rsp)
movq 0xe0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xe0(%rsp)
movl 0x94(%rsp), %eax
addl $0x4, %eax
movl %eax, 0x94(%rsp)
jmp 0x12f1100
jmp 0x12f11c6
movl 0x94(%rsp), %eax
cmpl 0x144(%rsp), %eax
jge 0x12f123a
movq 0x138(%rsp), %rsi
leaq 0x15f(%rsp), %rdi
leaq 0xec(%rsp), %rdx
callq 0x12f6ca0
movq 0xe0(%rsp), %rax
movss %xmm0, (%rax)
movq 0x138(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x138(%rsp)
movq 0xe0(%rsp), %rax
addq $0x4, %rax
movq %rax, 0xe0(%rsp)
movl 0x94(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x94(%rsp)
jmp 0x12f11c6
jmp 0x12f123c
movl 0x140(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x140(%rsp)
jmp 0x12f0842
movl $0x0, 0x184(%rsp)
movl 0x184(%rsp), %eax
addq $0x338, %rsp # imm = 0x338
retq
nopl (%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,862
|
int ncnn::binary_op_2_3_4_20<ncnn::BinaryOp_x86_functor::binary_op_max>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op_2_3_4_20(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = b.w;
int h = b.h;
int d = b.d;
int channels = b.c;
int elempack = b.elempack;
int size = w * h * d * elempack;
// type 2 3 4 20
c.create_like(b, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float a0 = a[0];
const float* ptr = b.channel(q);
float* outptr = c.channel(q);
int i = 0;
#if __SSE2__
#if __AVX__
#if __AVX512F__
__m512 _a0_avx512 = _mm512_set1_ps(a0);
for (; i + 15 < size; i += 16)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_a0_avx512, _p);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
#endif // __AVX512F__
__m256 _a0_avx = _mm256_set1_ps(a0);
for (; i + 7 < size; i += 8)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _outp = op.func_pack8(_a0_avx, _p);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
outptr += 8;
}
#endif // __AVX__
__m128 _a0 = _mm_set1_ps(a0);
for (; i + 3 < size; i += 4)
{
__m128 _p = _mm_load_ps(ptr);
__m128 _outp = op.func_pack4(_a0, _p);
_mm_store_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
#endif // __SSE2__
for (; i < size; i++)
{
*outptr = op.func(a0, *ptr);
ptr += 1;
outptr += 1;
}
}
return 0;
}
|
subq $0x338, %rsp # imm = 0x338
movq %rdi, 0x178(%rsp)
movq %rsi, 0x170(%rsp)
movq %rdx, 0x168(%rsp)
movq %rcx, 0x160(%rsp)
movq 0x170(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x158(%rsp)
movq 0x170(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x154(%rsp)
movq 0x170(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x150(%rsp)
movq 0x170(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x14c(%rsp)
movq 0x170(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x148(%rsp)
movl 0x158(%rsp), %eax
imull 0x154(%rsp), %eax
imull 0x150(%rsp), %eax
imull 0x148(%rsp), %eax
movl %eax, 0x144(%rsp)
movq 0x168(%rsp), %rdi
movq 0x170(%rsp), %rsi
movq 0x160(%rsp), %rax
movq 0x8(%rax), %rdx
callq 0x6fe40
movq 0x168(%rsp), %rax
movq %rax, 0x188(%rsp)
movq 0x188(%rsp), %rcx
movq %rcx, 0x50(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x5f(%rsp)
je 0x12f138d
movq 0x50(%rsp), %rax
movq %rax, 0x230(%rsp)
movq 0x230(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x5f(%rsp)
movb 0x5f(%rsp), %al
testb $0x1, %al
jne 0x12f1397
jmp 0x12f13a7
movl $0xffffff9c, 0x184(%rsp) # imm = 0xFFFFFF9C
jmp 0x12f1dcd
movl $0x0, 0x140(%rsp)
movl 0x140(%rsp), %eax
cmpl 0x14c(%rsp), %eax
jge 0x12f1dc2
movq 0x178(%rsp), %rax
movq %rax, 0x330(%rsp)
movq $0x0, 0x328(%rsp)
movq 0x330(%rsp), %rax
movq (%rax), %rax
movq 0x328(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x13c(%rsp)
movq 0x170(%rsp), %rcx
movl 0x140(%rsp), %eax
leaq 0xe8(%rsp), %rdx
movq %rdx, 0x1a0(%rsp)
movq %rcx, 0x198(%rsp)
movl %eax, 0x194(%rsp)
movq 0x198(%rsp), %rax
movq %rax, 0x48(%rsp)
movb $0x0, 0x193(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x194(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xe8(%rsp), %r10
movq %r10, 0x2a0(%rsp)
movl %r9d, 0x29c(%rsp)
movl %r8d, 0x298(%rsp)
movl %edi, 0x294(%rsp)
movq %rsi, 0x288(%rsp)
movq %rdx, 0x280(%rsp)
movl %ecx, 0x27c(%rsp)
movq %rax, 0x270(%rsp)
movq 0x2a0(%rsp), %rcx
movq %rcx, 0x40(%rsp)
movq 0x288(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x280(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x27c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x270(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x29c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x298(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x294(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x2b0(%rsp)
movl $0x10, 0x2ac(%rsp)
movq 0x2b0(%rsp), %rax
movslq 0x2ac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x2ac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x48(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x110(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12f15b3
movq 0x48(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x128(%rsp)
movb $0x1, 0x193(%rsp)
testb $0x1, 0x193(%rsp)
jne 0x12f16dc
leaq 0xe8(%rsp), %rax
movq %rax, 0x1b0(%rsp)
movq 0x1b0(%rsp), %rax
movq %rax, 0x300(%rsp)
movq 0x300(%rsp), %rax
movq %rax, 0x38(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f1682
movq 0x38(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2fc(%rsp) # imm = 0xFFFFFFFF
movl 0x2fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2f8(%rsp)
cmpl $0x1, 0x2f8(%rsp)
jne 0x12f1682
movq 0x38(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f1656
movq 0x38(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12f1654
jmp 0x12f1680
movq 0x38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x308(%rsp)
cmpq $0x0, 0x308(%rsp)
je 0x12f167e
movq 0x308(%rsp), %rdi
callq 0x5f480
jmp 0x12f1680
jmp 0x12f1682
movq 0x38(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f16da
movq %rax, %rdi
callq 0x678a0
jmp 0x12f16dc
leaq 0xe8(%rsp), %rax
movq %rax, 0x1a8(%rsp)
movq 0x1a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x28(%rsp)
leaq 0xe8(%rsp), %rax
movq %rax, 0x1b8(%rsp)
movq 0x1b8(%rsp), %rax
movq %rax, 0x2f0(%rsp)
movq 0x2f0(%rsp), %rax
movq %rax, 0x30(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f17b5
movq 0x30(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2ec(%rsp) # imm = 0xFFFFFFFF
movl 0x2ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2e8(%rsp)
cmpl $0x1, 0x2e8(%rsp)
jne 0x12f17b5
movq 0x30(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f1789
movq 0x30(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12f1787
jmp 0x12f17b3
movq 0x30(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x310(%rsp)
cmpq $0x0, 0x310(%rsp)
je 0x12f17b1
movq 0x310(%rsp), %rdi
callq 0x5f480
jmp 0x12f17b3
jmp 0x12f17b5
movq 0x30(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f180d
movq %rax, %rdi
callq 0x678a0
movq 0x28(%rsp), %rax
movq %rax, 0x130(%rsp)
movq 0x168(%rsp), %rcx
movl 0x140(%rsp), %eax
leaq 0x98(%rsp), %rdx
movq %rdx, 0x1d8(%rsp)
movq %rcx, 0x1d0(%rsp)
movl %eax, 0x1cc(%rsp)
movq 0x1d0(%rsp), %rax
movq %rax, 0x20(%rsp)
movb $0x0, 0x1cb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1cc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x98(%rsp), %r10
movq %r10, 0x268(%rsp)
movl %r9d, 0x264(%rsp)
movl %r8d, 0x260(%rsp)
movl %edi, 0x25c(%rsp)
movq %rsi, 0x250(%rsp)
movq %rdx, 0x248(%rsp)
movl %ecx, 0x244(%rsp)
movq %rax, 0x238(%rsp)
movq 0x268(%rsp), %rcx
movq %rcx, 0x18(%rsp)
movq 0x250(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x248(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x244(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x238(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x264(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x260(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x25c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x2c0(%rsp)
movl $0x10, 0x2bc(%rsp)
movq 0x2c0(%rsp), %rax
movslq 0x2bc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x2bc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x20(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12f19ca
movq 0x20(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd8(%rsp)
movb $0x1, 0x1cb(%rsp)
testb $0x1, 0x1cb(%rsp)
jne 0x12f1af3
leaq 0x98(%rsp), %rax
movq %rax, 0x1e0(%rsp)
movq 0x1e0(%rsp), %rax
movq %rax, 0x2d0(%rsp)
movq 0x2d0(%rsp), %rax
movq %rax, 0x10(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f1a99
movq 0x10(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2cc(%rsp) # imm = 0xFFFFFFFF
movl 0x2cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2c8(%rsp)
cmpl $0x1, 0x2c8(%rsp)
jne 0x12f1a99
movq 0x10(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f1a6d
movq 0x10(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12f1a6b
jmp 0x12f1a97
movq 0x10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x320(%rsp)
cmpq $0x0, 0x320(%rsp)
je 0x12f1a95
movq 0x320(%rsp), %rdi
callq 0x5f480
jmp 0x12f1a97
jmp 0x12f1a99
movq 0x10(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f1af1
movq %rax, %rdi
callq 0x678a0
jmp 0x12f1af3
leaq 0x98(%rsp), %rax
movq %rax, 0x1e8(%rsp)
movq 0x1e8(%rsp), %rax
movq (%rax), %rax
movq %rax, (%rsp)
leaq 0x98(%rsp), %rax
movq %rax, 0x1c0(%rsp)
movq 0x1c0(%rsp), %rax
movq %rax, 0x2e0(%rsp)
movq 0x2e0(%rsp), %rax
movq %rax, 0x8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f1bcb
movq 0x8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2dc(%rsp) # imm = 0xFFFFFFFF
movl 0x2dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2d8(%rsp)
cmpl $0x1, 0x2d8(%rsp)
jne 0x12f1bcb
movq 0x8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f1b9f
movq 0x8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12f1b9d
jmp 0x12f1bc9
movq 0x8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x318(%rsp)
cmpq $0x0, 0x318(%rsp)
je 0x12f1bc7
movq 0x318(%rsp), %rdi
callq 0x5f480
jmp 0x12f1bc9
jmp 0x12f1bcb
movq 0x8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f1c23
movq %rax, %rdi
callq 0x678a0
movq (%rsp), %rax
movq %rax, 0xe0(%rsp)
movl $0x0, 0x94(%rsp)
movss 0x13c(%rsp), %xmm0
movss %xmm0, 0x200(%rsp)
movaps 0x200(%rsp), %xmm0
shufps $0x0, %xmm0, %xmm0 # xmm0 = xmm0[0,0,0,0]
movaps %xmm0, 0x1f0(%rsp)
movaps 0x1f0(%rsp), %xmm0
movaps %xmm0, 0x80(%rsp)
movl 0x94(%rsp), %eax
addl $0x3, %eax
cmpl 0x144(%rsp), %eax
jge 0x12f1d34
movq 0x130(%rsp), %rax
movq %rax, 0x208(%rsp)
movq 0x208(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm0, 0x70(%rsp)
leaq 0x15f(%rsp), %rdi
leaq 0x80(%rsp), %rsi
leaq 0x70(%rsp), %rdx
callq 0x12f6c60
movaps %xmm0, 0x60(%rsp)
movq 0xe0(%rsp), %rax
movaps 0x60(%rsp), %xmm0
movq %rax, 0x228(%rsp)
movaps %xmm0, 0x210(%rsp)
movaps 0x210(%rsp), %xmm0
movq 0x228(%rsp), %rax
movaps %xmm0, (%rax)
movq 0x130(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x130(%rsp)
movq 0xe0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xe0(%rsp)
movl 0x94(%rsp), %eax
addl $0x4, %eax
movl %eax, 0x94(%rsp)
jmp 0x12f1c70
jmp 0x12f1d36
movl 0x94(%rsp), %eax
cmpl 0x144(%rsp), %eax
jge 0x12f1daa
movq 0x130(%rsp), %rdx
leaq 0x15f(%rsp), %rdi
leaq 0x13c(%rsp), %rsi
callq 0x12f6ca0
movq 0xe0(%rsp), %rax
movss %xmm0, (%rax)
movq 0x130(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x130(%rsp)
movq 0xe0(%rsp), %rax
addq $0x4, %rax
movq %rax, 0xe0(%rsp)
movl 0x94(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x94(%rsp)
jmp 0x12f1d36
jmp 0x12f1dac
movl 0x140(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x140(%rsp)
jmp 0x12f13b2
movl $0x0, 0x184(%rsp)
movl 0x184(%rsp), %eax
addq $0x338, %rsp # imm = 0x338
retq
nopl (%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,863
|
int ncnn::binary_op_7_13_19_29<ncnn::BinaryOp_x86_functor::binary_op_min>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op_7_13_19_29(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int elempack = a.elempack;
int size = w * h * d * elempack;
// type 7 13 19 29
c.create_like(a, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
int i = 0;
#if __SSE2__
#if __AVX__
#if __AVX512F__
for (; i + 15 < size; i += 16)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
ptr1 += 16;
outptr += 16;
}
#endif // __AVX512F__
for (; i + 7 < size; i += 8)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _p1 = _mm256_loadu_ps(ptr1);
__m256 _outp = op.func_pack8(_p, _p1);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
ptr1 += 8;
outptr += 8;
}
#endif // __AVX__
for (; i + 3 < size; i += 4)
{
__m128 _p = _mm_load_ps(ptr);
__m128 _p1 = _mm_load_ps(ptr1);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_store_ps(outptr, _outp);
ptr += 4;
ptr1 += 4;
outptr += 4;
}
#endif // __SSE2__
for (; i < size; i++)
{
*outptr = op.func(*ptr, *ptr1);
ptr += 1;
ptr1 += 1;
outptr += 1;
}
}
return 0;
}
|
subq $0x438, %rsp # imm = 0x438
movq %rdi, 0x1f8(%rsp)
movq %rsi, 0x1f0(%rsp)
movq %rdx, 0x1e8(%rsp)
movq %rcx, 0x1e0(%rsp)
movq 0x1f8(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x1d8(%rsp)
movq 0x1f8(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x1d4(%rsp)
movq 0x1f8(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x1d0(%rsp)
movq 0x1f8(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x1cc(%rsp)
movq 0x1f8(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x1c8(%rsp)
movl 0x1d8(%rsp), %eax
imull 0x1d4(%rsp), %eax
imull 0x1d0(%rsp), %eax
imull 0x1c8(%rsp), %eax
movl %eax, 0x1c4(%rsp)
movq 0x1e8(%rsp), %rdi
movq 0x1f8(%rsp), %rsi
movq 0x1e0(%rsp), %rax
movq 0x8(%rax), %rdx
callq 0x6fe40
movq 0x1e8(%rsp), %rax
movq %rax, 0x208(%rsp)
movq 0x208(%rsp), %rcx
movq %rcx, 0x80(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x8f(%rsp)
je 0x12f1f09
movq 0x80(%rsp), %rax
movq %rax, 0x2c8(%rsp)
movq 0x2c8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x8f(%rsp)
movb 0x8f(%rsp), %al
testb $0x1, %al
jne 0x12f1f16
jmp 0x12f1f26
movl $0xffffff9c, 0x204(%rsp) # imm = 0xFFFFFF9C
jmp 0x12f2d4c
movl $0x0, 0x1c0(%rsp)
movl 0x1c0(%rsp), %eax
cmpl 0x1cc(%rsp), %eax
jge 0x12f2d41
movq 0x1f8(%rsp), %rcx
movl 0x1c0(%rsp), %eax
leaq 0x170(%rsp), %rdx
movq %rdx, 0x238(%rsp)
movq %rcx, 0x230(%rsp)
movl %eax, 0x22c(%rsp)
movq 0x230(%rsp), %rax
movq %rax, 0x78(%rsp)
movb $0x0, 0x22b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x170(%rsp), %r10
movq %r10, 0x338(%rsp)
movl %r9d, 0x334(%rsp)
movl %r8d, 0x330(%rsp)
movl %edi, 0x32c(%rsp)
movq %rsi, 0x320(%rsp)
movq %rdx, 0x318(%rsp)
movl %ecx, 0x314(%rsp)
movq %rax, 0x308(%rsp)
movq 0x338(%rsp), %rcx
movq %rcx, 0x70(%rsp)
movq 0x320(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x318(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x314(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x308(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x334(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x330(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x32c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x390(%rsp)
movl $0x10, 0x38c(%rsp)
movq 0x390(%rsp), %rax
movslq 0x38c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x38c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x78(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x198(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12f20f5
movq 0x78(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1b0(%rsp)
movb $0x1, 0x22b(%rsp)
testb $0x1, 0x22b(%rsp)
jne 0x12f221e
leaq 0x170(%rsp), %rax
movq %rax, 0x250(%rsp)
movq 0x250(%rsp), %rax
movq %rax, 0x400(%rsp)
movq 0x400(%rsp), %rax
movq %rax, 0x68(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f21c4
movq 0x68(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fc(%rsp) # imm = 0xFFFFFFFF
movl 0x3fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f8(%rsp)
cmpl $0x1, 0x3f8(%rsp)
jne 0x12f21c4
movq 0x68(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f2198
movq 0x68(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12f2196
jmp 0x12f21c2
movq 0x68(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x408(%rsp)
cmpq $0x0, 0x408(%rsp)
je 0x12f21c0
movq 0x408(%rsp), %rdi
callq 0x5f480
jmp 0x12f21c2
jmp 0x12f21c4
movq 0x68(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f221c
movq %rax, %rdi
callq 0x678a0
jmp 0x12f221e
leaq 0x170(%rsp), %rax
movq %rax, 0x248(%rsp)
movq 0x248(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x58(%rsp)
leaq 0x170(%rsp), %rax
movq %rax, 0x260(%rsp)
movq 0x260(%rsp), %rax
movq %rax, 0x3e0(%rsp)
movq 0x3e0(%rsp), %rax
movq %rax, 0x60(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f22f7
movq 0x60(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3dc(%rsp) # imm = 0xFFFFFFFF
movl 0x3dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3d8(%rsp)
cmpl $0x1, 0x3d8(%rsp)
jne 0x12f22f7
movq 0x60(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f22cb
movq 0x60(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12f22c9
jmp 0x12f22f5
movq 0x60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x418(%rsp)
cmpq $0x0, 0x418(%rsp)
je 0x12f22f3
movq 0x418(%rsp), %rdi
callq 0x5f480
jmp 0x12f22f5
jmp 0x12f22f7
movq 0x60(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f234f
movq %rax, %rdi
callq 0x678a0
movq 0x58(%rsp), %rax
movq %rax, 0x1b8(%rsp)
movq 0x1f0(%rsp), %rcx
movl 0x1c0(%rsp), %eax
leaq 0x120(%rsp), %rdx
movq %rdx, 0x220(%rsp)
movq %rcx, 0x218(%rsp)
movl %eax, 0x214(%rsp)
movq 0x218(%rsp), %rax
movq %rax, 0x50(%rsp)
movb $0x0, 0x213(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x214(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x120(%rsp), %r10
movq %r10, 0x370(%rsp)
movl %r9d, 0x36c(%rsp)
movl %r8d, 0x368(%rsp)
movl %edi, 0x364(%rsp)
movq %rsi, 0x358(%rsp)
movq %rdx, 0x350(%rsp)
movl %ecx, 0x34c(%rsp)
movq %rax, 0x340(%rsp)
movq 0x370(%rsp), %rcx
movq %rcx, 0x48(%rsp)
movq 0x358(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x350(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x34c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x340(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x36c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x368(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x364(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x380(%rsp)
movl $0x10, 0x37c(%rsp)
movq 0x380(%rsp), %rax
movslq 0x37c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x37c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x50(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x148(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12f250c
movq 0x50(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x160(%rsp)
movb $0x1, 0x213(%rsp)
testb $0x1, 0x213(%rsp)
jne 0x12f2635
leaq 0x120(%rsp), %rax
movq %rax, 0x258(%rsp)
movq 0x258(%rsp), %rax
movq %rax, 0x3f0(%rsp)
movq 0x3f0(%rsp), %rax
movq %rax, 0x40(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f25db
movq 0x40(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ec(%rsp) # imm = 0xFFFFFFFF
movl 0x3ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e8(%rsp)
cmpl $0x1, 0x3e8(%rsp)
jne 0x12f25db
movq 0x40(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f25af
movq 0x40(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12f25ad
jmp 0x12f25d9
movq 0x40(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x410(%rsp)
cmpq $0x0, 0x410(%rsp)
je 0x12f25d7
movq 0x410(%rsp), %rdi
callq 0x5f480
jmp 0x12f25d9
jmp 0x12f25db
movq 0x40(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f2633
movq %rax, %rdi
callq 0x678a0
jmp 0x12f2635
leaq 0x120(%rsp), %rax
movq %rax, 0x240(%rsp)
movq 0x240(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x30(%rsp)
leaq 0x120(%rsp), %rax
movq %rax, 0x268(%rsp)
movq 0x268(%rsp), %rax
movq %rax, 0x3d0(%rsp)
movq 0x3d0(%rsp), %rax
movq %rax, 0x38(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f270e
movq 0x38(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3cc(%rsp) # imm = 0xFFFFFFFF
movl 0x3cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c8(%rsp)
cmpl $0x1, 0x3c8(%rsp)
jne 0x12f270e
movq 0x38(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f26e2
movq 0x38(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12f26e0
jmp 0x12f270c
movq 0x38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x420(%rsp)
cmpq $0x0, 0x420(%rsp)
je 0x12f270a
movq 0x420(%rsp), %rdi
callq 0x5f480
jmp 0x12f270c
jmp 0x12f270e
movq 0x38(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f2766
movq %rax, %rdi
callq 0x678a0
movq 0x30(%rsp), %rax
movq %rax, 0x168(%rsp)
movq 0x1e8(%rsp), %rcx
movl 0x1c0(%rsp), %eax
leaq 0xd0(%rsp), %rdx
movq %rdx, 0x288(%rsp)
movq %rcx, 0x280(%rsp)
movl %eax, 0x27c(%rsp)
movq 0x280(%rsp), %rax
movq %rax, 0x28(%rsp)
movb $0x0, 0x27b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x27c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xd0(%rsp), %r10
movq %r10, 0x300(%rsp)
movl %r9d, 0x2fc(%rsp)
movl %r8d, 0x2f8(%rsp)
movl %edi, 0x2f4(%rsp)
movq %rsi, 0x2e8(%rsp)
movq %rdx, 0x2e0(%rsp)
movl %ecx, 0x2dc(%rsp)
movq %rax, 0x2d0(%rsp)
movq 0x300(%rsp), %rcx
movq %rcx, 0x20(%rsp)
movq 0x2e8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2e0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2dc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2d0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2fc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3a0(%rsp)
movl $0x10, 0x39c(%rsp)
movq 0x3a0(%rsp), %rax
movslq 0x39c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x39c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x28(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12f2923
movq 0x28(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x110(%rsp)
movb $0x1, 0x27b(%rsp)
testb $0x1, 0x27b(%rsp)
jne 0x12f2a4c
leaq 0xd0(%rsp), %rax
movq %rax, 0x290(%rsp)
movq 0x290(%rsp), %rax
movq %rax, 0x3b0(%rsp)
movq 0x3b0(%rsp), %rax
movq %rax, 0x18(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f29f2
movq 0x18(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ac(%rsp) # imm = 0xFFFFFFFF
movl 0x3ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a8(%rsp)
cmpl $0x1, 0x3a8(%rsp)
jne 0x12f29f2
movq 0x18(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f29c6
movq 0x18(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12f29c4
jmp 0x12f29f0
movq 0x18(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x430(%rsp)
cmpq $0x0, 0x430(%rsp)
je 0x12f29ee
movq 0x430(%rsp), %rdi
callq 0x5f480
jmp 0x12f29f0
jmp 0x12f29f2
movq 0x18(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f2a4a
movq %rax, %rdi
callq 0x678a0
jmp 0x12f2a4c
leaq 0xd0(%rsp), %rax
movq %rax, 0x298(%rsp)
movq 0x298(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8(%rsp)
leaq 0xd0(%rsp), %rax
movq %rax, 0x270(%rsp)
movq 0x270(%rsp), %rax
movq %rax, 0x3c0(%rsp)
movq 0x3c0(%rsp), %rax
movq %rax, 0x10(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f2b25
movq 0x10(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bc(%rsp) # imm = 0xFFFFFFFF
movl 0x3bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b8(%rsp)
cmpl $0x1, 0x3b8(%rsp)
jne 0x12f2b25
movq 0x10(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f2af9
movq 0x10(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12f2af7
jmp 0x12f2b23
movq 0x10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x428(%rsp)
cmpq $0x0, 0x428(%rsp)
je 0x12f2b21
movq 0x428(%rsp), %rdi
callq 0x5f480
jmp 0x12f2b23
jmp 0x12f2b25
movq 0x10(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f2b7d
movq %rax, %rdi
callq 0x678a0
movq 0x8(%rsp), %rax
movq %rax, 0x118(%rsp)
movl $0x0, 0xcc(%rsp)
movl 0xcc(%rsp), %eax
addl $0x3, %eax
cmpl 0x1c4(%rsp), %eax
jge 0x12f2c9c
movq 0x1b8(%rsp), %rax
movq %rax, 0x2a8(%rsp)
movq 0x2a8(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm0, 0xb0(%rsp)
movq 0x168(%rsp), %rax
movq %rax, 0x2a0(%rsp)
movq 0x2a0(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm0, 0xa0(%rsp)
leaq 0x1df(%rsp), %rdi
leaq 0xb0(%rsp), %rsi
leaq 0xa0(%rsp), %rdx
callq 0x12f6cd0
movaps %xmm0, 0x90(%rsp)
movq 0x118(%rsp), %rax
movaps 0x90(%rsp), %xmm0
movq %rax, 0x2c0(%rsp)
movaps %xmm0, 0x2b0(%rsp)
movaps 0x2b0(%rsp), %xmm0
movq 0x2c0(%rsp), %rax
movaps %xmm0, (%rax)
movq 0x1b8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1b8(%rsp)
movq 0x168(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x168(%rsp)
movq 0x118(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x118(%rsp)
movl 0xcc(%rsp), %eax
addl $0x4, %eax
movl %eax, 0xcc(%rsp)
jmp 0x12f2b95
jmp 0x12f2c9e
movl 0xcc(%rsp), %eax
cmpl 0x1c4(%rsp), %eax
jge 0x12f2d29
movq 0x1b8(%rsp), %rsi
movq 0x168(%rsp), %rdx
leaq 0x1df(%rsp), %rdi
callq 0x12f6d10
movq 0x118(%rsp), %rax
movss %xmm0, (%rax)
movq 0x1b8(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x1b8(%rsp)
movq 0x168(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x168(%rsp)
movq 0x118(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x118(%rsp)
movl 0xcc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xcc(%rsp)
jmp 0x12f2c9e
jmp 0x12f2d2b
movl 0x1c0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c0(%rsp)
jmp 0x12f1f31
movl $0x0, 0x204(%rsp)
movl 0x204(%rsp), %eax
addq $0x438, %rsp # imm = 0x438
retq
nopl (%rax,%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,864
|
int ncnn::binary_op_6_11_16_25<ncnn::BinaryOp_x86_functor::binary_op_min>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op_6_11_16_25(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int elempack = a.elempack;
int size = w * h * d * elempack;
// type 6 11 16 25
c.create_like(a, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float b0 = b[0];
float* outptr = c.channel(q);
int i = 0;
#if __SSE2__
#if __AVX__
#if __AVX512F__
__m512 _b0_avx512 = _mm512_set1_ps(b0);
for (; i + 15 < size; i += 16)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0_avx512);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
#endif // __AVX512F__
__m256 _b0_avx = _mm256_set1_ps(b0);
for (; i + 7 < size; i += 8)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _outp = op.func_pack8(_p, _b0_avx);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
outptr += 8;
}
#endif // __AVX__
__m128 _b0 = _mm_set1_ps(b0);
for (; i + 3 < size; i += 4)
{
__m128 _p = _mm_load_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_store_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
#endif // __SSE2__
for (; i < size; i++)
{
*outptr = op.func(*ptr, b0);
ptr += 1;
outptr += 1;
}
}
return 0;
}
|
subq $0x338, %rsp # imm = 0x338
movq %rdi, 0x178(%rsp)
movq %rsi, 0x170(%rsp)
movq %rdx, 0x168(%rsp)
movq %rcx, 0x160(%rsp)
movq 0x178(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x158(%rsp)
movq 0x178(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x154(%rsp)
movq 0x178(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x150(%rsp)
movq 0x178(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x14c(%rsp)
movq 0x178(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x148(%rsp)
movl 0x158(%rsp), %eax
imull 0x154(%rsp), %eax
imull 0x150(%rsp), %eax
imull 0x148(%rsp), %eax
movl %eax, 0x144(%rsp)
movq 0x168(%rsp), %rdi
movq 0x178(%rsp), %rsi
movq 0x160(%rsp), %rax
movq 0x8(%rax), %rdx
callq 0x6fe40
movq 0x168(%rsp), %rax
movq %rax, 0x188(%rsp)
movq 0x188(%rsp), %rcx
movq %rcx, 0x50(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x5f(%rsp)
je 0x12f2e7d
movq 0x50(%rsp), %rax
movq %rax, 0x230(%rsp)
movq 0x230(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x5f(%rsp)
movb 0x5f(%rsp), %al
testb $0x1, %al
jne 0x12f2e87
jmp 0x12f2e97
movl $0xffffff9c, 0x184(%rsp) # imm = 0xFFFFFF9C
jmp 0x12f38bd
movl $0x0, 0x140(%rsp)
movl 0x140(%rsp), %eax
cmpl 0x14c(%rsp), %eax
jge 0x12f38b2
movq 0x178(%rsp), %rcx
movl 0x140(%rsp), %eax
leaq 0xf0(%rsp), %rdx
movq %rdx, 0x1a0(%rsp)
movq %rcx, 0x198(%rsp)
movl %eax, 0x194(%rsp)
movq 0x198(%rsp), %rax
movq %rax, 0x48(%rsp)
movb $0x0, 0x193(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x194(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xf0(%rsp), %r10
movq %r10, 0x2a0(%rsp)
movl %r9d, 0x29c(%rsp)
movl %r8d, 0x298(%rsp)
movl %edi, 0x294(%rsp)
movq %rsi, 0x288(%rsp)
movq %rdx, 0x280(%rsp)
movl %ecx, 0x27c(%rsp)
movq %rax, 0x270(%rsp)
movq 0x2a0(%rsp), %rcx
movq %rcx, 0x40(%rsp)
movq 0x288(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x280(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x27c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x270(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x29c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x298(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x294(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x2b0(%rsp)
movl $0x10, 0x2ac(%rsp)
movq 0x2b0(%rsp), %rax
movslq 0x2ac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x2ac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x48(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x118(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12f3066
movq 0x48(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x130(%rsp)
movb $0x1, 0x193(%rsp)
testb $0x1, 0x193(%rsp)
jne 0x12f318f
leaq 0xf0(%rsp), %rax
movq %rax, 0x1b0(%rsp)
movq 0x1b0(%rsp), %rax
movq %rax, 0x300(%rsp)
movq 0x300(%rsp), %rax
movq %rax, 0x38(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f3135
movq 0x38(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2fc(%rsp) # imm = 0xFFFFFFFF
movl 0x2fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2f8(%rsp)
cmpl $0x1, 0x2f8(%rsp)
jne 0x12f3135
movq 0x38(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f3109
movq 0x38(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12f3107
jmp 0x12f3133
movq 0x38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x308(%rsp)
cmpq $0x0, 0x308(%rsp)
je 0x12f3131
movq 0x308(%rsp), %rdi
callq 0x5f480
jmp 0x12f3133
jmp 0x12f3135
movq 0x38(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f318d
movq %rax, %rdi
callq 0x678a0
jmp 0x12f318f
leaq 0xf0(%rsp), %rax
movq %rax, 0x1a8(%rsp)
movq 0x1a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x28(%rsp)
leaq 0xf0(%rsp), %rax
movq %rax, 0x1b8(%rsp)
movq 0x1b8(%rsp), %rax
movq %rax, 0x2f0(%rsp)
movq 0x2f0(%rsp), %rax
movq %rax, 0x30(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f3268
movq 0x30(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2ec(%rsp) # imm = 0xFFFFFFFF
movl 0x2ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2e8(%rsp)
cmpl $0x1, 0x2e8(%rsp)
jne 0x12f3268
movq 0x30(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f323c
movq 0x30(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12f323a
jmp 0x12f3266
movq 0x30(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x310(%rsp)
cmpq $0x0, 0x310(%rsp)
je 0x12f3264
movq 0x310(%rsp), %rdi
callq 0x5f480
jmp 0x12f3266
jmp 0x12f3268
movq 0x30(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f32c0
movq %rax, %rdi
callq 0x678a0
movq 0x28(%rsp), %rax
movq %rax, 0x138(%rsp)
movq 0x170(%rsp), %rax
movq %rax, 0x330(%rsp)
movq $0x0, 0x328(%rsp)
movq 0x330(%rsp), %rax
movq (%rax), %rax
movq 0x328(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xec(%rsp)
movq 0x168(%rsp), %rcx
movl 0x140(%rsp), %eax
leaq 0x98(%rsp), %rdx
movq %rdx, 0x1d8(%rsp)
movq %rcx, 0x1d0(%rsp)
movl %eax, 0x1cc(%rsp)
movq 0x1d0(%rsp), %rax
movq %rax, 0x20(%rsp)
movb $0x0, 0x1cb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1cc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x98(%rsp), %r10
movq %r10, 0x268(%rsp)
movl %r9d, 0x264(%rsp)
movl %r8d, 0x260(%rsp)
movl %edi, 0x25c(%rsp)
movq %rsi, 0x250(%rsp)
movq %rdx, 0x248(%rsp)
movl %ecx, 0x244(%rsp)
movq %rax, 0x238(%rsp)
movq 0x268(%rsp), %rcx
movq %rcx, 0x18(%rsp)
movq 0x250(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x248(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x244(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x238(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x264(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x260(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x25c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x2c0(%rsp)
movl $0x10, 0x2bc(%rsp)
movq 0x2c0(%rsp), %rax
movslq 0x2bc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x2bc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x20(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12f34ba
movq 0x20(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd8(%rsp)
movb $0x1, 0x1cb(%rsp)
testb $0x1, 0x1cb(%rsp)
jne 0x12f35e3
leaq 0x98(%rsp), %rax
movq %rax, 0x1e0(%rsp)
movq 0x1e0(%rsp), %rax
movq %rax, 0x2d0(%rsp)
movq 0x2d0(%rsp), %rax
movq %rax, 0x10(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f3589
movq 0x10(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2cc(%rsp) # imm = 0xFFFFFFFF
movl 0x2cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2c8(%rsp)
cmpl $0x1, 0x2c8(%rsp)
jne 0x12f3589
movq 0x10(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f355d
movq 0x10(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12f355b
jmp 0x12f3587
movq 0x10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x320(%rsp)
cmpq $0x0, 0x320(%rsp)
je 0x12f3585
movq 0x320(%rsp), %rdi
callq 0x5f480
jmp 0x12f3587
jmp 0x12f3589
movq 0x10(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f35e1
movq %rax, %rdi
callq 0x678a0
jmp 0x12f35e3
leaq 0x98(%rsp), %rax
movq %rax, 0x1e8(%rsp)
movq 0x1e8(%rsp), %rax
movq (%rax), %rax
movq %rax, (%rsp)
leaq 0x98(%rsp), %rax
movq %rax, 0x1c0(%rsp)
movq 0x1c0(%rsp), %rax
movq %rax, 0x2e0(%rsp)
movq 0x2e0(%rsp), %rax
movq %rax, 0x8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f36bb
movq 0x8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2dc(%rsp) # imm = 0xFFFFFFFF
movl 0x2dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2d8(%rsp)
cmpl $0x1, 0x2d8(%rsp)
jne 0x12f36bb
movq 0x8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f368f
movq 0x8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12f368d
jmp 0x12f36b9
movq 0x8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x318(%rsp)
cmpq $0x0, 0x318(%rsp)
je 0x12f36b7
movq 0x318(%rsp), %rdi
callq 0x5f480
jmp 0x12f36b9
jmp 0x12f36bb
movq 0x8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f3713
movq %rax, %rdi
callq 0x678a0
movq (%rsp), %rax
movq %rax, 0xe0(%rsp)
movl $0x0, 0x94(%rsp)
movss 0xec(%rsp), %xmm0
movss %xmm0, 0x200(%rsp)
movaps 0x200(%rsp), %xmm0
shufps $0x0, %xmm0, %xmm0 # xmm0 = xmm0[0,0,0,0]
movaps %xmm0, 0x1f0(%rsp)
movaps 0x1f0(%rsp), %xmm0
movaps %xmm0, 0x80(%rsp)
movl 0x94(%rsp), %eax
addl $0x3, %eax
cmpl 0x144(%rsp), %eax
jge 0x12f3824
movq 0x138(%rsp), %rax
movq %rax, 0x208(%rsp)
movq 0x208(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm0, 0x70(%rsp)
leaq 0x15f(%rsp), %rdi
leaq 0x70(%rsp), %rsi
leaq 0x80(%rsp), %rdx
callq 0x12f6cd0
movaps %xmm0, 0x60(%rsp)
movq 0xe0(%rsp), %rax
movaps 0x60(%rsp), %xmm0
movq %rax, 0x228(%rsp)
movaps %xmm0, 0x210(%rsp)
movaps 0x210(%rsp), %xmm0
movq 0x228(%rsp), %rax
movaps %xmm0, (%rax)
movq 0x138(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x138(%rsp)
movq 0xe0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xe0(%rsp)
movl 0x94(%rsp), %eax
addl $0x4, %eax
movl %eax, 0x94(%rsp)
jmp 0x12f3760
jmp 0x12f3826
movl 0x94(%rsp), %eax
cmpl 0x144(%rsp), %eax
jge 0x12f389a
movq 0x138(%rsp), %rsi
leaq 0x15f(%rsp), %rdi
leaq 0xec(%rsp), %rdx
callq 0x12f6d10
movq 0xe0(%rsp), %rax
movss %xmm0, (%rax)
movq 0x138(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x138(%rsp)
movq 0xe0(%rsp), %rax
addq $0x4, %rax
movq %rax, 0xe0(%rsp)
movl 0x94(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x94(%rsp)
jmp 0x12f3826
jmp 0x12f389c
movl 0x140(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x140(%rsp)
jmp 0x12f2ea2
movl $0x0, 0x184(%rsp)
movl 0x184(%rsp), %eax
addq $0x338, %rsp # imm = 0x338
retq
nopl (%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,865
|
int ncnn::binary_op_2_3_4_20<ncnn::BinaryOp_x86_functor::binary_op_min>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op_2_3_4_20(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = b.w;
int h = b.h;
int d = b.d;
int channels = b.c;
int elempack = b.elempack;
int size = w * h * d * elempack;
// type 2 3 4 20
c.create_like(b, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float a0 = a[0];
const float* ptr = b.channel(q);
float* outptr = c.channel(q);
int i = 0;
#if __SSE2__
#if __AVX__
#if __AVX512F__
__m512 _a0_avx512 = _mm512_set1_ps(a0);
for (; i + 15 < size; i += 16)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_a0_avx512, _p);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
#endif // __AVX512F__
__m256 _a0_avx = _mm256_set1_ps(a0);
for (; i + 7 < size; i += 8)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _outp = op.func_pack8(_a0_avx, _p);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
outptr += 8;
}
#endif // __AVX__
__m128 _a0 = _mm_set1_ps(a0);
for (; i + 3 < size; i += 4)
{
__m128 _p = _mm_load_ps(ptr);
__m128 _outp = op.func_pack4(_a0, _p);
_mm_store_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
#endif // __SSE2__
for (; i < size; i++)
{
*outptr = op.func(a0, *ptr);
ptr += 1;
outptr += 1;
}
}
return 0;
}
|
subq $0x338, %rsp # imm = 0x338
movq %rdi, 0x178(%rsp)
movq %rsi, 0x170(%rsp)
movq %rdx, 0x168(%rsp)
movq %rcx, 0x160(%rsp)
movq 0x170(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x158(%rsp)
movq 0x170(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x154(%rsp)
movq 0x170(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x150(%rsp)
movq 0x170(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x14c(%rsp)
movq 0x170(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x148(%rsp)
movl 0x158(%rsp), %eax
imull 0x154(%rsp), %eax
imull 0x150(%rsp), %eax
imull 0x148(%rsp), %eax
movl %eax, 0x144(%rsp)
movq 0x168(%rsp), %rdi
movq 0x170(%rsp), %rsi
movq 0x160(%rsp), %rax
movq 0x8(%rax), %rdx
callq 0x6fe40
movq 0x168(%rsp), %rax
movq %rax, 0x188(%rsp)
movq 0x188(%rsp), %rcx
movq %rcx, 0x50(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x5f(%rsp)
je 0x12f39ed
movq 0x50(%rsp), %rax
movq %rax, 0x230(%rsp)
movq 0x230(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x5f(%rsp)
movb 0x5f(%rsp), %al
testb $0x1, %al
jne 0x12f39f7
jmp 0x12f3a07
movl $0xffffff9c, 0x184(%rsp) # imm = 0xFFFFFF9C
jmp 0x12f442d
movl $0x0, 0x140(%rsp)
movl 0x140(%rsp), %eax
cmpl 0x14c(%rsp), %eax
jge 0x12f4422
movq 0x178(%rsp), %rax
movq %rax, 0x330(%rsp)
movq $0x0, 0x328(%rsp)
movq 0x330(%rsp), %rax
movq (%rax), %rax
movq 0x328(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x13c(%rsp)
movq 0x170(%rsp), %rcx
movl 0x140(%rsp), %eax
leaq 0xe8(%rsp), %rdx
movq %rdx, 0x1a0(%rsp)
movq %rcx, 0x198(%rsp)
movl %eax, 0x194(%rsp)
movq 0x198(%rsp), %rax
movq %rax, 0x48(%rsp)
movb $0x0, 0x193(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x194(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xe8(%rsp), %r10
movq %r10, 0x2a0(%rsp)
movl %r9d, 0x29c(%rsp)
movl %r8d, 0x298(%rsp)
movl %edi, 0x294(%rsp)
movq %rsi, 0x288(%rsp)
movq %rdx, 0x280(%rsp)
movl %ecx, 0x27c(%rsp)
movq %rax, 0x270(%rsp)
movq 0x2a0(%rsp), %rcx
movq %rcx, 0x40(%rsp)
movq 0x288(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x280(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x27c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x270(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x29c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x298(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x294(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x2b0(%rsp)
movl $0x10, 0x2ac(%rsp)
movq 0x2b0(%rsp), %rax
movslq 0x2ac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x2ac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x48(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x110(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12f3c13
movq 0x48(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x128(%rsp)
movb $0x1, 0x193(%rsp)
testb $0x1, 0x193(%rsp)
jne 0x12f3d3c
leaq 0xe8(%rsp), %rax
movq %rax, 0x1b0(%rsp)
movq 0x1b0(%rsp), %rax
movq %rax, 0x300(%rsp)
movq 0x300(%rsp), %rax
movq %rax, 0x38(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f3ce2
movq 0x38(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2fc(%rsp) # imm = 0xFFFFFFFF
movl 0x2fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2f8(%rsp)
cmpl $0x1, 0x2f8(%rsp)
jne 0x12f3ce2
movq 0x38(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f3cb6
movq 0x38(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12f3cb4
jmp 0x12f3ce0
movq 0x38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x308(%rsp)
cmpq $0x0, 0x308(%rsp)
je 0x12f3cde
movq 0x308(%rsp), %rdi
callq 0x5f480
jmp 0x12f3ce0
jmp 0x12f3ce2
movq 0x38(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f3d3a
movq %rax, %rdi
callq 0x678a0
jmp 0x12f3d3c
leaq 0xe8(%rsp), %rax
movq %rax, 0x1a8(%rsp)
movq 0x1a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x28(%rsp)
leaq 0xe8(%rsp), %rax
movq %rax, 0x1b8(%rsp)
movq 0x1b8(%rsp), %rax
movq %rax, 0x2f0(%rsp)
movq 0x2f0(%rsp), %rax
movq %rax, 0x30(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f3e15
movq 0x30(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2ec(%rsp) # imm = 0xFFFFFFFF
movl 0x2ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2e8(%rsp)
cmpl $0x1, 0x2e8(%rsp)
jne 0x12f3e15
movq 0x30(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f3de9
movq 0x30(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12f3de7
jmp 0x12f3e13
movq 0x30(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x310(%rsp)
cmpq $0x0, 0x310(%rsp)
je 0x12f3e11
movq 0x310(%rsp), %rdi
callq 0x5f480
jmp 0x12f3e13
jmp 0x12f3e15
movq 0x30(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f3e6d
movq %rax, %rdi
callq 0x678a0
movq 0x28(%rsp), %rax
movq %rax, 0x130(%rsp)
movq 0x168(%rsp), %rcx
movl 0x140(%rsp), %eax
leaq 0x98(%rsp), %rdx
movq %rdx, 0x1d8(%rsp)
movq %rcx, 0x1d0(%rsp)
movl %eax, 0x1cc(%rsp)
movq 0x1d0(%rsp), %rax
movq %rax, 0x20(%rsp)
movb $0x0, 0x1cb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1cc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x98(%rsp), %r10
movq %r10, 0x268(%rsp)
movl %r9d, 0x264(%rsp)
movl %r8d, 0x260(%rsp)
movl %edi, 0x25c(%rsp)
movq %rsi, 0x250(%rsp)
movq %rdx, 0x248(%rsp)
movl %ecx, 0x244(%rsp)
movq %rax, 0x238(%rsp)
movq 0x268(%rsp), %rcx
movq %rcx, 0x18(%rsp)
movq 0x250(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x248(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x244(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x238(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x264(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x260(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x25c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x2c0(%rsp)
movl $0x10, 0x2bc(%rsp)
movq 0x2c0(%rsp), %rax
movslq 0x2bc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x2bc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x20(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12f402a
movq 0x20(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd8(%rsp)
movb $0x1, 0x1cb(%rsp)
testb $0x1, 0x1cb(%rsp)
jne 0x12f4153
leaq 0x98(%rsp), %rax
movq %rax, 0x1e0(%rsp)
movq 0x1e0(%rsp), %rax
movq %rax, 0x2d0(%rsp)
movq 0x2d0(%rsp), %rax
movq %rax, 0x10(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f40f9
movq 0x10(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2cc(%rsp) # imm = 0xFFFFFFFF
movl 0x2cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2c8(%rsp)
cmpl $0x1, 0x2c8(%rsp)
jne 0x12f40f9
movq 0x10(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f40cd
movq 0x10(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12f40cb
jmp 0x12f40f7
movq 0x10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x320(%rsp)
cmpq $0x0, 0x320(%rsp)
je 0x12f40f5
movq 0x320(%rsp), %rdi
callq 0x5f480
jmp 0x12f40f7
jmp 0x12f40f9
movq 0x10(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f4151
movq %rax, %rdi
callq 0x678a0
jmp 0x12f4153
leaq 0x98(%rsp), %rax
movq %rax, 0x1e8(%rsp)
movq 0x1e8(%rsp), %rax
movq (%rax), %rax
movq %rax, (%rsp)
leaq 0x98(%rsp), %rax
movq %rax, 0x1c0(%rsp)
movq 0x1c0(%rsp), %rax
movq %rax, 0x2e0(%rsp)
movq 0x2e0(%rsp), %rax
movq %rax, 0x8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f422b
movq 0x8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2dc(%rsp) # imm = 0xFFFFFFFF
movl 0x2dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2d8(%rsp)
cmpl $0x1, 0x2d8(%rsp)
jne 0x12f422b
movq 0x8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f41ff
movq 0x8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12f41fd
jmp 0x12f4229
movq 0x8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x318(%rsp)
cmpq $0x0, 0x318(%rsp)
je 0x12f4227
movq 0x318(%rsp), %rdi
callq 0x5f480
jmp 0x12f4229
jmp 0x12f422b
movq 0x8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f4283
movq %rax, %rdi
callq 0x678a0
movq (%rsp), %rax
movq %rax, 0xe0(%rsp)
movl $0x0, 0x94(%rsp)
movss 0x13c(%rsp), %xmm0
movss %xmm0, 0x200(%rsp)
movaps 0x200(%rsp), %xmm0
shufps $0x0, %xmm0, %xmm0 # xmm0 = xmm0[0,0,0,0]
movaps %xmm0, 0x1f0(%rsp)
movaps 0x1f0(%rsp), %xmm0
movaps %xmm0, 0x80(%rsp)
movl 0x94(%rsp), %eax
addl $0x3, %eax
cmpl 0x144(%rsp), %eax
jge 0x12f4394
movq 0x130(%rsp), %rax
movq %rax, 0x208(%rsp)
movq 0x208(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm0, 0x70(%rsp)
leaq 0x15f(%rsp), %rdi
leaq 0x80(%rsp), %rsi
leaq 0x70(%rsp), %rdx
callq 0x12f6cd0
movaps %xmm0, 0x60(%rsp)
movq 0xe0(%rsp), %rax
movaps 0x60(%rsp), %xmm0
movq %rax, 0x228(%rsp)
movaps %xmm0, 0x210(%rsp)
movaps 0x210(%rsp), %xmm0
movq 0x228(%rsp), %rax
movaps %xmm0, (%rax)
movq 0x130(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x130(%rsp)
movq 0xe0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xe0(%rsp)
movl 0x94(%rsp), %eax
addl $0x4, %eax
movl %eax, 0x94(%rsp)
jmp 0x12f42d0
jmp 0x12f4396
movl 0x94(%rsp), %eax
cmpl 0x144(%rsp), %eax
jge 0x12f440a
movq 0x130(%rsp), %rdx
leaq 0x15f(%rsp), %rdi
leaq 0x13c(%rsp), %rsi
callq 0x12f6d10
movq 0xe0(%rsp), %rax
movss %xmm0, (%rax)
movq 0x130(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x130(%rsp)
movq 0xe0(%rsp), %rax
addq $0x4, %rax
movq %rax, 0xe0(%rsp)
movl 0x94(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x94(%rsp)
jmp 0x12f4396
jmp 0x12f440c
movl 0x140(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x140(%rsp)
jmp 0x12f3a12
movl $0x0, 0x184(%rsp)
movl 0x184(%rsp), %eax
addq $0x338, %rsp # imm = 0x338
retq
nopl (%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,866
|
int ncnn::binary_op_7_13_19_29<ncnn::BinaryOp_x86_functor::binary_op_pow>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op_7_13_19_29(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int elempack = a.elempack;
int size = w * h * d * elempack;
// type 7 13 19 29
c.create_like(a, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
int i = 0;
#if __SSE2__
#if __AVX__
#if __AVX512F__
for (; i + 15 < size; i += 16)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
ptr1 += 16;
outptr += 16;
}
#endif // __AVX512F__
for (; i + 7 < size; i += 8)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _p1 = _mm256_loadu_ps(ptr1);
__m256 _outp = op.func_pack8(_p, _p1);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
ptr1 += 8;
outptr += 8;
}
#endif // __AVX__
for (; i + 3 < size; i += 4)
{
__m128 _p = _mm_load_ps(ptr);
__m128 _p1 = _mm_load_ps(ptr1);
__m128 _outp = op.func_pack4(_p, _p1);
_mm_store_ps(outptr, _outp);
ptr += 4;
ptr1 += 4;
outptr += 4;
}
#endif // __SSE2__
for (; i < size; i++)
{
*outptr = op.func(*ptr, *ptr1);
ptr += 1;
ptr1 += 1;
outptr += 1;
}
}
return 0;
}
|
subq $0x438, %rsp # imm = 0x438
movq %rdi, 0x1f8(%rsp)
movq %rsi, 0x1f0(%rsp)
movq %rdx, 0x1e8(%rsp)
movq %rcx, 0x1e0(%rsp)
movq 0x1f8(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x1d8(%rsp)
movq 0x1f8(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x1d4(%rsp)
movq 0x1f8(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x1d0(%rsp)
movq 0x1f8(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x1cc(%rsp)
movq 0x1f8(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x1c8(%rsp)
movl 0x1d8(%rsp), %eax
imull 0x1d4(%rsp), %eax
imull 0x1d0(%rsp), %eax
imull 0x1c8(%rsp), %eax
movl %eax, 0x1c4(%rsp)
movq 0x1e8(%rsp), %rdi
movq 0x1f8(%rsp), %rsi
movq 0x1e0(%rsp), %rax
movq 0x8(%rax), %rdx
callq 0x6fe40
movq 0x1e8(%rsp), %rax
movq %rax, 0x208(%rsp)
movq 0x208(%rsp), %rcx
movq %rcx, 0x80(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x8f(%rsp)
je 0x12f4569
movq 0x80(%rsp), %rax
movq %rax, 0x2c8(%rsp)
movq 0x2c8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x8f(%rsp)
movb 0x8f(%rsp), %al
testb $0x1, %al
jne 0x12f4576
jmp 0x12f4586
movl $0xffffff9c, 0x204(%rsp) # imm = 0xFFFFFF9C
jmp 0x12f53ac
movl $0x0, 0x1c0(%rsp)
movl 0x1c0(%rsp), %eax
cmpl 0x1cc(%rsp), %eax
jge 0x12f53a1
movq 0x1f8(%rsp), %rcx
movl 0x1c0(%rsp), %eax
leaq 0x170(%rsp), %rdx
movq %rdx, 0x238(%rsp)
movq %rcx, 0x230(%rsp)
movl %eax, 0x22c(%rsp)
movq 0x230(%rsp), %rax
movq %rax, 0x78(%rsp)
movb $0x0, 0x22b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x170(%rsp), %r10
movq %r10, 0x338(%rsp)
movl %r9d, 0x334(%rsp)
movl %r8d, 0x330(%rsp)
movl %edi, 0x32c(%rsp)
movq %rsi, 0x320(%rsp)
movq %rdx, 0x318(%rsp)
movl %ecx, 0x314(%rsp)
movq %rax, 0x308(%rsp)
movq 0x338(%rsp), %rcx
movq %rcx, 0x70(%rsp)
movq 0x320(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x318(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x314(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x308(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x334(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x330(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x32c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x390(%rsp)
movl $0x10, 0x38c(%rsp)
movq 0x390(%rsp), %rax
movslq 0x38c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x38c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x78(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x198(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12f4755
movq 0x78(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1b0(%rsp)
movb $0x1, 0x22b(%rsp)
testb $0x1, 0x22b(%rsp)
jne 0x12f487e
leaq 0x170(%rsp), %rax
movq %rax, 0x250(%rsp)
movq 0x250(%rsp), %rax
movq %rax, 0x400(%rsp)
movq 0x400(%rsp), %rax
movq %rax, 0x68(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f4824
movq 0x68(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fc(%rsp) # imm = 0xFFFFFFFF
movl 0x3fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f8(%rsp)
cmpl $0x1, 0x3f8(%rsp)
jne 0x12f4824
movq 0x68(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f47f8
movq 0x68(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12f47f6
jmp 0x12f4822
movq 0x68(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x408(%rsp)
cmpq $0x0, 0x408(%rsp)
je 0x12f4820
movq 0x408(%rsp), %rdi
callq 0x5f480
jmp 0x12f4822
jmp 0x12f4824
movq 0x68(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f487c
movq %rax, %rdi
callq 0x678a0
jmp 0x12f487e
leaq 0x170(%rsp), %rax
movq %rax, 0x248(%rsp)
movq 0x248(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x58(%rsp)
leaq 0x170(%rsp), %rax
movq %rax, 0x260(%rsp)
movq 0x260(%rsp), %rax
movq %rax, 0x3e0(%rsp)
movq 0x3e0(%rsp), %rax
movq %rax, 0x60(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f4957
movq 0x60(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3dc(%rsp) # imm = 0xFFFFFFFF
movl 0x3dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3d8(%rsp)
cmpl $0x1, 0x3d8(%rsp)
jne 0x12f4957
movq 0x60(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f492b
movq 0x60(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12f4929
jmp 0x12f4955
movq 0x60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x418(%rsp)
cmpq $0x0, 0x418(%rsp)
je 0x12f4953
movq 0x418(%rsp), %rdi
callq 0x5f480
jmp 0x12f4955
jmp 0x12f4957
movq 0x60(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f49af
movq %rax, %rdi
callq 0x678a0
movq 0x58(%rsp), %rax
movq %rax, 0x1b8(%rsp)
movq 0x1f0(%rsp), %rcx
movl 0x1c0(%rsp), %eax
leaq 0x120(%rsp), %rdx
movq %rdx, 0x220(%rsp)
movq %rcx, 0x218(%rsp)
movl %eax, 0x214(%rsp)
movq 0x218(%rsp), %rax
movq %rax, 0x50(%rsp)
movb $0x0, 0x213(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x214(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x120(%rsp), %r10
movq %r10, 0x370(%rsp)
movl %r9d, 0x36c(%rsp)
movl %r8d, 0x368(%rsp)
movl %edi, 0x364(%rsp)
movq %rsi, 0x358(%rsp)
movq %rdx, 0x350(%rsp)
movl %ecx, 0x34c(%rsp)
movq %rax, 0x340(%rsp)
movq 0x370(%rsp), %rcx
movq %rcx, 0x48(%rsp)
movq 0x358(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x350(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x34c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x340(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x36c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x368(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x364(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x380(%rsp)
movl $0x10, 0x37c(%rsp)
movq 0x380(%rsp), %rax
movslq 0x37c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x37c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x50(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x148(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12f4b6c
movq 0x50(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x160(%rsp)
movb $0x1, 0x213(%rsp)
testb $0x1, 0x213(%rsp)
jne 0x12f4c95
leaq 0x120(%rsp), %rax
movq %rax, 0x258(%rsp)
movq 0x258(%rsp), %rax
movq %rax, 0x3f0(%rsp)
movq 0x3f0(%rsp), %rax
movq %rax, 0x40(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f4c3b
movq 0x40(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ec(%rsp) # imm = 0xFFFFFFFF
movl 0x3ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e8(%rsp)
cmpl $0x1, 0x3e8(%rsp)
jne 0x12f4c3b
movq 0x40(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f4c0f
movq 0x40(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12f4c0d
jmp 0x12f4c39
movq 0x40(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x410(%rsp)
cmpq $0x0, 0x410(%rsp)
je 0x12f4c37
movq 0x410(%rsp), %rdi
callq 0x5f480
jmp 0x12f4c39
jmp 0x12f4c3b
movq 0x40(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f4c93
movq %rax, %rdi
callq 0x678a0
jmp 0x12f4c95
leaq 0x120(%rsp), %rax
movq %rax, 0x240(%rsp)
movq 0x240(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x30(%rsp)
leaq 0x120(%rsp), %rax
movq %rax, 0x268(%rsp)
movq 0x268(%rsp), %rax
movq %rax, 0x3d0(%rsp)
movq 0x3d0(%rsp), %rax
movq %rax, 0x38(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f4d6e
movq 0x38(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3cc(%rsp) # imm = 0xFFFFFFFF
movl 0x3cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3c8(%rsp)
cmpl $0x1, 0x3c8(%rsp)
jne 0x12f4d6e
movq 0x38(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f4d42
movq 0x38(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12f4d40
jmp 0x12f4d6c
movq 0x38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x420(%rsp)
cmpq $0x0, 0x420(%rsp)
je 0x12f4d6a
movq 0x420(%rsp), %rdi
callq 0x5f480
jmp 0x12f4d6c
jmp 0x12f4d6e
movq 0x38(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f4dc6
movq %rax, %rdi
callq 0x678a0
movq 0x30(%rsp), %rax
movq %rax, 0x168(%rsp)
movq 0x1e8(%rsp), %rcx
movl 0x1c0(%rsp), %eax
leaq 0xd0(%rsp), %rdx
movq %rdx, 0x288(%rsp)
movq %rcx, 0x280(%rsp)
movl %eax, 0x27c(%rsp)
movq 0x280(%rsp), %rax
movq %rax, 0x28(%rsp)
movb $0x0, 0x27b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x27c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xd0(%rsp), %r10
movq %r10, 0x300(%rsp)
movl %r9d, 0x2fc(%rsp)
movl %r8d, 0x2f8(%rsp)
movl %edi, 0x2f4(%rsp)
movq %rsi, 0x2e8(%rsp)
movq %rdx, 0x2e0(%rsp)
movl %ecx, 0x2dc(%rsp)
movq %rax, 0x2d0(%rsp)
movq 0x300(%rsp), %rcx
movq %rcx, 0x20(%rsp)
movq 0x2e8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x2e0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x2dc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x2d0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x2fc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x2f8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x2f4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3a0(%rsp)
movl $0x10, 0x39c(%rsp)
movq 0x3a0(%rsp), %rax
movslq 0x39c(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x39c(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x28(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12f4f83
movq 0x28(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x110(%rsp)
movb $0x1, 0x27b(%rsp)
testb $0x1, 0x27b(%rsp)
jne 0x12f50ac
leaq 0xd0(%rsp), %rax
movq %rax, 0x290(%rsp)
movq 0x290(%rsp), %rax
movq %rax, 0x3b0(%rsp)
movq 0x3b0(%rsp), %rax
movq %rax, 0x18(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f5052
movq 0x18(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ac(%rsp) # imm = 0xFFFFFFFF
movl 0x3ac(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3a8(%rsp)
cmpl $0x1, 0x3a8(%rsp)
jne 0x12f5052
movq 0x18(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f5026
movq 0x18(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12f5024
jmp 0x12f5050
movq 0x18(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x430(%rsp)
cmpq $0x0, 0x430(%rsp)
je 0x12f504e
movq 0x430(%rsp), %rdi
callq 0x5f480
jmp 0x12f5050
jmp 0x12f5052
movq 0x18(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f50aa
movq %rax, %rdi
callq 0x678a0
jmp 0x12f50ac
leaq 0xd0(%rsp), %rax
movq %rax, 0x298(%rsp)
movq 0x298(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8(%rsp)
leaq 0xd0(%rsp), %rax
movq %rax, 0x270(%rsp)
movq 0x270(%rsp), %rax
movq %rax, 0x3c0(%rsp)
movq 0x3c0(%rsp), %rax
movq %rax, 0x10(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f5185
movq 0x10(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3bc(%rsp) # imm = 0xFFFFFFFF
movl 0x3bc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3b8(%rsp)
cmpl $0x1, 0x3b8(%rsp)
jne 0x12f5185
movq 0x10(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f5159
movq 0x10(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12f5157
jmp 0x12f5183
movq 0x10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x428(%rsp)
cmpq $0x0, 0x428(%rsp)
je 0x12f5181
movq 0x428(%rsp), %rdi
callq 0x5f480
jmp 0x12f5183
jmp 0x12f5185
movq 0x10(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f51dd
movq %rax, %rdi
callq 0x678a0
movq 0x8(%rsp), %rax
movq %rax, 0x118(%rsp)
movl $0x0, 0xcc(%rsp)
movl 0xcc(%rsp), %eax
addl $0x3, %eax
cmpl 0x1c4(%rsp), %eax
jge 0x12f52fc
movq 0x1b8(%rsp), %rax
movq %rax, 0x2a8(%rsp)
movq 0x2a8(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm0, 0xb0(%rsp)
movq 0x168(%rsp), %rax
movq %rax, 0x2a0(%rsp)
movq 0x2a0(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm0, 0xa0(%rsp)
leaq 0x1df(%rsp), %rdi
leaq 0xb0(%rsp), %rsi
leaq 0xa0(%rsp), %rdx
callq 0x12f6d40
movaps %xmm0, 0x90(%rsp)
movq 0x118(%rsp), %rax
movaps 0x90(%rsp), %xmm0
movq %rax, 0x2c0(%rsp)
movaps %xmm0, 0x2b0(%rsp)
movaps 0x2b0(%rsp), %xmm0
movq 0x2c0(%rsp), %rax
movaps %xmm0, (%rax)
movq 0x1b8(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x1b8(%rsp)
movq 0x168(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x168(%rsp)
movq 0x118(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x118(%rsp)
movl 0xcc(%rsp), %eax
addl $0x4, %eax
movl %eax, 0xcc(%rsp)
jmp 0x12f51f5
jmp 0x12f52fe
movl 0xcc(%rsp), %eax
cmpl 0x1c4(%rsp), %eax
jge 0x12f5389
movq 0x1b8(%rsp), %rsi
movq 0x168(%rsp), %rdx
leaq 0x1df(%rsp), %rdi
callq 0x12f7fb0
movq 0x118(%rsp), %rax
movss %xmm0, (%rax)
movq 0x1b8(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x1b8(%rsp)
movq 0x168(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x168(%rsp)
movq 0x118(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x118(%rsp)
movl 0xcc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xcc(%rsp)
jmp 0x12f52fe
jmp 0x12f538b
movl 0x1c0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c0(%rsp)
jmp 0x12f4591
movl $0x0, 0x204(%rsp)
movl 0x204(%rsp), %eax
addq $0x438, %rsp # imm = 0x438
retq
nopl (%rax,%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,867
|
int ncnn::binary_op_6_11_16_25<ncnn::BinaryOp_x86_functor::binary_op_pow>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op_6_11_16_25(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int elempack = a.elempack;
int size = w * h * d * elempack;
// type 6 11 16 25
c.create_like(a, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float b0 = b[0];
float* outptr = c.channel(q);
int i = 0;
#if __SSE2__
#if __AVX__
#if __AVX512F__
__m512 _b0_avx512 = _mm512_set1_ps(b0);
for (; i + 15 < size; i += 16)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0_avx512);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
#endif // __AVX512F__
__m256 _b0_avx = _mm256_set1_ps(b0);
for (; i + 7 < size; i += 8)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _outp = op.func_pack8(_p, _b0_avx);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
outptr += 8;
}
#endif // __AVX__
__m128 _b0 = _mm_set1_ps(b0);
for (; i + 3 < size; i += 4)
{
__m128 _p = _mm_load_ps(ptr);
__m128 _outp = op.func_pack4(_p, _b0);
_mm_store_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
#endif // __SSE2__
for (; i < size; i++)
{
*outptr = op.func(*ptr, b0);
ptr += 1;
outptr += 1;
}
}
return 0;
}
|
subq $0x338, %rsp # imm = 0x338
movq %rdi, 0x178(%rsp)
movq %rsi, 0x170(%rsp)
movq %rdx, 0x168(%rsp)
movq %rcx, 0x160(%rsp)
movq 0x178(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x158(%rsp)
movq 0x178(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x154(%rsp)
movq 0x178(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x150(%rsp)
movq 0x178(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x14c(%rsp)
movq 0x178(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x148(%rsp)
movl 0x158(%rsp), %eax
imull 0x154(%rsp), %eax
imull 0x150(%rsp), %eax
imull 0x148(%rsp), %eax
movl %eax, 0x144(%rsp)
movq 0x168(%rsp), %rdi
movq 0x178(%rsp), %rsi
movq 0x160(%rsp), %rax
movq 0x8(%rax), %rdx
callq 0x6fe40
movq 0x168(%rsp), %rax
movq %rax, 0x188(%rsp)
movq 0x188(%rsp), %rcx
movq %rcx, 0x50(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x5f(%rsp)
je 0x12f54dd
movq 0x50(%rsp), %rax
movq %rax, 0x230(%rsp)
movq 0x230(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x5f(%rsp)
movb 0x5f(%rsp), %al
testb $0x1, %al
jne 0x12f54e7
jmp 0x12f54f7
movl $0xffffff9c, 0x184(%rsp) # imm = 0xFFFFFF9C
jmp 0x12f5f1d
movl $0x0, 0x140(%rsp)
movl 0x140(%rsp), %eax
cmpl 0x14c(%rsp), %eax
jge 0x12f5f12
movq 0x178(%rsp), %rcx
movl 0x140(%rsp), %eax
leaq 0xf0(%rsp), %rdx
movq %rdx, 0x1a0(%rsp)
movq %rcx, 0x198(%rsp)
movl %eax, 0x194(%rsp)
movq 0x198(%rsp), %rax
movq %rax, 0x48(%rsp)
movb $0x0, 0x193(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x194(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xf0(%rsp), %r10
movq %r10, 0x2a0(%rsp)
movl %r9d, 0x29c(%rsp)
movl %r8d, 0x298(%rsp)
movl %edi, 0x294(%rsp)
movq %rsi, 0x288(%rsp)
movq %rdx, 0x280(%rsp)
movl %ecx, 0x27c(%rsp)
movq %rax, 0x270(%rsp)
movq 0x2a0(%rsp), %rcx
movq %rcx, 0x40(%rsp)
movq 0x288(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x280(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x27c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x270(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x29c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x298(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x294(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x2b0(%rsp)
movl $0x10, 0x2ac(%rsp)
movq 0x2b0(%rsp), %rax
movslq 0x2ac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x2ac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x48(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x118(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12f56c6
movq 0x48(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x130(%rsp)
movb $0x1, 0x193(%rsp)
testb $0x1, 0x193(%rsp)
jne 0x12f57ef
leaq 0xf0(%rsp), %rax
movq %rax, 0x1b0(%rsp)
movq 0x1b0(%rsp), %rax
movq %rax, 0x300(%rsp)
movq 0x300(%rsp), %rax
movq %rax, 0x38(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f5795
movq 0x38(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2fc(%rsp) # imm = 0xFFFFFFFF
movl 0x2fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2f8(%rsp)
cmpl $0x1, 0x2f8(%rsp)
jne 0x12f5795
movq 0x38(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f5769
movq 0x38(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12f5767
jmp 0x12f5793
movq 0x38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x308(%rsp)
cmpq $0x0, 0x308(%rsp)
je 0x12f5791
movq 0x308(%rsp), %rdi
callq 0x5f480
jmp 0x12f5793
jmp 0x12f5795
movq 0x38(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f57ed
movq %rax, %rdi
callq 0x678a0
jmp 0x12f57ef
leaq 0xf0(%rsp), %rax
movq %rax, 0x1a8(%rsp)
movq 0x1a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x28(%rsp)
leaq 0xf0(%rsp), %rax
movq %rax, 0x1b8(%rsp)
movq 0x1b8(%rsp), %rax
movq %rax, 0x2f0(%rsp)
movq 0x2f0(%rsp), %rax
movq %rax, 0x30(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f58c8
movq 0x30(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2ec(%rsp) # imm = 0xFFFFFFFF
movl 0x2ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2e8(%rsp)
cmpl $0x1, 0x2e8(%rsp)
jne 0x12f58c8
movq 0x30(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f589c
movq 0x30(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12f589a
jmp 0x12f58c6
movq 0x30(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x310(%rsp)
cmpq $0x0, 0x310(%rsp)
je 0x12f58c4
movq 0x310(%rsp), %rdi
callq 0x5f480
jmp 0x12f58c6
jmp 0x12f58c8
movq 0x30(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f5920
movq %rax, %rdi
callq 0x678a0
movq 0x28(%rsp), %rax
movq %rax, 0x138(%rsp)
movq 0x170(%rsp), %rax
movq %rax, 0x330(%rsp)
movq $0x0, 0x328(%rsp)
movq 0x330(%rsp), %rax
movq (%rax), %rax
movq 0x328(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0xec(%rsp)
movq 0x168(%rsp), %rcx
movl 0x140(%rsp), %eax
leaq 0x98(%rsp), %rdx
movq %rdx, 0x1d8(%rsp)
movq %rcx, 0x1d0(%rsp)
movl %eax, 0x1cc(%rsp)
movq 0x1d0(%rsp), %rax
movq %rax, 0x20(%rsp)
movb $0x0, 0x1cb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1cc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x98(%rsp), %r10
movq %r10, 0x268(%rsp)
movl %r9d, 0x264(%rsp)
movl %r8d, 0x260(%rsp)
movl %edi, 0x25c(%rsp)
movq %rsi, 0x250(%rsp)
movq %rdx, 0x248(%rsp)
movl %ecx, 0x244(%rsp)
movq %rax, 0x238(%rsp)
movq 0x268(%rsp), %rcx
movq %rcx, 0x18(%rsp)
movq 0x250(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x248(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x244(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x238(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x264(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x260(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x25c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x2c0(%rsp)
movl $0x10, 0x2bc(%rsp)
movq 0x2c0(%rsp), %rax
movslq 0x2bc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x2bc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x20(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12f5b1a
movq 0x20(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd8(%rsp)
movb $0x1, 0x1cb(%rsp)
testb $0x1, 0x1cb(%rsp)
jne 0x12f5c43
leaq 0x98(%rsp), %rax
movq %rax, 0x1e0(%rsp)
movq 0x1e0(%rsp), %rax
movq %rax, 0x2d0(%rsp)
movq 0x2d0(%rsp), %rax
movq %rax, 0x10(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f5be9
movq 0x10(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2cc(%rsp) # imm = 0xFFFFFFFF
movl 0x2cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2c8(%rsp)
cmpl $0x1, 0x2c8(%rsp)
jne 0x12f5be9
movq 0x10(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f5bbd
movq 0x10(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12f5bbb
jmp 0x12f5be7
movq 0x10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x320(%rsp)
cmpq $0x0, 0x320(%rsp)
je 0x12f5be5
movq 0x320(%rsp), %rdi
callq 0x5f480
jmp 0x12f5be7
jmp 0x12f5be9
movq 0x10(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f5c41
movq %rax, %rdi
callq 0x678a0
jmp 0x12f5c43
leaq 0x98(%rsp), %rax
movq %rax, 0x1e8(%rsp)
movq 0x1e8(%rsp), %rax
movq (%rax), %rax
movq %rax, (%rsp)
leaq 0x98(%rsp), %rax
movq %rax, 0x1c0(%rsp)
movq 0x1c0(%rsp), %rax
movq %rax, 0x2e0(%rsp)
movq 0x2e0(%rsp), %rax
movq %rax, 0x8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f5d1b
movq 0x8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2dc(%rsp) # imm = 0xFFFFFFFF
movl 0x2dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2d8(%rsp)
cmpl $0x1, 0x2d8(%rsp)
jne 0x12f5d1b
movq 0x8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f5cef
movq 0x8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12f5ced
jmp 0x12f5d19
movq 0x8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x318(%rsp)
cmpq $0x0, 0x318(%rsp)
je 0x12f5d17
movq 0x318(%rsp), %rdi
callq 0x5f480
jmp 0x12f5d19
jmp 0x12f5d1b
movq 0x8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f5d73
movq %rax, %rdi
callq 0x678a0
movq (%rsp), %rax
movq %rax, 0xe0(%rsp)
movl $0x0, 0x94(%rsp)
movss 0xec(%rsp), %xmm0
movss %xmm0, 0x200(%rsp)
movaps 0x200(%rsp), %xmm0
shufps $0x0, %xmm0, %xmm0 # xmm0 = xmm0[0,0,0,0]
movaps %xmm0, 0x1f0(%rsp)
movaps 0x1f0(%rsp), %xmm0
movaps %xmm0, 0x80(%rsp)
movl 0x94(%rsp), %eax
addl $0x3, %eax
cmpl 0x144(%rsp), %eax
jge 0x12f5e84
movq 0x138(%rsp), %rax
movq %rax, 0x208(%rsp)
movq 0x208(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm0, 0x70(%rsp)
leaq 0x15f(%rsp), %rdi
leaq 0x70(%rsp), %rsi
leaq 0x80(%rsp), %rdx
callq 0x12f6d40
movaps %xmm0, 0x60(%rsp)
movq 0xe0(%rsp), %rax
movaps 0x60(%rsp), %xmm0
movq %rax, 0x228(%rsp)
movaps %xmm0, 0x210(%rsp)
movaps 0x210(%rsp), %xmm0
movq 0x228(%rsp), %rax
movaps %xmm0, (%rax)
movq 0x138(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x138(%rsp)
movq 0xe0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xe0(%rsp)
movl 0x94(%rsp), %eax
addl $0x4, %eax
movl %eax, 0x94(%rsp)
jmp 0x12f5dc0
jmp 0x12f5e86
movl 0x94(%rsp), %eax
cmpl 0x144(%rsp), %eax
jge 0x12f5efa
movq 0x138(%rsp), %rsi
leaq 0x15f(%rsp), %rdi
leaq 0xec(%rsp), %rdx
callq 0x12f7fb0
movq 0xe0(%rsp), %rax
movss %xmm0, (%rax)
movq 0x138(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x138(%rsp)
movq 0xe0(%rsp), %rax
addq $0x4, %rax
movq %rax, 0xe0(%rsp)
movl 0x94(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x94(%rsp)
jmp 0x12f5e86
jmp 0x12f5efc
movl 0x140(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x140(%rsp)
jmp 0x12f5502
movl $0x0, 0x184(%rsp)
movl 0x184(%rsp), %eax
addq $0x338, %rsp # imm = 0x338
retq
nopl (%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,868
|
int ncnn::binary_op_2_3_4_20<ncnn::BinaryOp_x86_functor::binary_op_pow>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op_2_3_4_20(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = b.w;
int h = b.h;
int d = b.d;
int channels = b.c;
int elempack = b.elempack;
int size = w * h * d * elempack;
// type 2 3 4 20
c.create_like(b, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float a0 = a[0];
const float* ptr = b.channel(q);
float* outptr = c.channel(q);
int i = 0;
#if __SSE2__
#if __AVX__
#if __AVX512F__
__m512 _a0_avx512 = _mm512_set1_ps(a0);
for (; i + 15 < size; i += 16)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_a0_avx512, _p);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
#endif // __AVX512F__
__m256 _a0_avx = _mm256_set1_ps(a0);
for (; i + 7 < size; i += 8)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _outp = op.func_pack8(_a0_avx, _p);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
outptr += 8;
}
#endif // __AVX__
__m128 _a0 = _mm_set1_ps(a0);
for (; i + 3 < size; i += 4)
{
__m128 _p = _mm_load_ps(ptr);
__m128 _outp = op.func_pack4(_a0, _p);
_mm_store_ps(outptr, _outp);
ptr += 4;
outptr += 4;
}
#endif // __SSE2__
for (; i < size; i++)
{
*outptr = op.func(a0, *ptr);
ptr += 1;
outptr += 1;
}
}
return 0;
}
|
subq $0x338, %rsp # imm = 0x338
movq %rdi, 0x178(%rsp)
movq %rsi, 0x170(%rsp)
movq %rdx, 0x168(%rsp)
movq %rcx, 0x160(%rsp)
movq 0x170(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x158(%rsp)
movq 0x170(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x154(%rsp)
movq 0x170(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x150(%rsp)
movq 0x170(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x14c(%rsp)
movq 0x170(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x148(%rsp)
movl 0x158(%rsp), %eax
imull 0x154(%rsp), %eax
imull 0x150(%rsp), %eax
imull 0x148(%rsp), %eax
movl %eax, 0x144(%rsp)
movq 0x168(%rsp), %rdi
movq 0x170(%rsp), %rsi
movq 0x160(%rsp), %rax
movq 0x8(%rax), %rdx
callq 0x6fe40
movq 0x168(%rsp), %rax
movq %rax, 0x188(%rsp)
movq 0x188(%rsp), %rcx
movq %rcx, 0x50(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x5f(%rsp)
je 0x12f604d
movq 0x50(%rsp), %rax
movq %rax, 0x230(%rsp)
movq 0x230(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x5f(%rsp)
movb 0x5f(%rsp), %al
testb $0x1, %al
jne 0x12f6057
jmp 0x12f6067
movl $0xffffff9c, 0x184(%rsp) # imm = 0xFFFFFF9C
jmp 0x12f6a8d
movl $0x0, 0x140(%rsp)
movl 0x140(%rsp), %eax
cmpl 0x14c(%rsp), %eax
jge 0x12f6a82
movq 0x178(%rsp), %rax
movq %rax, 0x330(%rsp)
movq $0x0, 0x328(%rsp)
movq 0x330(%rsp), %rax
movq (%rax), %rax
movq 0x328(%rsp), %rcx
movss (%rax,%rcx,4), %xmm0
movss %xmm0, 0x13c(%rsp)
movq 0x170(%rsp), %rcx
movl 0x140(%rsp), %eax
leaq 0xe8(%rsp), %rdx
movq %rdx, 0x1a0(%rsp)
movq %rcx, 0x198(%rsp)
movl %eax, 0x194(%rsp)
movq 0x198(%rsp), %rax
movq %rax, 0x48(%rsp)
movb $0x0, 0x193(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x194(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xe8(%rsp), %r10
movq %r10, 0x2a0(%rsp)
movl %r9d, 0x29c(%rsp)
movl %r8d, 0x298(%rsp)
movl %edi, 0x294(%rsp)
movq %rsi, 0x288(%rsp)
movq %rdx, 0x280(%rsp)
movl %ecx, 0x27c(%rsp)
movq %rax, 0x270(%rsp)
movq 0x2a0(%rsp), %rcx
movq %rcx, 0x40(%rsp)
movq 0x288(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x280(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x27c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x270(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x29c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x298(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x294(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x2b0(%rsp)
movl $0x10, 0x2ac(%rsp)
movq 0x2b0(%rsp), %rax
movslq 0x2ac(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x2ac(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x48(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x110(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12f6273
movq 0x48(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x128(%rsp)
movb $0x1, 0x193(%rsp)
testb $0x1, 0x193(%rsp)
jne 0x12f639c
leaq 0xe8(%rsp), %rax
movq %rax, 0x1b0(%rsp)
movq 0x1b0(%rsp), %rax
movq %rax, 0x300(%rsp)
movq 0x300(%rsp), %rax
movq %rax, 0x38(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f6342
movq 0x38(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2fc(%rsp) # imm = 0xFFFFFFFF
movl 0x2fc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2f8(%rsp)
cmpl $0x1, 0x2f8(%rsp)
jne 0x12f6342
movq 0x38(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f6316
movq 0x38(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12f6314
jmp 0x12f6340
movq 0x38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x308(%rsp)
cmpq $0x0, 0x308(%rsp)
je 0x12f633e
movq 0x308(%rsp), %rdi
callq 0x5f480
jmp 0x12f6340
jmp 0x12f6342
movq 0x38(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f639a
movq %rax, %rdi
callq 0x678a0
jmp 0x12f639c
leaq 0xe8(%rsp), %rax
movq %rax, 0x1a8(%rsp)
movq 0x1a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x28(%rsp)
leaq 0xe8(%rsp), %rax
movq %rax, 0x1b8(%rsp)
movq 0x1b8(%rsp), %rax
movq %rax, 0x2f0(%rsp)
movq 0x2f0(%rsp), %rax
movq %rax, 0x30(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f6475
movq 0x30(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2ec(%rsp) # imm = 0xFFFFFFFF
movl 0x2ec(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2e8(%rsp)
cmpl $0x1, 0x2e8(%rsp)
jne 0x12f6475
movq 0x30(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f6449
movq 0x30(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12f6447
jmp 0x12f6473
movq 0x30(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x310(%rsp)
cmpq $0x0, 0x310(%rsp)
je 0x12f6471
movq 0x310(%rsp), %rdi
callq 0x5f480
jmp 0x12f6473
jmp 0x12f6475
movq 0x30(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f64cd
movq %rax, %rdi
callq 0x678a0
movq 0x28(%rsp), %rax
movq %rax, 0x130(%rsp)
movq 0x168(%rsp), %rcx
movl 0x140(%rsp), %eax
leaq 0x98(%rsp), %rdx
movq %rdx, 0x1d8(%rsp)
movq %rcx, 0x1d0(%rsp)
movl %eax, 0x1cc(%rsp)
movq 0x1d0(%rsp), %rax
movq %rax, 0x20(%rsp)
movb $0x0, 0x1cb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x1cc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x98(%rsp), %r10
movq %r10, 0x268(%rsp)
movl %r9d, 0x264(%rsp)
movl %r8d, 0x260(%rsp)
movl %edi, 0x25c(%rsp)
movq %rsi, 0x250(%rsp)
movq %rdx, 0x248(%rsp)
movl %ecx, 0x244(%rsp)
movq %rax, 0x238(%rsp)
movq 0x268(%rsp), %rcx
movq %rcx, 0x18(%rsp)
movq 0x250(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x248(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x244(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x238(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x264(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x260(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x25c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x2c0(%rsp)
movl $0x10, 0x2bc(%rsp)
movq 0x2c0(%rsp), %rax
movslq 0x2bc(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x2bc(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x20(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12f668a
movq 0x20(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd8(%rsp)
movb $0x1, 0x1cb(%rsp)
testb $0x1, 0x1cb(%rsp)
jne 0x12f67b3
leaq 0x98(%rsp), %rax
movq %rax, 0x1e0(%rsp)
movq 0x1e0(%rsp), %rax
movq %rax, 0x2d0(%rsp)
movq 0x2d0(%rsp), %rax
movq %rax, 0x10(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f6759
movq 0x10(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2cc(%rsp) # imm = 0xFFFFFFFF
movl 0x2cc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2c8(%rsp)
cmpl $0x1, 0x2c8(%rsp)
jne 0x12f6759
movq 0x10(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f672d
movq 0x10(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12f672b
jmp 0x12f6757
movq 0x10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x320(%rsp)
cmpq $0x0, 0x320(%rsp)
je 0x12f6755
movq 0x320(%rsp), %rdi
callq 0x5f480
jmp 0x12f6757
jmp 0x12f6759
movq 0x10(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f67b1
movq %rax, %rdi
callq 0x678a0
jmp 0x12f67b3
leaq 0x98(%rsp), %rax
movq %rax, 0x1e8(%rsp)
movq 0x1e8(%rsp), %rax
movq (%rax), %rax
movq %rax, (%rsp)
leaq 0x98(%rsp), %rax
movq %rax, 0x1c0(%rsp)
movq 0x1c0(%rsp), %rax
movq %rax, 0x2e0(%rsp)
movq 0x2e0(%rsp), %rax
movq %rax, 0x8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f688b
movq 0x8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x2dc(%rsp) # imm = 0xFFFFFFFF
movl 0x2dc(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x2d8(%rsp)
cmpl $0x1, 0x2d8(%rsp)
jne 0x12f688b
movq 0x8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f685f
movq 0x8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
callq *%rax
jmp 0x12f685d
jmp 0x12f6889
movq 0x8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x318(%rsp)
cmpq $0x0, 0x318(%rsp)
je 0x12f6887
movq 0x318(%rsp), %rdi
callq 0x5f480
jmp 0x12f6889
jmp 0x12f688b
movq 0x8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f68e3
movq %rax, %rdi
callq 0x678a0
movq (%rsp), %rax
movq %rax, 0xe0(%rsp)
movl $0x0, 0x94(%rsp)
movss 0x13c(%rsp), %xmm0
movss %xmm0, 0x200(%rsp)
movaps 0x200(%rsp), %xmm0
shufps $0x0, %xmm0, %xmm0 # xmm0 = xmm0[0,0,0,0]
movaps %xmm0, 0x1f0(%rsp)
movaps 0x1f0(%rsp), %xmm0
movaps %xmm0, 0x80(%rsp)
movl 0x94(%rsp), %eax
addl $0x3, %eax
cmpl 0x144(%rsp), %eax
jge 0x12f69f4
movq 0x130(%rsp), %rax
movq %rax, 0x208(%rsp)
movq 0x208(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm0, 0x70(%rsp)
leaq 0x15f(%rsp), %rdi
leaq 0x80(%rsp), %rsi
leaq 0x70(%rsp), %rdx
callq 0x12f6d40
movaps %xmm0, 0x60(%rsp)
movq 0xe0(%rsp), %rax
movaps 0x60(%rsp), %xmm0
movq %rax, 0x228(%rsp)
movaps %xmm0, 0x210(%rsp)
movaps 0x210(%rsp), %xmm0
movq 0x228(%rsp), %rax
movaps %xmm0, (%rax)
movq 0x130(%rsp), %rax
addq $0x10, %rax
movq %rax, 0x130(%rsp)
movq 0xe0(%rsp), %rax
addq $0x10, %rax
movq %rax, 0xe0(%rsp)
movl 0x94(%rsp), %eax
addl $0x4, %eax
movl %eax, 0x94(%rsp)
jmp 0x12f6930
jmp 0x12f69f6
movl 0x94(%rsp), %eax
cmpl 0x144(%rsp), %eax
jge 0x12f6a6a
movq 0x130(%rsp), %rdx
leaq 0x15f(%rsp), %rdi
leaq 0x13c(%rsp), %rsi
callq 0x12f7fb0
movq 0xe0(%rsp), %rax
movss %xmm0, (%rax)
movq 0x130(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x130(%rsp)
movq 0xe0(%rsp), %rax
addq $0x4, %rax
movq %rax, 0xe0(%rsp)
movl 0x94(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x94(%rsp)
jmp 0x12f69f6
jmp 0x12f6a6c
movl 0x140(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x140(%rsp)
jmp 0x12f6072
movl $0x0, 0x184(%rsp)
movl 0x184(%rsp), %eax
addq $0x338, %rsp # imm = 0x338
retq
nopl (%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,869
|
ncnn::BinaryOp_x86_functor::binary_op_add::func_pack4(float vector[4] const&, float vector[4] const&) const
|
__m128 func_pack4(const __m128& x, const __m128& y) const
{
return _mm_add_ps(x, y);
}
|
movq %rdi, -0x30(%rsp)
movq %rsi, -0x38(%rsp)
movq %rdx, -0x40(%rsp)
movq -0x38(%rsp), %rax
movaps (%rax), %xmm1
movq -0x40(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm1, -0x18(%rsp)
movaps %xmm0, -0x28(%rsp)
movaps -0x18(%rsp), %xmm0
addps -0x28(%rsp), %xmm0
retq
nopw %cs:(%rax,%rax)
nop
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,870
|
ncnn::BinaryOp_x86_functor::binary_op_add::func(float const&, float const&) const
|
float func(const float& x, const float& y) const
{
return x + y;
}
|
movq %rdi, -0x8(%rsp)
movq %rsi, -0x10(%rsp)
movq %rdx, -0x18(%rsp)
movq -0x10(%rsp), %rax
movss (%rax), %xmm0
movq -0x18(%rsp), %rax
addss (%rax), %xmm0
retq
nopw %cs:(%rax,%rax)
nopl (%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,871
|
ncnn::BinaryOp_x86_functor::binary_op_sub::func_pack4(float vector[4] const&, float vector[4] const&) const
|
__m128 func_pack4(const __m128& x, const __m128& y) const
{
return _mm_sub_ps(x, y);
}
|
movq %rdi, -0x30(%rsp)
movq %rsi, -0x38(%rsp)
movq %rdx, -0x40(%rsp)
movq -0x38(%rsp), %rax
movaps (%rax), %xmm1
movq -0x40(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm1, -0x18(%rsp)
movaps %xmm0, -0x28(%rsp)
movaps -0x18(%rsp), %xmm0
subps -0x28(%rsp), %xmm0
retq
nopw %cs:(%rax,%rax)
nop
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,872
|
ncnn::BinaryOp_x86_functor::binary_op_sub::func(float const&, float const&) const
|
float func(const float& x, const float& y) const
{
return x - y;
}
|
movq %rdi, -0x8(%rsp)
movq %rsi, -0x10(%rsp)
movq %rdx, -0x18(%rsp)
movq -0x10(%rsp), %rax
movss (%rax), %xmm0
movq -0x18(%rsp), %rax
subss (%rax), %xmm0
retq
nopw %cs:(%rax,%rax)
nopl (%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,873
|
ncnn::BinaryOp_x86_functor::binary_op_mul::func_pack4(float vector[4] const&, float vector[4] const&) const
|
__m128 func_pack4(const __m128& x, const __m128& y) const
{
return _mm_mul_ps(x, y);
}
|
movq %rdi, -0x30(%rsp)
movq %rsi, -0x38(%rsp)
movq %rdx, -0x40(%rsp)
movq -0x38(%rsp), %rax
movaps (%rax), %xmm1
movq -0x40(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm1, -0x18(%rsp)
movaps %xmm0, -0x28(%rsp)
movaps -0x18(%rsp), %xmm0
mulps -0x28(%rsp), %xmm0
retq
nopw %cs:(%rax,%rax)
nop
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,874
|
ncnn::BinaryOp_x86_functor::binary_op_mul::func(float const&, float const&) const
|
float func(const float& x, const float& y) const
{
return x * y;
}
|
movq %rdi, -0x8(%rsp)
movq %rsi, -0x10(%rsp)
movq %rdx, -0x18(%rsp)
movq -0x10(%rsp), %rax
movss (%rax), %xmm0
movq -0x18(%rsp), %rax
mulss (%rax), %xmm0
retq
nopw %cs:(%rax,%rax)
nopl (%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,875
|
ncnn::BinaryOp_x86_functor::binary_op_div::func_pack4(float vector[4] const&, float vector[4] const&) const
|
__m128 func_pack4(const __m128& x, const __m128& y) const
{
return _mm_div_ps(x, y);
}
|
movq %rdi, -0x30(%rsp)
movq %rsi, -0x38(%rsp)
movq %rdx, -0x40(%rsp)
movq -0x38(%rsp), %rax
movaps (%rax), %xmm1
movq -0x40(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm1, -0x18(%rsp)
movaps %xmm0, -0x28(%rsp)
movaps -0x18(%rsp), %xmm0
divps -0x28(%rsp), %xmm0
retq
nopw %cs:(%rax,%rax)
nop
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,876
|
ncnn::BinaryOp_x86_functor::binary_op_div::func(float const&, float const&) const
|
float func(const float& x, const float& y) const
{
return x / y;
}
|
movq %rdi, -0x8(%rsp)
movq %rsi, -0x10(%rsp)
movq %rdx, -0x18(%rsp)
movq -0x10(%rsp), %rax
movss (%rax), %xmm0
movq -0x18(%rsp), %rax
divss (%rax), %xmm0
retq
nopw %cs:(%rax,%rax)
nopl (%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,877
|
ncnn::BinaryOp_x86_functor::binary_op_max::func_pack4(float vector[4] const&, float vector[4] const&) const
|
__m128 func_pack4(const __m128& x, const __m128& y) const
{
return _mm_max_ps(x, y);
}
|
movq %rdi, -0x30(%rsp)
movq %rsi, -0x38(%rsp)
movq %rdx, -0x40(%rsp)
movq -0x38(%rsp), %rax
movaps (%rax), %xmm1
movq -0x40(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm1, -0x18(%rsp)
movaps %xmm0, -0x28(%rsp)
movaps -0x18(%rsp), %xmm0
movaps -0x28(%rsp), %xmm1
maxps %xmm1, %xmm0
retq
nopw (%rax,%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,878
|
ncnn::BinaryOp_x86_functor::binary_op_max::func(float const&, float const&) const
|
float func(const float& x, const float& y) const
{
return std::max(x, y);
}
|
subq $0x18, %rsp
movq %rdi, 0x10(%rsp)
movq %rsi, 0x8(%rsp)
movq %rdx, (%rsp)
movq 0x8(%rsp), %rdi
movq (%rsp), %rsi
callq 0x670b0
movss (%rax), %xmm0
addq $0x18, %rsp
retq
nopl (%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,879
|
ncnn::BinaryOp_x86_functor::binary_op_min::func_pack4(float vector[4] const&, float vector[4] const&) const
|
__m128 func_pack4(const __m128& x, const __m128& y) const
{
return _mm_min_ps(x, y);
}
|
movq %rdi, -0x30(%rsp)
movq %rsi, -0x38(%rsp)
movq %rdx, -0x40(%rsp)
movq -0x38(%rsp), %rax
movaps (%rax), %xmm1
movq -0x40(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm1, -0x18(%rsp)
movaps %xmm0, -0x28(%rsp)
movaps -0x18(%rsp), %xmm0
movaps -0x28(%rsp), %xmm1
minps %xmm1, %xmm0
retq
nopw (%rax,%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,880
|
ncnn::BinaryOp_x86_functor::binary_op_min::func(float const&, float const&) const
|
float func(const float& x, const float& y) const
{
return std::min(x, y);
}
|
subq $0x18, %rsp
movq %rdi, 0x10(%rsp)
movq %rsi, 0x8(%rsp)
movq %rdx, (%rsp)
movq 0x8(%rsp), %rdi
movq (%rsp), %rsi
callq 0x670f0
movss (%rax), %xmm0
addq $0x18, %rsp
retq
nopl (%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,881
|
ncnn::BinaryOp_x86_functor::binary_op_pow::func_pack4(float vector[4] const&, float vector[4] const&) const
|
__m128 func_pack4(const __m128& x, const __m128& y) const
{
return pow_ps(x, y);
}
|
subq $0xd88, %rsp # imm = 0xD88
movq %rdi, -0x68(%rsp)
movq %rsi, -0x70(%rsp)
movq %rdx, -0x78(%rsp)
movq -0x70(%rsp), %rax
movaps (%rax), %xmm1
movq -0x78(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm1, -0x50(%rsp)
movaps %xmm0, -0x60(%rsp)
movaps -0x60(%rsp), %xmm7
movaps -0x50(%rsp), %xmm0
movaps %xmm0, 0x1e0(%rsp)
movaps 0xb14cb7(%rip), %xmm2 # 0x1e0ba40
movaps %xmm2, 0x1c0(%rsp)
movaps 0x1e0(%rsp), %xmm1
xorps %xmm5, %xmm5
movaps %xmm5, 0x310(%rsp)
movaps 0x310(%rsp), %xmm0
movaps %xmm1, 0xcc0(%rsp)
movaps %xmm0, 0xcb0(%rsp)
movaps 0xcc0(%rsp), %xmm0
movaps 0xcb0(%rsp), %xmm1
cmpleps %xmm1, %xmm0
movaps %xmm0, 0x1b0(%rsp)
movaps 0x1e0(%rsp), %xmm0
movaps %xmm0, 0x300(%rsp)
movaps 0xb14d21(%rip), %xmm0 # 0x1e0bb10
movaps %xmm0, 0x2f0(%rsp)
movaps 0x300(%rsp), %xmm0
movaps 0x2f0(%rsp), %xmm1
maxps %xmm1, %xmm0
movaps %xmm0, 0x1e0(%rsp)
movaps 0x1e0(%rsp), %xmm0
movaps %xmm0, 0xcf0(%rsp)
movaps 0xcf0(%rsp), %xmm0
movaps %xmm0, 0xce0(%rsp)
movl $0x17, 0xcdc(%rsp)
movaps 0xce0(%rsp), %xmm0
movd 0xcdc(%rsp), %xmm1
psrld %xmm1, %xmm0
movaps %xmm0, 0x1d0(%rsp)
movaps 0x1e0(%rsp), %xmm0
movaps %xmm0, 0x3e0(%rsp)
movaps 0xb14caf(%rip), %xmm0 # 0x1e0bb20
movaps %xmm0, 0x3d0(%rsp)
movaps 0x3e0(%rsp), %xmm0
movaps 0x3d0(%rsp), %xmm1
pand %xmm1, %xmm0
movaps %xmm0, 0x1e0(%rsp)
movaps 0x1e0(%rsp), %xmm0
movaps %xmm0, 0xd30(%rsp)
movaps 0xb14bd4(%rip), %xmm1 # 0x1e0ba80
movaps %xmm1, 0xd20(%rsp)
movaps 0xd30(%rsp), %xmm0
movaps 0xd20(%rsp), %xmm3
por %xmm3, %xmm0
movaps %xmm0, 0x1e0(%rsp)
movaps 0x1d0(%rsp), %xmm0
movaps %xmm0, 0xd50(%rsp)
movaps 0xb14c19(%rip), %xmm0 # 0x1e0bb00
movaps %xmm0, 0xd40(%rsp)
movaps 0xd50(%rsp), %xmm3
movaps 0xd40(%rsp), %xmm4
psubd %xmm4, %xmm3
movaps %xmm3, 0x1d0(%rsp)
movaps 0x1d0(%rsp), %xmm3
movaps %xmm3, 0x350(%rsp)
cvtdq2ps 0x350(%rsp), %xmm3
movaps %xmm3, 0x1a0(%rsp)
movaps 0x1a0(%rsp), %xmm4
movaps 0x1c0(%rsp), %xmm3
movaps %xmm4, 0x240(%rsp)
movaps %xmm3, 0x230(%rsp)
movaps 0x240(%rsp), %xmm3
movaps 0x230(%rsp), %xmm4
addps %xmm4, %xmm3
movaps %xmm3, 0x1a0(%rsp)
movaps 0x1e0(%rsp), %xmm3
movaps %xmm3, 0xd70(%rsp)
movaps 0xb14bb3(%rip), %xmm3 # 0x1e0bb30
movaps %xmm3, 0xd60(%rsp)
movaps 0xd70(%rsp), %xmm3
movaps 0xd60(%rsp), %xmm4
cmpltps %xmm4, %xmm3
movaps %xmm3, 0x190(%rsp)
movaps 0x1e0(%rsp), %xmm4
movaps 0x190(%rsp), %xmm3
movaps %xmm4, 0x3c0(%rsp)
movaps %xmm3, 0x3b0(%rsp)
movaps 0x3c0(%rsp), %xmm3
movaps 0x3b0(%rsp), %xmm4
pand %xmm4, %xmm3
movaps %xmm3, 0x180(%rsp)
movaps 0x1e0(%rsp), %xmm4
movaps 0x1c0(%rsp), %xmm3
movaps %xmm4, 0x280(%rsp)
movaps %xmm3, 0x270(%rsp)
movaps 0x280(%rsp), %xmm3
movaps 0x270(%rsp), %xmm4
subps %xmm4, %xmm3
movaps %xmm3, 0x1e0(%rsp)
movaps 0x1a0(%rsp), %xmm4
movaps 0x1c0(%rsp), %xmm6
movaps 0x190(%rsp), %xmm3
movaps %xmm6, 0x3a0(%rsp)
movaps %xmm3, 0x390(%rsp)
movaps 0x3a0(%rsp), %xmm3
movaps 0x390(%rsp), %xmm6
pand %xmm6, %xmm3
movaps %xmm4, 0x260(%rsp)
movaps %xmm3, 0x250(%rsp)
movaps 0x260(%rsp), %xmm3
movaps 0x250(%rsp), %xmm4
subps %xmm4, %xmm3
movaps %xmm3, 0x1a0(%rsp)
movaps 0x1e0(%rsp), %xmm4
movaps 0x180(%rsp), %xmm3
movaps %xmm4, 0x220(%rsp)
movaps %xmm3, 0x210(%rsp)
movaps 0x220(%rsp), %xmm3
movaps 0x210(%rsp), %xmm4
addps %xmm4, %xmm3
movaps %xmm3, 0x1e0(%rsp)
movaps 0x1e0(%rsp), %xmm3
movaps %xmm3, 0x2e0(%rsp)
movaps %xmm3, 0x2d0(%rsp)
movaps 0x2e0(%rsp), %xmm3
movaps 0x2d0(%rsp), %xmm4
mulps %xmm4, %xmm3
movaps %xmm3, 0x170(%rsp)
movaps 0xb14a4c(%rip), %xmm3 # 0x1e0bb40
movaps %xmm3, 0x160(%rsp)
movaps 0x160(%rsp), %xmm4
movaps 0x1e0(%rsp), %xmm3
movaps %xmm4, 0x970(%rsp)
movaps %xmm3, 0x960(%rsp)
movaps 0xb14a2d(%rip), %xmm3 # 0x1e0bb50
movaps %xmm3, 0x950(%rsp)
movaps 0x970(%rsp), %xmm4
movaps 0x960(%rsp), %xmm3
movaps %xmm4, 0x9b0(%rsp)
movaps %xmm3, 0x9a0(%rsp)
movaps 0x9b0(%rsp), %xmm4
movaps 0x9a0(%rsp), %xmm3
mulps %xmm3, %xmm4
movaps 0x950(%rsp), %xmm3
movaps %xmm4, 0x990(%rsp)
movaps %xmm3, 0x980(%rsp)
movaps 0x990(%rsp), %xmm3
movaps 0x980(%rsp), %xmm4
addps %xmm4, %xmm3
movaps %xmm3, 0x160(%rsp)
movaps 0x160(%rsp), %xmm4
movaps 0x1e0(%rsp), %xmm3
movaps %xmm4, 0x900(%rsp)
movaps %xmm3, 0x8f0(%rsp)
movaps 0xb149a8(%rip), %xmm3 # 0x1e0bb60
movaps %xmm3, 0x8e0(%rsp)
movaps 0x900(%rsp), %xmm4
movaps 0x8f0(%rsp), %xmm3
movaps %xmm4, 0x940(%rsp)
movaps %xmm3, 0x930(%rsp)
movaps 0x940(%rsp), %xmm4
movaps 0x930(%rsp), %xmm3
mulps %xmm3, %xmm4
movaps 0x8e0(%rsp), %xmm3
movaps %xmm4, 0x920(%rsp)
movaps %xmm3, 0x910(%rsp)
movaps 0x920(%rsp), %xmm3
movaps 0x910(%rsp), %xmm4
addps %xmm4, %xmm3
movaps %xmm3, 0x160(%rsp)
movaps 0x160(%rsp), %xmm4
movaps 0x1e0(%rsp), %xmm3
movaps %xmm4, 0x890(%rsp)
movaps %xmm3, 0x880(%rsp)
movaps 0xb14923(%rip), %xmm3 # 0x1e0bb70
movaps %xmm3, 0x870(%rsp)
movaps 0x890(%rsp), %xmm4
movaps 0x880(%rsp), %xmm3
movaps %xmm4, 0x8d0(%rsp)
movaps %xmm3, 0x8c0(%rsp)
movaps 0x8d0(%rsp), %xmm4
movaps 0x8c0(%rsp), %xmm3
mulps %xmm3, %xmm4
movaps 0x870(%rsp), %xmm3
movaps %xmm4, 0x8b0(%rsp)
movaps %xmm3, 0x8a0(%rsp)
movaps 0x8b0(%rsp), %xmm3
movaps 0x8a0(%rsp), %xmm4
addps %xmm4, %xmm3
movaps %xmm3, 0x160(%rsp)
movaps 0x160(%rsp), %xmm4
movaps 0x1e0(%rsp), %xmm3
movaps %xmm4, 0x820(%rsp)
movaps %xmm3, 0x810(%rsp)
movaps 0xb1489e(%rip), %xmm3 # 0x1e0bb80
movaps %xmm3, 0x800(%rsp)
movaps 0x820(%rsp), %xmm4
movaps 0x810(%rsp), %xmm3
movaps %xmm4, 0x860(%rsp)
movaps %xmm3, 0x850(%rsp)
movaps 0x860(%rsp), %xmm4
movaps 0x850(%rsp), %xmm3
mulps %xmm3, %xmm4
movaps 0x800(%rsp), %xmm3
movaps %xmm4, 0x840(%rsp)
movaps %xmm3, 0x830(%rsp)
movaps 0x840(%rsp), %xmm3
movaps 0x830(%rsp), %xmm4
addps %xmm4, %xmm3
movaps %xmm3, 0x160(%rsp)
movaps 0x160(%rsp), %xmm4
movaps 0x1e0(%rsp), %xmm3
movaps %xmm4, 0x7b0(%rsp)
movaps %xmm3, 0x7a0(%rsp)
movaps 0xb14819(%rip), %xmm3 # 0x1e0bb90
movaps %xmm3, 0x790(%rsp)
movaps 0x7b0(%rsp), %xmm4
movaps 0x7a0(%rsp), %xmm3
movaps %xmm4, 0x7f0(%rsp)
movaps %xmm3, 0x7e0(%rsp)
movaps 0x7f0(%rsp), %xmm4
movaps 0x7e0(%rsp), %xmm3
mulps %xmm3, %xmm4
movaps 0x790(%rsp), %xmm3
movaps %xmm4, 0x7d0(%rsp)
movaps %xmm3, 0x7c0(%rsp)
movaps 0x7d0(%rsp), %xmm3
movaps 0x7c0(%rsp), %xmm4
addps %xmm4, %xmm3
movaps %xmm3, 0x160(%rsp)
movaps 0x160(%rsp), %xmm4
movaps 0x1e0(%rsp), %xmm3
movaps %xmm4, 0x740(%rsp)
movaps %xmm3, 0x730(%rsp)
movaps 0xb14794(%rip), %xmm3 # 0x1e0bba0
movaps %xmm3, 0x720(%rsp)
movaps 0x740(%rsp), %xmm4
movaps 0x730(%rsp), %xmm3
movaps %xmm4, 0x780(%rsp)
movaps %xmm3, 0x770(%rsp)
movaps 0x780(%rsp), %xmm4
movaps 0x770(%rsp), %xmm3
mulps %xmm3, %xmm4
movaps 0x720(%rsp), %xmm3
movaps %xmm4, 0x760(%rsp)
movaps %xmm3, 0x750(%rsp)
movaps 0x760(%rsp), %xmm3
movaps 0x750(%rsp), %xmm4
addps %xmm4, %xmm3
movaps %xmm3, 0x160(%rsp)
movaps 0x160(%rsp), %xmm4
movaps 0x1e0(%rsp), %xmm3
movaps %xmm4, 0x6d0(%rsp)
movaps %xmm3, 0x6c0(%rsp)
movaps 0xb1470f(%rip), %xmm3 # 0x1e0bbb0
movaps %xmm3, 0x6b0(%rsp)
movaps 0x6d0(%rsp), %xmm4
movaps 0x6c0(%rsp), %xmm3
movaps %xmm4, 0x710(%rsp)
movaps %xmm3, 0x700(%rsp)
movaps 0x710(%rsp), %xmm4
movaps 0x700(%rsp), %xmm3
mulps %xmm3, %xmm4
movaps 0x6b0(%rsp), %xmm3
movaps %xmm4, 0x6f0(%rsp)
movaps %xmm3, 0x6e0(%rsp)
movaps 0x6f0(%rsp), %xmm3
movaps 0x6e0(%rsp), %xmm4
addps %xmm4, %xmm3
movaps %xmm3, 0x160(%rsp)
movaps 0x160(%rsp), %xmm4
movaps 0x1e0(%rsp), %xmm3
movaps %xmm4, 0x660(%rsp)
movaps %xmm3, 0x650(%rsp)
movaps 0xb1468a(%rip), %xmm3 # 0x1e0bbc0
movaps %xmm3, 0x640(%rsp)
movaps 0x660(%rsp), %xmm4
movaps 0x650(%rsp), %xmm3
movaps %xmm4, 0x6a0(%rsp)
movaps %xmm3, 0x690(%rsp)
movaps 0x6a0(%rsp), %xmm4
movaps 0x690(%rsp), %xmm3
mulps %xmm3, %xmm4
movaps 0x640(%rsp), %xmm3
movaps %xmm4, 0x680(%rsp)
movaps %xmm3, 0x670(%rsp)
movaps 0x680(%rsp), %xmm3
movaps 0x670(%rsp), %xmm4
addps %xmm4, %xmm3
movaps %xmm3, 0x160(%rsp)
movaps 0x160(%rsp), %xmm4
movaps 0x1e0(%rsp), %xmm3
movaps %xmm4, 0x2c0(%rsp)
movaps %xmm3, 0x2b0(%rsp)
movaps 0x2c0(%rsp), %xmm3
movaps 0x2b0(%rsp), %xmm4
mulps %xmm4, %xmm3
movaps %xmm3, 0x160(%rsp)
movaps 0x160(%rsp), %xmm4
movaps 0x170(%rsp), %xmm3
movaps %xmm4, 0x2a0(%rsp)
movaps %xmm3, 0x290(%rsp)
movaps 0x2a0(%rsp), %xmm3
movaps 0x290(%rsp), %xmm4
mulps %xmm4, %xmm3
movaps %xmm3, 0x160(%rsp)
movaps 0x1a0(%rsp), %xmm3
movaps 0x160(%rsp), %xmm4
movaps %xmm3, 0x5f0(%rsp)
movaps 0xb14467(%rip), %xmm3 # 0x1e0baa0
movaps %xmm3, 0x5e0(%rsp)
movaps %xmm4, 0x5d0(%rsp)
movaps 0x5f0(%rsp), %xmm6
movaps 0x5e0(%rsp), %xmm4
movaps %xmm6, 0x630(%rsp)
movaps %xmm4, 0x620(%rsp)
movaps 0x630(%rsp), %xmm6
movaps 0x620(%rsp), %xmm4
mulps %xmm4, %xmm6
movaps 0x5d0(%rsp), %xmm4
movaps %xmm6, 0x610(%rsp)
movaps %xmm4, 0x600(%rsp)
movaps 0x610(%rsp), %xmm4
movaps 0x600(%rsp), %xmm6
addps %xmm6, %xmm4
movaps %xmm4, 0x160(%rsp)
movaps 0x170(%rsp), %xmm6
movaps 0x160(%rsp), %xmm4
movaps %xmm6, 0x430(%rsp)
movaps %xmm1, 0x420(%rsp)
movaps %xmm4, 0x410(%rsp)
movaps 0x410(%rsp), %xmm6
movaps 0x430(%rsp), %xmm8
movaps 0x420(%rsp), %xmm4
movaps %xmm8, 0x470(%rsp)
movaps %xmm4, 0x460(%rsp)
movaps 0x470(%rsp), %xmm4
movaps 0x460(%rsp), %xmm8
mulps %xmm8, %xmm4
movaps %xmm6, 0x450(%rsp)
movaps %xmm4, 0x440(%rsp)
movaps 0x450(%rsp), %xmm4
movaps 0x440(%rsp), %xmm6
subps %xmm6, %xmm4
movaps %xmm4, 0x160(%rsp)
movaps 0x1e0(%rsp), %xmm6
movaps 0x160(%rsp), %xmm4
movaps %xmm6, 0x200(%rsp)
movaps %xmm4, 0x1f0(%rsp)
movaps 0x200(%rsp), %xmm4
movaps 0x1f0(%rsp), %xmm6
addps %xmm6, %xmm4
movaps %xmm4, 0x1e0(%rsp)
movaps 0x1a0(%rsp), %xmm4
movaps 0x1e0(%rsp), %xmm6
movaps %xmm4, 0x580(%rsp)
movaps 0xb142f5(%rip), %xmm4 # 0x1e0ba90
movaps %xmm4, 0x570(%rsp)
movaps %xmm6, 0x560(%rsp)
movaps 0x580(%rsp), %xmm8
movaps 0x570(%rsp), %xmm6
movaps %xmm8, 0x5c0(%rsp)
movaps %xmm6, 0x5b0(%rsp)
movaps 0x5c0(%rsp), %xmm8
movaps 0x5b0(%rsp), %xmm6
mulps %xmm6, %xmm8
movaps 0x560(%rsp), %xmm6
movaps %xmm8, 0x5a0(%rsp)
movaps %xmm6, 0x590(%rsp)
movaps 0x5a0(%rsp), %xmm6
movaps 0x590(%rsp), %xmm8
addps %xmm8, %xmm6
movaps %xmm6, 0x1e0(%rsp)
movaps 0x1e0(%rsp), %xmm8
movaps 0x1b0(%rsp), %xmm6
movaps %xmm8, 0xd10(%rsp)
movaps %xmm6, 0xd00(%rsp)
movaps 0xd10(%rsp), %xmm6
movaps 0xd00(%rsp), %xmm8
por %xmm8, %xmm6
movaps %xmm6, 0x1e0(%rsp)
movaps 0x1e0(%rsp), %xmm6
movaps %xmm7, -0x30(%rsp)
movaps %xmm6, -0x40(%rsp)
movaps -0x30(%rsp), %xmm6
movaps -0x40(%rsp), %xmm7
mulps %xmm7, %xmm6
movaps %xmm6, 0x50(%rsp)
movaps %xmm5, 0x320(%rsp)
movaps 0x320(%rsp), %xmm5
movaps %xmm5, 0x40(%rsp)
movaps %xmm2, 0x10(%rsp)
movaps 0x50(%rsp), %xmm2
movaps %xmm2, 0x150(%rsp)
movaps 0xb141a6(%rip), %xmm2 # 0x1e0ba50
movaps %xmm2, 0x140(%rsp)
movaps 0x150(%rsp), %xmm2
movaps 0x140(%rsp), %xmm5
minps %xmm5, %xmm2
movaps %xmm2, 0x50(%rsp)
movaps 0x50(%rsp), %xmm2
movaps %xmm2, 0x130(%rsp)
movaps 0xb14182(%rip), %xmm2 # 0x1e0ba60
movaps %xmm2, 0x120(%rsp)
movaps 0x130(%rsp), %xmm2
movaps 0x120(%rsp), %xmm5
maxps %xmm5, %xmm2
movaps %xmm2, 0x50(%rsp)
movaps 0x50(%rsp), %xmm2
movaps %xmm2, 0x110(%rsp)
movaps 0xb1415e(%rip), %xmm2 # 0x1e0ba70
movaps %xmm2, 0x100(%rsp)
movaps 0x110(%rsp), %xmm2
movaps 0x100(%rsp), %xmm5
mulps %xmm5, %xmm2
movaps %xmm2, 0x30(%rsp)
movaps 0x30(%rsp), %xmm2
movaps %xmm2, 0x90(%rsp)
movaps %xmm1, 0x80(%rsp)
movaps 0x90(%rsp), %xmm2
movaps 0x80(%rsp), %xmm5
addps %xmm5, %xmm2
movaps %xmm2, 0x30(%rsp)
movaps 0x30(%rsp), %xmm2
movaps %xmm2, 0x340(%rsp)
cvttps2dq 0x340(%rsp), %xmm2
movaps %xmm2, 0x20(%rsp)
movaps 0x20(%rsp), %xmm2
movaps %xmm2, 0x360(%rsp)
cvtdq2ps 0x360(%rsp), %xmm2
movaps %xmm2, 0x40(%rsp)
movaps 0x40(%rsp), %xmm5
movaps 0x30(%rsp), %xmm2
movaps %xmm5, 0x380(%rsp)
movaps %xmm2, 0x370(%rsp)
movaps 0x370(%rsp), %xmm2
movaps 0x380(%rsp), %xmm5
cmpltps %xmm5, %xmm2
movaps %xmm2, (%rsp)
movaps (%rsp), %xmm5
movaps 0x10(%rsp), %xmm2
movaps %xmm5, 0x400(%rsp)
movaps %xmm2, 0x3f0(%rsp)
movaps 0x400(%rsp), %xmm2
movaps 0x3f0(%rsp), %xmm5
pand %xmm5, %xmm2
movaps %xmm2, (%rsp)
movaps 0x40(%rsp), %xmm5
movaps (%rsp), %xmm2
movaps %xmm5, 0xb0(%rsp)
movaps %xmm2, 0xa0(%rsp)
movaps 0xb0(%rsp), %xmm2
movaps 0xa0(%rsp), %xmm5
subps %xmm5, %xmm2
movaps %xmm2, 0x30(%rsp)
movaps 0x30(%rsp), %xmm5
movaps 0x50(%rsp), %xmm2
movaps %xmm5, 0x510(%rsp)
movaps %xmm4, 0x500(%rsp)
movaps %xmm2, 0x4f0(%rsp)
movaps 0x4f0(%rsp), %xmm4
movaps 0x510(%rsp), %xmm5
movaps 0x500(%rsp), %xmm2
movaps %xmm5, 0x550(%rsp)
movaps %xmm2, 0x540(%rsp)
movaps 0x550(%rsp), %xmm2
movaps 0x540(%rsp), %xmm5
mulps %xmm5, %xmm2
movaps %xmm4, 0x530(%rsp)
movaps %xmm2, 0x520(%rsp)
movaps 0x530(%rsp), %xmm2
movaps 0x520(%rsp), %xmm4
subps %xmm4, %xmm2
movaps %xmm2, 0x50(%rsp)
movaps 0x30(%rsp), %xmm4
movaps 0x50(%rsp), %xmm2
movaps %xmm4, 0x4a0(%rsp)
movaps %xmm3, 0x490(%rsp)
movaps %xmm2, 0x480(%rsp)
movaps 0x480(%rsp), %xmm3
movaps 0x4a0(%rsp), %xmm4
movaps 0x490(%rsp), %xmm2
movaps %xmm4, 0x4e0(%rsp)
movaps %xmm2, 0x4d0(%rsp)
movaps 0x4e0(%rsp), %xmm2
movaps 0x4d0(%rsp), %xmm4
mulps %xmm4, %xmm2
movaps %xmm3, 0x4c0(%rsp)
movaps %xmm2, 0x4b0(%rsp)
movaps 0x4c0(%rsp), %xmm2
movaps 0x4b0(%rsp), %xmm3
subps %xmm3, %xmm2
movaps %xmm2, 0x50(%rsp)
movaps 0x50(%rsp), %xmm2
movaps %xmm2, 0xf0(%rsp)
movaps %xmm2, 0xe0(%rsp)
movaps 0xf0(%rsp), %xmm2
movaps 0xe0(%rsp), %xmm3
mulps %xmm3, %xmm2
movaps %xmm2, 0x40(%rsp)
movaps 0xb13f4a(%rip), %xmm2 # 0x1e0bab0
movaps %xmm2, -0x10(%rsp)
movaps -0x10(%rsp), %xmm3
movaps 0x50(%rsp), %xmm2
movaps %xmm3, 0xc10(%rsp)
movaps %xmm2, 0xc00(%rsp)
movaps 0xb13f34(%rip), %xmm2 # 0x1e0bac0
movaps %xmm2, 0xbf0(%rsp)
movaps 0xc10(%rsp), %xmm3
movaps 0xc00(%rsp), %xmm2
movaps %xmm3, 0xc50(%rsp)
movaps %xmm2, 0xc40(%rsp)
movaps 0xc50(%rsp), %xmm3
movaps 0xc40(%rsp), %xmm2
mulps %xmm2, %xmm3
movaps 0xbf0(%rsp), %xmm2
movaps %xmm3, 0xc30(%rsp)
movaps %xmm2, 0xc20(%rsp)
movaps 0xc30(%rsp), %xmm2
movaps 0xc20(%rsp), %xmm3
addps %xmm3, %xmm2
movaps %xmm2, -0x10(%rsp)
movaps -0x10(%rsp), %xmm3
movaps 0x50(%rsp), %xmm2
movaps %xmm3, 0xba0(%rsp)
movaps %xmm2, 0xb90(%rsp)
movaps 0xb13eb8(%rip), %xmm2 # 0x1e0bad0
movaps %xmm2, 0xb80(%rsp)
movaps 0xba0(%rsp), %xmm3
movaps 0xb90(%rsp), %xmm2
movaps %xmm3, 0xbe0(%rsp)
movaps %xmm2, 0xbd0(%rsp)
movaps 0xbe0(%rsp), %xmm3
movaps 0xbd0(%rsp), %xmm2
mulps %xmm2, %xmm3
movaps 0xb80(%rsp), %xmm2
movaps %xmm3, 0xbc0(%rsp)
movaps %xmm2, 0xbb0(%rsp)
movaps 0xbc0(%rsp), %xmm2
movaps 0xbb0(%rsp), %xmm3
addps %xmm3, %xmm2
movaps %xmm2, -0x10(%rsp)
movaps -0x10(%rsp), %xmm3
movaps 0x50(%rsp), %xmm2
movaps %xmm3, 0xb30(%rsp)
movaps %xmm2, 0xb20(%rsp)
movaps 0xb13e3c(%rip), %xmm2 # 0x1e0bae0
movaps %xmm2, 0xb10(%rsp)
movaps 0xb30(%rsp), %xmm3
movaps 0xb20(%rsp), %xmm2
movaps %xmm3, 0xb70(%rsp)
movaps %xmm2, 0xb60(%rsp)
movaps 0xb70(%rsp), %xmm3
movaps 0xb60(%rsp), %xmm2
mulps %xmm2, %xmm3
movaps 0xb10(%rsp), %xmm2
movaps %xmm3, 0xb50(%rsp)
movaps %xmm2, 0xb40(%rsp)
movaps 0xb50(%rsp), %xmm2
movaps 0xb40(%rsp), %xmm3
addps %xmm3, %xmm2
movaps %xmm2, -0x10(%rsp)
movaps -0x10(%rsp), %xmm3
movaps 0x50(%rsp), %xmm2
movaps %xmm3, 0xac0(%rsp)
movaps %xmm2, 0xab0(%rsp)
movaps 0xb13dc0(%rip), %xmm2 # 0x1e0baf0
movaps %xmm2, 0xaa0(%rsp)
movaps 0xac0(%rsp), %xmm3
movaps 0xab0(%rsp), %xmm2
movaps %xmm3, 0xb00(%rsp)
movaps %xmm2, 0xaf0(%rsp)
movaps 0xb00(%rsp), %xmm3
movaps 0xaf0(%rsp), %xmm2
mulps %xmm2, %xmm3
movaps 0xaa0(%rsp), %xmm2
movaps %xmm3, 0xae0(%rsp)
movaps %xmm2, 0xad0(%rsp)
movaps 0xae0(%rsp), %xmm2
movaps 0xad0(%rsp), %xmm3
addps %xmm3, %xmm2
movaps %xmm2, -0x10(%rsp)
movaps -0x10(%rsp), %xmm3
movaps 0x50(%rsp), %xmm2
movaps %xmm3, 0xa50(%rsp)
movaps %xmm2, 0xa40(%rsp)
movaps %xmm1, 0xa30(%rsp)
movaps 0xa50(%rsp), %xmm2
movaps 0xa40(%rsp), %xmm1
movaps %xmm2, 0xa90(%rsp)
movaps %xmm1, 0xa80(%rsp)
movaps 0xa90(%rsp), %xmm2
movaps 0xa80(%rsp), %xmm1
mulps %xmm1, %xmm2
movaps 0xa30(%rsp), %xmm1
movaps %xmm2, 0xa70(%rsp)
movaps %xmm1, 0xa60(%rsp)
movaps 0xa70(%rsp), %xmm1
movaps 0xa60(%rsp), %xmm2
addps %xmm2, %xmm1
movaps %xmm1, -0x10(%rsp)
movaps -0x10(%rsp), %xmm3
movaps 0x40(%rsp), %xmm2
movaps 0x50(%rsp), %xmm1
movaps %xmm3, 0x9e0(%rsp)
movaps %xmm2, 0x9d0(%rsp)
movaps %xmm1, 0x9c0(%rsp)
movaps 0x9e0(%rsp), %xmm2
movaps 0x9d0(%rsp), %xmm1
movaps %xmm2, 0xa20(%rsp)
movaps %xmm1, 0xa10(%rsp)
movaps 0xa20(%rsp), %xmm2
movaps 0xa10(%rsp), %xmm1
mulps %xmm1, %xmm2
movaps 0x9c0(%rsp), %xmm1
movaps %xmm2, 0xa00(%rsp)
movaps %xmm1, 0x9f0(%rsp)
movaps 0xa00(%rsp), %xmm1
movaps 0x9f0(%rsp), %xmm2
addps %xmm2, %xmm1
movaps %xmm1, -0x10(%rsp)
movaps -0x10(%rsp), %xmm2
movaps 0x10(%rsp), %xmm1
movaps %xmm2, 0x70(%rsp)
movaps %xmm1, 0x60(%rsp)
movaps 0x70(%rsp), %xmm1
movaps 0x60(%rsp), %xmm2
addps %xmm2, %xmm1
movaps %xmm1, -0x10(%rsp)
movaps 0x30(%rsp), %xmm1
movaps %xmm1, 0x330(%rsp)
cvttps2dq 0x330(%rsp), %xmm1
movaps %xmm1, 0x20(%rsp)
movaps 0x20(%rsp), %xmm1
movaps %xmm1, 0xc70(%rsp)
movaps %xmm0, 0xc60(%rsp)
movdqa 0xc70(%rsp), %xmm0
movdqa 0xc60(%rsp), %xmm1
paddd %xmm1, %xmm0
movdqa %xmm0, 0x20(%rsp)
movdqa 0x20(%rsp), %xmm0
movdqa %xmm0, 0xc90(%rsp)
movl $0x17, 0xc8c(%rsp)
movdqa 0xc90(%rsp), %xmm0
movl 0xc8c(%rsp), %eax
movd %eax, %xmm1
pslld %xmm1, %xmm0
movdqa %xmm0, 0x20(%rsp)
movdqa 0x20(%rsp), %xmm0
movdqa %xmm0, 0xca0(%rsp)
movdqa 0xca0(%rsp), %xmm0
movaps %xmm0, -0x20(%rsp)
movaps -0x10(%rsp), %xmm1
movaps -0x20(%rsp), %xmm0
movaps %xmm1, 0xd0(%rsp)
movaps %xmm0, 0xc0(%rsp)
movaps 0xd0(%rsp), %xmm0
mulps 0xc0(%rsp), %xmm0
movaps %xmm0, -0x10(%rsp)
movaps -0x10(%rsp), %xmm0
addq $0xd88, %rsp # imm = 0xD88
retq
nopl (%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,882
|
ncnn::BinaryOp_x86_functor::binary_op_pow::func(float const&, float const&) const
|
float func(const float& x, const float& y) const
{
return (float)pow(x, y);
}
|
subq $0x18, %rsp
movq %rdi, 0x10(%rsp)
movq %rsi, 0x8(%rsp)
movq %rdx, (%rsp)
movq 0x8(%rsp), %rax
movss (%rax), %xmm0
movq (%rsp), %rax
movss (%rax), %xmm1
callq 0xa14a10
addq $0x18, %rsp
retq
nopl (%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,883
|
ncnn::BinaryOp_x86_functor::binary_op_rsub::func_pack4(float vector[4] const&, float vector[4] const&) const
|
__m128 func_pack4(const __m128& x, const __m128& y) const
{
return _mm_sub_ps(y, x);
}
|
movq %rdi, -0x30(%rsp)
movq %rsi, -0x38(%rsp)
movq %rdx, -0x40(%rsp)
movq -0x40(%rsp), %rax
movaps (%rax), %xmm1
movq -0x38(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm1, -0x18(%rsp)
movaps %xmm0, -0x28(%rsp)
movaps -0x18(%rsp), %xmm0
subps -0x28(%rsp), %xmm0
retq
nopw %cs:(%rax,%rax)
nop
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,884
|
ncnn::BinaryOp_x86_functor::binary_op_rsub::func(float const&, float const&) const
|
float func(const float& x, const float& y) const
{
return y - x;
}
|
movq %rdi, -0x8(%rsp)
movq %rsi, -0x10(%rsp)
movq %rdx, -0x18(%rsp)
movq -0x18(%rsp), %rax
movss (%rax), %xmm0
movq -0x10(%rsp), %rax
subss (%rax), %xmm0
retq
nopw %cs:(%rax,%rax)
nopl (%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,885
|
ncnn::BinaryOp_x86_functor::binary_op_rdiv::func_pack4(float vector[4] const&, float vector[4] const&) const
|
__m128 func_pack4(const __m128& x, const __m128& y) const
{
return _mm_div_ps(y, x);
}
|
movq %rdi, -0x30(%rsp)
movq %rsi, -0x38(%rsp)
movq %rdx, -0x40(%rsp)
movq -0x40(%rsp), %rax
movaps (%rax), %xmm1
movq -0x38(%rsp), %rax
movaps (%rax), %xmm0
movaps %xmm1, -0x18(%rsp)
movaps %xmm0, -0x28(%rsp)
movaps -0x18(%rsp), %xmm0
divps -0x28(%rsp), %xmm0
retq
nopw %cs:(%rax,%rax)
nop
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,886
|
ncnn::BinaryOp_x86_functor::binary_op_rdiv::func(float const&, float const&) const
|
float func(const float& x, const float& y) const
{
return y / x;
}
|
movq %rdi, -0x8(%rsp)
movq %rsi, -0x10(%rsp)
movq %rdx, -0x18(%rsp)
movq -0x18(%rsp), %rax
movss (%rax), %xmm0
movq -0x10(%rsp), %rax
divss (%rax), %xmm0
retq
nopw %cs:(%rax,%rax)
nopl (%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/src/layer/x86/binaryop_x86.cpp
|
2,112,887
|
ncnn::BinaryOp_x86_avx512::BinaryOp_x86_avx512()
|
BinaryOp_x86_avx512::BinaryOp_x86_avx512()
{
#if __SSE2__
support_packing = true;
#endif // __SSE2__
}
|
movq %rdi, -0x8(%rsp)
movq %rsi, -0x10(%rsp)
movq -0x8(%rsp), %rax
movq -0x10(%rsp), %rcx
movq (%rcx), %rdx
movq %rdx, (%rax)
movq 0x8(%rcx), %rdx
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
movq %rdx, (%rax,%rcx)
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
movb $0x1, 0xb(%rax,%rcx)
retq
nopw %cs:(%rax,%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/build_O0/src/layer/x86/binaryop_x86_avx512.cpp
|
2,112,888
|
ncnn::BinaryOp_x86_avx512::BinaryOp_x86_avx512()
|
BinaryOp_x86_avx512::BinaryOp_x86_avx512()
{
#if __SSE2__
support_packing = true;
#endif // __SSE2__
}
|
subq $0x18, %rsp
movq %rdi, 0x10(%rsp)
movq 0x10(%rsp), %rdi
movq %rdi, 0x8(%rsp)
addq $0x8, %rdi
callq 0x11edea0
movq 0x8(%rsp), %rax
leaq 0xbd9580(%rip), %rcx # 0x1ed16a8
addq $0x18, %rcx
movq %rcx, (%rax)
leaq 0xbd9572(%rip), %rcx # 0x1ed16a8
addq $0x90, %rcx
movq %rcx, 0x8(%rax)
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
movb $0x1, 0xb(%rax,%rcx)
addq $0x18, %rsp
retq
nopw %cs:(%rax,%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/build_O0/src/layer/x86/binaryop_x86_avx512.cpp
|
2,112,889
|
ncnn::BinaryOp_x86_avx512::forward(std::vector<ncnn::Mat, std::allocator<ncnn::Mat>> const&, std::vector<ncnn::Mat, std::allocator<ncnn::Mat>>&, ncnn::Option const&) const
|
int BinaryOp_x86_avx512::forward(const std::vector<Mat>& bottom_blobs, std::vector<Mat>& top_blobs, const Option& opt) const
{
#if __SSE2__
using namespace BinaryOp_x86_avx512_functor;
const Mat& bottom_blob = bottom_blobs[0];
const Mat& bottom_blob1 = bottom_blobs[1];
Mat& top_blob = top_blobs[0];
int elempack = bottom_blob.elempack;
int elempack1 = bottom_blob1.elempack;
#if __AVX__
#if __AVX512F__
if (elempack == 16 || elempack1 == 16)
{
if (op_type == Operation_ADD)
return binary_op_pack16<binary_op_add>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_SUB)
return binary_op_pack16<binary_op_sub>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_MUL)
return binary_op_pack16<binary_op_mul>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_DIV)
return binary_op_pack16<binary_op_div>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_MAX)
return binary_op_pack16<binary_op_max>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_MIN)
return binary_op_pack16<binary_op_min>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_POW)
return binary_op_pack16<binary_op_pow>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_RSUB)
return binary_op_pack16<binary_op_sub>(bottom_blob1, bottom_blob, top_blob, opt);
if (op_type == Operation_RDIV)
return binary_op_pack16<binary_op_div>(bottom_blob1, bottom_blob, top_blob, opt);
}
#endif // __AVX512F__
if (elempack == 8 || elempack1 == 8)
{
if (op_type == Operation_ADD)
return binary_op_pack8<binary_op_add>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_SUB)
return binary_op_pack8<binary_op_sub>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_MUL)
return binary_op_pack8<binary_op_mul>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_DIV)
return binary_op_pack8<binary_op_div>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_MAX)
return binary_op_pack8<binary_op_max>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_MIN)
return binary_op_pack8<binary_op_min>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_POW)
return binary_op_pack8<binary_op_pow>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_RSUB)
return binary_op_pack8<binary_op_sub>(bottom_blob1, bottom_blob, top_blob, opt);
if (op_type == Operation_RDIV)
return binary_op_pack8<binary_op_div>(bottom_blob1, bottom_blob, top_blob, opt);
}
#endif // __AVX__
if (elempack == 4 || elempack1 == 4)
{
if (op_type == Operation_ADD)
return binary_op_pack4<binary_op_add>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_SUB)
return binary_op_pack4<binary_op_sub>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_MUL)
return binary_op_pack4<binary_op_mul>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_DIV)
return binary_op_pack4<binary_op_div>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_MAX)
return binary_op_pack4<binary_op_max>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_MIN)
return binary_op_pack4<binary_op_min>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_POW)
return binary_op_pack4<binary_op_pow>(bottom_blob, bottom_blob1, top_blob, opt);
if (op_type == Operation_RSUB)
return binary_op_pack4<binary_op_sub>(bottom_blob1, bottom_blob, top_blob, opt);
if (op_type == Operation_RDIV)
return binary_op_pack4<binary_op_div>(bottom_blob1, bottom_blob, top_blob, opt);
}
#endif // __SSE2__
return BinaryOp::forward(bottom_blobs, top_blobs, opt);
}
|
subq $0x58, %rsp
movq %rdi, 0x48(%rsp)
movq %rsi, 0x40(%rsp)
movq %rdx, 0x38(%rsp)
movq %rcx, 0x30(%rsp)
movq 0x48(%rsp), %rax
movq %rax, 0x8(%rsp)
movq 0x40(%rsp), %rdi
xorl %eax, %eax
movl %eax, %esi
callq 0xbf050
movq %rax, 0x28(%rsp)
movq 0x40(%rsp), %rdi
movl $0x1, %esi
callq 0xbf050
movq %rax, 0x20(%rsp)
movq 0x38(%rsp), %rdi
xorl %eax, %eax
movl %eax, %esi
callq 0xa2b00
movq %rax, 0x18(%rsp)
movq 0x28(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x14(%rsp)
movq 0x20(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x10(%rsp)
cmpl $0x10, 0x14(%rsp)
je 0x12f81e6
cmpl $0x10, 0x10(%rsp)
jne 0x12f83e0
movq 0x8(%rsp), %rax
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x0, 0xd0(%rax,%rcx)
jne 0x12f821e
movq 0x28(%rsp), %rdi
movq 0x20(%rsp), %rsi
movq 0x18(%rsp), %rdx
movq 0x30(%rsp), %rcx
callq 0x12f8820
movl %eax, 0x54(%rsp)
jmp 0x12f8816
movq 0x8(%rsp), %rax
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x1, 0xd0(%rax,%rcx)
jne 0x12f8256
movq 0x28(%rsp), %rdi
movq 0x20(%rsp), %rsi
movq 0x18(%rsp), %rdx
movq 0x30(%rsp), %rcx
callq 0x1307df0
movl %eax, 0x54(%rsp)
jmp 0x12f8816
movq 0x8(%rsp), %rax
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x2, 0xd0(%rax,%rcx)
jne 0x12f828e
movq 0x28(%rsp), %rdi
movq 0x20(%rsp), %rsi
movq 0x18(%rsp), %rdx
movq 0x30(%rsp), %rcx
callq 0x13173c0
movl %eax, 0x54(%rsp)
jmp 0x12f8816
movq 0x8(%rsp), %rax
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x3, 0xd0(%rax,%rcx)
jne 0x12f82c6
movq 0x28(%rsp), %rdi
movq 0x20(%rsp), %rsi
movq 0x18(%rsp), %rdx
movq 0x30(%rsp), %rcx
callq 0x1326990
movl %eax, 0x54(%rsp)
jmp 0x12f8816
movq 0x8(%rsp), %rax
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x4, 0xd0(%rax,%rcx)
jne 0x12f82fe
movq 0x28(%rsp), %rdi
movq 0x20(%rsp), %rsi
movq 0x18(%rsp), %rdx
movq 0x30(%rsp), %rcx
callq 0x1335f60
movl %eax, 0x54(%rsp)
jmp 0x12f8816
movq 0x8(%rsp), %rax
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x5, 0xd0(%rax,%rcx)
jne 0x12f8336
movq 0x28(%rsp), %rdi
movq 0x20(%rsp), %rsi
movq 0x18(%rsp), %rdx
movq 0x30(%rsp), %rcx
callq 0x1345530
movl %eax, 0x54(%rsp)
jmp 0x12f8816
movq 0x8(%rsp), %rax
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x6, 0xd0(%rax,%rcx)
jne 0x12f836e
movq 0x28(%rsp), %rdi
movq 0x20(%rsp), %rsi
movq 0x18(%rsp), %rdx
movq 0x30(%rsp), %rcx
callq 0x1354b00
movl %eax, 0x54(%rsp)
jmp 0x12f8816
movq 0x8(%rsp), %rax
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x7, 0xd0(%rax,%rcx)
jne 0x12f83a6
movq 0x20(%rsp), %rdi
movq 0x28(%rsp), %rsi
movq 0x18(%rsp), %rdx
movq 0x30(%rsp), %rcx
callq 0x1307df0
movl %eax, 0x54(%rsp)
jmp 0x12f8816
movq 0x8(%rsp), %rax
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x8, 0xd0(%rax,%rcx)
jne 0x12f83de
movq 0x20(%rsp), %rdi
movq 0x28(%rsp), %rsi
movq 0x18(%rsp), %rdx
movq 0x30(%rsp), %rcx
callq 0x1326990
movl %eax, 0x54(%rsp)
jmp 0x12f8816
jmp 0x12f83e0
cmpl $0x8, 0x14(%rsp)
je 0x12f83f2
cmpl $0x8, 0x10(%rsp)
jne 0x12f85ec
movq 0x8(%rsp), %rax
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x0, 0xd0(%rax,%rcx)
jne 0x12f842a
movq 0x28(%rsp), %rdi
movq 0x20(%rsp), %rsi
movq 0x18(%rsp), %rdx
movq 0x30(%rsp), %rcx
callq 0x13640d0
movl %eax, 0x54(%rsp)
jmp 0x12f8816
movq 0x8(%rsp), %rax
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x1, 0xd0(%rax,%rcx)
jne 0x12f8462
movq 0x28(%rsp), %rdi
movq 0x20(%rsp), %rsi
movq 0x18(%rsp), %rdx
movq 0x30(%rsp), %rcx
callq 0x13735d0
movl %eax, 0x54(%rsp)
jmp 0x12f8816
movq 0x8(%rsp), %rax
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x2, 0xd0(%rax,%rcx)
jne 0x12f849a
movq 0x28(%rsp), %rdi
movq 0x20(%rsp), %rsi
movq 0x18(%rsp), %rdx
movq 0x30(%rsp), %rcx
callq 0x1382ad0
movl %eax, 0x54(%rsp)
jmp 0x12f8816
movq 0x8(%rsp), %rax
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x3, 0xd0(%rax,%rcx)
jne 0x12f84d2
movq 0x28(%rsp), %rdi
movq 0x20(%rsp), %rsi
movq 0x18(%rsp), %rdx
movq 0x30(%rsp), %rcx
callq 0x1391fd0
movl %eax, 0x54(%rsp)
jmp 0x12f8816
movq 0x8(%rsp), %rax
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x4, 0xd0(%rax,%rcx)
jne 0x12f850a
movq 0x28(%rsp), %rdi
movq 0x20(%rsp), %rsi
movq 0x18(%rsp), %rdx
movq 0x30(%rsp), %rcx
callq 0x13a14d0
movl %eax, 0x54(%rsp)
jmp 0x12f8816
movq 0x8(%rsp), %rax
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x5, 0xd0(%rax,%rcx)
jne 0x12f8542
movq 0x28(%rsp), %rdi
movq 0x20(%rsp), %rsi
movq 0x18(%rsp), %rdx
movq 0x30(%rsp), %rcx
callq 0x13b09d0
movl %eax, 0x54(%rsp)
jmp 0x12f8816
movq 0x8(%rsp), %rax
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x6, 0xd0(%rax,%rcx)
jne 0x12f857a
movq 0x28(%rsp), %rdi
movq 0x20(%rsp), %rsi
movq 0x18(%rsp), %rdx
movq 0x30(%rsp), %rcx
callq 0x13bfed0
movl %eax, 0x54(%rsp)
jmp 0x12f8816
movq 0x8(%rsp), %rax
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x7, 0xd0(%rax,%rcx)
jne 0x12f85b2
movq 0x20(%rsp), %rdi
movq 0x28(%rsp), %rsi
movq 0x18(%rsp), %rdx
movq 0x30(%rsp), %rcx
callq 0x13735d0
movl %eax, 0x54(%rsp)
jmp 0x12f8816
movq 0x8(%rsp), %rax
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x8, 0xd0(%rax,%rcx)
jne 0x12f85ea
movq 0x20(%rsp), %rdi
movq 0x28(%rsp), %rsi
movq 0x18(%rsp), %rdx
movq 0x30(%rsp), %rcx
callq 0x1391fd0
movl %eax, 0x54(%rsp)
jmp 0x12f8816
jmp 0x12f85ec
cmpl $0x4, 0x14(%rsp)
je 0x12f85fe
cmpl $0x4, 0x10(%rsp)
jne 0x12f87f2
movq 0x8(%rsp), %rax
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x0, 0xd0(%rax,%rcx)
jne 0x12f8636
movq 0x28(%rsp), %rdi
movq 0x20(%rsp), %rsi
movq 0x18(%rsp), %rdx
movq 0x30(%rsp), %rcx
callq 0x13cf3d0
movl %eax, 0x54(%rsp)
jmp 0x12f8816
movq 0x8(%rsp), %rax
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x1, 0xd0(%rax,%rcx)
jne 0x12f866e
movq 0x28(%rsp), %rdi
movq 0x20(%rsp), %rsi
movq 0x18(%rsp), %rdx
movq 0x30(%rsp), %rcx
callq 0x13de6a0
movl %eax, 0x54(%rsp)
jmp 0x12f8816
movq 0x8(%rsp), %rax
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x2, 0xd0(%rax,%rcx)
jne 0x12f86a6
movq 0x28(%rsp), %rdi
movq 0x20(%rsp), %rsi
movq 0x18(%rsp), %rdx
movq 0x30(%rsp), %rcx
callq 0x13ed970
movl %eax, 0x54(%rsp)
jmp 0x12f8816
movq 0x8(%rsp), %rax
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x3, 0xd0(%rax,%rcx)
jne 0x12f86de
movq 0x28(%rsp), %rdi
movq 0x20(%rsp), %rsi
movq 0x18(%rsp), %rdx
movq 0x30(%rsp), %rcx
callq 0x13fcc40
movl %eax, 0x54(%rsp)
jmp 0x12f8816
movq 0x8(%rsp), %rax
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x4, 0xd0(%rax,%rcx)
jne 0x12f8716
movq 0x28(%rsp), %rdi
movq 0x20(%rsp), %rsi
movq 0x18(%rsp), %rdx
movq 0x30(%rsp), %rcx
callq 0x140bf10
movl %eax, 0x54(%rsp)
jmp 0x12f8816
movq 0x8(%rsp), %rax
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x5, 0xd0(%rax,%rcx)
jne 0x12f874e
movq 0x28(%rsp), %rdi
movq 0x20(%rsp), %rsi
movq 0x18(%rsp), %rdx
movq 0x30(%rsp), %rcx
callq 0x141b1e0
movl %eax, 0x54(%rsp)
jmp 0x12f8816
movq 0x8(%rsp), %rax
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x6, 0xd0(%rax,%rcx)
jne 0x12f8786
movq 0x28(%rsp), %rdi
movq 0x20(%rsp), %rsi
movq 0x18(%rsp), %rdx
movq 0x30(%rsp), %rcx
callq 0x142a4b0
movl %eax, 0x54(%rsp)
jmp 0x12f8816
movq 0x8(%rsp), %rax
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x7, 0xd0(%rax,%rcx)
jne 0x12f87bb
movq 0x20(%rsp), %rdi
movq 0x28(%rsp), %rsi
movq 0x18(%rsp), %rdx
movq 0x30(%rsp), %rcx
callq 0x13de6a0
movl %eax, 0x54(%rsp)
jmp 0x12f8816
movq 0x8(%rsp), %rax
movq (%rax), %rcx
movq -0x18(%rcx), %rcx
cmpl $0x8, 0xd0(%rax,%rcx)
jne 0x12f87f0
movq 0x20(%rsp), %rdi
movq 0x28(%rsp), %rsi
movq 0x18(%rsp), %rdx
movq 0x30(%rsp), %rcx
callq 0x13fcc40
movl %eax, 0x54(%rsp)
jmp 0x12f8816
jmp 0x12f87f2
movq 0x8(%rsp), %rdi
movq (%rdi), %rax
addq -0x18(%rax), %rdi
movq 0x40(%rsp), %rsi
movq 0x38(%rsp), %rdx
movq 0x30(%rsp), %rcx
callq 0x11edf70
movl %eax, 0x54(%rsp)
movl 0x54(%rsp), %eax
addq $0x58, %rsp
retq
nop
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/build_O0/src/layer/x86/binaryop_x86_avx512.cpp
|
2,112,890
|
int ncnn::binary_op_pack16<ncnn::BinaryOp_x86_avx512_functor::binary_op_add>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op_pack16(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int size = w * h * d;
size_t elemsize = a.elemsize;
int elempack = a.elempack;
int w1 = b.w;
int h1 = b.h;
int d1 = b.d;
int channels1 = b.c;
int size1 = w1 * h1 * d1;
size_t elemsize1 = b.elemsize;
int elempack1 = b.elempack;
if (a.dims == 4)
{
if (b.dims == 4)
{
// type 29
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
c.create(w, h, d, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 3)
{
// type 28
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
for (int y = 0; y < h; y++)
{
__m512 _b0 = _mm512_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
ptr1 += 16;
}
}
}
return 0;
}
if (b.dims == 2)
{
// type 27
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
__m512 _b0 = _mm512_loadu_ps(ptr1);
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
}
ptr1 += 16;
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1 && elempack1 == 1)
{
// type 25
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 26
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
__m512 _b0 = _mm512_loadu_ps((const float*)b + q * 16);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
}
return 0;
}
}
else if (a.dims == 3)
{
if (b.dims == 4)
{
// type 23
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
for (int y = 0; y < h1; y++)
{
__m512 _a0 = _mm512_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m512 _p = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
ptr += 16;
}
}
}
return 0;
}
if (b.dims == 3)
{
if (w1 == 1 && h1 == 1 && channels1 == channels)
{
// special type 1
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* b0 = b.channel(q);
float* outptr = c.channel(q);
__m512 _b0 = _mm512_loadu_ps(b0);
for (int i = 0; i < size; i++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
}
return 0;
}
if (w1 == w && h1 == h && channels1 == 1 && elempack1 == 1)
{
// special type 2
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b;
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _p1 = _mm512_set1_ps(*ptr1);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
ptr1 += 1;
outptr += 16;
}
}
return 0;
}
if (w == 1 && h == 1 && channels1 == channels)
{
// special type 3
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* a0 = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
__m512 _a0 = _mm512_loadu_ps(a0);
for (int i = 0; i < size1; i++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
}
return 0;
}
if (w1 == w && h1 == h && channels == 1 && elempack == 1)
{
// special type 4
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a;
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m512 _p = _mm512_set1_ps(*ptr);
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr += 1;
ptr1 += 16;
outptr += 16;
}
}
return 0;
}
if (w != 1 && w1 == 1 && h1 == h && channels1 == channels)
{
// special type 5
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1 + y * 16);
for (int x = 0; x < w; x++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
}
}
return 0;
}
if (w1 == w && h != 1 && h1 == 1 && channels1 == channels)
{
// special type 6
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _p1 = _mm512_loadu_ps(ptr1 + x * 16);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
}
}
return 0;
}
if (w1 != 1 && w == 1 && h1 == h && channels1 == channels)
{
// special type 7
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
__m512 _p = _mm512_loadu_ps(ptr + y * 16);
for (int x = 0; x < w1; x++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
}
}
return 0;
}
if (w1 == w && h1 != 1 && h == 1 && channels1 == channels)
{
// special type 8
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
__m512 _p = _mm512_loadu_ps(ptr + x * 16);
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
}
}
return 0;
}
// type 19
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 18
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
__m512 _b0 = _mm512_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
ptr1 += 16;
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1 && elempack1 == 1)
{
// type 16
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 17
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
__m512 _b0 = _mm512_loadu_ps((const float*)b + q * 16);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
}
return 0;
}
}
else if (a.dims == 2)
{
if (b.dims == 4)
{
// type 22
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
__m512 _a0 = _mm512_loadu_ps(ptr);
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
__m512 _p = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
}
ptr += 16;
}
}
return 0;
}
if (b.dims == 3)
{
// type 14
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
__m512 _a0 = _mm512_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
ptr += 16;
}
}
return 0;
}
c.create(w, h, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 13
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
if (b.dims == 1)
{
c.create(w, h, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1 && elempack1 == 1)
{
// type 11
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 12
const float* ptr = a;
const float* ptr1 = b;
float* outptr = c;
for (int y = 0; y < h; y++)
{
__m512 _b0 = _mm512_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
ptr1 += 16;
}
return 0;
}
}
else if (a.dims == 1)
{
if (a.w == 1 && elempack == 1)
{
// type 2 3 4 20
return binary_op_2_3_4_20<Op>(a, b, c, opt);
}
if (b.dims == 4)
{
// type 21
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
__m512 _a0 = _mm512_loadu_ps((const float*)a + q * 16);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
}
return 0;
}
if (b.dims == 3)
{
// type 9
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
__m512 _a0 = _mm512_loadu_ps((const float*)a + q * 16);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
}
return 0;
}
if (b.dims == 2)
{
// type 8
c.create(w1, h1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
const float* ptr = a;
const float* ptr1 = b;
float* outptr = c;
for (int y = 0; y < h1; y++)
{
__m512 _a0 = _mm512_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
ptr += 16;
}
return 0;
}
if (b.dims == 1)
{
c.create(w, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1 && elempack1 == 1)
{
// type 6
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 7
binary_op_7_13_19_29<Op>(a, b, c, opt);
}
}
return 0;
}
|
pushq %rbp
movq %rsp, %rbp
andq $-0x40, %rsp
subq $0x5c00, %rsp # imm = 0x5C00
movq %rdi, 0x2ba8(%rsp)
movq %rsi, 0x2ba0(%rsp)
movq %rdx, 0x2b98(%rsp)
movq %rcx, 0x2b90(%rsp)
movq 0x2ba8(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x2b88(%rsp)
movq 0x2ba8(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x2b84(%rsp)
movq 0x2ba8(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x2b80(%rsp)
movq 0x2ba8(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x2b7c(%rsp)
movl 0x2b88(%rsp), %eax
imull 0x2b84(%rsp), %eax
imull 0x2b80(%rsp), %eax
movl %eax, 0x2b78(%rsp)
movq 0x2ba8(%rsp), %rax
movq 0x10(%rax), %rax
movq %rax, 0x2b70(%rsp)
movq 0x2ba8(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x2b6c(%rsp)
movq 0x2ba0(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x2b68(%rsp)
movq 0x2ba0(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x2b64(%rsp)
movq 0x2ba0(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x2b60(%rsp)
movq 0x2ba0(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x2b5c(%rsp)
movl 0x2b68(%rsp), %eax
imull 0x2b64(%rsp), %eax
imull 0x2b60(%rsp), %eax
movl %eax, 0x2b58(%rsp)
movq 0x2ba0(%rsp), %rax
movq 0x10(%rax), %rax
movq %rax, 0x2b50(%rsp)
movq 0x2ba0(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x2b4c(%rsp)
movq 0x2ba8(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x12faeff
movq 0x2ba0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x12f89b8
movq 0x2ba8(%rsp), %rdi
movq 0x2ba0(%rsp), %rsi
movq 0x2b98(%rsp), %rdx
movq 0x2b90(%rsp), %rcx
callq 0x143ec80
movl %eax, 0x2bb4(%rsp)
jmp 0x1307dd4
movq 0x2b98(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b80(%rsp), %ecx
movl 0x2b7c(%rsp), %r8d
movq 0x2b70(%rsp), %r9
movl 0x2b6c(%rsp), %r10d
movq 0x2b90(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x2b98(%rsp), %rax
movq %rax, 0x2c48(%rsp)
movq 0x2c48(%rsp), %rcx
movq %rcx, 0x830(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x83f(%rsp)
je 0x12f8a68
movq 0x830(%rsp), %rax
movq %rax, 0x4298(%rsp)
movq 0x4298(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x83f(%rsp)
movb 0x83f(%rsp), %al
testb $0x1, %al
jne 0x12f8a75
jmp 0x12f8a85
movl $0xffffff9c, 0x2bb4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1307dd4
movq 0x2ba0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x12f997f
movl $0x0, 0x2b48(%rsp)
movl 0x2b48(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x12f996f
movq 0x2ba8(%rsp), %rcx
movl 0x2b48(%rsp), %eax
leaq 0x2af8(%rsp), %rdx
movq %rdx, 0x2eb8(%rsp)
movq %rcx, 0x2eb0(%rsp)
movl %eax, 0x2eac(%rsp)
movq 0x2eb0(%rsp), %rax
movq %rax, 0x828(%rsp)
movb $0x0, 0x2eab(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2eac(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2af8(%rsp), %r10
movq %r10, 0x4750(%rsp)
movl %r9d, 0x474c(%rsp)
movl %r8d, 0x4748(%rsp)
movl %edi, 0x4744(%rsp)
movq %rsi, 0x4738(%rsp)
movq %rdx, 0x4730(%rsp)
movl %ecx, 0x472c(%rsp)
movq %rax, 0x4720(%rsp)
movq 0x4750(%rsp), %rcx
movq %rcx, 0x820(%rsp)
movq 0x4738(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4730(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x472c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4720(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x474c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4748(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4744(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e68(%rsp)
movl $0x10, 0x4e64(%rsp)
movq 0x4e68(%rsp), %rax
movslq 0x4e64(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e64(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x828(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2b20(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12f8c72
movq 0x828(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2b38(%rsp)
movb $0x1, 0x2eab(%rsp)
testb $0x1, 0x2eab(%rsp)
jne 0x12f8db3
leaq 0x2af8(%rsp), %rax
movq %rax, 0x2fe0(%rsp)
movq 0x2fe0(%rsp), %rax
movq %rax, 0x57c8(%rsp)
movq 0x57c8(%rsp), %rax
movq %rax, 0x818(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f8d56
movq 0x818(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x57c4(%rsp) # imm = 0xFFFFFFFF
movl 0x57c4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x57c0(%rsp)
cmpl $0x1, 0x57c0(%rsp)
jne 0x12f8d56
movq 0x818(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f8d24
movq 0x818(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x12f8d22
jmp 0x12f8d54
movq 0x818(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x57d0(%rsp)
cmpq $0x0, 0x57d0(%rsp)
je 0x12f8d52
movq 0x57d0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x12f8d54
jmp 0x12f8d56
movq 0x818(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f8db1
movq %rax, %rdi
callq 0x678a0
jmp 0x12f8db3
leaq 0x2af8(%rsp), %rax
movq %rax, 0x2fd8(%rsp)
movq 0x2fd8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x810(%rsp)
leaq 0x2af8(%rsp), %rax
movq %rax, 0x30b0(%rsp)
movq 0x30b0(%rsp), %rax
movq %rax, 0x5628(%rsp)
movq 0x5628(%rsp), %rax
movq %rax, 0x808(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f8ea4
movq 0x808(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5624(%rsp) # imm = 0xFFFFFFFF
movl 0x5624(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5620(%rsp)
cmpl $0x1, 0x5620(%rsp)
jne 0x12f8ea4
movq 0x808(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f8e72
movq 0x808(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x12f8e70
jmp 0x12f8ea2
movq 0x808(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x58a0(%rsp)
cmpq $0x0, 0x58a0(%rsp)
je 0x12f8ea0
movq 0x58a0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x12f8ea2
jmp 0x12f8ea4
movq 0x808(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f8eff
movq %rax, %rdi
callq 0x678a0
movq 0x810(%rsp), %rax
movq %rax, 0x2b40(%rsp)
movq 0x2ba0(%rsp), %rcx
movl 0x2b48(%rsp), %eax
leaq 0x2a98(%rsp), %rdx
movq %rdx, 0x2ea0(%rsp)
movq %rcx, 0x2e98(%rsp)
movl %eax, 0x2e94(%rsp)
movq 0x2e98(%rsp), %rax
movq %rax, 0x800(%rsp)
movb $0x0, 0x2e93(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e94(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2a98(%rsp), %r10
movq %r10, 0x4788(%rsp)
movl %r9d, 0x4784(%rsp)
movl %r8d, 0x4780(%rsp)
movl %edi, 0x477c(%rsp)
movq %rsi, 0x4770(%rsp)
movq %rdx, 0x4768(%rsp)
movl %ecx, 0x4764(%rsp)
movq %rax, 0x4758(%rsp)
movq 0x4788(%rsp), %rcx
movq %rcx, 0x7f8(%rsp)
movq 0x4770(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4768(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4764(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4758(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4784(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4780(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x477c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e58(%rsp)
movl $0x10, 0x4e54(%rsp)
movq 0x4e58(%rsp), %rax
movslq 0x4e54(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e54(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x800(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2ac0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12f90cb
movq 0x800(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2ad8(%rsp)
movb $0x1, 0x2e93(%rsp)
testb $0x1, 0x2e93(%rsp)
jne 0x12f920c
leaq 0x2a98(%rsp), %rax
movq %rax, 0x2fe8(%rsp)
movq 0x2fe8(%rsp), %rax
movq %rax, 0x57b8(%rsp)
movq 0x57b8(%rsp), %rax
movq %rax, 0x7f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f91af
movq 0x7f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x57b4(%rsp) # imm = 0xFFFFFFFF
movl 0x57b4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x57b0(%rsp)
cmpl $0x1, 0x57b0(%rsp)
jne 0x12f91af
movq 0x7f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f917d
movq 0x7f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x12f917b
jmp 0x12f91ad
movq 0x7f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x57d8(%rsp)
cmpq $0x0, 0x57d8(%rsp)
je 0x12f91ab
movq 0x57d8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x12f91ad
jmp 0x12f91af
movq 0x7f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f920a
movq %rax, %rdi
callq 0x678a0
jmp 0x12f920c
leaq 0x2a98(%rsp), %rax
movq %rax, 0x2fd0(%rsp)
movq 0x2fd0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7e8(%rsp)
leaq 0x2a98(%rsp), %rax
movq %rax, 0x30c0(%rsp)
movq 0x30c0(%rsp), %rax
movq %rax, 0x5608(%rsp)
movq 0x5608(%rsp), %rax
movq %rax, 0x7e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f92fd
movq 0x7e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5604(%rsp) # imm = 0xFFFFFFFF
movl 0x5604(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5600(%rsp)
cmpl $0x1, 0x5600(%rsp)
jne 0x12f92fd
movq 0x7e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f92cb
movq 0x7e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x12f92c9
jmp 0x12f92fb
movq 0x7e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x58b0(%rsp)
cmpq $0x0, 0x58b0(%rsp)
je 0x12f92f9
movq 0x58b0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x12f92fb
jmp 0x12f92fd
movq 0x7e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f9358
movq %rax, %rdi
callq 0x678a0
movq 0x7e8(%rsp), %rax
movq %rax, 0x2ae0(%rsp)
movq 0x2b98(%rsp), %rcx
movl 0x2b48(%rsp), %eax
leaq 0x2a48(%rsp), %rdx
movq %rdx, 0x35a0(%rsp)
movq %rcx, 0x3598(%rsp)
movl %eax, 0x3594(%rsp)
movq 0x3598(%rsp), %rax
movq %rax, 0x7d8(%rsp)
movb $0x0, 0x3593(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3594(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2a48(%rsp), %r10
movq %r10, 0x4360(%rsp)
movl %r9d, 0x435c(%rsp)
movl %r8d, 0x4358(%rsp)
movl %edi, 0x4354(%rsp)
movq %rsi, 0x4348(%rsp)
movq %rdx, 0x4340(%rsp)
movl %ecx, 0x433c(%rsp)
movq %rax, 0x4330(%rsp)
movq 0x4360(%rsp), %rcx
movq %rcx, 0x7d0(%rsp)
movq 0x4348(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4340(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x433c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4330(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x435c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4358(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4354(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4f88(%rsp)
movl $0x10, 0x4f84(%rsp)
movq 0x4f88(%rsp), %rax
movslq 0x4f84(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4f84(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7d8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2a70(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12f9524
movq 0x7d8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2a88(%rsp)
movb $0x1, 0x3593(%rsp)
testb $0x1, 0x3593(%rsp)
jne 0x12f9665
leaq 0x2a48(%rsp), %rax
movq %rax, 0x35a8(%rsp)
movq 0x35a8(%rsp), %rax
movq %rax, 0x4f98(%rsp)
movq 0x4f98(%rsp), %rax
movq %rax, 0x7c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f9608
movq 0x7c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f94(%rsp) # imm = 0xFFFFFFFF
movl 0x4f94(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f90(%rsp)
cmpl $0x1, 0x4f90(%rsp)
jne 0x12f9608
movq 0x7c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f95d6
movq 0x7c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x12f95d4
jmp 0x12f9606
movq 0x7c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5be8(%rsp)
cmpq $0x0, 0x5be8(%rsp)
je 0x12f9604
movq 0x5be8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x12f9606
jmp 0x12f9608
movq 0x7c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f9663
movq %rax, %rdi
callq 0x678a0
jmp 0x12f9665
leaq 0x2a48(%rsp), %rax
movq %rax, 0x3648(%rsp)
movq 0x3648(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7c0(%rsp)
leaq 0x2a48(%rsp), %rax
movq %rax, 0x30d0(%rsp)
movq 0x30d0(%rsp), %rax
movq %rax, 0x55e8(%rsp)
movq 0x55e8(%rsp), %rax
movq %rax, 0x7b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f9756
movq 0x7b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x55e4(%rsp) # imm = 0xFFFFFFFF
movl 0x55e4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x55e0(%rsp)
cmpl $0x1, 0x55e0(%rsp)
jne 0x12f9756
movq 0x7b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f9724
movq 0x7b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x12f9722
jmp 0x12f9754
movq 0x7b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x58c0(%rsp)
cmpq $0x0, 0x58c0(%rsp)
je 0x12f9752
movq 0x58c0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x12f9754
jmp 0x12f9756
movq 0x7b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f97b1
movq %rax, %rdi
callq 0x678a0
movq 0x7c0(%rsp), %rax
movq %rax, 0x2a90(%rsp)
movl $0x0, 0x2a44(%rsp)
movl 0x2a44(%rsp), %eax
cmpl 0x2b80(%rsp), %eax
jge 0x12f9957
movl $0x0, 0x2a40(%rsp)
movl 0x2a40(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jge 0x12f993f
movq 0x2ae0(%rsp), %rax
movq %rax, 0x3778(%rsp)
movq 0x3778(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2a00(%rsp)
movl $0x0, 0x29fc(%rsp)
movl 0x29fc(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jge 0x12f9915
movq 0x2b40(%rsp), %rax
movq %rax, 0x3770(%rsp)
movq 0x3770(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2980(%rsp)
leaq 0x2b8f(%rsp), %rdi
leaq 0x2980(%rsp), %rsi
leaq 0x2a00(%rsp), %rdx
callq 0x14535e0
vmovaps %zmm0, 0x2940(%rsp)
movq 0x2a90(%rsp), %rax
vmovaps 0x2940(%rsp), %zmm0
movq %rax, 0x4178(%rsp)
vmovaps %zmm0, 0x4100(%rsp)
vmovaps 0x4100(%rsp), %zmm0
movq 0x4178(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x2b40(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2b40(%rsp)
movq 0x2a90(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2a90(%rsp)
movl 0x29fc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x29fc(%rsp)
jmp 0x12f9833
movq 0x2ae0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2ae0(%rsp)
movl 0x2a40(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x2a40(%rsp)
jmp 0x12f97eb
jmp 0x12f9941
movl 0x2a44(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x2a44(%rsp)
jmp 0x12f97cc
jmp 0x12f9959
movl 0x2b48(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x2b48(%rsp)
jmp 0x12f8aa2
movl $0x0, 0x2bb4(%rsp)
jmp 0x1307dd4
movq 0x2ba0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x12fa469
movl $0x0, 0x293c(%rsp)
movl 0x293c(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x12fa459
movq 0x2ba8(%rsp), %rcx
movl 0x293c(%rsp), %eax
leaq 0x28e8(%rsp), %rdx
movq %rdx, 0x2e88(%rsp)
movq %rcx, 0x2e80(%rsp)
movl %eax, 0x2e7c(%rsp)
movq 0x2e80(%rsp), %rax
movq %rax, 0x7b0(%rsp)
movb $0x0, 0x2e7b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e7c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x28e8(%rsp), %r10
movq %r10, 0x47c0(%rsp)
movl %r9d, 0x47bc(%rsp)
movl %r8d, 0x47b8(%rsp)
movl %edi, 0x47b4(%rsp)
movq %rsi, 0x47a8(%rsp)
movq %rdx, 0x47a0(%rsp)
movl %ecx, 0x479c(%rsp)
movq %rax, 0x4790(%rsp)
movq 0x47c0(%rsp), %rcx
movq %rcx, 0x7a8(%rsp)
movq 0x47a8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x47a0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x479c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4790(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x47bc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x47b8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x47b4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e48(%rsp)
movl $0x10, 0x4e44(%rsp)
movq 0x4e48(%rsp), %rax
movslq 0x4e44(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e44(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7b0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2910(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12f9b6c
movq 0x7b0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2928(%rsp)
movb $0x1, 0x2e7b(%rsp)
testb $0x1, 0x2e7b(%rsp)
jne 0x12f9cad
leaq 0x28e8(%rsp), %rax
movq %rax, 0x2ff0(%rsp)
movq 0x2ff0(%rsp), %rax
movq %rax, 0x57a8(%rsp)
movq 0x57a8(%rsp), %rax
movq %rax, 0x7a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f9c50
movq 0x7a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x57a4(%rsp) # imm = 0xFFFFFFFF
movl 0x57a4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x57a0(%rsp)
cmpl $0x1, 0x57a0(%rsp)
jne 0x12f9c50
movq 0x7a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f9c1e
movq 0x7a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x12f9c1c
jmp 0x12f9c4e
movq 0x7a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x57e0(%rsp)
cmpq $0x0, 0x57e0(%rsp)
je 0x12f9c4c
movq 0x57e0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x12f9c4e
jmp 0x12f9c50
movq 0x7a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f9cab
movq %rax, %rdi
callq 0x678a0
jmp 0x12f9cad
leaq 0x28e8(%rsp), %rax
movq %rax, 0x2fc8(%rsp)
movq 0x2fc8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x798(%rsp)
leaq 0x28e8(%rsp), %rax
movq %rax, 0x30e0(%rsp)
movq 0x30e0(%rsp), %rax
movq %rax, 0x55c8(%rsp)
movq 0x55c8(%rsp), %rax
movq %rax, 0x790(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12f9d9e
movq 0x790(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x55c4(%rsp) # imm = 0xFFFFFFFF
movl 0x55c4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x55c0(%rsp)
cmpl $0x1, 0x55c0(%rsp)
jne 0x12f9d9e
movq 0x790(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12f9d6c
movq 0x790(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x12f9d6a
jmp 0x12f9d9c
movq 0x790(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x58d0(%rsp)
cmpq $0x0, 0x58d0(%rsp)
je 0x12f9d9a
movq 0x58d0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x12f9d9c
jmp 0x12f9d9e
movq 0x790(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12f9df9
movq %rax, %rdi
callq 0x678a0
movq 0x798(%rsp), %rax
movq %rax, 0x2930(%rsp)
movq 0x2ba0(%rsp), %rcx
movl 0x293c(%rsp), %eax
movq %rcx, 0x41b8(%rsp)
movl %eax, 0x41b4(%rsp)
movq 0x41b8(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x41b4(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x28e0(%rsp)
movq 0x2b98(%rsp), %rcx
movl 0x293c(%rsp), %eax
leaq 0x2890(%rsp), %rdx
movq %rdx, 0x3580(%rsp)
movq %rcx, 0x3578(%rsp)
movl %eax, 0x3574(%rsp)
movq 0x3578(%rsp), %rax
movq %rax, 0x788(%rsp)
movb $0x0, 0x3573(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3574(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2890(%rsp), %r10
movq %r10, 0x4398(%rsp)
movl %r9d, 0x4394(%rsp)
movl %r8d, 0x4390(%rsp)
movl %edi, 0x438c(%rsp)
movq %rsi, 0x4380(%rsp)
movq %rdx, 0x4378(%rsp)
movl %ecx, 0x4374(%rsp)
movq %rax, 0x4368(%rsp)
movq 0x4398(%rsp), %rcx
movq %rcx, 0x780(%rsp)
movq 0x4380(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4378(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4374(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4368(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4394(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4390(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x438c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4f78(%rsp)
movl $0x10, 0x4f74(%rsp)
movq 0x4f78(%rsp), %rax
movslq 0x4f74(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4f74(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x788(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x28b8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12fa00e
movq 0x788(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x28d0(%rsp)
movb $0x1, 0x3573(%rsp)
testb $0x1, 0x3573(%rsp)
jne 0x12fa14f
leaq 0x2890(%rsp), %rax
movq %rax, 0x3588(%rsp)
movq 0x3588(%rsp), %rax
movq %rax, 0x4fa8(%rsp)
movq 0x4fa8(%rsp), %rax
movq %rax, 0x778(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12fa0f2
movq 0x778(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4fa4(%rsp) # imm = 0xFFFFFFFF
movl 0x4fa4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4fa0(%rsp)
cmpl $0x1, 0x4fa0(%rsp)
jne 0x12fa0f2
movq 0x778(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12fa0c0
movq 0x778(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x12fa0be
jmp 0x12fa0f0
movq 0x778(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5be0(%rsp)
cmpq $0x0, 0x5be0(%rsp)
je 0x12fa0ee
movq 0x5be0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x12fa0f0
jmp 0x12fa0f2
movq 0x778(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12fa14d
movq %rax, %rdi
callq 0x678a0
jmp 0x12fa14f
leaq 0x2890(%rsp), %rax
movq %rax, 0x3640(%rsp)
movq 0x3640(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x770(%rsp)
leaq 0x2890(%rsp), %rax
movq %rax, 0x30f0(%rsp)
movq 0x30f0(%rsp), %rax
movq %rax, 0x55a8(%rsp)
movq 0x55a8(%rsp), %rax
movq %rax, 0x768(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12fa240
movq 0x768(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x55a4(%rsp) # imm = 0xFFFFFFFF
movl 0x55a4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x55a0(%rsp)
cmpl $0x1, 0x55a0(%rsp)
jne 0x12fa240
movq 0x768(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12fa20e
movq 0x768(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x12fa20c
jmp 0x12fa23e
movq 0x768(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x58e0(%rsp)
cmpq $0x0, 0x58e0(%rsp)
je 0x12fa23c
movq 0x58e0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x12fa23e
jmp 0x12fa240
movq 0x768(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12fa29b
movq %rax, %rdi
callq 0x678a0
movq 0x770(%rsp), %rax
movq %rax, 0x28d8(%rsp)
movl $0x0, 0x288c(%rsp)
movl 0x288c(%rsp), %eax
cmpl 0x2b80(%rsp), %eax
jge 0x12fa441
movq 0x28e0(%rsp), %rax
movq %rax, 0x3768(%rsp)
movq 0x3768(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2840(%rsp)
movl $0x0, 0x283c(%rsp)
movl 0x283c(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jge 0x12fa417
movl $0x0, 0x2838(%rsp)
movl 0x2838(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jge 0x12fa3ff
movq 0x2930(%rsp), %rax
movq %rax, 0x3760(%rsp)
movq 0x3760(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x27c0(%rsp)
leaq 0x2b8f(%rsp), %rdi
leaq 0x27c0(%rsp), %rsi
leaq 0x2840(%rsp), %rdx
callq 0x14535e0
vmovaps %zmm0, 0x2780(%rsp)
movq 0x28d8(%rsp), %rax
vmovaps 0x2780(%rsp), %zmm0
movq %rax, 0x40f8(%rsp)
vmovaps %zmm0, 0x4080(%rsp)
vmovaps 0x4080(%rsp), %zmm0
movq 0x40f8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x2930(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2930(%rsp)
movq 0x28d8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x28d8(%rsp)
movl 0x2838(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x2838(%rsp)
jmp 0x12fa31d
jmp 0x12fa401
movl 0x283c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x283c(%rsp)
jmp 0x12fa2fe
movq 0x28e0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x28e0(%rsp)
movl 0x288c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x288c(%rsp)
jmp 0x12fa2b6
jmp 0x12fa443
movl 0x293c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x293c(%rsp)
jmp 0x12f999c
movl $0x0, 0x2bb4(%rsp)
jmp 0x1307dd4
movq 0x2ba0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x12faefa
movq 0x2ba0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x12fa4c4
cmpl $0x1, 0x2b4c(%rsp)
jne 0x12fa4c4
movq 0x2ba8(%rsp), %rdi
movq 0x2ba0(%rsp), %rsi
movq 0x2b98(%rsp), %rdx
movq 0x2b90(%rsp), %rcx
callq 0x143fe80
movl %eax, 0x2bb4(%rsp)
jmp 0x1307dd4
movl $0x0, 0x277c(%rsp)
movl 0x277c(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x12faeea
movq 0x2ba8(%rsp), %rcx
movl 0x277c(%rsp), %eax
leaq 0x2728(%rsp), %rdx
movq %rdx, 0x2e70(%rsp)
movq %rcx, 0x2e68(%rsp)
movl %eax, 0x2e64(%rsp)
movq 0x2e68(%rsp), %rax
movq %rax, 0x760(%rsp)
movb $0x0, 0x2e63(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e64(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2728(%rsp), %r10
movq %r10, 0x47f8(%rsp)
movl %r9d, 0x47f4(%rsp)
movl %r8d, 0x47f0(%rsp)
movl %edi, 0x47ec(%rsp)
movq %rsi, 0x47e0(%rsp)
movq %rdx, 0x47d8(%rsp)
movl %ecx, 0x47d4(%rsp)
movq %rax, 0x47c8(%rsp)
movq 0x47f8(%rsp), %rcx
movq %rcx, 0x758(%rsp)
movq 0x47e0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x47d8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x47d4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x47c8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x47f4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x47f0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x47ec(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e38(%rsp)
movl $0x10, 0x4e34(%rsp)
movq 0x4e38(%rsp), %rax
movslq 0x4e34(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e34(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x760(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2750(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12fa69f
movq 0x760(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2768(%rsp)
movb $0x1, 0x2e63(%rsp)
testb $0x1, 0x2e63(%rsp)
jne 0x12fa7e0
leaq 0x2728(%rsp), %rax
movq %rax, 0x2ff8(%rsp)
movq 0x2ff8(%rsp), %rax
movq %rax, 0x5798(%rsp)
movq 0x5798(%rsp), %rax
movq %rax, 0x750(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12fa783
movq 0x750(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5794(%rsp) # imm = 0xFFFFFFFF
movl 0x5794(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5790(%rsp)
cmpl $0x1, 0x5790(%rsp)
jne 0x12fa783
movq 0x750(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12fa751
movq 0x750(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x12fa74f
jmp 0x12fa781
movq 0x750(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x57e8(%rsp)
cmpq $0x0, 0x57e8(%rsp)
je 0x12fa77f
movq 0x57e8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x12fa781
jmp 0x12fa783
movq 0x750(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12fa7de
movq %rax, %rdi
callq 0x678a0
jmp 0x12fa7e0
leaq 0x2728(%rsp), %rax
movq %rax, 0x2fc0(%rsp)
movq 0x2fc0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x748(%rsp)
leaq 0x2728(%rsp), %rax
movq %rax, 0x3100(%rsp)
movq 0x3100(%rsp), %rax
movq %rax, 0x5588(%rsp)
movq 0x5588(%rsp), %rax
movq %rax, 0x740(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12fa8d1
movq 0x740(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5584(%rsp) # imm = 0xFFFFFFFF
movl 0x5584(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5580(%rsp)
cmpl $0x1, 0x5580(%rsp)
jne 0x12fa8d1
movq 0x740(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12fa89f
movq 0x740(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x12fa89d
jmp 0x12fa8cf
movq 0x740(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x58f0(%rsp)
cmpq $0x0, 0x58f0(%rsp)
je 0x12fa8cd
movq 0x58f0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x12fa8cf
jmp 0x12fa8d1
movq 0x740(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12fa92c
movq %rax, %rdi
callq 0x678a0
movq 0x748(%rsp), %rax
movq %rax, 0x2770(%rsp)
movq 0x2ba0(%rsp), %rax
movq %rax, 0x2fb8(%rsp)
movq 0x2fb8(%rsp), %rax
movq (%rax), %rax
movl 0x277c(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x3758(%rsp)
movq 0x3758(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x26c0(%rsp)
movq 0x2b98(%rsp), %rcx
movl 0x277c(%rsp), %eax
leaq 0x2670(%rsp), %rdx
movq %rdx, 0x3560(%rsp)
movq %rcx, 0x3558(%rsp)
movl %eax, 0x3554(%rsp)
movq 0x3558(%rsp), %rax
movq %rax, 0x738(%rsp)
movb $0x0, 0x3553(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3554(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2670(%rsp), %r10
movq %r10, 0x43d0(%rsp)
movl %r9d, 0x43cc(%rsp)
movl %r8d, 0x43c8(%rsp)
movl %edi, 0x43c4(%rsp)
movq %rsi, 0x43b8(%rsp)
movq %rdx, 0x43b0(%rsp)
movl %ecx, 0x43ac(%rsp)
movq %rax, 0x43a0(%rsp)
movq 0x43d0(%rsp), %rcx
movq %rcx, 0x730(%rsp)
movq 0x43b8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x43b0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x43ac(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x43a0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x43cc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x43c8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x43c4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4f68(%rsp)
movl $0x10, 0x4f64(%rsp)
movq 0x4f68(%rsp), %rax
movslq 0x4f64(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4f64(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x738(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2698(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12fab48
movq 0x738(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x26b0(%rsp)
movb $0x1, 0x3553(%rsp)
testb $0x1, 0x3553(%rsp)
jne 0x12fac89
leaq 0x2670(%rsp), %rax
movq %rax, 0x3568(%rsp)
movq 0x3568(%rsp), %rax
movq %rax, 0x4fb8(%rsp)
movq 0x4fb8(%rsp), %rax
movq %rax, 0x728(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12fac2c
movq 0x728(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4fb4(%rsp) # imm = 0xFFFFFFFF
movl 0x4fb4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4fb0(%rsp)
cmpl $0x1, 0x4fb0(%rsp)
jne 0x12fac2c
movq 0x728(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12fabfa
movq 0x728(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x12fabf8
jmp 0x12fac2a
movq 0x728(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5bd8(%rsp)
cmpq $0x0, 0x5bd8(%rsp)
je 0x12fac28
movq 0x5bd8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x12fac2a
jmp 0x12fac2c
movq 0x728(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12fac87
movq %rax, %rdi
callq 0x678a0
jmp 0x12fac89
leaq 0x2670(%rsp), %rax
movq %rax, 0x3638(%rsp)
movq 0x3638(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x720(%rsp)
leaq 0x2670(%rsp), %rax
movq %rax, 0x3110(%rsp)
movq 0x3110(%rsp), %rax
movq %rax, 0x5568(%rsp)
movq 0x5568(%rsp), %rax
movq %rax, 0x718(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12fad7a
movq 0x718(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5564(%rsp) # imm = 0xFFFFFFFF
movl 0x5564(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5560(%rsp)
cmpl $0x1, 0x5560(%rsp)
jne 0x12fad7a
movq 0x718(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12fad48
movq 0x718(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x12fad46
jmp 0x12fad78
movq 0x718(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5900(%rsp)
cmpq $0x0, 0x5900(%rsp)
je 0x12fad76
movq 0x5900(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x12fad78
jmp 0x12fad7a
movq 0x718(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12fadd5
movq %rax, %rdi
callq 0x678a0
movq 0x720(%rsp), %rax
movq %rax, 0x26b8(%rsp)
movl $0x0, 0x266c(%rsp)
movl 0x266c(%rsp), %eax
cmpl 0x2b78(%rsp), %eax
jge 0x12faed2
movq 0x2770(%rsp), %rax
movq %rax, 0x3750(%rsp)
movq 0x3750(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2600(%rsp)
leaq 0x2b8f(%rsp), %rdi
leaq 0x2600(%rsp), %rsi
leaq 0x26c0(%rsp), %rdx
callq 0x14535e0
vmovaps %zmm0, 0x25c0(%rsp)
movq 0x26b8(%rsp), %rax
vmovaps 0x25c0(%rsp), %zmm0
movq %rax, 0x4078(%rsp)
vmovaps %zmm0, 0x4000(%rsp)
vmovaps 0x4000(%rsp), %zmm0
movq 0x4078(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x2770(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2770(%rsp)
movq 0x26b8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x26b8(%rsp)
movl 0x266c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x266c(%rsp)
jmp 0x12fadf0
jmp 0x12faed4
movl 0x277c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x277c(%rsp)
jmp 0x12fa4cf
movl $0x0, 0x2bb4(%rsp)
jmp 0x1307dd4
jmp 0x1307dc9
movq 0x2ba8(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1304914
movq 0x2ba0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x12fbed8
movq 0x2b98(%rsp), %rdi
movl 0x2b68(%rsp), %esi
movl 0x2b64(%rsp), %edx
movl 0x2b60(%rsp), %ecx
movl 0x2b5c(%rsp), %r8d
movq 0x2b50(%rsp), %r9
movl 0x2b4c(%rsp), %r10d
movq 0x2b90(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x2b98(%rsp), %rax
movq %rax, 0x2c40(%rsp)
movq 0x2c40(%rsp), %rcx
movq %rcx, 0x708(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x717(%rsp)
je 0x12fafd3
movq 0x708(%rsp), %rax
movq %rax, 0x42a0(%rsp)
movq 0x42a0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x717(%rsp)
movb 0x717(%rsp), %al
testb $0x1, %al
jne 0x12fafe0
jmp 0x12faff0
movl $0xffffff9c, 0x2bb4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1307dd4
movl $0x0, 0x25bc(%rsp)
movl 0x25bc(%rsp), %eax
cmpl 0x2b5c(%rsp), %eax
jge 0x12fbec8
movq 0x2ba8(%rsp), %rcx
movl 0x25bc(%rsp), %eax
leaq 0x2568(%rsp), %rdx
movq %rdx, 0x2e58(%rsp)
movq %rcx, 0x2e50(%rsp)
movl %eax, 0x2e4c(%rsp)
movq 0x2e50(%rsp), %rax
movq %rax, 0x700(%rsp)
movb $0x0, 0x2e4b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e4c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2568(%rsp), %r10
movq %r10, 0x4830(%rsp)
movl %r9d, 0x482c(%rsp)
movl %r8d, 0x4828(%rsp)
movl %edi, 0x4824(%rsp)
movq %rsi, 0x4818(%rsp)
movq %rdx, 0x4810(%rsp)
movl %ecx, 0x480c(%rsp)
movq %rax, 0x4800(%rsp)
movq 0x4830(%rsp), %rcx
movq %rcx, 0x6f8(%rsp)
movq 0x4818(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4810(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x480c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4800(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x482c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4828(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4824(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e28(%rsp)
movl $0x10, 0x4e24(%rsp)
movq 0x4e28(%rsp), %rax
movslq 0x4e24(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e24(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x700(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2590(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12fb1cb
movq 0x700(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x25a8(%rsp)
movb $0x1, 0x2e4b(%rsp)
testb $0x1, 0x2e4b(%rsp)
jne 0x12fb30c
leaq 0x2568(%rsp), %rax
movq %rax, 0x3000(%rsp)
movq 0x3000(%rsp), %rax
movq %rax, 0x5788(%rsp)
movq 0x5788(%rsp), %rax
movq %rax, 0x6f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12fb2af
movq 0x6f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5784(%rsp) # imm = 0xFFFFFFFF
movl 0x5784(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5780(%rsp)
cmpl $0x1, 0x5780(%rsp)
jne 0x12fb2af
movq 0x6f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12fb27d
movq 0x6f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x12fb27b
jmp 0x12fb2ad
movq 0x6f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x57f0(%rsp)
cmpq $0x0, 0x57f0(%rsp)
je 0x12fb2ab
movq 0x57f0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x12fb2ad
jmp 0x12fb2af
movq 0x6f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12fb30a
movq %rax, %rdi
callq 0x678a0
jmp 0x12fb30c
leaq 0x2568(%rsp), %rax
movq %rax, 0x2fb0(%rsp)
movq 0x2fb0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6e8(%rsp)
leaq 0x2568(%rsp), %rax
movq %rax, 0x3120(%rsp)
movq 0x3120(%rsp), %rax
movq %rax, 0x5548(%rsp)
movq 0x5548(%rsp), %rax
movq %rax, 0x6e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12fb3fd
movq 0x6e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5544(%rsp) # imm = 0xFFFFFFFF
movl 0x5544(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5540(%rsp)
cmpl $0x1, 0x5540(%rsp)
jne 0x12fb3fd
movq 0x6e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12fb3cb
movq 0x6e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x12fb3c9
jmp 0x12fb3fb
movq 0x6e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5910(%rsp)
cmpq $0x0, 0x5910(%rsp)
je 0x12fb3f9
movq 0x5910(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x12fb3fb
jmp 0x12fb3fd
movq 0x6e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12fb458
movq %rax, %rdi
callq 0x678a0
movq 0x6e8(%rsp), %rax
movq %rax, 0x25b0(%rsp)
movq 0x2ba0(%rsp), %rcx
movl 0x25bc(%rsp), %eax
leaq 0x2518(%rsp), %rdx
movq %rdx, 0x2e40(%rsp)
movq %rcx, 0x2e38(%rsp)
movl %eax, 0x2e34(%rsp)
movq 0x2e38(%rsp), %rax
movq %rax, 0x6d8(%rsp)
movb $0x0, 0x2e33(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e34(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2518(%rsp), %r10
movq %r10, 0x4868(%rsp)
movl %r9d, 0x4864(%rsp)
movl %r8d, 0x4860(%rsp)
movl %edi, 0x485c(%rsp)
movq %rsi, 0x4850(%rsp)
movq %rdx, 0x4848(%rsp)
movl %ecx, 0x4844(%rsp)
movq %rax, 0x4838(%rsp)
movq 0x4868(%rsp), %rcx
movq %rcx, 0x6d0(%rsp)
movq 0x4850(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4848(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4844(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4838(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4864(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4860(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x485c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e18(%rsp)
movl $0x10, 0x4e14(%rsp)
movq 0x4e18(%rsp), %rax
movslq 0x4e14(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e14(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6d8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2540(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12fb624
movq 0x6d8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2558(%rsp)
movb $0x1, 0x2e33(%rsp)
testb $0x1, 0x2e33(%rsp)
jne 0x12fb765
leaq 0x2518(%rsp), %rax
movq %rax, 0x3008(%rsp)
movq 0x3008(%rsp), %rax
movq %rax, 0x5778(%rsp)
movq 0x5778(%rsp), %rax
movq %rax, 0x6c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12fb708
movq 0x6c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5774(%rsp) # imm = 0xFFFFFFFF
movl 0x5774(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5770(%rsp)
cmpl $0x1, 0x5770(%rsp)
jne 0x12fb708
movq 0x6c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12fb6d6
movq 0x6c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x12fb6d4
jmp 0x12fb706
movq 0x6c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x57f8(%rsp)
cmpq $0x0, 0x57f8(%rsp)
je 0x12fb704
movq 0x57f8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x12fb706
jmp 0x12fb708
movq 0x6c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12fb763
movq %rax, %rdi
callq 0x678a0
jmp 0x12fb765
leaq 0x2518(%rsp), %rax
movq %rax, 0x2fa8(%rsp)
movq 0x2fa8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6c0(%rsp)
leaq 0x2518(%rsp), %rax
movq %rax, 0x3130(%rsp)
movq 0x3130(%rsp), %rax
movq %rax, 0x5528(%rsp)
movq 0x5528(%rsp), %rax
movq %rax, 0x6b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12fb856
movq 0x6b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5524(%rsp) # imm = 0xFFFFFFFF
movl 0x5524(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5520(%rsp)
cmpl $0x1, 0x5520(%rsp)
jne 0x12fb856
movq 0x6b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12fb824
movq 0x6b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x12fb822
jmp 0x12fb854
movq 0x6b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5920(%rsp)
cmpq $0x0, 0x5920(%rsp)
je 0x12fb852
movq 0x5920(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x12fb854
jmp 0x12fb856
movq 0x6b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12fb8b1
movq %rax, %rdi
callq 0x678a0
movq 0x6c0(%rsp), %rax
movq %rax, 0x2560(%rsp)
movq 0x2b98(%rsp), %rcx
movl 0x25bc(%rsp), %eax
leaq 0x24c8(%rsp), %rdx
movq %rdx, 0x3540(%rsp)
movq %rcx, 0x3538(%rsp)
movl %eax, 0x3534(%rsp)
movq 0x3538(%rsp), %rax
movq %rax, 0x6b0(%rsp)
movb $0x0, 0x3533(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3534(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x24c8(%rsp), %r10
movq %r10, 0x4408(%rsp)
movl %r9d, 0x4404(%rsp)
movl %r8d, 0x4400(%rsp)
movl %edi, 0x43fc(%rsp)
movq %rsi, 0x43f0(%rsp)
movq %rdx, 0x43e8(%rsp)
movl %ecx, 0x43e4(%rsp)
movq %rax, 0x43d8(%rsp)
movq 0x4408(%rsp), %rcx
movq %rcx, 0x6a8(%rsp)
movq 0x43f0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x43e8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x43e4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x43d8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4404(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4400(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x43fc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4f58(%rsp)
movl $0x10, 0x4f54(%rsp)
movq 0x4f58(%rsp), %rax
movslq 0x4f54(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4f54(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6b0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x24f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12fba7d
movq 0x6b0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2508(%rsp)
movb $0x1, 0x3533(%rsp)
testb $0x1, 0x3533(%rsp)
jne 0x12fbbbe
leaq 0x24c8(%rsp), %rax
movq %rax, 0x3548(%rsp)
movq 0x3548(%rsp), %rax
movq %rax, 0x4fc8(%rsp)
movq 0x4fc8(%rsp), %rax
movq %rax, 0x6a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12fbb61
movq 0x6a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4fc4(%rsp) # imm = 0xFFFFFFFF
movl 0x4fc4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4fc0(%rsp)
cmpl $0x1, 0x4fc0(%rsp)
jne 0x12fbb61
movq 0x6a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12fbb2f
movq 0x6a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x12fbb2d
jmp 0x12fbb5f
movq 0x6a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5bd0(%rsp)
cmpq $0x0, 0x5bd0(%rsp)
je 0x12fbb5d
movq 0x5bd0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x12fbb5f
jmp 0x12fbb61
movq 0x6a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12fbbbc
movq %rax, %rdi
callq 0x678a0
jmp 0x12fbbbe
leaq 0x24c8(%rsp), %rax
movq %rax, 0x3630(%rsp)
movq 0x3630(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x698(%rsp)
leaq 0x24c8(%rsp), %rax
movq %rax, 0x3140(%rsp)
movq 0x3140(%rsp), %rax
movq %rax, 0x5508(%rsp)
movq 0x5508(%rsp), %rax
movq %rax, 0x690(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12fbcaf
movq 0x690(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5504(%rsp) # imm = 0xFFFFFFFF
movl 0x5504(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5500(%rsp)
cmpl $0x1, 0x5500(%rsp)
jne 0x12fbcaf
movq 0x690(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12fbc7d
movq 0x690(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x12fbc7b
jmp 0x12fbcad
movq 0x690(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5930(%rsp)
cmpq $0x0, 0x5930(%rsp)
je 0x12fbcab
movq 0x5930(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x12fbcad
jmp 0x12fbcaf
movq 0x690(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12fbd0a
movq %rax, %rdi
callq 0x678a0
movq 0x698(%rsp), %rax
movq %rax, 0x2510(%rsp)
movl $0x0, 0x24c4(%rsp)
movl 0x24c4(%rsp), %eax
cmpl 0x2b60(%rsp), %eax
jge 0x12fbeb0
movl $0x0, 0x24c0(%rsp)
movl 0x24c0(%rsp), %eax
cmpl 0x2b64(%rsp), %eax
jge 0x12fbe98
movq 0x25b0(%rsp), %rax
movq %rax, 0x3748(%rsp)
movq 0x3748(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2480(%rsp)
movl $0x0, 0x247c(%rsp)
movl 0x247c(%rsp), %eax
cmpl 0x2b68(%rsp), %eax
jge 0x12fbe6e
movq 0x2560(%rsp), %rax
movq %rax, 0x3740(%rsp)
movq 0x3740(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2400(%rsp)
leaq 0x2b8f(%rsp), %rdi
leaq 0x2480(%rsp), %rsi
leaq 0x2400(%rsp), %rdx
callq 0x14535e0
vmovaps %zmm0, 0x23c0(%rsp)
movq 0x2510(%rsp), %rax
vmovaps 0x23c0(%rsp), %zmm0
movq %rax, 0x3ff8(%rsp)
vmovaps %zmm0, 0x3f80(%rsp)
vmovaps 0x3f80(%rsp), %zmm0
movq 0x3ff8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x2560(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2560(%rsp)
movq 0x2510(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2510(%rsp)
movl 0x247c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x247c(%rsp)
jmp 0x12fbd8c
movq 0x25b0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x25b0(%rsp)
movl 0x24c0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x24c0(%rsp)
jmp 0x12fbd44
jmp 0x12fbe9a
movl 0x24c4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x24c4(%rsp)
jmp 0x12fbd25
jmp 0x12fbeb2
movl 0x25bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x25bc(%rsp)
jmp 0x12faffb
movl $0x0, 0x2bb4(%rsp)
jmp 0x1307dd4
movq 0x2ba0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1303323
cmpl $0x1, 0x2b68(%rsp)
jne 0x12fce42
cmpl $0x1, 0x2b64(%rsp)
jne 0x12fce42
movl 0x2b5c(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jne 0x12fce42
movq 0x2b98(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b7c(%rsp), %ecx
movq 0x2b70(%rsp), %r8
movl 0x2b6c(%rsp), %r9d
movq 0x2b90(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2b98(%rsp), %rax
movq %rax, 0x2c38(%rsp)
movq 0x2c38(%rsp), %rcx
movq %rcx, 0x680(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x68f(%rsp)
je 0x12fbfbd
movq 0x680(%rsp), %rax
movq %rax, 0x42a8(%rsp)
movq 0x42a8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x68f(%rsp)
movb 0x68f(%rsp), %al
testb $0x1, %al
jne 0x12fbfca
jmp 0x12fbfda
movl $0xffffff9c, 0x2bb4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1307dd4
movl $0x0, 0x23bc(%rsp)
movl 0x23bc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x12fce32
movq 0x2ba8(%rsp), %rcx
movl 0x23bc(%rsp), %eax
leaq 0x2368(%rsp), %rdx
movq %rdx, 0x2e28(%rsp)
movq %rcx, 0x2e20(%rsp)
movl %eax, 0x2e1c(%rsp)
movq 0x2e20(%rsp), %rax
movq %rax, 0x678(%rsp)
movb $0x0, 0x2e1b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e1c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2368(%rsp), %r10
movq %r10, 0x48a0(%rsp)
movl %r9d, 0x489c(%rsp)
movl %r8d, 0x4898(%rsp)
movl %edi, 0x4894(%rsp)
movq %rsi, 0x4888(%rsp)
movq %rdx, 0x4880(%rsp)
movl %ecx, 0x487c(%rsp)
movq %rax, 0x4870(%rsp)
movq 0x48a0(%rsp), %rcx
movq %rcx, 0x670(%rsp)
movq 0x4888(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4880(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x487c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4870(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x489c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4898(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4894(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e08(%rsp)
movl $0x10, 0x4e04(%rsp)
movq 0x4e08(%rsp), %rax
movslq 0x4e04(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e04(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x678(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2390(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12fc1b5
movq 0x678(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x23a8(%rsp)
movb $0x1, 0x2e1b(%rsp)
testb $0x1, 0x2e1b(%rsp)
jne 0x12fc2f6
leaq 0x2368(%rsp), %rax
movq %rax, 0x3010(%rsp)
movq 0x3010(%rsp), %rax
movq %rax, 0x5768(%rsp)
movq 0x5768(%rsp), %rax
movq %rax, 0x668(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12fc299
movq 0x668(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5764(%rsp) # imm = 0xFFFFFFFF
movl 0x5764(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5760(%rsp)
cmpl $0x1, 0x5760(%rsp)
jne 0x12fc299
movq 0x668(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12fc267
movq 0x668(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x12fc265
jmp 0x12fc297
movq 0x668(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5800(%rsp)
cmpq $0x0, 0x5800(%rsp)
je 0x12fc295
movq 0x5800(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x12fc297
jmp 0x12fc299
movq 0x668(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12fc2f4
movq %rax, %rdi
callq 0x678a0
jmp 0x12fc2f6
leaq 0x2368(%rsp), %rax
movq %rax, 0x2fa0(%rsp)
movq 0x2fa0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x660(%rsp)
leaq 0x2368(%rsp), %rax
movq %rax, 0x3150(%rsp)
movq 0x3150(%rsp), %rax
movq %rax, 0x54e8(%rsp)
movq 0x54e8(%rsp), %rax
movq %rax, 0x658(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12fc3e7
movq 0x658(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x54e4(%rsp) # imm = 0xFFFFFFFF
movl 0x54e4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x54e0(%rsp)
cmpl $0x1, 0x54e0(%rsp)
jne 0x12fc3e7
movq 0x658(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12fc3b5
movq 0x658(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x12fc3b3
jmp 0x12fc3e5
movq 0x658(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5940(%rsp)
cmpq $0x0, 0x5940(%rsp)
je 0x12fc3e3
movq 0x5940(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x12fc3e5
jmp 0x12fc3e7
movq 0x658(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12fc442
movq %rax, %rdi
callq 0x678a0
movq 0x660(%rsp), %rax
movq %rax, 0x23b0(%rsp)
movq 0x2ba0(%rsp), %rcx
movl 0x23bc(%rsp), %eax
leaq 0x2318(%rsp), %rdx
movq %rdx, 0x2e10(%rsp)
movq %rcx, 0x2e08(%rsp)
movl %eax, 0x2e04(%rsp)
movq 0x2e08(%rsp), %rax
movq %rax, 0x650(%rsp)
movb $0x0, 0x2e03(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e04(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2318(%rsp), %r10
movq %r10, 0x48d8(%rsp)
movl %r9d, 0x48d4(%rsp)
movl %r8d, 0x48d0(%rsp)
movl %edi, 0x48cc(%rsp)
movq %rsi, 0x48c0(%rsp)
movq %rdx, 0x48b8(%rsp)
movl %ecx, 0x48b4(%rsp)
movq %rax, 0x48a8(%rsp)
movq 0x48d8(%rsp), %rcx
movq %rcx, 0x648(%rsp)
movq 0x48c0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x48b8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x48b4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x48a8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x48d4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x48d0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x48cc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4df8(%rsp)
movl $0x10, 0x4df4(%rsp)
movq 0x4df8(%rsp), %rax
movslq 0x4df4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4df4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x650(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2340(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12fc60e
movq 0x650(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2358(%rsp)
movb $0x1, 0x2e03(%rsp)
testb $0x1, 0x2e03(%rsp)
jne 0x12fc74f
leaq 0x2318(%rsp), %rax
movq %rax, 0x3018(%rsp)
movq 0x3018(%rsp), %rax
movq %rax, 0x5758(%rsp)
movq 0x5758(%rsp), %rax
movq %rax, 0x640(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12fc6f2
movq 0x640(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5754(%rsp) # imm = 0xFFFFFFFF
movl 0x5754(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5750(%rsp)
cmpl $0x1, 0x5750(%rsp)
jne 0x12fc6f2
movq 0x640(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12fc6c0
movq 0x640(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x12fc6be
jmp 0x12fc6f0
movq 0x640(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5808(%rsp)
cmpq $0x0, 0x5808(%rsp)
je 0x12fc6ee
movq 0x5808(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x12fc6f0
jmp 0x12fc6f2
movq 0x640(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12fc74d
movq %rax, %rdi
callq 0x678a0
jmp 0x12fc74f
leaq 0x2318(%rsp), %rax
movq %rax, 0x2f98(%rsp)
movq 0x2f98(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x638(%rsp)
leaq 0x2318(%rsp), %rax
movq %rax, 0x3160(%rsp)
movq 0x3160(%rsp), %rax
movq %rax, 0x54c8(%rsp)
movq 0x54c8(%rsp), %rax
movq %rax, 0x630(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12fc840
movq 0x630(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x54c4(%rsp) # imm = 0xFFFFFFFF
movl 0x54c4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x54c0(%rsp)
cmpl $0x1, 0x54c0(%rsp)
jne 0x12fc840
movq 0x630(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12fc80e
movq 0x630(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x12fc80c
jmp 0x12fc83e
movq 0x630(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5950(%rsp)
cmpq $0x0, 0x5950(%rsp)
je 0x12fc83c
movq 0x5950(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x12fc83e
jmp 0x12fc840
movq 0x630(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12fc89b
movq %rax, %rdi
callq 0x678a0
movq 0x638(%rsp), %rax
movq %rax, 0x2360(%rsp)
movq 0x2b98(%rsp), %rcx
movl 0x23bc(%rsp), %eax
leaq 0x22c8(%rsp), %rdx
movq %rdx, 0x3520(%rsp)
movq %rcx, 0x3518(%rsp)
movl %eax, 0x3514(%rsp)
movq 0x3518(%rsp), %rax
movq %rax, 0x628(%rsp)
movb $0x0, 0x3513(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3514(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x22c8(%rsp), %r10
movq %r10, 0x4440(%rsp)
movl %r9d, 0x443c(%rsp)
movl %r8d, 0x4438(%rsp)
movl %edi, 0x4434(%rsp)
movq %rsi, 0x4428(%rsp)
movq %rdx, 0x4420(%rsp)
movl %ecx, 0x441c(%rsp)
movq %rax, 0x4410(%rsp)
movq 0x4440(%rsp), %rcx
movq %rcx, 0x620(%rsp)
movq 0x4428(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4420(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x441c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4410(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x443c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4438(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4434(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4f48(%rsp)
movl $0x10, 0x4f44(%rsp)
movq 0x4f48(%rsp), %rax
movslq 0x4f44(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4f44(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x628(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x22f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12fca67
movq 0x628(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2308(%rsp)
movb $0x1, 0x3513(%rsp)
testb $0x1, 0x3513(%rsp)
jne 0x12fcba8
leaq 0x22c8(%rsp), %rax
movq %rax, 0x3528(%rsp)
movq 0x3528(%rsp), %rax
movq %rax, 0x4fd8(%rsp)
movq 0x4fd8(%rsp), %rax
movq %rax, 0x618(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12fcb4b
movq 0x618(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4fd4(%rsp) # imm = 0xFFFFFFFF
movl 0x4fd4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4fd0(%rsp)
cmpl $0x1, 0x4fd0(%rsp)
jne 0x12fcb4b
movq 0x618(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12fcb19
movq 0x618(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x12fcb17
jmp 0x12fcb49
movq 0x618(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5bc8(%rsp)
cmpq $0x0, 0x5bc8(%rsp)
je 0x12fcb47
movq 0x5bc8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x12fcb49
jmp 0x12fcb4b
movq 0x618(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12fcba6
movq %rax, %rdi
callq 0x678a0
jmp 0x12fcba8
leaq 0x22c8(%rsp), %rax
movq %rax, 0x3628(%rsp)
movq 0x3628(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x610(%rsp)
leaq 0x22c8(%rsp), %rax
movq %rax, 0x3170(%rsp)
movq 0x3170(%rsp), %rax
movq %rax, 0x54a8(%rsp)
movq 0x54a8(%rsp), %rax
movq %rax, 0x608(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12fcc99
movq 0x608(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x54a4(%rsp) # imm = 0xFFFFFFFF
movl 0x54a4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x54a0(%rsp)
cmpl $0x1, 0x54a0(%rsp)
jne 0x12fcc99
movq 0x608(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12fcc67
movq 0x608(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x12fcc65
jmp 0x12fcc97
movq 0x608(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5960(%rsp)
cmpq $0x0, 0x5960(%rsp)
je 0x12fcc95
movq 0x5960(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x12fcc97
jmp 0x12fcc99
movq 0x608(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12fccf4
movq %rax, %rdi
callq 0x678a0
movq 0x610(%rsp), %rax
movq %rax, 0x2310(%rsp)
movq 0x2360(%rsp), %rax
movq %rax, 0x3738(%rsp)
movq 0x3738(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2280(%rsp)
movl $0x0, 0x227c(%rsp)
movl 0x227c(%rsp), %eax
cmpl 0x2b78(%rsp), %eax
jge 0x12fce1a
movq 0x23b0(%rsp), %rax
movq %rax, 0x3730(%rsp)
movq 0x3730(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2200(%rsp)
leaq 0x2b8f(%rsp), %rdi
leaq 0x2200(%rsp), %rsi
leaq 0x2280(%rsp), %rdx
callq 0x14535e0
vmovaps %zmm0, 0x21c0(%rsp)
movq 0x2310(%rsp), %rax
vmovaps 0x21c0(%rsp), %zmm0
movq %rax, 0x3f78(%rsp)
vmovaps %zmm0, 0x3f00(%rsp)
vmovaps 0x3f00(%rsp), %zmm0
movq 0x3f78(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x23b0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x23b0(%rsp)
movq 0x2310(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2310(%rsp)
movl 0x227c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x227c(%rsp)
jmp 0x12fcd38
jmp 0x12fce1c
movl 0x23bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x23bc(%rsp)
jmp 0x12fbfe5
movl $0x0, 0x2bb4(%rsp)
jmp 0x1307dd4
movl 0x2b68(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jne 0x12fd9a4
movl 0x2b64(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jne 0x12fd9a4
cmpl $0x1, 0x2b5c(%rsp)
jne 0x12fd9a4
cmpl $0x1, 0x2b4c(%rsp)
jne 0x12fd9a4
movq 0x2b98(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b7c(%rsp), %ecx
movq 0x2b70(%rsp), %r8
movl 0x2b6c(%rsp), %r9d
movq 0x2b90(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2b98(%rsp), %rax
movq %rax, 0x2c30(%rsp)
movq 0x2c30(%rsp), %rcx
movq %rcx, 0x5f8(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x607(%rsp)
je 0x12fcf29
movq 0x5f8(%rsp), %rax
movq %rax, 0x42b0(%rsp)
movq 0x42b0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x607(%rsp)
movb 0x607(%rsp), %al
testb $0x1, %al
jne 0x12fcf36
jmp 0x12fcf46
movl $0xffffff9c, 0x2bb4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1307dd4
movl $0x0, 0x21bc(%rsp)
movl 0x21bc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x12fd994
movq 0x2ba8(%rsp), %rcx
movl 0x21bc(%rsp), %eax
leaq 0x2168(%rsp), %rdx
movq %rdx, 0x2df8(%rsp)
movq %rcx, 0x2df0(%rsp)
movl %eax, 0x2dec(%rsp)
movq 0x2df0(%rsp), %rax
movq %rax, 0x5f0(%rsp)
movb $0x0, 0x2deb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2dec(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2168(%rsp), %r10
movq %r10, 0x4910(%rsp)
movl %r9d, 0x490c(%rsp)
movl %r8d, 0x4908(%rsp)
movl %edi, 0x4904(%rsp)
movq %rsi, 0x48f8(%rsp)
movq %rdx, 0x48f0(%rsp)
movl %ecx, 0x48ec(%rsp)
movq %rax, 0x48e0(%rsp)
movq 0x4910(%rsp), %rcx
movq %rcx, 0x5e8(%rsp)
movq 0x48f8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x48f0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x48ec(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x48e0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x490c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4908(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4904(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4de8(%rsp)
movl $0x10, 0x4de4(%rsp)
movq 0x4de8(%rsp), %rax
movslq 0x4de4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4de4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5f0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2190(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12fd121
movq 0x5f0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x21a8(%rsp)
movb $0x1, 0x2deb(%rsp)
testb $0x1, 0x2deb(%rsp)
jne 0x12fd262
leaq 0x2168(%rsp), %rax
movq %rax, 0x3020(%rsp)
movq 0x3020(%rsp), %rax
movq %rax, 0x5748(%rsp)
movq 0x5748(%rsp), %rax
movq %rax, 0x5e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12fd205
movq 0x5e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5744(%rsp) # imm = 0xFFFFFFFF
movl 0x5744(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5740(%rsp)
cmpl $0x1, 0x5740(%rsp)
jne 0x12fd205
movq 0x5e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12fd1d3
movq 0x5e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x12fd1d1
jmp 0x12fd203
movq 0x5e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5810(%rsp)
cmpq $0x0, 0x5810(%rsp)
je 0x12fd201
movq 0x5810(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x12fd203
jmp 0x12fd205
movq 0x5e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12fd260
movq %rax, %rdi
callq 0x678a0
jmp 0x12fd262
leaq 0x2168(%rsp), %rax
movq %rax, 0x2f90(%rsp)
movq 0x2f90(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5d8(%rsp)
leaq 0x2168(%rsp), %rax
movq %rax, 0x3180(%rsp)
movq 0x3180(%rsp), %rax
movq %rax, 0x5488(%rsp)
movq 0x5488(%rsp), %rax
movq %rax, 0x5d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12fd353
movq 0x5d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5484(%rsp) # imm = 0xFFFFFFFF
movl 0x5484(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5480(%rsp)
cmpl $0x1, 0x5480(%rsp)
jne 0x12fd353
movq 0x5d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12fd321
movq 0x5d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x12fd31f
jmp 0x12fd351
movq 0x5d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5970(%rsp)
cmpq $0x0, 0x5970(%rsp)
je 0x12fd34f
movq 0x5970(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x12fd351
jmp 0x12fd353
movq 0x5d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12fd3ae
movq %rax, %rdi
callq 0x678a0
movq 0x5d8(%rsp), %rax
movq %rax, 0x21b0(%rsp)
movq 0x2ba0(%rsp), %rax
movq %rax, 0x2f88(%rsp)
movq 0x2f88(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2160(%rsp)
movq 0x2b98(%rsp), %rcx
movl 0x21bc(%rsp), %eax
leaq 0x2110(%rsp), %rdx
movq %rdx, 0x3500(%rsp)
movq %rcx, 0x34f8(%rsp)
movl %eax, 0x34f4(%rsp)
movq 0x34f8(%rsp), %rax
movq %rax, 0x5c8(%rsp)
movb $0x0, 0x34f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x34f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2110(%rsp), %r10
movq %r10, 0x4478(%rsp)
movl %r9d, 0x4474(%rsp)
movl %r8d, 0x4470(%rsp)
movl %edi, 0x446c(%rsp)
movq %rsi, 0x4460(%rsp)
movq %rdx, 0x4458(%rsp)
movl %ecx, 0x4454(%rsp)
movq %rax, 0x4448(%rsp)
movq 0x4478(%rsp), %rcx
movq %rcx, 0x5c0(%rsp)
movq 0x4460(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4458(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4454(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4448(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4474(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4470(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x446c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4f38(%rsp)
movl $0x10, 0x4f34(%rsp)
movq 0x4f38(%rsp), %rax
movslq 0x4f34(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4f34(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5c8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2138(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12fd59d
movq 0x5c8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2150(%rsp)
movb $0x1, 0x34f3(%rsp)
testb $0x1, 0x34f3(%rsp)
jne 0x12fd6de
leaq 0x2110(%rsp), %rax
movq %rax, 0x3508(%rsp)
movq 0x3508(%rsp), %rax
movq %rax, 0x4fe8(%rsp)
movq 0x4fe8(%rsp), %rax
movq %rax, 0x5b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12fd681
movq 0x5b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4fe4(%rsp) # imm = 0xFFFFFFFF
movl 0x4fe4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4fe0(%rsp)
cmpl $0x1, 0x4fe0(%rsp)
jne 0x12fd681
movq 0x5b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12fd64f
movq 0x5b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x12fd64d
jmp 0x12fd67f
movq 0x5b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5bc0(%rsp)
cmpq $0x0, 0x5bc0(%rsp)
je 0x12fd67d
movq 0x5bc0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x12fd67f
jmp 0x12fd681
movq 0x5b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12fd6dc
movq %rax, %rdi
callq 0x678a0
jmp 0x12fd6de
leaq 0x2110(%rsp), %rax
movq %rax, 0x3620(%rsp)
movq 0x3620(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5b0(%rsp)
leaq 0x2110(%rsp), %rax
movq %rax, 0x3190(%rsp)
movq 0x3190(%rsp), %rax
movq %rax, 0x5468(%rsp)
movq 0x5468(%rsp), %rax
movq %rax, 0x5a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12fd7cf
movq 0x5a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5464(%rsp) # imm = 0xFFFFFFFF
movl 0x5464(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5460(%rsp)
cmpl $0x1, 0x5460(%rsp)
jne 0x12fd7cf
movq 0x5a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12fd79d
movq 0x5a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x12fd79b
jmp 0x12fd7cd
movq 0x5a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5980(%rsp)
cmpq $0x0, 0x5980(%rsp)
je 0x12fd7cb
movq 0x5980(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x12fd7cd
jmp 0x12fd7cf
movq 0x5a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12fd82a
movq %rax, %rdi
callq 0x678a0
movq 0x5b0(%rsp), %rax
movq %rax, 0x2158(%rsp)
movl $0x0, 0x210c(%rsp)
movl 0x210c(%rsp), %eax
cmpl 0x2b78(%rsp), %eax
jge 0x12fd97c
movq 0x21b0(%rsp), %rax
movq %rax, 0x3728(%rsp)
movq 0x3728(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x20c0(%rsp)
movq 0x2160(%rsp), %rax
vmovss (%rax), %xmm0
vmovss %xmm0, 0x4294(%rsp)
vbroadcastss 0x4294(%rsp), %zmm0
vmovaps %zmm0, 0x4240(%rsp)
vmovaps 0x4240(%rsp), %zmm0
vmovaps %zmm0, 0x2080(%rsp)
leaq 0x2b8f(%rsp), %rdi
leaq 0x20c0(%rsp), %rsi
leaq 0x2080(%rsp), %rdx
callq 0x14535e0
vmovaps %zmm0, 0x2040(%rsp)
movq 0x2158(%rsp), %rax
vmovaps 0x2040(%rsp), %zmm0
movq %rax, 0x3ef8(%rsp)
vmovaps %zmm0, 0x3e80(%rsp)
vmovaps 0x3e80(%rsp), %zmm0
movq 0x3ef8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x21b0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x21b0(%rsp)
movq 0x2160(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x2160(%rsp)
movq 0x2158(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2158(%rsp)
movl 0x210c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x210c(%rsp)
jmp 0x12fd845
jmp 0x12fd97e
movl 0x21bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x21bc(%rsp)
jmp 0x12fcf51
movl $0x0, 0x2bb4(%rsp)
jmp 0x1307dd4
cmpl $0x1, 0x2b88(%rsp)
jne 0x12fe8f0
cmpl $0x1, 0x2b84(%rsp)
jne 0x12fe8f0
movl 0x2b5c(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jne 0x12fe8f0
movq 0x2b98(%rsp), %rdi
movl 0x2b68(%rsp), %esi
movl 0x2b64(%rsp), %edx
movl 0x2b5c(%rsp), %ecx
movq 0x2b50(%rsp), %r8
movl 0x2b4c(%rsp), %r9d
movq 0x2b90(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2b98(%rsp), %rax
movq %rax, 0x2c28(%rsp)
movq 0x2c28(%rsp), %rcx
movq %rcx, 0x598(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x5a7(%rsp)
je 0x12fda77
movq 0x598(%rsp), %rax
movq %rax, 0x42b8(%rsp)
movq 0x42b8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x5a7(%rsp)
movb 0x5a7(%rsp), %al
testb $0x1, %al
jne 0x12fda84
jmp 0x12fda94
movl $0xffffff9c, 0x2bb4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1307dd4
movl $0x0, 0x203c(%rsp)
movl 0x203c(%rsp), %eax
cmpl 0x2b5c(%rsp), %eax
jge 0x12fe8e0
movq 0x2ba8(%rsp), %rcx
movl 0x203c(%rsp), %eax
leaq 0x1fe8(%rsp), %rdx
movq %rdx, 0x2de0(%rsp)
movq %rcx, 0x2dd8(%rsp)
movl %eax, 0x2dd4(%rsp)
movq 0x2dd8(%rsp), %rax
movq %rax, 0x590(%rsp)
movb $0x0, 0x2dd3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2dd4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1fe8(%rsp), %r10
movq %r10, 0x4948(%rsp)
movl %r9d, 0x4944(%rsp)
movl %r8d, 0x4940(%rsp)
movl %edi, 0x493c(%rsp)
movq %rsi, 0x4930(%rsp)
movq %rdx, 0x4928(%rsp)
movl %ecx, 0x4924(%rsp)
movq %rax, 0x4918(%rsp)
movq 0x4948(%rsp), %rcx
movq %rcx, 0x588(%rsp)
movq 0x4930(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4928(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4924(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4918(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4944(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4940(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x493c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4dd8(%rsp)
movl $0x10, 0x4dd4(%rsp)
movq 0x4dd8(%rsp), %rax
movslq 0x4dd4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4dd4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x590(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2010(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12fdc6f
movq 0x590(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2028(%rsp)
movb $0x1, 0x2dd3(%rsp)
testb $0x1, 0x2dd3(%rsp)
jne 0x12fddb0
leaq 0x1fe8(%rsp), %rax
movq %rax, 0x3028(%rsp)
movq 0x3028(%rsp), %rax
movq %rax, 0x5738(%rsp)
movq 0x5738(%rsp), %rax
movq %rax, 0x580(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12fdd53
movq 0x580(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5734(%rsp) # imm = 0xFFFFFFFF
movl 0x5734(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5730(%rsp)
cmpl $0x1, 0x5730(%rsp)
jne 0x12fdd53
movq 0x580(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12fdd21
movq 0x580(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x12fdd1f
jmp 0x12fdd51
movq 0x580(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5818(%rsp)
cmpq $0x0, 0x5818(%rsp)
je 0x12fdd4f
movq 0x5818(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x12fdd51
jmp 0x12fdd53
movq 0x580(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12fddae
movq %rax, %rdi
callq 0x678a0
jmp 0x12fddb0
leaq 0x1fe8(%rsp), %rax
movq %rax, 0x2f80(%rsp)
movq 0x2f80(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x578(%rsp)
leaq 0x1fe8(%rsp), %rax
movq %rax, 0x31a0(%rsp)
movq 0x31a0(%rsp), %rax
movq %rax, 0x5448(%rsp)
movq 0x5448(%rsp), %rax
movq %rax, 0x570(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12fdea1
movq 0x570(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5444(%rsp) # imm = 0xFFFFFFFF
movl 0x5444(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5440(%rsp)
cmpl $0x1, 0x5440(%rsp)
jne 0x12fdea1
movq 0x570(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12fde6f
movq 0x570(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x12fde6d
jmp 0x12fde9f
movq 0x570(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5990(%rsp)
cmpq $0x0, 0x5990(%rsp)
je 0x12fde9d
movq 0x5990(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x12fde9f
jmp 0x12fdea1
movq 0x570(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12fdefc
movq %rax, %rdi
callq 0x678a0
movq 0x578(%rsp), %rax
movq %rax, 0x2030(%rsp)
movq 0x2ba0(%rsp), %rcx
movl 0x203c(%rsp), %eax
leaq 0x1f98(%rsp), %rdx
movq %rdx, 0x2dc8(%rsp)
movq %rcx, 0x2dc0(%rsp)
movl %eax, 0x2dbc(%rsp)
movq 0x2dc0(%rsp), %rax
movq %rax, 0x568(%rsp)
movb $0x0, 0x2dbb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2dbc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1f98(%rsp), %r10
movq %r10, 0x4980(%rsp)
movl %r9d, 0x497c(%rsp)
movl %r8d, 0x4978(%rsp)
movl %edi, 0x4974(%rsp)
movq %rsi, 0x4968(%rsp)
movq %rdx, 0x4960(%rsp)
movl %ecx, 0x495c(%rsp)
movq %rax, 0x4950(%rsp)
movq 0x4980(%rsp), %rcx
movq %rcx, 0x560(%rsp)
movq 0x4968(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4960(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x495c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4950(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x497c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4978(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4974(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4dc8(%rsp)
movl $0x10, 0x4dc4(%rsp)
movq 0x4dc8(%rsp), %rax
movslq 0x4dc4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4dc4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x568(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1fc0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12fe0c8
movq 0x568(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1fd8(%rsp)
movb $0x1, 0x2dbb(%rsp)
testb $0x1, 0x2dbb(%rsp)
jne 0x12fe209
leaq 0x1f98(%rsp), %rax
movq %rax, 0x3030(%rsp)
movq 0x3030(%rsp), %rax
movq %rax, 0x5728(%rsp)
movq 0x5728(%rsp), %rax
movq %rax, 0x558(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12fe1ac
movq 0x558(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5724(%rsp) # imm = 0xFFFFFFFF
movl 0x5724(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5720(%rsp)
cmpl $0x1, 0x5720(%rsp)
jne 0x12fe1ac
movq 0x558(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12fe17a
movq 0x558(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x12fe178
jmp 0x12fe1aa
movq 0x558(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5820(%rsp)
cmpq $0x0, 0x5820(%rsp)
je 0x12fe1a8
movq 0x5820(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x12fe1aa
jmp 0x12fe1ac
movq 0x558(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12fe207
movq %rax, %rdi
callq 0x678a0
jmp 0x12fe209
leaq 0x1f98(%rsp), %rax
movq %rax, 0x2f78(%rsp)
movq 0x2f78(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x550(%rsp)
leaq 0x1f98(%rsp), %rax
movq %rax, 0x31b0(%rsp)
movq 0x31b0(%rsp), %rax
movq %rax, 0x5428(%rsp)
movq 0x5428(%rsp), %rax
movq %rax, 0x548(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12fe2fa
movq 0x548(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5424(%rsp) # imm = 0xFFFFFFFF
movl 0x5424(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5420(%rsp)
cmpl $0x1, 0x5420(%rsp)
jne 0x12fe2fa
movq 0x548(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12fe2c8
movq 0x548(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x12fe2c6
jmp 0x12fe2f8
movq 0x548(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x59a0(%rsp)
cmpq $0x0, 0x59a0(%rsp)
je 0x12fe2f6
movq 0x59a0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x12fe2f8
jmp 0x12fe2fa
movq 0x548(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12fe355
movq %rax, %rdi
callq 0x678a0
movq 0x550(%rsp), %rax
movq %rax, 0x1fe0(%rsp)
movq 0x2b98(%rsp), %rcx
movl 0x203c(%rsp), %eax
leaq 0x1f48(%rsp), %rdx
movq %rdx, 0x34e0(%rsp)
movq %rcx, 0x34d8(%rsp)
movl %eax, 0x34d4(%rsp)
movq 0x34d8(%rsp), %rax
movq %rax, 0x540(%rsp)
movb $0x0, 0x34d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x34d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1f48(%rsp), %r10
movq %r10, 0x44b0(%rsp)
movl %r9d, 0x44ac(%rsp)
movl %r8d, 0x44a8(%rsp)
movl %edi, 0x44a4(%rsp)
movq %rsi, 0x4498(%rsp)
movq %rdx, 0x4490(%rsp)
movl %ecx, 0x448c(%rsp)
movq %rax, 0x4480(%rsp)
movq 0x44b0(%rsp), %rcx
movq %rcx, 0x538(%rsp)
movq 0x4498(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4490(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x448c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4480(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x44ac(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x44a8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x44a4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4f28(%rsp)
movl $0x10, 0x4f24(%rsp)
movq 0x4f28(%rsp), %rax
movslq 0x4f24(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4f24(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x540(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1f70(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12fe521
movq 0x540(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1f88(%rsp)
movb $0x1, 0x34d3(%rsp)
testb $0x1, 0x34d3(%rsp)
jne 0x12fe662
leaq 0x1f48(%rsp), %rax
movq %rax, 0x34e8(%rsp)
movq 0x34e8(%rsp), %rax
movq %rax, 0x4ff8(%rsp)
movq 0x4ff8(%rsp), %rax
movq %rax, 0x530(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12fe605
movq 0x530(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4ff4(%rsp) # imm = 0xFFFFFFFF
movl 0x4ff4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4ff0(%rsp)
cmpl $0x1, 0x4ff0(%rsp)
jne 0x12fe605
movq 0x530(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12fe5d3
movq 0x530(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x12fe5d1
jmp 0x12fe603
movq 0x530(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5bb8(%rsp)
cmpq $0x0, 0x5bb8(%rsp)
je 0x12fe601
movq 0x5bb8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x12fe603
jmp 0x12fe605
movq 0x530(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12fe660
movq %rax, %rdi
callq 0x678a0
jmp 0x12fe662
leaq 0x1f48(%rsp), %rax
movq %rax, 0x3618(%rsp)
movq 0x3618(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x528(%rsp)
leaq 0x1f48(%rsp), %rax
movq %rax, 0x31c0(%rsp)
movq 0x31c0(%rsp), %rax
movq %rax, 0x5408(%rsp)
movq 0x5408(%rsp), %rax
movq %rax, 0x520(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12fe753
movq 0x520(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5404(%rsp) # imm = 0xFFFFFFFF
movl 0x5404(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5400(%rsp)
cmpl $0x1, 0x5400(%rsp)
jne 0x12fe753
movq 0x520(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12fe721
movq 0x520(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x12fe71f
jmp 0x12fe751
movq 0x520(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x59b0(%rsp)
cmpq $0x0, 0x59b0(%rsp)
je 0x12fe74f
movq 0x59b0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x12fe751
jmp 0x12fe753
movq 0x520(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12fe7ae
movq %rax, %rdi
callq 0x678a0
movq 0x528(%rsp), %rax
movq %rax, 0x1f90(%rsp)
movq 0x2030(%rsp), %rax
movq %rax, 0x3720(%rsp)
movq 0x3720(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1f00(%rsp)
movl $0x0, 0x1efc(%rsp)
movl 0x1efc(%rsp), %eax
cmpl 0x2b58(%rsp), %eax
jge 0x12fe8c8
movq 0x1fe0(%rsp), %rax
movq %rax, 0x3718(%rsp)
movq 0x3718(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1e80(%rsp)
leaq 0x2b8f(%rsp), %rdi
leaq 0x1f00(%rsp), %rsi
leaq 0x1e80(%rsp), %rdx
callq 0x14535e0
vmovaps %zmm0, 0x1e40(%rsp)
movq 0x1f90(%rsp), %rax
vmovaps 0x1e40(%rsp), %zmm0
movq %rax, 0x3e78(%rsp)
vmovaps %zmm0, 0x3e00(%rsp)
vmovaps 0x3e00(%rsp), %zmm0
movq 0x3e78(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x1fe0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1fe0(%rsp)
movq 0x1f90(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1f90(%rsp)
movl 0x1efc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1efc(%rsp)
jmp 0x12fe7ef
jmp 0x12fe8ca
movl 0x203c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x203c(%rsp)
jmp 0x12fda9f
movl $0x0, 0x2bb4(%rsp)
jmp 0x1307dd4
movl 0x2b68(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jne 0x12ff446
movl 0x2b64(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jne 0x12ff446
cmpl $0x1, 0x2b7c(%rsp)
jne 0x12ff446
cmpl $0x1, 0x2b6c(%rsp)
jne 0x12ff446
movq 0x2b98(%rsp), %rdi
movl 0x2b68(%rsp), %esi
movl 0x2b64(%rsp), %edx
movl 0x2b5c(%rsp), %ecx
movq 0x2b50(%rsp), %r8
movl 0x2b4c(%rsp), %r9d
movq 0x2b90(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2b98(%rsp), %rax
movq %rax, 0x2c20(%rsp)
movq 0x2c20(%rsp), %rcx
movq %rcx, 0x510(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x51f(%rsp)
je 0x12fe9d7
movq 0x510(%rsp), %rax
movq %rax, 0x42c0(%rsp)
movq 0x42c0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x51f(%rsp)
movb 0x51f(%rsp), %al
testb $0x1, %al
jne 0x12fe9e4
jmp 0x12fe9f4
movl $0xffffff9c, 0x2bb4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1307dd4
movl $0x0, 0x1e3c(%rsp)
movl 0x1e3c(%rsp), %eax
cmpl 0x2b5c(%rsp), %eax
jge 0x12ff436
movq 0x2ba8(%rsp), %rax
movq %rax, 0x2f70(%rsp)
movq 0x2f70(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1e30(%rsp)
movq 0x2ba0(%rsp), %rcx
movl 0x1e3c(%rsp), %eax
leaq 0x1de0(%rsp), %rdx
movq %rdx, 0x2db0(%rsp)
movq %rcx, 0x2da8(%rsp)
movl %eax, 0x2da4(%rsp)
movq 0x2da8(%rsp), %rax
movq %rax, 0x508(%rsp)
movb $0x0, 0x2da3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2da4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1de0(%rsp), %r10
movq %r10, 0x49b8(%rsp)
movl %r9d, 0x49b4(%rsp)
movl %r8d, 0x49b0(%rsp)
movl %edi, 0x49ac(%rsp)
movq %rsi, 0x49a0(%rsp)
movq %rdx, 0x4998(%rsp)
movl %ecx, 0x4994(%rsp)
movq %rax, 0x4988(%rsp)
movq 0x49b8(%rsp), %rcx
movq %rcx, 0x500(%rsp)
movq 0x49a0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4998(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4994(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4988(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x49b4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x49b0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x49ac(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4db8(%rsp)
movl $0x10, 0x4db4(%rsp)
movq 0x4db8(%rsp), %rax
movslq 0x4db4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4db4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x508(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1e08(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12febf2
movq 0x508(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1e20(%rsp)
movb $0x1, 0x2da3(%rsp)
testb $0x1, 0x2da3(%rsp)
jne 0x12fed33
leaq 0x1de0(%rsp), %rax
movq %rax, 0x3038(%rsp)
movq 0x3038(%rsp), %rax
movq %rax, 0x5718(%rsp)
movq 0x5718(%rsp), %rax
movq %rax, 0x4f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12fecd6
movq 0x4f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5714(%rsp) # imm = 0xFFFFFFFF
movl 0x5714(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5710(%rsp)
cmpl $0x1, 0x5710(%rsp)
jne 0x12fecd6
movq 0x4f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12feca4
movq 0x4f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x12feca2
jmp 0x12fecd4
movq 0x4f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5828(%rsp)
cmpq $0x0, 0x5828(%rsp)
je 0x12fecd2
movq 0x5828(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x12fecd4
jmp 0x12fecd6
movq 0x4f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12fed31
movq %rax, %rdi
callq 0x678a0
jmp 0x12fed33
leaq 0x1de0(%rsp), %rax
movq %rax, 0x2f68(%rsp)
movq 0x2f68(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4f0(%rsp)
leaq 0x1de0(%rsp), %rax
movq %rax, 0x31d0(%rsp)
movq 0x31d0(%rsp), %rax
movq %rax, 0x53e8(%rsp)
movq 0x53e8(%rsp), %rax
movq %rax, 0x4e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12fee24
movq 0x4e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x53e4(%rsp) # imm = 0xFFFFFFFF
movl 0x53e4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x53e0(%rsp)
cmpl $0x1, 0x53e0(%rsp)
jne 0x12fee24
movq 0x4e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12fedf2
movq 0x4e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x12fedf0
jmp 0x12fee22
movq 0x4e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x59c0(%rsp)
cmpq $0x0, 0x59c0(%rsp)
je 0x12fee20
movq 0x59c0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x12fee22
jmp 0x12fee24
movq 0x4e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12fee7f
movq %rax, %rdi
callq 0x678a0
movq 0x4f0(%rsp), %rax
movq %rax, 0x1e28(%rsp)
movq 0x2b98(%rsp), %rcx
movl 0x1e3c(%rsp), %eax
leaq 0x1d90(%rsp), %rdx
movq %rdx, 0x34c0(%rsp)
movq %rcx, 0x34b8(%rsp)
movl %eax, 0x34b4(%rsp)
movq 0x34b8(%rsp), %rax
movq %rax, 0x4e0(%rsp)
movb $0x0, 0x34b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x34b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1d90(%rsp), %r10
movq %r10, 0x44e8(%rsp)
movl %r9d, 0x44e4(%rsp)
movl %r8d, 0x44e0(%rsp)
movl %edi, 0x44dc(%rsp)
movq %rsi, 0x44d0(%rsp)
movq %rdx, 0x44c8(%rsp)
movl %ecx, 0x44c4(%rsp)
movq %rax, 0x44b8(%rsp)
movq 0x44e8(%rsp), %rcx
movq %rcx, 0x4d8(%rsp)
movq 0x44d0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x44c8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x44c4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x44b8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x44e4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x44e0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x44dc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4f18(%rsp)
movl $0x10, 0x4f14(%rsp)
movq 0x4f18(%rsp), %rax
movslq 0x4f14(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4f14(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4e0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1db8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12ff04b
movq 0x4e0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1dd0(%rsp)
movb $0x1, 0x34b3(%rsp)
testb $0x1, 0x34b3(%rsp)
jne 0x12ff18c
leaq 0x1d90(%rsp), %rax
movq %rax, 0x34c8(%rsp)
movq 0x34c8(%rsp), %rax
movq %rax, 0x5008(%rsp)
movq 0x5008(%rsp), %rax
movq %rax, 0x4d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ff12f
movq 0x4d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5004(%rsp) # imm = 0xFFFFFFFF
movl 0x5004(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5000(%rsp)
cmpl $0x1, 0x5000(%rsp)
jne 0x12ff12f
movq 0x4d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ff0fd
movq 0x4d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x12ff0fb
jmp 0x12ff12d
movq 0x4d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5bb0(%rsp)
cmpq $0x0, 0x5bb0(%rsp)
je 0x12ff12b
movq 0x5bb0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x12ff12d
jmp 0x12ff12f
movq 0x4d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ff18a
movq %rax, %rdi
callq 0x678a0
jmp 0x12ff18c
leaq 0x1d90(%rsp), %rax
movq %rax, 0x3610(%rsp)
movq 0x3610(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4c8(%rsp)
leaq 0x1d90(%rsp), %rax
movq %rax, 0x31e0(%rsp)
movq 0x31e0(%rsp), %rax
movq %rax, 0x53c8(%rsp)
movq 0x53c8(%rsp), %rax
movq %rax, 0x4c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ff27d
movq 0x4c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x53c4(%rsp) # imm = 0xFFFFFFFF
movl 0x53c4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x53c0(%rsp)
cmpl $0x1, 0x53c0(%rsp)
jne 0x12ff27d
movq 0x4c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ff24b
movq 0x4c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x12ff249
jmp 0x12ff27b
movq 0x4c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x59d0(%rsp)
cmpq $0x0, 0x59d0(%rsp)
je 0x12ff279
movq 0x59d0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x12ff27b
jmp 0x12ff27d
movq 0x4c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ff2d8
movq %rax, %rdi
callq 0x678a0
movq 0x4c8(%rsp), %rax
movq %rax, 0x1dd8(%rsp)
movl $0x0, 0x1d8c(%rsp)
movl 0x1d8c(%rsp), %eax
cmpl 0x2b58(%rsp), %eax
jge 0x12ff41e
movq 0x1e30(%rsp), %rax
vmovss (%rax), %xmm0
vmovss %xmm0, 0x423c(%rsp)
vbroadcastss 0x423c(%rsp), %zmm0
vmovaps %zmm0, 0x41c0(%rsp)
vmovaps 0x41c0(%rsp), %zmm0
vmovaps %zmm0, 0x1d40(%rsp)
movq 0x1e28(%rsp), %rax
movq %rax, 0x3710(%rsp)
movq 0x3710(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1d00(%rsp)
leaq 0x2b8f(%rsp), %rdi
leaq 0x1d40(%rsp), %rsi
leaq 0x1d00(%rsp), %rdx
callq 0x14535e0
vmovaps %zmm0, 0x1cc0(%rsp)
movq 0x1dd8(%rsp), %rax
vmovaps 0x1cc0(%rsp), %zmm0
movq %rax, 0x3df8(%rsp)
vmovaps %zmm0, 0x3d80(%rsp)
vmovaps 0x3d80(%rsp), %zmm0
movq 0x3df8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x1e30(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x1e30(%rsp)
movq 0x1e28(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1e28(%rsp)
movq 0x1dd8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1dd8(%rsp)
movl 0x1d8c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1d8c(%rsp)
jmp 0x12ff2f3
jmp 0x12ff420
movl 0x1e3c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1e3c(%rsp)
jmp 0x12fe9ff
movl $0x0, 0x2bb4(%rsp)
jmp 0x1307dd4
cmpl $0x1, 0x2b88(%rsp)
je 0x13003f1
cmpl $0x1, 0x2b68(%rsp)
jne 0x13003f1
movl 0x2b64(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jne 0x13003f1
movl 0x2b5c(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jne 0x13003f1
movq 0x2b98(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b7c(%rsp), %ecx
movq 0x2b70(%rsp), %r8
movl 0x2b6c(%rsp), %r9d
movq 0x2b90(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2b98(%rsp), %rax
movq %rax, 0x2c18(%rsp)
movq 0x2c18(%rsp), %rcx
movq %rcx, 0x4b0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x4bf(%rsp)
je 0x12ff52d
movq 0x4b0(%rsp), %rax
movq %rax, 0x42c8(%rsp)
movq 0x42c8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x4bf(%rsp)
movb 0x4bf(%rsp), %al
testb $0x1, %al
jne 0x12ff53a
jmp 0x12ff54a
movl $0xffffff9c, 0x2bb4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1307dd4
movl $0x0, 0x1cbc(%rsp)
movl 0x1cbc(%rsp), %eax
cmpl 0x2b5c(%rsp), %eax
jge 0x13003e1
movq 0x2ba8(%rsp), %rcx
movl 0x1cbc(%rsp), %eax
leaq 0x1c68(%rsp), %rdx
movq %rdx, 0x2d98(%rsp)
movq %rcx, 0x2d90(%rsp)
movl %eax, 0x2d8c(%rsp)
movq 0x2d90(%rsp), %rax
movq %rax, 0x4a8(%rsp)
movb $0x0, 0x2d8b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d8c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1c68(%rsp), %r10
movq %r10, 0x49f0(%rsp)
movl %r9d, 0x49ec(%rsp)
movl %r8d, 0x49e8(%rsp)
movl %edi, 0x49e4(%rsp)
movq %rsi, 0x49d8(%rsp)
movq %rdx, 0x49d0(%rsp)
movl %ecx, 0x49cc(%rsp)
movq %rax, 0x49c0(%rsp)
movq 0x49f0(%rsp), %rcx
movq %rcx, 0x4a0(%rsp)
movq 0x49d8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x49d0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x49cc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x49c0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x49ec(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x49e8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x49e4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4da8(%rsp)
movl $0x10, 0x4da4(%rsp)
movq 0x4da8(%rsp), %rax
movslq 0x4da4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4da4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4a8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1c90(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12ff725
movq 0x4a8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1ca8(%rsp)
movb $0x1, 0x2d8b(%rsp)
testb $0x1, 0x2d8b(%rsp)
jne 0x12ff866
leaq 0x1c68(%rsp), %rax
movq %rax, 0x3040(%rsp)
movq 0x3040(%rsp), %rax
movq %rax, 0x5708(%rsp)
movq 0x5708(%rsp), %rax
movq %rax, 0x498(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ff809
movq 0x498(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5704(%rsp) # imm = 0xFFFFFFFF
movl 0x5704(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5700(%rsp)
cmpl $0x1, 0x5700(%rsp)
jne 0x12ff809
movq 0x498(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ff7d7
movq 0x498(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x12ff7d5
jmp 0x12ff807
movq 0x498(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5830(%rsp)
cmpq $0x0, 0x5830(%rsp)
je 0x12ff805
movq 0x5830(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x12ff807
jmp 0x12ff809
movq 0x498(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ff864
movq %rax, %rdi
callq 0x678a0
jmp 0x12ff866
leaq 0x1c68(%rsp), %rax
movq %rax, 0x2f60(%rsp)
movq 0x2f60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x490(%rsp)
leaq 0x1c68(%rsp), %rax
movq %rax, 0x31f0(%rsp)
movq 0x31f0(%rsp), %rax
movq %rax, 0x53a8(%rsp)
movq 0x53a8(%rsp), %rax
movq %rax, 0x488(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ff957
movq 0x488(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x53a4(%rsp) # imm = 0xFFFFFFFF
movl 0x53a4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x53a0(%rsp)
cmpl $0x1, 0x53a0(%rsp)
jne 0x12ff957
movq 0x488(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ff925
movq 0x488(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x12ff923
jmp 0x12ff955
movq 0x488(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x59e0(%rsp)
cmpq $0x0, 0x59e0(%rsp)
je 0x12ff953
movq 0x59e0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x12ff955
jmp 0x12ff957
movq 0x488(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ff9b2
movq %rax, %rdi
callq 0x678a0
movq 0x490(%rsp), %rax
movq %rax, 0x1cb0(%rsp)
movq 0x2ba0(%rsp), %rcx
movl 0x1cbc(%rsp), %eax
leaq 0x1c18(%rsp), %rdx
movq %rdx, 0x2d80(%rsp)
movq %rcx, 0x2d78(%rsp)
movl %eax, 0x2d74(%rsp)
movq 0x2d78(%rsp), %rax
movq %rax, 0x480(%rsp)
movb $0x0, 0x2d73(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d74(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1c18(%rsp), %r10
movq %r10, 0x4a28(%rsp)
movl %r9d, 0x4a24(%rsp)
movl %r8d, 0x4a20(%rsp)
movl %edi, 0x4a1c(%rsp)
movq %rsi, 0x4a10(%rsp)
movq %rdx, 0x4a08(%rsp)
movl %ecx, 0x4a04(%rsp)
movq %rax, 0x49f8(%rsp)
movq 0x4a28(%rsp), %rcx
movq %rcx, 0x478(%rsp)
movq 0x4a10(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4a08(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4a04(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x49f8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4a24(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4a20(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4a1c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d98(%rsp)
movl $0x10, 0x4d94(%rsp)
movq 0x4d98(%rsp), %rax
movslq 0x4d94(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d94(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x480(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1c40(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12ffb7e
movq 0x480(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1c58(%rsp)
movb $0x1, 0x2d73(%rsp)
testb $0x1, 0x2d73(%rsp)
jne 0x12ffcbf
leaq 0x1c18(%rsp), %rax
movq %rax, 0x3048(%rsp)
movq 0x3048(%rsp), %rax
movq %rax, 0x56f8(%rsp)
movq 0x56f8(%rsp), %rax
movq %rax, 0x470(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ffc62
movq 0x470(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x56f4(%rsp) # imm = 0xFFFFFFFF
movl 0x56f4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x56f0(%rsp)
cmpl $0x1, 0x56f0(%rsp)
jne 0x12ffc62
movq 0x470(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ffc30
movq 0x470(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x12ffc2e
jmp 0x12ffc60
movq 0x470(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5838(%rsp)
cmpq $0x0, 0x5838(%rsp)
je 0x12ffc5e
movq 0x5838(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x12ffc60
jmp 0x12ffc62
movq 0x470(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ffcbd
movq %rax, %rdi
callq 0x678a0
jmp 0x12ffcbf
leaq 0x1c18(%rsp), %rax
movq %rax, 0x2f58(%rsp)
movq 0x2f58(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x468(%rsp)
leaq 0x1c18(%rsp), %rax
movq %rax, 0x3200(%rsp)
movq 0x3200(%rsp), %rax
movq %rax, 0x5388(%rsp)
movq 0x5388(%rsp), %rax
movq %rax, 0x460(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x12ffdb0
movq 0x460(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5384(%rsp) # imm = 0xFFFFFFFF
movl 0x5384(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5380(%rsp)
cmpl $0x1, 0x5380(%rsp)
jne 0x12ffdb0
movq 0x460(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x12ffd7e
movq 0x460(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x12ffd7c
jmp 0x12ffdae
movq 0x460(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x59f0(%rsp)
cmpq $0x0, 0x59f0(%rsp)
je 0x12ffdac
movq 0x59f0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x12ffdae
jmp 0x12ffdb0
movq 0x460(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x12ffe0b
movq %rax, %rdi
callq 0x678a0
movq 0x468(%rsp), %rax
movq %rax, 0x1c60(%rsp)
movq 0x2b98(%rsp), %rcx
movl 0x1cbc(%rsp), %eax
leaq 0x1bc8(%rsp), %rdx
movq %rdx, 0x34a0(%rsp)
movq %rcx, 0x3498(%rsp)
movl %eax, 0x3494(%rsp)
movq 0x3498(%rsp), %rax
movq %rax, 0x458(%rsp)
movb $0x0, 0x3493(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3494(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1bc8(%rsp), %r10
movq %r10, 0x4520(%rsp)
movl %r9d, 0x451c(%rsp)
movl %r8d, 0x4518(%rsp)
movl %edi, 0x4514(%rsp)
movq %rsi, 0x4508(%rsp)
movq %rdx, 0x4500(%rsp)
movl %ecx, 0x44fc(%rsp)
movq %rax, 0x44f0(%rsp)
movq 0x4520(%rsp), %rcx
movq %rcx, 0x450(%rsp)
movq 0x4508(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4500(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x44fc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x44f0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x451c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4518(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4514(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4f08(%rsp)
movl $0x10, 0x4f04(%rsp)
movq 0x4f08(%rsp), %rax
movslq 0x4f04(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4f04(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x458(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1bf0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x12fffd7
movq 0x458(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1c08(%rsp)
movb $0x1, 0x3493(%rsp)
testb $0x1, 0x3493(%rsp)
jne 0x1300118
leaq 0x1bc8(%rsp), %rax
movq %rax, 0x34a8(%rsp)
movq 0x34a8(%rsp), %rax
movq %rax, 0x5018(%rsp)
movq 0x5018(%rsp), %rax
movq %rax, 0x448(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13000bb
movq 0x448(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5014(%rsp) # imm = 0xFFFFFFFF
movl 0x5014(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5010(%rsp)
cmpl $0x1, 0x5010(%rsp)
jne 0x13000bb
movq 0x448(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1300089
movq 0x448(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1300087
jmp 0x13000b9
movq 0x448(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5ba8(%rsp)
cmpq $0x0, 0x5ba8(%rsp)
je 0x13000b7
movq 0x5ba8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13000b9
jmp 0x13000bb
movq 0x448(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1300116
movq %rax, %rdi
callq 0x678a0
jmp 0x1300118
leaq 0x1bc8(%rsp), %rax
movq %rax, 0x3608(%rsp)
movq 0x3608(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x440(%rsp)
leaq 0x1bc8(%rsp), %rax
movq %rax, 0x3210(%rsp)
movq 0x3210(%rsp), %rax
movq %rax, 0x5368(%rsp)
movq 0x5368(%rsp), %rax
movq %rax, 0x438(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1300209
movq 0x438(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5364(%rsp) # imm = 0xFFFFFFFF
movl 0x5364(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5360(%rsp)
cmpl $0x1, 0x5360(%rsp)
jne 0x1300209
movq 0x438(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13001d7
movq 0x438(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13001d5
jmp 0x1300207
movq 0x438(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5a00(%rsp)
cmpq $0x0, 0x5a00(%rsp)
je 0x1300205
movq 0x5a00(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1300207
jmp 0x1300209
movq 0x438(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1300264
movq %rax, %rdi
callq 0x678a0
movq 0x440(%rsp), %rax
movq %rax, 0x1c10(%rsp)
movl $0x0, 0x1bc4(%rsp)
movl 0x1bc4(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jge 0x13003c9
movq 0x1c60(%rsp), %rax
movl 0x1bc4(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x3708(%rsp)
movq 0x3708(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1b80(%rsp)
movl $0x0, 0x1b7c(%rsp)
movl 0x1b7c(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jge 0x13003b1
movq 0x1cb0(%rsp), %rax
movq %rax, 0x3700(%rsp)
movq 0x3700(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1b00(%rsp)
leaq 0x2b8f(%rsp), %rdi
leaq 0x1b00(%rsp), %rsi
leaq 0x1b80(%rsp), %rdx
callq 0x14535e0
vmovaps %zmm0, 0x1ac0(%rsp)
movq 0x1c10(%rsp), %rax
vmovaps 0x1ac0(%rsp), %zmm0
movq %rax, 0x3d78(%rsp)
vmovaps %zmm0, 0x3d00(%rsp)
vmovaps 0x3d00(%rsp), %zmm0
movq 0x3d78(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x1cb0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1cb0(%rsp)
movq 0x1c10(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1c10(%rsp)
movl 0x1b7c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b7c(%rsp)
jmp 0x13002d8
jmp 0x13003b3
movl 0x1bc4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1bc4(%rsp)
jmp 0x130027f
jmp 0x13003cb
movl 0x1cbc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1cbc(%rsp)
jmp 0x12ff555
movl $0x0, 0x2bb4(%rsp)
jmp 0x1307dd4
movl 0x2b68(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jne 0x130139c
cmpl $0x1, 0x2b84(%rsp)
je 0x130139c
cmpl $0x1, 0x2b64(%rsp)
jne 0x130139c
movl 0x2b5c(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jne 0x130139c
movq 0x2b98(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b7c(%rsp), %ecx
movq 0x2b70(%rsp), %r8
movl 0x2b6c(%rsp), %r9d
movq 0x2b90(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2b98(%rsp), %rax
movq %rax, 0x2c10(%rsp)
movq 0x2c10(%rsp), %rcx
movq %rcx, 0x428(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x437(%rsp)
je 0x13004d8
movq 0x428(%rsp), %rax
movq %rax, 0x42d0(%rsp)
movq 0x42d0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x437(%rsp)
movb 0x437(%rsp), %al
testb $0x1, %al
jne 0x13004e5
jmp 0x13004f5
movl $0xffffff9c, 0x2bb4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1307dd4
movl $0x0, 0x1abc(%rsp)
movl 0x1abc(%rsp), %eax
cmpl 0x2b5c(%rsp), %eax
jge 0x130138c
movq 0x2ba8(%rsp), %rcx
movl 0x1abc(%rsp), %eax
leaq 0x1a68(%rsp), %rdx
movq %rdx, 0x2d68(%rsp)
movq %rcx, 0x2d60(%rsp)
movl %eax, 0x2d5c(%rsp)
movq 0x2d60(%rsp), %rax
movq %rax, 0x420(%rsp)
movb $0x0, 0x2d5b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d5c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1a68(%rsp), %r10
movq %r10, 0x4a60(%rsp)
movl %r9d, 0x4a5c(%rsp)
movl %r8d, 0x4a58(%rsp)
movl %edi, 0x4a54(%rsp)
movq %rsi, 0x4a48(%rsp)
movq %rdx, 0x4a40(%rsp)
movl %ecx, 0x4a3c(%rsp)
movq %rax, 0x4a30(%rsp)
movq 0x4a60(%rsp), %rcx
movq %rcx, 0x418(%rsp)
movq 0x4a48(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4a40(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4a3c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4a30(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4a5c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4a58(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4a54(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d88(%rsp)
movl $0x10, 0x4d84(%rsp)
movq 0x4d88(%rsp), %rax
movslq 0x4d84(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d84(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x420(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1a90(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13006d0
movq 0x420(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1aa8(%rsp)
movb $0x1, 0x2d5b(%rsp)
testb $0x1, 0x2d5b(%rsp)
jne 0x1300811
leaq 0x1a68(%rsp), %rax
movq %rax, 0x3050(%rsp)
movq 0x3050(%rsp), %rax
movq %rax, 0x56e8(%rsp)
movq 0x56e8(%rsp), %rax
movq %rax, 0x410(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13007b4
movq 0x410(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x56e4(%rsp) # imm = 0xFFFFFFFF
movl 0x56e4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x56e0(%rsp)
cmpl $0x1, 0x56e0(%rsp)
jne 0x13007b4
movq 0x410(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1300782
movq 0x410(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1300780
jmp 0x13007b2
movq 0x410(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5840(%rsp)
cmpq $0x0, 0x5840(%rsp)
je 0x13007b0
movq 0x5840(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13007b2
jmp 0x13007b4
movq 0x410(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130080f
movq %rax, %rdi
callq 0x678a0
jmp 0x1300811
leaq 0x1a68(%rsp), %rax
movq %rax, 0x2f50(%rsp)
movq 0x2f50(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x408(%rsp)
leaq 0x1a68(%rsp), %rax
movq %rax, 0x3220(%rsp)
movq 0x3220(%rsp), %rax
movq %rax, 0x5348(%rsp)
movq 0x5348(%rsp), %rax
movq %rax, 0x400(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1300902
movq 0x400(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5344(%rsp) # imm = 0xFFFFFFFF
movl 0x5344(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5340(%rsp)
cmpl $0x1, 0x5340(%rsp)
jne 0x1300902
movq 0x400(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13008d0
movq 0x400(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13008ce
jmp 0x1300900
movq 0x400(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5a10(%rsp)
cmpq $0x0, 0x5a10(%rsp)
je 0x13008fe
movq 0x5a10(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1300900
jmp 0x1300902
movq 0x400(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130095d
movq %rax, %rdi
callq 0x678a0
movq 0x408(%rsp), %rax
movq %rax, 0x1ab0(%rsp)
movq 0x2ba0(%rsp), %rcx
movl 0x1abc(%rsp), %eax
leaq 0x1a18(%rsp), %rdx
movq %rdx, 0x2d50(%rsp)
movq %rcx, 0x2d48(%rsp)
movl %eax, 0x2d44(%rsp)
movq 0x2d48(%rsp), %rax
movq %rax, 0x3f8(%rsp)
movb $0x0, 0x2d43(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d44(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1a18(%rsp), %r10
movq %r10, 0x4a98(%rsp)
movl %r9d, 0x4a94(%rsp)
movl %r8d, 0x4a90(%rsp)
movl %edi, 0x4a8c(%rsp)
movq %rsi, 0x4a80(%rsp)
movq %rdx, 0x4a78(%rsp)
movl %ecx, 0x4a74(%rsp)
movq %rax, 0x4a68(%rsp)
movq 0x4a98(%rsp), %rcx
movq %rcx, 0x3f0(%rsp)
movq 0x4a80(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4a78(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4a74(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4a68(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4a94(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4a90(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4a8c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d78(%rsp)
movl $0x10, 0x4d74(%rsp)
movq 0x4d78(%rsp), %rax
movslq 0x4d74(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d74(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3f8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1a40(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1300b29
movq 0x3f8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1a58(%rsp)
movb $0x1, 0x2d43(%rsp)
testb $0x1, 0x2d43(%rsp)
jne 0x1300c6a
leaq 0x1a18(%rsp), %rax
movq %rax, 0x3058(%rsp)
movq 0x3058(%rsp), %rax
movq %rax, 0x56d8(%rsp)
movq 0x56d8(%rsp), %rax
movq %rax, 0x3e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1300c0d
movq 0x3e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x56d4(%rsp) # imm = 0xFFFFFFFF
movl 0x56d4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x56d0(%rsp)
cmpl $0x1, 0x56d0(%rsp)
jne 0x1300c0d
movq 0x3e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1300bdb
movq 0x3e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1300bd9
jmp 0x1300c0b
movq 0x3e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5848(%rsp)
cmpq $0x0, 0x5848(%rsp)
je 0x1300c09
movq 0x5848(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1300c0b
jmp 0x1300c0d
movq 0x3e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1300c68
movq %rax, %rdi
callq 0x678a0
jmp 0x1300c6a
leaq 0x1a18(%rsp), %rax
movq %rax, 0x2f48(%rsp)
movq 0x2f48(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e0(%rsp)
leaq 0x1a18(%rsp), %rax
movq %rax, 0x3230(%rsp)
movq 0x3230(%rsp), %rax
movq %rax, 0x5328(%rsp)
movq 0x5328(%rsp), %rax
movq %rax, 0x3d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1300d5b
movq 0x3d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5324(%rsp) # imm = 0xFFFFFFFF
movl 0x5324(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5320(%rsp)
cmpl $0x1, 0x5320(%rsp)
jne 0x1300d5b
movq 0x3d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1300d29
movq 0x3d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1300d27
jmp 0x1300d59
movq 0x3d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5a20(%rsp)
cmpq $0x0, 0x5a20(%rsp)
je 0x1300d57
movq 0x5a20(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1300d59
jmp 0x1300d5b
movq 0x3d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1300db6
movq %rax, %rdi
callq 0x678a0
movq 0x3e0(%rsp), %rax
movq %rax, 0x1a60(%rsp)
movq 0x2b98(%rsp), %rcx
movl 0x1abc(%rsp), %eax
leaq 0x19c8(%rsp), %rdx
movq %rdx, 0x3480(%rsp)
movq %rcx, 0x3478(%rsp)
movl %eax, 0x3474(%rsp)
movq 0x3478(%rsp), %rax
movq %rax, 0x3d0(%rsp)
movb $0x0, 0x3473(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3474(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x19c8(%rsp), %r10
movq %r10, 0x4558(%rsp)
movl %r9d, 0x4554(%rsp)
movl %r8d, 0x4550(%rsp)
movl %edi, 0x454c(%rsp)
movq %rsi, 0x4540(%rsp)
movq %rdx, 0x4538(%rsp)
movl %ecx, 0x4534(%rsp)
movq %rax, 0x4528(%rsp)
movq 0x4558(%rsp), %rcx
movq %rcx, 0x3c8(%rsp)
movq 0x4540(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4538(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4534(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4528(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4554(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4550(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x454c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4ef8(%rsp)
movl $0x10, 0x4ef4(%rsp)
movq 0x4ef8(%rsp), %rax
movslq 0x4ef4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4ef4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3d0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x19f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1300f82
movq 0x3d0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1a08(%rsp)
movb $0x1, 0x3473(%rsp)
testb $0x1, 0x3473(%rsp)
jne 0x13010c3
leaq 0x19c8(%rsp), %rax
movq %rax, 0x3488(%rsp)
movq 0x3488(%rsp), %rax
movq %rax, 0x5028(%rsp)
movq 0x5028(%rsp), %rax
movq %rax, 0x3c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1301066
movq 0x3c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5024(%rsp) # imm = 0xFFFFFFFF
movl 0x5024(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5020(%rsp)
cmpl $0x1, 0x5020(%rsp)
jne 0x1301066
movq 0x3c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1301034
movq 0x3c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1301032
jmp 0x1301064
movq 0x3c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5ba0(%rsp)
cmpq $0x0, 0x5ba0(%rsp)
je 0x1301062
movq 0x5ba0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1301064
jmp 0x1301066
movq 0x3c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13010c1
movq %rax, %rdi
callq 0x678a0
jmp 0x13010c3
leaq 0x19c8(%rsp), %rax
movq %rax, 0x3600(%rsp)
movq 0x3600(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3b8(%rsp)
leaq 0x19c8(%rsp), %rax
movq %rax, 0x3240(%rsp)
movq 0x3240(%rsp), %rax
movq %rax, 0x5308(%rsp)
movq 0x5308(%rsp), %rax
movq %rax, 0x3b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13011b4
movq 0x3b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5304(%rsp) # imm = 0xFFFFFFFF
movl 0x5304(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5300(%rsp)
cmpl $0x1, 0x5300(%rsp)
jne 0x13011b4
movq 0x3b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1301182
movq 0x3b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1301180
jmp 0x13011b2
movq 0x3b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5a30(%rsp)
cmpq $0x0, 0x5a30(%rsp)
je 0x13011b0
movq 0x5a30(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13011b2
jmp 0x13011b4
movq 0x3b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130120f
movq %rax, %rdi
callq 0x678a0
movq 0x3b8(%rsp), %rax
movq %rax, 0x1a10(%rsp)
movl $0x0, 0x19c4(%rsp)
movl 0x19c4(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jge 0x1301374
movl $0x0, 0x19c0(%rsp)
movl 0x19c0(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jge 0x130135c
movq 0x1ab0(%rsp), %rax
movq %rax, 0x36f8(%rsp)
movq 0x36f8(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1980(%rsp)
movq 0x1a60(%rsp), %rax
movl 0x19c0(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x36f0(%rsp)
movq 0x36f0(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1940(%rsp)
leaq 0x2b8f(%rsp), %rdi
leaq 0x1980(%rsp), %rsi
leaq 0x1940(%rsp), %rdx
callq 0x14535e0
vmovaps %zmm0, 0x1900(%rsp)
movq 0x1a10(%rsp), %rax
vmovaps 0x1900(%rsp), %zmm0
movq %rax, 0x3cf8(%rsp)
vmovaps %zmm0, 0x3c80(%rsp)
vmovaps 0x3c80(%rsp), %zmm0
movq 0x3cf8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x1ab0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1ab0(%rsp)
movq 0x1a10(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1a10(%rsp)
movl 0x19c0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x19c0(%rsp)
jmp 0x1301249
jmp 0x130135e
movl 0x19c4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x19c4(%rsp)
jmp 0x130122a
jmp 0x1301376
movl 0x1abc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1abc(%rsp)
jmp 0x1300500
movl $0x0, 0x2bb4(%rsp)
jmp 0x1307dd4
cmpl $0x1, 0x2b68(%rsp)
je 0x1302347
cmpl $0x1, 0x2b88(%rsp)
jne 0x1302347
movl 0x2b64(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jne 0x1302347
movl 0x2b5c(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jne 0x1302347
movq 0x2b98(%rsp), %rdi
movl 0x2b68(%rsp), %esi
movl 0x2b64(%rsp), %edx
movl 0x2b5c(%rsp), %ecx
movq 0x2b50(%rsp), %r8
movl 0x2b4c(%rsp), %r9d
movq 0x2b90(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2b98(%rsp), %rax
movq %rax, 0x2c08(%rsp)
movq 0x2c08(%rsp), %rcx
movq %rcx, 0x3a0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x3af(%rsp)
je 0x1301483
movq 0x3a0(%rsp), %rax
movq %rax, 0x42d8(%rsp)
movq 0x42d8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x3af(%rsp)
movb 0x3af(%rsp), %al
testb $0x1, %al
jne 0x1301490
jmp 0x13014a0
movl $0xffffff9c, 0x2bb4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1307dd4
movl $0x0, 0x18fc(%rsp)
movl 0x18fc(%rsp), %eax
cmpl 0x2b5c(%rsp), %eax
jge 0x1302337
movq 0x2ba8(%rsp), %rcx
movl 0x18fc(%rsp), %eax
leaq 0x18a8(%rsp), %rdx
movq %rdx, 0x2d38(%rsp)
movq %rcx, 0x2d30(%rsp)
movl %eax, 0x2d2c(%rsp)
movq 0x2d30(%rsp), %rax
movq %rax, 0x398(%rsp)
movb $0x0, 0x2d2b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d2c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x18a8(%rsp), %r10
movq %r10, 0x4ad0(%rsp)
movl %r9d, 0x4acc(%rsp)
movl %r8d, 0x4ac8(%rsp)
movl %edi, 0x4ac4(%rsp)
movq %rsi, 0x4ab8(%rsp)
movq %rdx, 0x4ab0(%rsp)
movl %ecx, 0x4aac(%rsp)
movq %rax, 0x4aa0(%rsp)
movq 0x4ad0(%rsp), %rcx
movq %rcx, 0x390(%rsp)
movq 0x4ab8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4ab0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4aac(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4aa0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4acc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4ac8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4ac4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d68(%rsp)
movl $0x10, 0x4d64(%rsp)
movq 0x4d68(%rsp), %rax
movslq 0x4d64(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d64(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x398(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x18d0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x130167b
movq 0x398(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x18e8(%rsp)
movb $0x1, 0x2d2b(%rsp)
testb $0x1, 0x2d2b(%rsp)
jne 0x13017bc
leaq 0x18a8(%rsp), %rax
movq %rax, 0x3060(%rsp)
movq 0x3060(%rsp), %rax
movq %rax, 0x56c8(%rsp)
movq 0x56c8(%rsp), %rax
movq %rax, 0x388(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130175f
movq 0x388(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x56c4(%rsp) # imm = 0xFFFFFFFF
movl 0x56c4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x56c0(%rsp)
cmpl $0x1, 0x56c0(%rsp)
jne 0x130175f
movq 0x388(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130172d
movq 0x388(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130172b
jmp 0x130175d
movq 0x388(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5850(%rsp)
cmpq $0x0, 0x5850(%rsp)
je 0x130175b
movq 0x5850(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130175d
jmp 0x130175f
movq 0x388(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13017ba
movq %rax, %rdi
callq 0x678a0
jmp 0x13017bc
leaq 0x18a8(%rsp), %rax
movq %rax, 0x2f40(%rsp)
movq 0x2f40(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x380(%rsp)
leaq 0x18a8(%rsp), %rax
movq %rax, 0x3250(%rsp)
movq 0x3250(%rsp), %rax
movq %rax, 0x52e8(%rsp)
movq 0x52e8(%rsp), %rax
movq %rax, 0x378(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13018ad
movq 0x378(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x52e4(%rsp) # imm = 0xFFFFFFFF
movl 0x52e4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x52e0(%rsp)
cmpl $0x1, 0x52e0(%rsp)
jne 0x13018ad
movq 0x378(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130187b
movq 0x378(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1301879
jmp 0x13018ab
movq 0x378(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5a40(%rsp)
cmpq $0x0, 0x5a40(%rsp)
je 0x13018a9
movq 0x5a40(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13018ab
jmp 0x13018ad
movq 0x378(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1301908
movq %rax, %rdi
callq 0x678a0
movq 0x380(%rsp), %rax
movq %rax, 0x18f0(%rsp)
movq 0x2ba0(%rsp), %rcx
movl 0x18fc(%rsp), %eax
leaq 0x1858(%rsp), %rdx
movq %rdx, 0x2d20(%rsp)
movq %rcx, 0x2d18(%rsp)
movl %eax, 0x2d14(%rsp)
movq 0x2d18(%rsp), %rax
movq %rax, 0x370(%rsp)
movb $0x0, 0x2d13(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d14(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1858(%rsp), %r10
movq %r10, 0x4b08(%rsp)
movl %r9d, 0x4b04(%rsp)
movl %r8d, 0x4b00(%rsp)
movl %edi, 0x4afc(%rsp)
movq %rsi, 0x4af0(%rsp)
movq %rdx, 0x4ae8(%rsp)
movl %ecx, 0x4ae4(%rsp)
movq %rax, 0x4ad8(%rsp)
movq 0x4b08(%rsp), %rcx
movq %rcx, 0x368(%rsp)
movq 0x4af0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4ae8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4ae4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4ad8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4b04(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4b00(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4afc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d58(%rsp)
movl $0x10, 0x4d54(%rsp)
movq 0x4d58(%rsp), %rax
movslq 0x4d54(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d54(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x370(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1880(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1301ad4
movq 0x370(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1898(%rsp)
movb $0x1, 0x2d13(%rsp)
testb $0x1, 0x2d13(%rsp)
jne 0x1301c15
leaq 0x1858(%rsp), %rax
movq %rax, 0x3068(%rsp)
movq 0x3068(%rsp), %rax
movq %rax, 0x56b8(%rsp)
movq 0x56b8(%rsp), %rax
movq %rax, 0x360(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1301bb8
movq 0x360(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x56b4(%rsp) # imm = 0xFFFFFFFF
movl 0x56b4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x56b0(%rsp)
cmpl $0x1, 0x56b0(%rsp)
jne 0x1301bb8
movq 0x360(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1301b86
movq 0x360(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1301b84
jmp 0x1301bb6
movq 0x360(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5858(%rsp)
cmpq $0x0, 0x5858(%rsp)
je 0x1301bb4
movq 0x5858(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1301bb6
jmp 0x1301bb8
movq 0x360(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1301c13
movq %rax, %rdi
callq 0x678a0
jmp 0x1301c15
leaq 0x1858(%rsp), %rax
movq %rax, 0x2f38(%rsp)
movq 0x2f38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x358(%rsp)
leaq 0x1858(%rsp), %rax
movq %rax, 0x3260(%rsp)
movq 0x3260(%rsp), %rax
movq %rax, 0x52c8(%rsp)
movq 0x52c8(%rsp), %rax
movq %rax, 0x350(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1301d06
movq 0x350(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x52c4(%rsp) # imm = 0xFFFFFFFF
movl 0x52c4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x52c0(%rsp)
cmpl $0x1, 0x52c0(%rsp)
jne 0x1301d06
movq 0x350(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1301cd4
movq 0x350(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1301cd2
jmp 0x1301d04
movq 0x350(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5a50(%rsp)
cmpq $0x0, 0x5a50(%rsp)
je 0x1301d02
movq 0x5a50(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1301d04
jmp 0x1301d06
movq 0x350(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1301d61
movq %rax, %rdi
callq 0x678a0
movq 0x358(%rsp), %rax
movq %rax, 0x18a0(%rsp)
movq 0x2b98(%rsp), %rcx
movl 0x18fc(%rsp), %eax
leaq 0x1808(%rsp), %rdx
movq %rdx, 0x3460(%rsp)
movq %rcx, 0x3458(%rsp)
movl %eax, 0x3454(%rsp)
movq 0x3458(%rsp), %rax
movq %rax, 0x348(%rsp)
movb $0x0, 0x3453(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3454(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1808(%rsp), %r10
movq %r10, 0x4590(%rsp)
movl %r9d, 0x458c(%rsp)
movl %r8d, 0x4588(%rsp)
movl %edi, 0x4584(%rsp)
movq %rsi, 0x4578(%rsp)
movq %rdx, 0x4570(%rsp)
movl %ecx, 0x456c(%rsp)
movq %rax, 0x4560(%rsp)
movq 0x4590(%rsp), %rcx
movq %rcx, 0x340(%rsp)
movq 0x4578(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4570(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x456c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4560(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x458c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4588(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4584(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4ee8(%rsp)
movl $0x10, 0x4ee4(%rsp)
movq 0x4ee8(%rsp), %rax
movslq 0x4ee4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4ee4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x348(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1830(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1301f2d
movq 0x348(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1848(%rsp)
movb $0x1, 0x3453(%rsp)
testb $0x1, 0x3453(%rsp)
jne 0x130206e
leaq 0x1808(%rsp), %rax
movq %rax, 0x3468(%rsp)
movq 0x3468(%rsp), %rax
movq %rax, 0x5038(%rsp)
movq 0x5038(%rsp), %rax
movq %rax, 0x338(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1302011
movq 0x338(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5034(%rsp) # imm = 0xFFFFFFFF
movl 0x5034(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5030(%rsp)
cmpl $0x1, 0x5030(%rsp)
jne 0x1302011
movq 0x338(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1301fdf
movq 0x338(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1301fdd
jmp 0x130200f
movq 0x338(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5b98(%rsp)
cmpq $0x0, 0x5b98(%rsp)
je 0x130200d
movq 0x5b98(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130200f
jmp 0x1302011
movq 0x338(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130206c
movq %rax, %rdi
callq 0x678a0
jmp 0x130206e
leaq 0x1808(%rsp), %rax
movq %rax, 0x35f8(%rsp)
movq 0x35f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x330(%rsp)
leaq 0x1808(%rsp), %rax
movq %rax, 0x3270(%rsp)
movq 0x3270(%rsp), %rax
movq %rax, 0x52a8(%rsp)
movq 0x52a8(%rsp), %rax
movq %rax, 0x328(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130215f
movq 0x328(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x52a4(%rsp) # imm = 0xFFFFFFFF
movl 0x52a4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x52a0(%rsp)
cmpl $0x1, 0x52a0(%rsp)
jne 0x130215f
movq 0x328(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130212d
movq 0x328(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130212b
jmp 0x130215d
movq 0x328(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5a60(%rsp)
cmpq $0x0, 0x5a60(%rsp)
je 0x130215b
movq 0x5a60(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130215d
jmp 0x130215f
movq 0x328(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13021ba
movq %rax, %rdi
callq 0x678a0
movq 0x330(%rsp), %rax
movq %rax, 0x1850(%rsp)
movl $0x0, 0x1804(%rsp)
movl 0x1804(%rsp), %eax
cmpl 0x2b64(%rsp), %eax
jge 0x130231f
movq 0x18f0(%rsp), %rax
movl 0x1804(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x36e8(%rsp)
movq 0x36e8(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x17c0(%rsp)
movl $0x0, 0x17bc(%rsp)
movl 0x17bc(%rsp), %eax
cmpl 0x2b68(%rsp), %eax
jge 0x1302307
movq 0x18a0(%rsp), %rax
movq %rax, 0x36e0(%rsp)
movq 0x36e0(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1740(%rsp)
leaq 0x2b8f(%rsp), %rdi
leaq 0x17c0(%rsp), %rsi
leaq 0x1740(%rsp), %rdx
callq 0x14535e0
vmovaps %zmm0, 0x1700(%rsp)
movq 0x1850(%rsp), %rax
vmovaps 0x1700(%rsp), %zmm0
movq %rax, 0x3c78(%rsp)
vmovaps %zmm0, 0x3c00(%rsp)
vmovaps 0x3c00(%rsp), %zmm0
movq 0x3c78(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x18a0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x18a0(%rsp)
movq 0x1850(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1850(%rsp)
movl 0x17bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x17bc(%rsp)
jmp 0x130222e
jmp 0x1302309
movl 0x1804(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1804(%rsp)
jmp 0x13021d5
jmp 0x1302321
movl 0x18fc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x18fc(%rsp)
jmp 0x13014ab
movl $0x0, 0x2bb4(%rsp)
jmp 0x1307dd4
movl 0x2b68(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jne 0x13032f2
cmpl $0x1, 0x2b64(%rsp)
je 0x13032f2
cmpl $0x1, 0x2b84(%rsp)
jne 0x13032f2
movl 0x2b5c(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jne 0x13032f2
movq 0x2b98(%rsp), %rdi
movl 0x2b68(%rsp), %esi
movl 0x2b64(%rsp), %edx
movl 0x2b5c(%rsp), %ecx
movq 0x2b50(%rsp), %r8
movl 0x2b4c(%rsp), %r9d
movq 0x2b90(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2b98(%rsp), %rax
movq %rax, 0x2c00(%rsp)
movq 0x2c00(%rsp), %rcx
movq %rcx, 0x318(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x327(%rsp)
je 0x130242e
movq 0x318(%rsp), %rax
movq %rax, 0x42e0(%rsp)
movq 0x42e0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x327(%rsp)
movb 0x327(%rsp), %al
testb $0x1, %al
jne 0x130243b
jmp 0x130244b
movl $0xffffff9c, 0x2bb4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1307dd4
movl $0x0, 0x16fc(%rsp)
movl 0x16fc(%rsp), %eax
cmpl 0x2b5c(%rsp), %eax
jge 0x13032e2
movq 0x2ba8(%rsp), %rcx
movl 0x16fc(%rsp), %eax
leaq 0x16a8(%rsp), %rdx
movq %rdx, 0x2d08(%rsp)
movq %rcx, 0x2d00(%rsp)
movl %eax, 0x2cfc(%rsp)
movq 0x2d00(%rsp), %rax
movq %rax, 0x310(%rsp)
movb $0x0, 0x2cfb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2cfc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x16a8(%rsp), %r10
movq %r10, 0x4b40(%rsp)
movl %r9d, 0x4b3c(%rsp)
movl %r8d, 0x4b38(%rsp)
movl %edi, 0x4b34(%rsp)
movq %rsi, 0x4b28(%rsp)
movq %rdx, 0x4b20(%rsp)
movl %ecx, 0x4b1c(%rsp)
movq %rax, 0x4b10(%rsp)
movq 0x4b40(%rsp), %rcx
movq %rcx, 0x308(%rsp)
movq 0x4b28(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4b20(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4b1c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4b10(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4b3c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4b38(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4b34(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d48(%rsp)
movl $0x10, 0x4d44(%rsp)
movq 0x4d48(%rsp), %rax
movslq 0x4d44(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d44(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x310(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x16d0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1302626
movq 0x310(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x16e8(%rsp)
movb $0x1, 0x2cfb(%rsp)
testb $0x1, 0x2cfb(%rsp)
jne 0x1302767
leaq 0x16a8(%rsp), %rax
movq %rax, 0x3070(%rsp)
movq 0x3070(%rsp), %rax
movq %rax, 0x56a8(%rsp)
movq 0x56a8(%rsp), %rax
movq %rax, 0x300(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130270a
movq 0x300(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x56a4(%rsp) # imm = 0xFFFFFFFF
movl 0x56a4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x56a0(%rsp)
cmpl $0x1, 0x56a0(%rsp)
jne 0x130270a
movq 0x300(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13026d8
movq 0x300(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13026d6
jmp 0x1302708
movq 0x300(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5860(%rsp)
cmpq $0x0, 0x5860(%rsp)
je 0x1302706
movq 0x5860(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1302708
jmp 0x130270a
movq 0x300(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1302765
movq %rax, %rdi
callq 0x678a0
jmp 0x1302767
leaq 0x16a8(%rsp), %rax
movq %rax, 0x2f30(%rsp)
movq 0x2f30(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2f8(%rsp)
leaq 0x16a8(%rsp), %rax
movq %rax, 0x3280(%rsp)
movq 0x3280(%rsp), %rax
movq %rax, 0x5288(%rsp)
movq 0x5288(%rsp), %rax
movq %rax, 0x2f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1302858
movq 0x2f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5284(%rsp) # imm = 0xFFFFFFFF
movl 0x5284(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5280(%rsp)
cmpl $0x1, 0x5280(%rsp)
jne 0x1302858
movq 0x2f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1302826
movq 0x2f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1302824
jmp 0x1302856
movq 0x2f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5a70(%rsp)
cmpq $0x0, 0x5a70(%rsp)
je 0x1302854
movq 0x5a70(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1302856
jmp 0x1302858
movq 0x2f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13028b3
movq %rax, %rdi
callq 0x678a0
movq 0x2f8(%rsp), %rax
movq %rax, 0x16f0(%rsp)
movq 0x2ba0(%rsp), %rcx
movl 0x16fc(%rsp), %eax
leaq 0x1658(%rsp), %rdx
movq %rdx, 0x2cf0(%rsp)
movq %rcx, 0x2ce8(%rsp)
movl %eax, 0x2ce4(%rsp)
movq 0x2ce8(%rsp), %rax
movq %rax, 0x2e8(%rsp)
movb $0x0, 0x2ce3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2ce4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1658(%rsp), %r10
movq %r10, 0x4b78(%rsp)
movl %r9d, 0x4b74(%rsp)
movl %r8d, 0x4b70(%rsp)
movl %edi, 0x4b6c(%rsp)
movq %rsi, 0x4b60(%rsp)
movq %rdx, 0x4b58(%rsp)
movl %ecx, 0x4b54(%rsp)
movq %rax, 0x4b48(%rsp)
movq 0x4b78(%rsp), %rcx
movq %rcx, 0x2e0(%rsp)
movq 0x4b60(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4b58(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4b54(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4b48(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4b74(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4b70(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4b6c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d38(%rsp)
movl $0x10, 0x4d34(%rsp)
movq 0x4d38(%rsp), %rax
movslq 0x4d34(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d34(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2e8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1680(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1302a7f
movq 0x2e8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1698(%rsp)
movb $0x1, 0x2ce3(%rsp)
testb $0x1, 0x2ce3(%rsp)
jne 0x1302bc0
leaq 0x1658(%rsp), %rax
movq %rax, 0x3078(%rsp)
movq 0x3078(%rsp), %rax
movq %rax, 0x5698(%rsp)
movq 0x5698(%rsp), %rax
movq %rax, 0x2d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1302b63
movq 0x2d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5694(%rsp) # imm = 0xFFFFFFFF
movl 0x5694(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5690(%rsp)
cmpl $0x1, 0x5690(%rsp)
jne 0x1302b63
movq 0x2d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1302b31
movq 0x2d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1302b2f
jmp 0x1302b61
movq 0x2d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5868(%rsp)
cmpq $0x0, 0x5868(%rsp)
je 0x1302b5f
movq 0x5868(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1302b61
jmp 0x1302b63
movq 0x2d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1302bbe
movq %rax, %rdi
callq 0x678a0
jmp 0x1302bc0
leaq 0x1658(%rsp), %rax
movq %rax, 0x2f28(%rsp)
movq 0x2f28(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2d0(%rsp)
leaq 0x1658(%rsp), %rax
movq %rax, 0x3290(%rsp)
movq 0x3290(%rsp), %rax
movq %rax, 0x5268(%rsp)
movq 0x5268(%rsp), %rax
movq %rax, 0x2c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1302cb1
movq 0x2c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5264(%rsp) # imm = 0xFFFFFFFF
movl 0x5264(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5260(%rsp)
cmpl $0x1, 0x5260(%rsp)
jne 0x1302cb1
movq 0x2c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1302c7f
movq 0x2c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1302c7d
jmp 0x1302caf
movq 0x2c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5a80(%rsp)
cmpq $0x0, 0x5a80(%rsp)
je 0x1302cad
movq 0x5a80(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1302caf
jmp 0x1302cb1
movq 0x2c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1302d0c
movq %rax, %rdi
callq 0x678a0
movq 0x2d0(%rsp), %rax
movq %rax, 0x16a0(%rsp)
movq 0x2b98(%rsp), %rcx
movl 0x16fc(%rsp), %eax
leaq 0x1608(%rsp), %rdx
movq %rdx, 0x3440(%rsp)
movq %rcx, 0x3438(%rsp)
movl %eax, 0x3434(%rsp)
movq 0x3438(%rsp), %rax
movq %rax, 0x2c0(%rsp)
movb $0x0, 0x3433(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3434(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1608(%rsp), %r10
movq %r10, 0x45c8(%rsp)
movl %r9d, 0x45c4(%rsp)
movl %r8d, 0x45c0(%rsp)
movl %edi, 0x45bc(%rsp)
movq %rsi, 0x45b0(%rsp)
movq %rdx, 0x45a8(%rsp)
movl %ecx, 0x45a4(%rsp)
movq %rax, 0x4598(%rsp)
movq 0x45c8(%rsp), %rcx
movq %rcx, 0x2b8(%rsp)
movq 0x45b0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x45a8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x45a4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4598(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x45c4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x45c0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x45bc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4ed8(%rsp)
movl $0x10, 0x4ed4(%rsp)
movq 0x4ed8(%rsp), %rax
movslq 0x4ed4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4ed4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2c0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1630(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1302ed8
movq 0x2c0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1648(%rsp)
movb $0x1, 0x3433(%rsp)
testb $0x1, 0x3433(%rsp)
jne 0x1303019
leaq 0x1608(%rsp), %rax
movq %rax, 0x3448(%rsp)
movq 0x3448(%rsp), %rax
movq %rax, 0x5048(%rsp)
movq 0x5048(%rsp), %rax
movq %rax, 0x2b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1302fbc
movq 0x2b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5044(%rsp) # imm = 0xFFFFFFFF
movl 0x5044(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5040(%rsp)
cmpl $0x1, 0x5040(%rsp)
jne 0x1302fbc
movq 0x2b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1302f8a
movq 0x2b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1302f88
jmp 0x1302fba
movq 0x2b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5b90(%rsp)
cmpq $0x0, 0x5b90(%rsp)
je 0x1302fb8
movq 0x5b90(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1302fba
jmp 0x1302fbc
movq 0x2b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1303017
movq %rax, %rdi
callq 0x678a0
jmp 0x1303019
leaq 0x1608(%rsp), %rax
movq %rax, 0x35f0(%rsp)
movq 0x35f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2a8(%rsp)
leaq 0x1608(%rsp), %rax
movq %rax, 0x32a0(%rsp)
movq 0x32a0(%rsp), %rax
movq %rax, 0x5248(%rsp)
movq 0x5248(%rsp), %rax
movq %rax, 0x2a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130310a
movq 0x2a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5244(%rsp) # imm = 0xFFFFFFFF
movl 0x5244(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5240(%rsp)
cmpl $0x1, 0x5240(%rsp)
jne 0x130310a
movq 0x2a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13030d8
movq 0x2a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13030d6
jmp 0x1303108
movq 0x2a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5a90(%rsp)
cmpq $0x0, 0x5a90(%rsp)
je 0x1303106
movq 0x5a90(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1303108
jmp 0x130310a
movq 0x2a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1303165
movq %rax, %rdi
callq 0x678a0
movq 0x2a8(%rsp), %rax
movq %rax, 0x1650(%rsp)
movl $0x0, 0x1604(%rsp)
movl 0x1604(%rsp), %eax
cmpl 0x2b64(%rsp), %eax
jge 0x13032ca
movl $0x0, 0x1600(%rsp)
movl 0x1600(%rsp), %eax
cmpl 0x2b68(%rsp), %eax
jge 0x13032b2
movq 0x16f0(%rsp), %rax
movl 0x1600(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x36d8(%rsp)
movq 0x36d8(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x15c0(%rsp)
movq 0x16a0(%rsp), %rax
movq %rax, 0x36d0(%rsp)
movq 0x36d0(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1580(%rsp)
leaq 0x2b8f(%rsp), %rdi
leaq 0x15c0(%rsp), %rsi
leaq 0x1580(%rsp), %rdx
callq 0x14535e0
vmovaps %zmm0, 0x1540(%rsp)
movq 0x1650(%rsp), %rax
vmovaps 0x1540(%rsp), %zmm0
movq %rax, 0x3bf8(%rsp)
vmovaps %zmm0, 0x3b80(%rsp)
vmovaps 0x3b80(%rsp), %zmm0
movq 0x3bf8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x16a0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x16a0(%rsp)
movq 0x1650(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1650(%rsp)
movl 0x1600(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1600(%rsp)
jmp 0x130319f
jmp 0x13032b4
movl 0x1604(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1604(%rsp)
jmp 0x1303180
jmp 0x13032cc
movl 0x16fc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x16fc(%rsp)
jmp 0x1302456
movl $0x0, 0x2bb4(%rsp)
jmp 0x1307dd4
movq 0x2ba8(%rsp), %rdi
movq 0x2ba0(%rsp), %rsi
movq 0x2b98(%rsp), %rdx
movq 0x2b90(%rsp), %rcx
callq 0x143ec80
movl %eax, 0x2bb4(%rsp)
jmp 0x1307dd4
movq 0x2b98(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b7c(%rsp), %ecx
movq 0x2b70(%rsp), %r8
movl 0x2b6c(%rsp), %r9d
movq 0x2b90(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2b98(%rsp), %rax
movq %rax, 0x2bf8(%rsp)
movq 0x2bf8(%rsp), %rcx
movq %rcx, 0x290(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x29f(%rsp)
je 0x13033c6
movq 0x290(%rsp), %rax
movq %rax, 0x42e8(%rsp)
movq 0x42e8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x29f(%rsp)
movb 0x29f(%rsp), %al
testb $0x1, %al
jne 0x13033d3
jmp 0x13033e3
movl $0xffffff9c, 0x2bb4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1307dd4
movq 0x2ba0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1303e8a
movl $0x0, 0x153c(%rsp)
movl 0x153c(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x1303e7a
movq 0x2ba8(%rsp), %rcx
movl 0x153c(%rsp), %eax
leaq 0x14e8(%rsp), %rdx
movq %rdx, 0x2cd8(%rsp)
movq %rcx, 0x2cd0(%rsp)
movl %eax, 0x2ccc(%rsp)
movq 0x2cd0(%rsp), %rax
movq %rax, 0x288(%rsp)
movb $0x0, 0x2ccb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2ccc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x14e8(%rsp), %r10
movq %r10, 0x4bb0(%rsp)
movl %r9d, 0x4bac(%rsp)
movl %r8d, 0x4ba8(%rsp)
movl %edi, 0x4ba4(%rsp)
movq %rsi, 0x4b98(%rsp)
movq %rdx, 0x4b90(%rsp)
movl %ecx, 0x4b8c(%rsp)
movq %rax, 0x4b80(%rsp)
movq 0x4bb0(%rsp), %rcx
movq %rcx, 0x280(%rsp)
movq 0x4b98(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4b90(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4b8c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4b80(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4bac(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4ba8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4ba4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d28(%rsp)
movl $0x10, 0x4d24(%rsp)
movq 0x4d28(%rsp), %rax
movslq 0x4d24(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d24(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x288(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1510(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13035d0
movq 0x288(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1528(%rsp)
movb $0x1, 0x2ccb(%rsp)
testb $0x1, 0x2ccb(%rsp)
jne 0x1303711
leaq 0x14e8(%rsp), %rax
movq %rax, 0x3080(%rsp)
movq 0x3080(%rsp), %rax
movq %rax, 0x5688(%rsp)
movq 0x5688(%rsp), %rax
movq %rax, 0x278(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13036b4
movq 0x278(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5684(%rsp) # imm = 0xFFFFFFFF
movl 0x5684(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5680(%rsp)
cmpl $0x1, 0x5680(%rsp)
jne 0x13036b4
movq 0x278(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1303682
movq 0x278(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1303680
jmp 0x13036b2
movq 0x278(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5870(%rsp)
cmpq $0x0, 0x5870(%rsp)
je 0x13036b0
movq 0x5870(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13036b2
jmp 0x13036b4
movq 0x278(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130370f
movq %rax, %rdi
callq 0x678a0
jmp 0x1303711
leaq 0x14e8(%rsp), %rax
movq %rax, 0x2f20(%rsp)
movq 0x2f20(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x270(%rsp)
leaq 0x14e8(%rsp), %rax
movq %rax, 0x32b0(%rsp)
movq 0x32b0(%rsp), %rax
movq %rax, 0x5228(%rsp)
movq 0x5228(%rsp), %rax
movq %rax, 0x268(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1303802
movq 0x268(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5224(%rsp) # imm = 0xFFFFFFFF
movl 0x5224(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5220(%rsp)
cmpl $0x1, 0x5220(%rsp)
jne 0x1303802
movq 0x268(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13037d0
movq 0x268(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13037ce
jmp 0x1303800
movq 0x268(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5aa0(%rsp)
cmpq $0x0, 0x5aa0(%rsp)
je 0x13037fe
movq 0x5aa0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1303800
jmp 0x1303802
movq 0x268(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130385d
movq %rax, %rdi
callq 0x678a0
movq 0x270(%rsp), %rax
movq %rax, 0x1530(%rsp)
movq 0x2ba0(%rsp), %rcx
movl 0x153c(%rsp), %eax
movq %rcx, 0x41a8(%rsp)
movl %eax, 0x41a4(%rsp)
movq 0x41a8(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x41a4(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x14e0(%rsp)
movq 0x2b98(%rsp), %rcx
movl 0x153c(%rsp), %eax
leaq 0x1490(%rsp), %rdx
movq %rdx, 0x3420(%rsp)
movq %rcx, 0x3418(%rsp)
movl %eax, 0x3414(%rsp)
movq 0x3418(%rsp), %rax
movq %rax, 0x260(%rsp)
movb $0x0, 0x3413(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3414(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1490(%rsp), %r10
movq %r10, 0x4600(%rsp)
movl %r9d, 0x45fc(%rsp)
movl %r8d, 0x45f8(%rsp)
movl %edi, 0x45f4(%rsp)
movq %rsi, 0x45e8(%rsp)
movq %rdx, 0x45e0(%rsp)
movl %ecx, 0x45dc(%rsp)
movq %rax, 0x45d0(%rsp)
movq 0x4600(%rsp), %rcx
movq %rcx, 0x258(%rsp)
movq 0x45e8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x45e0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x45dc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x45d0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x45fc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x45f8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x45f4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4ec8(%rsp)
movl $0x10, 0x4ec4(%rsp)
movq 0x4ec8(%rsp), %rax
movslq 0x4ec4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4ec4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x260(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x14b8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1303a72
movq 0x260(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x14d0(%rsp)
movb $0x1, 0x3413(%rsp)
testb $0x1, 0x3413(%rsp)
jne 0x1303bb3
leaq 0x1490(%rsp), %rax
movq %rax, 0x3428(%rsp)
movq 0x3428(%rsp), %rax
movq %rax, 0x5058(%rsp)
movq 0x5058(%rsp), %rax
movq %rax, 0x250(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1303b56
movq 0x250(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5054(%rsp) # imm = 0xFFFFFFFF
movl 0x5054(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5050(%rsp)
cmpl $0x1, 0x5050(%rsp)
jne 0x1303b56
movq 0x250(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1303b24
movq 0x250(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1303b22
jmp 0x1303b54
movq 0x250(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5b88(%rsp)
cmpq $0x0, 0x5b88(%rsp)
je 0x1303b52
movq 0x5b88(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1303b54
jmp 0x1303b56
movq 0x250(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1303bb1
movq %rax, %rdi
callq 0x678a0
jmp 0x1303bb3
leaq 0x1490(%rsp), %rax
movq %rax, 0x35e8(%rsp)
movq 0x35e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x248(%rsp)
leaq 0x1490(%rsp), %rax
movq %rax, 0x32c0(%rsp)
movq 0x32c0(%rsp), %rax
movq %rax, 0x5208(%rsp)
movq 0x5208(%rsp), %rax
movq %rax, 0x240(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1303ca4
movq 0x240(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5204(%rsp) # imm = 0xFFFFFFFF
movl 0x5204(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5200(%rsp)
cmpl $0x1, 0x5200(%rsp)
jne 0x1303ca4
movq 0x240(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1303c72
movq 0x240(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1303c70
jmp 0x1303ca2
movq 0x240(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5ab0(%rsp)
cmpq $0x0, 0x5ab0(%rsp)
je 0x1303ca0
movq 0x5ab0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1303ca2
jmp 0x1303ca4
movq 0x240(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1303cff
movq %rax, %rdi
callq 0x678a0
movq 0x248(%rsp), %rax
movq %rax, 0x14d8(%rsp)
movl $0x0, 0x148c(%rsp)
movl 0x148c(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jge 0x1303e62
movq 0x14e0(%rsp), %rax
movq %rax, 0x36c8(%rsp)
movq 0x36c8(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1440(%rsp)
movl $0x0, 0x143c(%rsp)
movl 0x143c(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jge 0x1303e38
movq 0x1530(%rsp), %rax
movq %rax, 0x36c0(%rsp)
movq 0x36c0(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x13c0(%rsp)
leaq 0x2b8f(%rsp), %rdi
leaq 0x13c0(%rsp), %rsi
leaq 0x1440(%rsp), %rdx
callq 0x14535e0
vmovaps %zmm0, 0x1380(%rsp)
movq 0x14d8(%rsp), %rax
vmovaps 0x1380(%rsp), %zmm0
movq %rax, 0x3b78(%rsp)
vmovaps %zmm0, 0x3b00(%rsp)
vmovaps 0x3b00(%rsp), %zmm0
movq 0x3b78(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x1530(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1530(%rsp)
movq 0x14d8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x14d8(%rsp)
movl 0x143c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x143c(%rsp)
jmp 0x1303d5f
movq 0x14e0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x14e0(%rsp)
movl 0x148c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x148c(%rsp)
jmp 0x1303d1a
jmp 0x1303e64
movl 0x153c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x153c(%rsp)
jmp 0x1303400
movl $0x0, 0x2bb4(%rsp)
jmp 0x1307dd4
movq 0x2ba0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x130490f
movq 0x2ba0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1303ee5
cmpl $0x1, 0x2b4c(%rsp)
jne 0x1303ee5
movq 0x2ba8(%rsp), %rdi
movq 0x2ba0(%rsp), %rsi
movq 0x2b98(%rsp), %rdx
movq 0x2b90(%rsp), %rcx
callq 0x143fe80
movl %eax, 0x2bb4(%rsp)
jmp 0x1307dd4
movl $0x0, 0x137c(%rsp)
movl 0x137c(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x13048ff
movq 0x2ba8(%rsp), %rcx
movl 0x137c(%rsp), %eax
leaq 0x1328(%rsp), %rdx
movq %rdx, 0x2cc0(%rsp)
movq %rcx, 0x2cb8(%rsp)
movl %eax, 0x2cb4(%rsp)
movq 0x2cb8(%rsp), %rax
movq %rax, 0x238(%rsp)
movb $0x0, 0x2cb3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2cb4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1328(%rsp), %r10
movq %r10, 0x4be8(%rsp)
movl %r9d, 0x4be4(%rsp)
movl %r8d, 0x4be0(%rsp)
movl %edi, 0x4bdc(%rsp)
movq %rsi, 0x4bd0(%rsp)
movq %rdx, 0x4bc8(%rsp)
movl %ecx, 0x4bc4(%rsp)
movq %rax, 0x4bb8(%rsp)
movq 0x4be8(%rsp), %rcx
movq %rcx, 0x230(%rsp)
movq 0x4bd0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4bc8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4bc4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4bb8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4be4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4be0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4bdc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d18(%rsp)
movl $0x10, 0x4d14(%rsp)
movq 0x4d18(%rsp), %rax
movslq 0x4d14(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d14(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x238(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1350(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13040c0
movq 0x238(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1368(%rsp)
movb $0x1, 0x2cb3(%rsp)
testb $0x1, 0x2cb3(%rsp)
jne 0x1304201
leaq 0x1328(%rsp), %rax
movq %rax, 0x3088(%rsp)
movq 0x3088(%rsp), %rax
movq %rax, 0x5678(%rsp)
movq 0x5678(%rsp), %rax
movq %rax, 0x228(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13041a4
movq 0x228(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5674(%rsp) # imm = 0xFFFFFFFF
movl 0x5674(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5670(%rsp)
cmpl $0x1, 0x5670(%rsp)
jne 0x13041a4
movq 0x228(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1304172
movq 0x228(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1304170
jmp 0x13041a2
movq 0x228(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5878(%rsp)
cmpq $0x0, 0x5878(%rsp)
je 0x13041a0
movq 0x5878(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13041a2
jmp 0x13041a4
movq 0x228(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13041ff
movq %rax, %rdi
callq 0x678a0
jmp 0x1304201
leaq 0x1328(%rsp), %rax
movq %rax, 0x2f18(%rsp)
movq 0x2f18(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x220(%rsp)
leaq 0x1328(%rsp), %rax
movq %rax, 0x32d0(%rsp)
movq 0x32d0(%rsp), %rax
movq %rax, 0x51e8(%rsp)
movq 0x51e8(%rsp), %rax
movq %rax, 0x218(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13042f2
movq 0x218(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x51e4(%rsp) # imm = 0xFFFFFFFF
movl 0x51e4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x51e0(%rsp)
cmpl $0x1, 0x51e0(%rsp)
jne 0x13042f2
movq 0x218(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13042c0
movq 0x218(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13042be
jmp 0x13042f0
movq 0x218(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5ac0(%rsp)
cmpq $0x0, 0x5ac0(%rsp)
je 0x13042ee
movq 0x5ac0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13042f0
jmp 0x13042f2
movq 0x218(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130434d
movq %rax, %rdi
callq 0x678a0
movq 0x220(%rsp), %rax
movq %rax, 0x1370(%rsp)
movq 0x2ba0(%rsp), %rax
movq %rax, 0x2f10(%rsp)
movq 0x2f10(%rsp), %rax
movq (%rax), %rax
movl 0x137c(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x36b8(%rsp)
movq 0x36b8(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x12c0(%rsp)
movq 0x2b98(%rsp), %rcx
movl 0x137c(%rsp), %eax
leaq 0x1270(%rsp), %rdx
movq %rdx, 0x3400(%rsp)
movq %rcx, 0x33f8(%rsp)
movl %eax, 0x33f4(%rsp)
movq 0x33f8(%rsp), %rax
movq %rax, 0x210(%rsp)
movb $0x0, 0x33f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x33f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1270(%rsp), %r10
movq %r10, 0x4638(%rsp)
movl %r9d, 0x4634(%rsp)
movl %r8d, 0x4630(%rsp)
movl %edi, 0x462c(%rsp)
movq %rsi, 0x4620(%rsp)
movq %rdx, 0x4618(%rsp)
movl %ecx, 0x4614(%rsp)
movq %rax, 0x4608(%rsp)
movq 0x4638(%rsp), %rcx
movq %rcx, 0x208(%rsp)
movq 0x4620(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4618(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4614(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4608(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4634(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4630(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x462c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4eb8(%rsp)
movl $0x10, 0x4eb4(%rsp)
movq 0x4eb8(%rsp), %rax
movslq 0x4eb4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4eb4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x210(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1298(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1304566
movq 0x210(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x12b0(%rsp)
movb $0x1, 0x33f3(%rsp)
testb $0x1, 0x33f3(%rsp)
jne 0x13046a7
leaq 0x1270(%rsp), %rax
movq %rax, 0x3408(%rsp)
movq 0x3408(%rsp), %rax
movq %rax, 0x5068(%rsp)
movq 0x5068(%rsp), %rax
movq %rax, 0x200(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130464a
movq 0x200(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5064(%rsp) # imm = 0xFFFFFFFF
movl 0x5064(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5060(%rsp)
cmpl $0x1, 0x5060(%rsp)
jne 0x130464a
movq 0x200(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1304618
movq 0x200(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1304616
jmp 0x1304648
movq 0x200(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5b80(%rsp)
cmpq $0x0, 0x5b80(%rsp)
je 0x1304646
movq 0x5b80(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1304648
jmp 0x130464a
movq 0x200(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13046a5
movq %rax, %rdi
callq 0x678a0
jmp 0x13046a7
leaq 0x1270(%rsp), %rax
movq %rax, 0x35e0(%rsp)
movq 0x35e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1f8(%rsp)
leaq 0x1270(%rsp), %rax
movq %rax, 0x32e0(%rsp)
movq 0x32e0(%rsp), %rax
movq %rax, 0x51c8(%rsp)
movq 0x51c8(%rsp), %rax
movq %rax, 0x1f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1304798
movq 0x1f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x51c4(%rsp) # imm = 0xFFFFFFFF
movl 0x51c4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x51c0(%rsp)
cmpl $0x1, 0x51c0(%rsp)
jne 0x1304798
movq 0x1f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1304766
movq 0x1f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1304764
jmp 0x1304796
movq 0x1f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5ad0(%rsp)
cmpq $0x0, 0x5ad0(%rsp)
je 0x1304794
movq 0x5ad0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1304796
jmp 0x1304798
movq 0x1f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13047f3
movq %rax, %rdi
callq 0x678a0
movq 0x1f8(%rsp), %rax
movq %rax, 0x12b8(%rsp)
movl $0x0, 0x126c(%rsp)
movl 0x126c(%rsp), %eax
cmpl 0x2b78(%rsp), %eax
jge 0x13048e7
movq 0x1370(%rsp), %rax
movq %rax, 0x36b0(%rsp)
movq 0x36b0(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1200(%rsp)
leaq 0x2b8f(%rsp), %rdi
leaq 0x1200(%rsp), %rsi
leaq 0x12c0(%rsp), %rdx
callq 0x14535e0
vmovaps %zmm0, 0x11c0(%rsp)
movq 0x12b8(%rsp), %rax
vmovaps 0x11c0(%rsp), %zmm0
movq %rax, 0x3af8(%rsp)
vmovaps %zmm0, 0x3a80(%rsp)
vmovaps 0x3a80(%rsp), %zmm0
movq 0x3af8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x1370(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1370(%rsp)
movq 0x12b8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x12b8(%rsp)
movl 0x126c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x126c(%rsp)
jmp 0x130480e
jmp 0x13048e9
movl 0x137c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x137c(%rsp)
jmp 0x1303ef0
movl $0x0, 0x2bb4(%rsp)
jmp 0x1307dd4
jmp 0x1307dc7
movq 0x2ba8(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x130640d
movq 0x2ba0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x13054d1
movq 0x2b98(%rsp), %rdi
movl 0x2b68(%rsp), %esi
movl 0x2b64(%rsp), %edx
movl 0x2b60(%rsp), %ecx
movl 0x2b5c(%rsp), %r8d
movq 0x2b50(%rsp), %r9
movl 0x2b4c(%rsp), %r10d
movq 0x2b90(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x2b98(%rsp), %rax
movq %rax, 0x2bf0(%rsp)
movq 0x2bf0(%rsp), %rcx
movq %rcx, 0x1e0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1ef(%rsp)
je 0x13049e8
movq 0x1e0(%rsp), %rax
movq %rax, 0x42f0(%rsp)
movq 0x42f0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1ef(%rsp)
movb 0x1ef(%rsp), %al
testb $0x1, %al
jne 0x13049f5
jmp 0x1304a05
movl $0xffffff9c, 0x2bb4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1307dd4
movl $0x0, 0x11bc(%rsp)
movl 0x11bc(%rsp), %eax
cmpl 0x2b5c(%rsp), %eax
jge 0x13054c1
movq 0x2ba8(%rsp), %rcx
movl 0x11bc(%rsp), %eax
movq %rcx, 0x4198(%rsp)
movl %eax, 0x4194(%rsp)
movq 0x4198(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x4194(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x11b0(%rsp)
movq 0x2ba0(%rsp), %rcx
movl 0x11bc(%rsp), %eax
leaq 0x1160(%rsp), %rdx
movq %rdx, 0x2ca8(%rsp)
movq %rcx, 0x2ca0(%rsp)
movl %eax, 0x2c9c(%rsp)
movq 0x2ca0(%rsp), %rax
movq %rax, 0x1d8(%rsp)
movb $0x0, 0x2c9b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2c9c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1160(%rsp), %r10
movq %r10, 0x4c20(%rsp)
movl %r9d, 0x4c1c(%rsp)
movl %r8d, 0x4c18(%rsp)
movl %edi, 0x4c14(%rsp)
movq %rsi, 0x4c08(%rsp)
movq %rdx, 0x4c00(%rsp)
movl %ecx, 0x4bfc(%rsp)
movq %rax, 0x4bf0(%rsp)
movq 0x4c20(%rsp), %rcx
movq %rcx, 0x1d0(%rsp)
movq 0x4c08(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4c00(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4bfc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4bf0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4c1c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4c18(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4c14(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d08(%rsp)
movl $0x10, 0x4d04(%rsp)
movq 0x4d08(%rsp), %rax
movslq 0x4d04(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d04(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x1d8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1188(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1304c29
movq 0x1d8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x11a0(%rsp)
movb $0x1, 0x2c9b(%rsp)
testb $0x1, 0x2c9b(%rsp)
jne 0x1304d6a
leaq 0x1160(%rsp), %rax
movq %rax, 0x3090(%rsp)
movq 0x3090(%rsp), %rax
movq %rax, 0x5668(%rsp)
movq 0x5668(%rsp), %rax
movq %rax, 0x1c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1304d0d
movq 0x1c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5664(%rsp) # imm = 0xFFFFFFFF
movl 0x5664(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5660(%rsp)
cmpl $0x1, 0x5660(%rsp)
jne 0x1304d0d
movq 0x1c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1304cdb
movq 0x1c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1304cd9
jmp 0x1304d0b
movq 0x1c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5880(%rsp)
cmpq $0x0, 0x5880(%rsp)
je 0x1304d09
movq 0x5880(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1304d0b
jmp 0x1304d0d
movq 0x1c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1304d68
movq %rax, %rdi
callq 0x678a0
jmp 0x1304d6a
leaq 0x1160(%rsp), %rax
movq %rax, 0x2f08(%rsp)
movq 0x2f08(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1c0(%rsp)
leaq 0x1160(%rsp), %rax
movq %rax, 0x32f0(%rsp)
movq 0x32f0(%rsp), %rax
movq %rax, 0x51a8(%rsp)
movq 0x51a8(%rsp), %rax
movq %rax, 0x1b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1304e5b
movq 0x1b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x51a4(%rsp) # imm = 0xFFFFFFFF
movl 0x51a4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x51a0(%rsp)
cmpl $0x1, 0x51a0(%rsp)
jne 0x1304e5b
movq 0x1b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1304e29
movq 0x1b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1304e27
jmp 0x1304e59
movq 0x1b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5ae0(%rsp)
cmpq $0x0, 0x5ae0(%rsp)
je 0x1304e57
movq 0x5ae0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1304e59
jmp 0x1304e5b
movq 0x1b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1304eb6
movq %rax, %rdi
callq 0x678a0
movq 0x1c0(%rsp), %rax
movq %rax, 0x11a8(%rsp)
movq 0x2b98(%rsp), %rcx
movl 0x11bc(%rsp), %eax
leaq 0x1110(%rsp), %rdx
movq %rdx, 0x33e0(%rsp)
movq %rcx, 0x33d8(%rsp)
movl %eax, 0x33d4(%rsp)
movq 0x33d8(%rsp), %rax
movq %rax, 0x1b0(%rsp)
movb $0x0, 0x33d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x33d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1110(%rsp), %r10
movq %r10, 0x4670(%rsp)
movl %r9d, 0x466c(%rsp)
movl %r8d, 0x4668(%rsp)
movl %edi, 0x4664(%rsp)
movq %rsi, 0x4658(%rsp)
movq %rdx, 0x4650(%rsp)
movl %ecx, 0x464c(%rsp)
movq %rax, 0x4640(%rsp)
movq 0x4670(%rsp), %rcx
movq %rcx, 0x1a8(%rsp)
movq 0x4658(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4650(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x464c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4640(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x466c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4668(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4664(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4ea8(%rsp)
movl $0x10, 0x4ea4(%rsp)
movq 0x4ea8(%rsp), %rax
movslq 0x4ea4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4ea4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x1b0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1138(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1305082
movq 0x1b0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1150(%rsp)
movb $0x1, 0x33d3(%rsp)
testb $0x1, 0x33d3(%rsp)
jne 0x13051c3
leaq 0x1110(%rsp), %rax
movq %rax, 0x33e8(%rsp)
movq 0x33e8(%rsp), %rax
movq %rax, 0x5078(%rsp)
movq 0x5078(%rsp), %rax
movq %rax, 0x1a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1305166
movq 0x1a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5074(%rsp) # imm = 0xFFFFFFFF
movl 0x5074(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5070(%rsp)
cmpl $0x1, 0x5070(%rsp)
jne 0x1305166
movq 0x1a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1305134
movq 0x1a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1305132
jmp 0x1305164
movq 0x1a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5b78(%rsp)
cmpq $0x0, 0x5b78(%rsp)
je 0x1305162
movq 0x5b78(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1305164
jmp 0x1305166
movq 0x1a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13051c1
movq %rax, %rdi
callq 0x678a0
jmp 0x13051c3
leaq 0x1110(%rsp), %rax
movq %rax, 0x35d8(%rsp)
movq 0x35d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x198(%rsp)
leaq 0x1110(%rsp), %rax
movq %rax, 0x3300(%rsp)
movq 0x3300(%rsp), %rax
movq %rax, 0x5188(%rsp)
movq 0x5188(%rsp), %rax
movq %rax, 0x190(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13052b4
movq 0x190(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5184(%rsp) # imm = 0xFFFFFFFF
movl 0x5184(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5180(%rsp)
cmpl $0x1, 0x5180(%rsp)
jne 0x13052b4
movq 0x190(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1305282
movq 0x190(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1305280
jmp 0x13052b2
movq 0x190(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5af0(%rsp)
cmpq $0x0, 0x5af0(%rsp)
je 0x13052b0
movq 0x5af0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13052b2
jmp 0x13052b4
movq 0x190(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130530f
movq %rax, %rdi
callq 0x678a0
movq 0x198(%rsp), %rax
movq %rax, 0x1158(%rsp)
movl $0x0, 0x110c(%rsp)
movl 0x110c(%rsp), %eax
cmpl 0x2b60(%rsp), %eax
jge 0x13054a9
movq 0x11b0(%rsp), %rax
movq %rax, 0x36a8(%rsp)
movq 0x36a8(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x10c0(%rsp)
movl $0x0, 0x10bc(%rsp)
movl 0x10bc(%rsp), %eax
cmpl 0x2b64(%rsp), %eax
jge 0x130547f
movl $0x0, 0x10b8(%rsp)
movl 0x10b8(%rsp), %eax
cmpl 0x2b68(%rsp), %eax
jge 0x1305467
movq 0x11a8(%rsp), %rax
movq %rax, 0x36a0(%rsp)
movq 0x36a0(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1040(%rsp)
leaq 0x2b8f(%rsp), %rdi
leaq 0x10c0(%rsp), %rsi
leaq 0x1040(%rsp), %rdx
callq 0x14535e0
vmovaps %zmm0, 0x1000(%rsp)
movq 0x1158(%rsp), %rax
vmovaps 0x1000(%rsp), %zmm0
movq %rax, 0x3a78(%rsp)
vmovaps %zmm0, 0x3a00(%rsp)
vmovaps 0x3a00(%rsp), %zmm0
movq 0x3a78(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x11a8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x11a8(%rsp)
movq 0x1158(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1158(%rsp)
movl 0x10b8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x10b8(%rsp)
jmp 0x130538e
jmp 0x1305469
movl 0x10bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x10bc(%rsp)
jmp 0x130536f
movq 0x11b0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x11b0(%rsp)
movl 0x110c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x110c(%rsp)
jmp 0x130532a
jmp 0x13054ab
movl 0x11bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x11bc(%rsp)
jmp 0x1304a10
movl $0x0, 0x2bb4(%rsp)
jmp 0x1307dd4
movq 0x2ba0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1306038
movq 0x2b98(%rsp), %rdi
movl 0x2b68(%rsp), %esi
movl 0x2b64(%rsp), %edx
movl 0x2b5c(%rsp), %ecx
movq 0x2b50(%rsp), %r8
movl 0x2b4c(%rsp), %r9d
movq 0x2b90(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2b98(%rsp), %rax
movq %rax, 0x2be8(%rsp)
movq 0x2be8(%rsp), %rcx
movq %rcx, 0x180(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x18f(%rsp)
je 0x1305586
movq 0x180(%rsp), %rax
movq %rax, 0x42f8(%rsp)
movq 0x42f8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x18f(%rsp)
movb 0x18f(%rsp), %al
testb $0x1, %al
jne 0x1305593
jmp 0x13055a3
movl $0xffffff9c, 0x2bb4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1307dd4
movl $0x0, 0xffc(%rsp)
movl 0xffc(%rsp), %eax
cmpl 0x2b5c(%rsp), %eax
jge 0x1306028
movq 0x2ba8(%rsp), %rcx
movl 0xffc(%rsp), %eax
movq %rcx, 0x4188(%rsp)
movl %eax, 0x4184(%rsp)
movq 0x4188(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x4184(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xff0(%rsp)
movq 0x2ba0(%rsp), %rcx
movl 0xffc(%rsp), %eax
leaq 0xfa0(%rsp), %rdx
movq %rdx, 0x2c90(%rsp)
movq %rcx, 0x2c88(%rsp)
movl %eax, 0x2c84(%rsp)
movq 0x2c88(%rsp), %rax
movq %rax, 0x178(%rsp)
movb $0x0, 0x2c83(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2c84(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xfa0(%rsp), %r10
movq %r10, 0x4c58(%rsp)
movl %r9d, 0x4c54(%rsp)
movl %r8d, 0x4c50(%rsp)
movl %edi, 0x4c4c(%rsp)
movq %rsi, 0x4c40(%rsp)
movq %rdx, 0x4c38(%rsp)
movl %ecx, 0x4c34(%rsp)
movq %rax, 0x4c28(%rsp)
movq 0x4c58(%rsp), %rcx
movq %rcx, 0x170(%rsp)
movq 0x4c40(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4c38(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4c34(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4c28(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4c54(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4c50(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4c4c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4cf8(%rsp)
movl $0x10, 0x4cf4(%rsp)
movq 0x4cf8(%rsp), %rax
movslq 0x4cf4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4cf4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x178(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xfc8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13057c7
movq 0x178(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xfe0(%rsp)
movb $0x1, 0x2c83(%rsp)
testb $0x1, 0x2c83(%rsp)
jne 0x1305908
leaq 0xfa0(%rsp), %rax
movq %rax, 0x3098(%rsp)
movq 0x3098(%rsp), %rax
movq %rax, 0x5658(%rsp)
movq 0x5658(%rsp), %rax
movq %rax, 0x168(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13058ab
movq 0x168(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5654(%rsp) # imm = 0xFFFFFFFF
movl 0x5654(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5650(%rsp)
cmpl $0x1, 0x5650(%rsp)
jne 0x13058ab
movq 0x168(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1305879
movq 0x168(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1305877
jmp 0x13058a9
movq 0x168(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5888(%rsp)
cmpq $0x0, 0x5888(%rsp)
je 0x13058a7
movq 0x5888(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13058a9
jmp 0x13058ab
movq 0x168(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1305906
movq %rax, %rdi
callq 0x678a0
jmp 0x1305908
leaq 0xfa0(%rsp), %rax
movq %rax, 0x2f00(%rsp)
movq 0x2f00(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x160(%rsp)
leaq 0xfa0(%rsp), %rax
movq %rax, 0x3310(%rsp)
movq 0x3310(%rsp), %rax
movq %rax, 0x5168(%rsp)
movq 0x5168(%rsp), %rax
movq %rax, 0x158(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13059f9
movq 0x158(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5164(%rsp) # imm = 0xFFFFFFFF
movl 0x5164(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5160(%rsp)
cmpl $0x1, 0x5160(%rsp)
jne 0x13059f9
movq 0x158(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13059c7
movq 0x158(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13059c5
jmp 0x13059f7
movq 0x158(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5b00(%rsp)
cmpq $0x0, 0x5b00(%rsp)
je 0x13059f5
movq 0x5b00(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13059f7
jmp 0x13059f9
movq 0x158(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1305a54
movq %rax, %rdi
callq 0x678a0
movq 0x160(%rsp), %rax
movq %rax, 0xfe8(%rsp)
movq 0x2b98(%rsp), %rcx
movl 0xffc(%rsp), %eax
leaq 0xf50(%rsp), %rdx
movq %rdx, 0x33c0(%rsp)
movq %rcx, 0x33b8(%rsp)
movl %eax, 0x33b4(%rsp)
movq 0x33b8(%rsp), %rax
movq %rax, 0x150(%rsp)
movb $0x0, 0x33b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x33b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xf50(%rsp), %r10
movq %r10, 0x46a8(%rsp)
movl %r9d, 0x46a4(%rsp)
movl %r8d, 0x46a0(%rsp)
movl %edi, 0x469c(%rsp)
movq %rsi, 0x4690(%rsp)
movq %rdx, 0x4688(%rsp)
movl %ecx, 0x4684(%rsp)
movq %rax, 0x4678(%rsp)
movq 0x46a8(%rsp), %rcx
movq %rcx, 0x148(%rsp)
movq 0x4690(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4688(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4684(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4678(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x46a4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x46a0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x469c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e98(%rsp)
movl $0x10, 0x4e94(%rsp)
movq 0x4e98(%rsp), %rax
movslq 0x4e94(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e94(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x150(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf78(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1305c20
movq 0x150(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xf90(%rsp)
movb $0x1, 0x33b3(%rsp)
testb $0x1, 0x33b3(%rsp)
jne 0x1305d61
leaq 0xf50(%rsp), %rax
movq %rax, 0x33c8(%rsp)
movq 0x33c8(%rsp), %rax
movq %rax, 0x5088(%rsp)
movq 0x5088(%rsp), %rax
movq %rax, 0x140(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1305d04
movq 0x140(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5084(%rsp) # imm = 0xFFFFFFFF
movl 0x5084(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5080(%rsp)
cmpl $0x1, 0x5080(%rsp)
jne 0x1305d04
movq 0x140(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1305cd2
movq 0x140(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1305cd0
jmp 0x1305d02
movq 0x140(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5b70(%rsp)
cmpq $0x0, 0x5b70(%rsp)
je 0x1305d00
movq 0x5b70(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1305d02
jmp 0x1305d04
movq 0x140(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1305d5f
movq %rax, %rdi
callq 0x678a0
jmp 0x1305d61
leaq 0xf50(%rsp), %rax
movq %rax, 0x35d0(%rsp)
movq 0x35d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x138(%rsp)
leaq 0xf50(%rsp), %rax
movq %rax, 0x3320(%rsp)
movq 0x3320(%rsp), %rax
movq %rax, 0x5148(%rsp)
movq 0x5148(%rsp), %rax
movq %rax, 0x130(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1305e52
movq 0x130(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5144(%rsp) # imm = 0xFFFFFFFF
movl 0x5144(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5140(%rsp)
cmpl $0x1, 0x5140(%rsp)
jne 0x1305e52
movq 0x130(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1305e20
movq 0x130(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1305e1e
jmp 0x1305e50
movq 0x130(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5b10(%rsp)
cmpq $0x0, 0x5b10(%rsp)
je 0x1305e4e
movq 0x5b10(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1305e50
jmp 0x1305e52
movq 0x130(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1305ead
movq %rax, %rdi
callq 0x678a0
movq 0x138(%rsp), %rax
movq %rax, 0xf98(%rsp)
movl $0x0, 0xf4c(%rsp)
movl 0xf4c(%rsp), %eax
cmpl 0x2b64(%rsp), %eax
jge 0x1306010
movq 0xff0(%rsp), %rax
movq %rax, 0x3698(%rsp)
movq 0x3698(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xf00(%rsp)
movl $0x0, 0xefc(%rsp)
movl 0xefc(%rsp), %eax
cmpl 0x2b68(%rsp), %eax
jge 0x1305fe6
movq 0xfe8(%rsp), %rax
movq %rax, 0x3690(%rsp)
movq 0x3690(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xe80(%rsp)
leaq 0x2b8f(%rsp), %rdi
leaq 0xf00(%rsp), %rsi
leaq 0xe80(%rsp), %rdx
callq 0x14535e0
vmovaps %zmm0, 0xe40(%rsp)
movq 0xf98(%rsp), %rax
vmovaps 0xe40(%rsp), %zmm0
movq %rax, 0x39f8(%rsp)
vmovaps %zmm0, 0x3980(%rsp)
vmovaps 0x3980(%rsp), %zmm0
movq 0x39f8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0xfe8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xfe8(%rsp)
movq 0xf98(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xf98(%rsp)
movl 0xefc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xefc(%rsp)
jmp 0x1305f0d
movq 0xff0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xff0(%rsp)
movl 0xf4c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xf4c(%rsp)
jmp 0x1305ec8
jmp 0x1306012
movl 0xffc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xffc(%rsp)
jmp 0x13055ae
movl $0x0, 0x2bb4(%rsp)
jmp 0x1307dd4
movq 0x2b98(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movq 0x2b70(%rsp), %rcx
movl 0x2b6c(%rsp), %r8d
movq 0x2b90(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x2b98(%rsp), %rax
movq %rax, 0x2be0(%rsp)
movq 0x2be0(%rsp), %rcx
movq %rcx, 0x120(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x12f(%rsp)
je 0x13060d0
movq 0x120(%rsp), %rax
movq %rax, 0x4300(%rsp)
movq 0x4300(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x12f(%rsp)
movb 0x12f(%rsp), %al
testb $0x1, %al
jne 0x13060dd
jmp 0x13060ed
movl $0xffffff9c, 0x2bb4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1307dd4
movq 0x2ba0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x130612c
movq 0x2ba8(%rsp), %rdi
movq 0x2ba0(%rsp), %rsi
movq 0x2b98(%rsp), %rdx
movq 0x2b90(%rsp), %rcx
callq 0x143ec80
movl %eax, 0x2bb4(%rsp)
jmp 0x1307dd4
movq 0x2ba0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1306408
movq 0x2b98(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movq 0x2b70(%rsp), %rcx
movl 0x2b6c(%rsp), %r8d
movq 0x2b90(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x2b98(%rsp), %rax
movq %rax, 0x2bd8(%rsp)
movq 0x2bd8(%rsp), %rcx
movq %rcx, 0x110(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x11f(%rsp)
je 0x13061d6
movq 0x110(%rsp), %rax
movq %rax, 0x4308(%rsp)
movq 0x4308(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x11f(%rsp)
movb 0x11f(%rsp), %al
testb $0x1, %al
jne 0x13061e3
jmp 0x13061f3
movl $0xffffff9c, 0x2bb4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1307dd4
movq 0x2ba0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x130623c
cmpl $0x1, 0x2b4c(%rsp)
jne 0x130623c
movq 0x2ba8(%rsp), %rdi
movq 0x2ba0(%rsp), %rsi
movq 0x2b98(%rsp), %rdx
movq 0x2b90(%rsp), %rcx
callq 0x143fe80
movl %eax, 0x2bb4(%rsp)
jmp 0x1307dd4
movq 0x2ba8(%rsp), %rax
movq %rax, 0x2ef8(%rsp)
movq 0x2ef8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xe38(%rsp)
movq 0x2ba0(%rsp), %rax
movq %rax, 0x2ef0(%rsp)
movq 0x2ef0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xe30(%rsp)
movq 0x2b98(%rsp), %rax
movq %rax, 0x35c8(%rsp)
movq 0x35c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xe28(%rsp)
movl $0x0, 0xe24(%rsp)
movl 0xe24(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jge 0x13063f8
movq 0xe30(%rsp), %rax
movq %rax, 0x3688(%rsp)
movq 0x3688(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xdc0(%rsp)
movl $0x0, 0xdbc(%rsp)
movl 0xdbc(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jge 0x13063ce
movq 0xe38(%rsp), %rax
movq %rax, 0x3680(%rsp)
movq 0x3680(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xd40(%rsp)
leaq 0x2b8f(%rsp), %rdi
leaq 0xd40(%rsp), %rsi
leaq 0xdc0(%rsp), %rdx
callq 0x14535e0
vmovaps %zmm0, 0xd00(%rsp)
movq 0xe28(%rsp), %rax
vmovaps 0xd00(%rsp), %zmm0
movq %rax, 0x3978(%rsp)
vmovaps %zmm0, 0x3900(%rsp)
vmovaps 0x3900(%rsp), %zmm0
movq 0x3978(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0xe38(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xe38(%rsp)
movq 0xe28(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xe28(%rsp)
movl 0xdbc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdbc(%rsp)
jmp 0x13062f5
movq 0xe30(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xe30(%rsp)
movl 0xe24(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xe24(%rsp)
jmp 0x13062b0
movl $0x0, 0x2bb4(%rsp)
jmp 0x1307dd4
jmp 0x1307dc5
movq 0x2ba8(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1307dc3
movq 0x2ba8(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1306468
cmpl $0x1, 0x2b6c(%rsp)
jne 0x1306468
movq 0x2ba8(%rsp), %rdi
movq 0x2ba0(%rsp), %rsi
movq 0x2b98(%rsp), %rdx
movq 0x2b90(%rsp), %rcx
callq 0x1440d00
movl %eax, 0x2bb4(%rsp)
jmp 0x1307dd4
movq 0x2ba0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1306f71
movq 0x2b98(%rsp), %rdi
movl 0x2b68(%rsp), %esi
movl 0x2b64(%rsp), %edx
movl 0x2b60(%rsp), %ecx
movl 0x2b5c(%rsp), %r8d
movq 0x2b50(%rsp), %r9
movl 0x2b4c(%rsp), %r10d
movq 0x2b90(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x2b98(%rsp), %rax
movq %rax, 0x2bd0(%rsp)
movq 0x2bd0(%rsp), %rcx
movq %rcx, 0x100(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x10f(%rsp)
je 0x130652a
movq 0x100(%rsp), %rax
movq %rax, 0x4310(%rsp)
movq 0x4310(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x10f(%rsp)
movb 0x10f(%rsp), %al
testb $0x1, %al
jne 0x1306537
jmp 0x1306547
movl $0xffffff9c, 0x2bb4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1307dd4
movl $0x0, 0xcfc(%rsp)
movl 0xcfc(%rsp), %eax
cmpl 0x2b5c(%rsp), %eax
jge 0x1306f61
movq 0x2ba8(%rsp), %rax
movq %rax, 0x2ee8(%rsp)
movq 0x2ee8(%rsp), %rax
movq (%rax), %rax
movl 0xcfc(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x3678(%rsp)
movq 0x3678(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xc80(%rsp)
movq 0x2ba0(%rsp), %rcx
movl 0xcfc(%rsp), %eax
leaq 0xc30(%rsp), %rdx
movq %rdx, 0x2c78(%rsp)
movq %rcx, 0x2c70(%rsp)
movl %eax, 0x2c6c(%rsp)
movq 0x2c70(%rsp), %rax
movq %rax, 0xf8(%rsp)
movb $0x0, 0x2c6b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2c6c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xc30(%rsp), %r10
movq %r10, 0x4c90(%rsp)
movl %r9d, 0x4c8c(%rsp)
movl %r8d, 0x4c88(%rsp)
movl %edi, 0x4c84(%rsp)
movq %rsi, 0x4c78(%rsp)
movq %rdx, 0x4c70(%rsp)
movl %ecx, 0x4c6c(%rsp)
movq %rax, 0x4c60(%rsp)
movq 0x4c90(%rsp), %rcx
movq %rcx, 0xf0(%rsp)
movq 0x4c78(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4c70(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4c6c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4c60(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4c8c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4c88(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4c84(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4ce8(%rsp)
movl $0x10, 0x4ce4(%rsp)
movq 0x4ce8(%rsp), %rax
movslq 0x4ce4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4ce4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xf8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc58(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x130676f
movq 0xf8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xc70(%rsp)
movb $0x1, 0x2c6b(%rsp)
testb $0x1, 0x2c6b(%rsp)
jne 0x13068b0
leaq 0xc30(%rsp), %rax
movq %rax, 0x30a0(%rsp)
movq 0x30a0(%rsp), %rax
movq %rax, 0x5648(%rsp)
movq 0x5648(%rsp), %rax
movq %rax, 0xe8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1306853
movq 0xe8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5644(%rsp) # imm = 0xFFFFFFFF
movl 0x5644(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5640(%rsp)
cmpl $0x1, 0x5640(%rsp)
jne 0x1306853
movq 0xe8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1306821
movq 0xe8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130681f
jmp 0x1306851
movq 0xe8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5890(%rsp)
cmpq $0x0, 0x5890(%rsp)
je 0x130684f
movq 0x5890(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1306851
jmp 0x1306853
movq 0xe8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13068ae
movq %rax, %rdi
callq 0x678a0
jmp 0x13068b0
leaq 0xc30(%rsp), %rax
movq %rax, 0x2ee0(%rsp)
movq 0x2ee0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xe0(%rsp)
leaq 0xc30(%rsp), %rax
movq %rax, 0x3330(%rsp)
movq 0x3330(%rsp), %rax
movq %rax, 0x5128(%rsp)
movq 0x5128(%rsp), %rax
movq %rax, 0xd8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13069a1
movq 0xd8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5124(%rsp) # imm = 0xFFFFFFFF
movl 0x5124(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5120(%rsp)
cmpl $0x1, 0x5120(%rsp)
jne 0x13069a1
movq 0xd8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130696f
movq 0xd8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130696d
jmp 0x130699f
movq 0xd8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5b20(%rsp)
cmpq $0x0, 0x5b20(%rsp)
je 0x130699d
movq 0x5b20(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130699f
jmp 0x13069a1
movq 0xd8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13069fc
movq %rax, %rdi
callq 0x678a0
movq 0xe0(%rsp), %rax
movq %rax, 0xc78(%rsp)
movq 0x2b98(%rsp), %rcx
movl 0xcfc(%rsp), %eax
leaq 0xbe0(%rsp), %rdx
movq %rdx, 0x33a0(%rsp)
movq %rcx, 0x3398(%rsp)
movl %eax, 0x3394(%rsp)
movq 0x3398(%rsp), %rax
movq %rax, 0xd0(%rsp)
movb $0x0, 0x3393(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3394(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xbe0(%rsp), %r10
movq %r10, 0x46e0(%rsp)
movl %r9d, 0x46dc(%rsp)
movl %r8d, 0x46d8(%rsp)
movl %edi, 0x46d4(%rsp)
movq %rsi, 0x46c8(%rsp)
movq %rdx, 0x46c0(%rsp)
movl %ecx, 0x46bc(%rsp)
movq %rax, 0x46b0(%rsp)
movq 0x46e0(%rsp), %rcx
movq %rcx, 0xc8(%rsp)
movq 0x46c8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x46c0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x46bc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x46b0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x46dc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x46d8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x46d4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e88(%rsp)
movl $0x10, 0x4e84(%rsp)
movq 0x4e88(%rsp), %rax
movslq 0x4e84(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e84(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xd0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc08(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1306bc8
movq 0xd0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xc20(%rsp)
movb $0x1, 0x3393(%rsp)
testb $0x1, 0x3393(%rsp)
jne 0x1306d09
leaq 0xbe0(%rsp), %rax
movq %rax, 0x33a8(%rsp)
movq 0x33a8(%rsp), %rax
movq %rax, 0x5098(%rsp)
movq 0x5098(%rsp), %rax
movq %rax, 0xc0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1306cac
movq 0xc0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5094(%rsp) # imm = 0xFFFFFFFF
movl 0x5094(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5090(%rsp)
cmpl $0x1, 0x5090(%rsp)
jne 0x1306cac
movq 0xc0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1306c7a
movq 0xc0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1306c78
jmp 0x1306caa
movq 0xc0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5b68(%rsp)
cmpq $0x0, 0x5b68(%rsp)
je 0x1306ca8
movq 0x5b68(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1306caa
jmp 0x1306cac
movq 0xc0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1306d07
movq %rax, %rdi
callq 0x678a0
jmp 0x1306d09
leaq 0xbe0(%rsp), %rax
movq %rax, 0x35c0(%rsp)
movq 0x35c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xb8(%rsp)
leaq 0xbe0(%rsp), %rax
movq %rax, 0x3340(%rsp)
movq 0x3340(%rsp), %rax
movq %rax, 0x5108(%rsp)
movq 0x5108(%rsp), %rax
movq %rax, 0xb0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1306dfa
movq 0xb0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5104(%rsp) # imm = 0xFFFFFFFF
movl 0x5104(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5100(%rsp)
cmpl $0x1, 0x5100(%rsp)
jne 0x1306dfa
movq 0xb0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1306dc8
movq 0xb0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1306dc6
jmp 0x1306df8
movq 0xb0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5b30(%rsp)
cmpq $0x0, 0x5b30(%rsp)
je 0x1306df6
movq 0x5b30(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1306df8
jmp 0x1306dfa
movq 0xb0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1306e55
movq %rax, %rdi
callq 0x678a0
movq 0xb8(%rsp), %rax
movq %rax, 0xc28(%rsp)
movl $0x0, 0xbdc(%rsp)
movl 0xbdc(%rsp), %eax
cmpl 0x2b58(%rsp), %eax
jge 0x1306f49
movq 0xc78(%rsp), %rax
movq %rax, 0x3670(%rsp)
movq 0x3670(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xb80(%rsp)
leaq 0x2b8f(%rsp), %rdi
leaq 0xc80(%rsp), %rsi
leaq 0xb80(%rsp), %rdx
callq 0x14535e0
vmovaps %zmm0, 0xb40(%rsp)
movq 0xc28(%rsp), %rax
vmovaps 0xb40(%rsp), %zmm0
movq %rax, 0x38f8(%rsp)
vmovaps %zmm0, 0x3880(%rsp)
vmovaps 0x3880(%rsp), %zmm0
movq 0x38f8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0xc78(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xc78(%rsp)
movq 0xc28(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xc28(%rsp)
movl 0xbdc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xbdc(%rsp)
jmp 0x1306e70
jmp 0x1306f4b
movl 0xcfc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xcfc(%rsp)
jmp 0x1306552
movl $0x0, 0x2bb4(%rsp)
jmp 0x1307dd4
movq 0x2ba0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1307a25
movq 0x2b98(%rsp), %rdi
movl 0x2b68(%rsp), %esi
movl 0x2b64(%rsp), %edx
movl 0x2b5c(%rsp), %ecx
movq 0x2b50(%rsp), %r8
movl 0x2b4c(%rsp), %r9d
movq 0x2b90(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2b98(%rsp), %rax
movq %rax, 0x2bc8(%rsp)
movq 0x2bc8(%rsp), %rcx
movq %rcx, 0xa0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xaf(%rsp)
je 0x1307026
movq 0xa0(%rsp), %rax
movq %rax, 0x4318(%rsp)
movq 0x4318(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xaf(%rsp)
movb 0xaf(%rsp), %al
testb $0x1, %al
jne 0x1307033
jmp 0x1307043
movl $0xffffff9c, 0x2bb4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1307dd4
movl $0x0, 0xb3c(%rsp)
movl 0xb3c(%rsp), %eax
cmpl 0x2b5c(%rsp), %eax
jge 0x1307a15
movq 0x2ba8(%rsp), %rax
movq %rax, 0x2ed8(%rsp)
movq 0x2ed8(%rsp), %rax
movq (%rax), %rax
movl 0xb3c(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x3668(%rsp)
movq 0x3668(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xac0(%rsp)
movq 0x2ba0(%rsp), %rcx
movl 0xb3c(%rsp), %eax
leaq 0xa70(%rsp), %rdx
movq %rdx, 0x2c60(%rsp)
movq %rcx, 0x2c58(%rsp)
movl %eax, 0x2c54(%rsp)
movq 0x2c58(%rsp), %rax
movq %rax, 0x98(%rsp)
movb $0x0, 0x2c53(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2c54(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xa70(%rsp), %r10
movq %r10, 0x4cc8(%rsp)
movl %r9d, 0x4cc4(%rsp)
movl %r8d, 0x4cc0(%rsp)
movl %edi, 0x4cbc(%rsp)
movq %rsi, 0x4cb0(%rsp)
movq %rdx, 0x4ca8(%rsp)
movl %ecx, 0x4ca4(%rsp)
movq %rax, 0x4c98(%rsp)
movq 0x4cc8(%rsp), %rcx
movq %rcx, 0x90(%rsp)
movq 0x4cb0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4ca8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4ca4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4c98(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4cc4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4cc0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4cbc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4cd8(%rsp)
movl $0x10, 0x4cd4(%rsp)
movq 0x4cd8(%rsp), %rax
movslq 0x4cd4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4cd4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x98(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xa98(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x130726b
movq 0x98(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xab0(%rsp)
movb $0x1, 0x2c53(%rsp)
testb $0x1, 0x2c53(%rsp)
jne 0x13073ac
leaq 0xa70(%rsp), %rax
movq %rax, 0x30a8(%rsp)
movq 0x30a8(%rsp), %rax
movq %rax, 0x5638(%rsp)
movq 0x5638(%rsp), %rax
movq %rax, 0x88(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130734f
movq 0x88(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5634(%rsp) # imm = 0xFFFFFFFF
movl 0x5634(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5630(%rsp)
cmpl $0x1, 0x5630(%rsp)
jne 0x130734f
movq 0x88(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130731d
movq 0x88(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130731b
jmp 0x130734d
movq 0x88(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5898(%rsp)
cmpq $0x0, 0x5898(%rsp)
je 0x130734b
movq 0x5898(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130734d
jmp 0x130734f
movq 0x88(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13073aa
movq %rax, %rdi
callq 0x678a0
jmp 0x13073ac
leaq 0xa70(%rsp), %rax
movq %rax, 0x2ed0(%rsp)
movq 0x2ed0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x80(%rsp)
leaq 0xa70(%rsp), %rax
movq %rax, 0x3350(%rsp)
movq 0x3350(%rsp), %rax
movq %rax, 0x50e8(%rsp)
movq 0x50e8(%rsp), %rax
movq %rax, 0x78(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130748e
movq 0x78(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x50e4(%rsp) # imm = 0xFFFFFFFF
movl 0x50e4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x50e0(%rsp)
cmpl $0x1, 0x50e0(%rsp)
jne 0x130748e
movq 0x78(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130745f
movq 0x78(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130745d
jmp 0x130748c
movq 0x78(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5b40(%rsp)
cmpq $0x0, 0x5b40(%rsp)
je 0x130748a
movq 0x5b40(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130748c
jmp 0x130748e
movq 0x78(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13074e6
movq %rax, %rdi
callq 0x678a0
movq 0x80(%rsp), %rax
movq %rax, 0xab8(%rsp)
movq 0x2b98(%rsp), %rcx
movl 0xb3c(%rsp), %eax
leaq 0xa20(%rsp), %rdx
movq %rdx, 0x3380(%rsp)
movq %rcx, 0x3378(%rsp)
movl %eax, 0x3374(%rsp)
movq 0x3378(%rsp), %rax
movq %rax, 0x70(%rsp)
movb $0x0, 0x3373(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3374(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xa20(%rsp), %r10
movq %r10, 0x4718(%rsp)
movl %r9d, 0x4714(%rsp)
movl %r8d, 0x4710(%rsp)
movl %edi, 0x470c(%rsp)
movq %rsi, 0x4700(%rsp)
movq %rdx, 0x46f8(%rsp)
movl %ecx, 0x46f4(%rsp)
movq %rax, 0x46e8(%rsp)
movq 0x4718(%rsp), %rcx
movq %rcx, 0x68(%rsp)
movq 0x4700(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x46f8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x46f4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x46e8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4714(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4710(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x470c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e78(%rsp)
movl $0x10, 0x4e74(%rsp)
movq 0x4e78(%rsp), %rax
movslq 0x4e74(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e74(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x70(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xa48(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13076a6
movq 0x70(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xa60(%rsp)
movb $0x1, 0x3373(%rsp)
testb $0x1, 0x3373(%rsp)
jne 0x13077d5
leaq 0xa20(%rsp), %rax
movq %rax, 0x3388(%rsp)
movq 0x3388(%rsp), %rax
movq %rax, 0x50a8(%rsp)
movq 0x50a8(%rsp), %rax
movq %rax, 0x60(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130777b
movq 0x60(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x50a4(%rsp) # imm = 0xFFFFFFFF
movl 0x50a4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x50a0(%rsp)
cmpl $0x1, 0x50a0(%rsp)
jne 0x130777b
movq 0x60(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130774c
movq 0x60(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130774a
jmp 0x1307779
movq 0x60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5b60(%rsp)
cmpq $0x0, 0x5b60(%rsp)
je 0x1307777
movq 0x5b60(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1307779
jmp 0x130777b
movq 0x60(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13077d3
movq %rax, %rdi
callq 0x678a0
jmp 0x13077d5
leaq 0xa20(%rsp), %rax
movq %rax, 0x35b8(%rsp)
movq 0x35b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x58(%rsp)
leaq 0xa20(%rsp), %rax
movq %rax, 0x3360(%rsp)
movq 0x3360(%rsp), %rax
movq %rax, 0x50c8(%rsp)
movq 0x50c8(%rsp), %rax
movq %rax, 0x50(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13078b4
movq 0x50(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x50c4(%rsp) # imm = 0xFFFFFFFF
movl 0x50c4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x50c0(%rsp)
cmpl $0x1, 0x50c0(%rsp)
jne 0x13078b4
movq 0x50(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1307885
movq 0x50(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1307883
jmp 0x13078b2
movq 0x50(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5b50(%rsp)
cmpq $0x0, 0x5b50(%rsp)
je 0x13078b0
movq 0x5b50(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13078b2
jmp 0x13078b4
movq 0x50(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130790c
movq %rax, %rdi
callq 0x678a0
movq 0x58(%rsp), %rax
movq %rax, 0xa68(%rsp)
movl $0x0, 0xa1c(%rsp)
movl 0xa1c(%rsp), %eax
cmpl 0x2b58(%rsp), %eax
jge 0x13079fd
movq 0xab8(%rsp), %rax
movq %rax, 0x3660(%rsp)
movq 0x3660(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x9c0(%rsp)
leaq 0x2b8f(%rsp), %rdi
leaq 0xac0(%rsp), %rsi
leaq 0x9c0(%rsp), %rdx
callq 0x14535e0
vmovaps %zmm0, 0x980(%rsp)
movq 0xa68(%rsp), %rax
vmovaps 0x980(%rsp), %zmm0
movq %rax, 0x3878(%rsp)
vmovaps %zmm0, 0x3800(%rsp)
vmovaps 0x3800(%rsp), %zmm0
movq 0x3878(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0xab8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xab8(%rsp)
movq 0xa68(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xa68(%rsp)
movl 0xa1c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xa1c(%rsp)
jmp 0x1307924
jmp 0x13079ff
movl 0xb3c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xb3c(%rsp)
jmp 0x130704e
movl $0x0, 0x2bb4(%rsp)
jmp 0x1307dd4
movq 0x2ba0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1307ca9
movq 0x2b98(%rsp), %rdi
movl 0x2b68(%rsp), %esi
movl 0x2b64(%rsp), %edx
movq 0x2b50(%rsp), %rcx
movl 0x2b4c(%rsp), %r8d
movq 0x2b90(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x2b98(%rsp), %rax
movq %rax, 0x2bc0(%rsp)
movq 0x2bc0(%rsp), %rcx
movq %rcx, 0x40(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x4f(%rsp)
je 0x1307ac3
movq 0x40(%rsp), %rax
movq %rax, 0x4320(%rsp)
movq 0x4320(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x4f(%rsp)
movb 0x4f(%rsp), %al
testb $0x1, %al
jne 0x1307acd
jmp 0x1307add
movl $0xffffff9c, 0x2bb4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1307dd4
movq 0x2ba8(%rsp), %rax
movq %rax, 0x2ec8(%rsp)
movq 0x2ec8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x978(%rsp)
movq 0x2ba0(%rsp), %rax
movq %rax, 0x2ec0(%rsp)
movq 0x2ec0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x970(%rsp)
movq 0x2b98(%rsp), %rax
movq %rax, 0x35b0(%rsp)
movq 0x35b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x968(%rsp)
movl $0x0, 0x964(%rsp)
movl 0x964(%rsp), %eax
cmpl 0x2b64(%rsp), %eax
jge 0x1307c99
movq 0x978(%rsp), %rax
movq %rax, 0x3658(%rsp)
movq 0x3658(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x900(%rsp)
movl $0x0, 0x8fc(%rsp)
movl 0x8fc(%rsp), %eax
cmpl 0x2b68(%rsp), %eax
jge 0x1307c6f
movq 0x970(%rsp), %rax
movq %rax, 0x3650(%rsp)
movq 0x3650(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x880(%rsp)
leaq 0x2b8f(%rsp), %rdi
leaq 0x900(%rsp), %rsi
leaq 0x880(%rsp), %rdx
callq 0x14535e0
vmovaps %zmm0, 0x840(%rsp)
movq 0x968(%rsp), %rax
vmovaps 0x840(%rsp), %zmm0
movq %rax, 0x37f8(%rsp)
vmovaps %zmm0, 0x3780(%rsp)
vmovaps 0x3780(%rsp), %zmm0
movq 0x37f8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x970(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x970(%rsp)
movq 0x968(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x968(%rsp)
movl 0x8fc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x8fc(%rsp)
jmp 0x1307b96
movq 0x978(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x978(%rsp)
movl 0x964(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x964(%rsp)
jmp 0x1307b51
movl $0x0, 0x2bb4(%rsp)
jmp 0x1307dd4
movq 0x2ba0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1307dc1
movq 0x2b98(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movq 0x2b70(%rsp), %rdx
movl 0x2b6c(%rsp), %ecx
movq 0x2b90(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6be00
movq 0x2b98(%rsp), %rax
movq %rax, 0x2bb8(%rsp)
movq 0x2bb8(%rsp), %rcx
movq %rcx, 0x30(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x3f(%rsp)
je 0x1307d3f
movq 0x30(%rsp), %rax
movq %rax, 0x4328(%rsp)
movq 0x4328(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x3f(%rsp)
movb 0x3f(%rsp), %al
testb $0x1, %al
jne 0x1307d49
jmp 0x1307d56
movl $0xffffff9c, 0x2bb4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1307dd4
movq 0x2ba0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1307d9c
cmpl $0x1, 0x2b4c(%rsp)
jne 0x1307d9c
movq 0x2ba8(%rsp), %rdi
movq 0x2ba0(%rsp), %rsi
movq 0x2b98(%rsp), %rdx
movq 0x2b90(%rsp), %rcx
callq 0x143fe80
movl %eax, 0x2bb4(%rsp)
jmp 0x1307dd4
movq 0x2ba8(%rsp), %rdi
movq 0x2ba0(%rsp), %rsi
movq 0x2b98(%rsp), %rdx
movq 0x2b90(%rsp), %rcx
callq 0x143ec80
jmp 0x1307dc3
jmp 0x1307dc5
jmp 0x1307dc7
jmp 0x1307dc9
movl $0x0, 0x2bb4(%rsp)
movl 0x2bb4(%rsp), %eax
movq %rbp, %rsp
popq %rbp
vzeroupper
retq
nopw %cs:(%rax,%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/build_O0/src/layer/x86/binaryop_x86_avx512.cpp
|
2,112,891
|
int ncnn::binary_op_pack16<ncnn::BinaryOp_x86_avx512_functor::binary_op_sub>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op_pack16(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int size = w * h * d;
size_t elemsize = a.elemsize;
int elempack = a.elempack;
int w1 = b.w;
int h1 = b.h;
int d1 = b.d;
int channels1 = b.c;
int size1 = w1 * h1 * d1;
size_t elemsize1 = b.elemsize;
int elempack1 = b.elempack;
if (a.dims == 4)
{
if (b.dims == 4)
{
// type 29
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
c.create(w, h, d, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 3)
{
// type 28
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
for (int y = 0; y < h; y++)
{
__m512 _b0 = _mm512_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
ptr1 += 16;
}
}
}
return 0;
}
if (b.dims == 2)
{
// type 27
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
__m512 _b0 = _mm512_loadu_ps(ptr1);
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
}
ptr1 += 16;
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1 && elempack1 == 1)
{
// type 25
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 26
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
__m512 _b0 = _mm512_loadu_ps((const float*)b + q * 16);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
}
return 0;
}
}
else if (a.dims == 3)
{
if (b.dims == 4)
{
// type 23
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
for (int y = 0; y < h1; y++)
{
__m512 _a0 = _mm512_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m512 _p = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
ptr += 16;
}
}
}
return 0;
}
if (b.dims == 3)
{
if (w1 == 1 && h1 == 1 && channels1 == channels)
{
// special type 1
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* b0 = b.channel(q);
float* outptr = c.channel(q);
__m512 _b0 = _mm512_loadu_ps(b0);
for (int i = 0; i < size; i++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
}
return 0;
}
if (w1 == w && h1 == h && channels1 == 1 && elempack1 == 1)
{
// special type 2
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b;
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _p1 = _mm512_set1_ps(*ptr1);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
ptr1 += 1;
outptr += 16;
}
}
return 0;
}
if (w == 1 && h == 1 && channels1 == channels)
{
// special type 3
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* a0 = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
__m512 _a0 = _mm512_loadu_ps(a0);
for (int i = 0; i < size1; i++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
}
return 0;
}
if (w1 == w && h1 == h && channels == 1 && elempack == 1)
{
// special type 4
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a;
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m512 _p = _mm512_set1_ps(*ptr);
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr += 1;
ptr1 += 16;
outptr += 16;
}
}
return 0;
}
if (w != 1 && w1 == 1 && h1 == h && channels1 == channels)
{
// special type 5
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1 + y * 16);
for (int x = 0; x < w; x++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
}
}
return 0;
}
if (w1 == w && h != 1 && h1 == 1 && channels1 == channels)
{
// special type 6
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _p1 = _mm512_loadu_ps(ptr1 + x * 16);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
}
}
return 0;
}
if (w1 != 1 && w == 1 && h1 == h && channels1 == channels)
{
// special type 7
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
__m512 _p = _mm512_loadu_ps(ptr + y * 16);
for (int x = 0; x < w1; x++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
}
}
return 0;
}
if (w1 == w && h1 != 1 && h == 1 && channels1 == channels)
{
// special type 8
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
__m512 _p = _mm512_loadu_ps(ptr + x * 16);
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
}
}
return 0;
}
// type 19
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 18
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
__m512 _b0 = _mm512_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
ptr1 += 16;
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1 && elempack1 == 1)
{
// type 16
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 17
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
__m512 _b0 = _mm512_loadu_ps((const float*)b + q * 16);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
}
return 0;
}
}
else if (a.dims == 2)
{
if (b.dims == 4)
{
// type 22
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
__m512 _a0 = _mm512_loadu_ps(ptr);
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
__m512 _p = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
}
ptr += 16;
}
}
return 0;
}
if (b.dims == 3)
{
// type 14
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
__m512 _a0 = _mm512_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
ptr += 16;
}
}
return 0;
}
c.create(w, h, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 13
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
if (b.dims == 1)
{
c.create(w, h, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1 && elempack1 == 1)
{
// type 11
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 12
const float* ptr = a;
const float* ptr1 = b;
float* outptr = c;
for (int y = 0; y < h; y++)
{
__m512 _b0 = _mm512_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
ptr1 += 16;
}
return 0;
}
}
else if (a.dims == 1)
{
if (a.w == 1 && elempack == 1)
{
// type 2 3 4 20
return binary_op_2_3_4_20<Op>(a, b, c, opt);
}
if (b.dims == 4)
{
// type 21
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
__m512 _a0 = _mm512_loadu_ps((const float*)a + q * 16);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
}
return 0;
}
if (b.dims == 3)
{
// type 9
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
__m512 _a0 = _mm512_loadu_ps((const float*)a + q * 16);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
}
return 0;
}
if (b.dims == 2)
{
// type 8
c.create(w1, h1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
const float* ptr = a;
const float* ptr1 = b;
float* outptr = c;
for (int y = 0; y < h1; y++)
{
__m512 _a0 = _mm512_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
ptr += 16;
}
return 0;
}
if (b.dims == 1)
{
c.create(w, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1 && elempack1 == 1)
{
// type 6
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 7
binary_op_7_13_19_29<Op>(a, b, c, opt);
}
}
return 0;
}
|
pushq %rbp
movq %rsp, %rbp
andq $-0x40, %rsp
subq $0x56c0, %rsp # imm = 0x56C0
movq %rdi, 0x2bc8(%rsp)
movq %rsi, 0x2bc0(%rsp)
movq %rdx, 0x2bb8(%rsp)
movq %rcx, 0x2bb0(%rsp)
movq 0x2bc8(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x2ba8(%rsp)
movq 0x2bc8(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x2ba4(%rsp)
movq 0x2bc8(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x2ba0(%rsp)
movq 0x2bc8(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x2b9c(%rsp)
movl 0x2ba8(%rsp), %eax
imull 0x2ba4(%rsp), %eax
imull 0x2ba0(%rsp), %eax
movl %eax, 0x2b98(%rsp)
movq 0x2bc8(%rsp), %rax
movq 0x10(%rax), %rax
movq %rax, 0x2b90(%rsp)
movq 0x2bc8(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x2b8c(%rsp)
movq 0x2bc0(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x2b88(%rsp)
movq 0x2bc0(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x2b84(%rsp)
movq 0x2bc0(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x2b80(%rsp)
movq 0x2bc0(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x2b7c(%rsp)
movl 0x2b88(%rsp), %eax
imull 0x2b84(%rsp), %eax
imull 0x2b80(%rsp), %eax
movl %eax, 0x2b78(%rsp)
movq 0x2bc0(%rsp), %rax
movq 0x10(%rax), %rax
movq %rax, 0x2b70(%rsp)
movq 0x2bc0(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x2b6c(%rsp)
movq 0x2bc8(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x130a4cf
movq 0x2bc0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1307f88
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x1441b80
movl %eax, 0x2bd4(%rsp)
jmp 0x13173b0
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movl 0x2ba0(%rsp), %ecx
movl 0x2b9c(%rsp), %r8d
movq 0x2b90(%rsp), %r9
movl 0x2b8c(%rsp), %r10d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c68(%rsp)
movq 0x2c68(%rsp), %rcx
movq %rcx, 0x830(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x83f(%rsp)
je 0x1308038
movq 0x830(%rsp), %rax
movq %rax, 0x4178(%rsp)
movq 0x4178(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x83f(%rsp)
movb 0x83f(%rsp), %al
testb $0x1, %al
jne 0x1308045
jmp 0x1308055
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x13173b0
movq 0x2bc0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1308f4f
movl $0x0, 0x2b68(%rsp)
movl 0x2b68(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jge 0x1308f3f
movq 0x2bc8(%rsp), %rcx
movl 0x2b68(%rsp), %eax
leaq 0x2b18(%rsp), %rdx
movq %rdx, 0x2ed8(%rsp)
movq %rcx, 0x2ed0(%rsp)
movl %eax, 0x2ecc(%rsp)
movq 0x2ed0(%rsp), %rax
movq %rax, 0x828(%rsp)
movb $0x0, 0x2ecb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2ecc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2b18(%rsp), %r10
movq %r10, 0x4630(%rsp)
movl %r9d, 0x462c(%rsp)
movl %r8d, 0x4628(%rsp)
movl %edi, 0x4624(%rsp)
movq %rsi, 0x4618(%rsp)
movq %rdx, 0x4610(%rsp)
movl %ecx, 0x460c(%rsp)
movq %rax, 0x4600(%rsp)
movq 0x4630(%rsp), %rcx
movq %rcx, 0x820(%rsp)
movq 0x4618(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4610(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x460c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4600(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x462c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4628(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4624(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d48(%rsp)
movl $0x10, 0x4d44(%rsp)
movq 0x4d48(%rsp), %rax
movslq 0x4d44(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d44(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x828(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2b40(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1308242
movq 0x828(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2b58(%rsp)
movb $0x1, 0x2ecb(%rsp)
testb $0x1, 0x2ecb(%rsp)
jne 0x1308383
leaq 0x2b18(%rsp), %rax
movq %rax, 0x3000(%rsp)
movq 0x3000(%rsp), %rax
movq %rax, 0x53e8(%rsp)
movq 0x53e8(%rsp), %rax
movq %rax, 0x818(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1308326
movq 0x818(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x53e4(%rsp) # imm = 0xFFFFFFFF
movl 0x53e4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x53e0(%rsp)
cmpl $0x1, 0x53e0(%rsp)
jne 0x1308326
movq 0x818(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13082f4
movq 0x818(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13082f2
jmp 0x1308324
movq 0x818(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x53f0(%rsp)
cmpq $0x0, 0x53f0(%rsp)
je 0x1308322
movq 0x53f0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1308324
jmp 0x1308326
movq 0x818(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1308381
movq %rax, %rdi
callq 0x678a0
jmp 0x1308383
leaq 0x2b18(%rsp), %rax
movq %rax, 0x2ff8(%rsp)
movq 0x2ff8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x808(%rsp)
leaq 0x2b18(%rsp), %rax
movq %rax, 0x30d0(%rsp)
movq 0x30d0(%rsp), %rax
movq %rax, 0x5248(%rsp)
movq 0x5248(%rsp), %rax
movq %rax, 0x810(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1308474
movq 0x810(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5244(%rsp) # imm = 0xFFFFFFFF
movl 0x5244(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5240(%rsp)
cmpl $0x1, 0x5240(%rsp)
jne 0x1308474
movq 0x810(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1308442
movq 0x810(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1308440
jmp 0x1308472
movq 0x810(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54c0(%rsp)
cmpq $0x0, 0x54c0(%rsp)
je 0x1308470
movq 0x54c0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1308472
jmp 0x1308474
movq 0x810(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13084cf
movq %rax, %rdi
callq 0x678a0
movq 0x808(%rsp), %rax
movq %rax, 0x2b60(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x2b68(%rsp), %eax
leaq 0x2ac8(%rsp), %rdx
movq %rdx, 0x2ec0(%rsp)
movq %rcx, 0x2eb8(%rsp)
movl %eax, 0x2eb4(%rsp)
movq 0x2eb8(%rsp), %rax
movq %rax, 0x800(%rsp)
movb $0x0, 0x2eb3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2eb4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2ac8(%rsp), %r10
movq %r10, 0x4668(%rsp)
movl %r9d, 0x4664(%rsp)
movl %r8d, 0x4660(%rsp)
movl %edi, 0x465c(%rsp)
movq %rsi, 0x4650(%rsp)
movq %rdx, 0x4648(%rsp)
movl %ecx, 0x4644(%rsp)
movq %rax, 0x4638(%rsp)
movq 0x4668(%rsp), %rcx
movq %rcx, 0x7f8(%rsp)
movq 0x4650(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4648(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4644(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4638(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4664(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4660(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x465c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d38(%rsp)
movl $0x10, 0x4d34(%rsp)
movq 0x4d38(%rsp), %rax
movslq 0x4d34(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d34(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x800(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2af0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x130869b
movq 0x800(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2b08(%rsp)
movb $0x1, 0x2eb3(%rsp)
testb $0x1, 0x2eb3(%rsp)
jne 0x13087dc
leaq 0x2ac8(%rsp), %rax
movq %rax, 0x3008(%rsp)
movq 0x3008(%rsp), %rax
movq %rax, 0x53d8(%rsp)
movq 0x53d8(%rsp), %rax
movq %rax, 0x7f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130877f
movq 0x7f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x53d4(%rsp) # imm = 0xFFFFFFFF
movl 0x53d4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x53d0(%rsp)
cmpl $0x1, 0x53d0(%rsp)
jne 0x130877f
movq 0x7f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130874d
movq 0x7f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130874b
jmp 0x130877d
movq 0x7f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x53f8(%rsp)
cmpq $0x0, 0x53f8(%rsp)
je 0x130877b
movq 0x53f8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130877d
jmp 0x130877f
movq 0x7f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13087da
movq %rax, %rdi
callq 0x678a0
jmp 0x13087dc
leaq 0x2ac8(%rsp), %rax
movq %rax, 0x2ff0(%rsp)
movq 0x2ff0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7e0(%rsp)
leaq 0x2ac8(%rsp), %rax
movq %rax, 0x30d8(%rsp)
movq 0x30d8(%rsp), %rax
movq %rax, 0x5238(%rsp)
movq 0x5238(%rsp), %rax
movq %rax, 0x7e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13088cd
movq 0x7e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5234(%rsp) # imm = 0xFFFFFFFF
movl 0x5234(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5230(%rsp)
cmpl $0x1, 0x5230(%rsp)
jne 0x13088cd
movq 0x7e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130889b
movq 0x7e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1308899
jmp 0x13088cb
movq 0x7e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54c8(%rsp)
cmpq $0x0, 0x54c8(%rsp)
je 0x13088c9
movq 0x54c8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13088cb
jmp 0x13088cd
movq 0x7e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1308928
movq %rax, %rdi
callq 0x678a0
movq 0x7e0(%rsp), %rax
movq %rax, 0x2b10(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x2b68(%rsp), %eax
leaq 0x2a78(%rsp), %rdx
movq %rdx, 0x3460(%rsp)
movq %rcx, 0x3458(%rsp)
movl %eax, 0x3454(%rsp)
movq 0x3458(%rsp), %rax
movq %rax, 0x7d8(%rsp)
movb $0x0, 0x3453(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3454(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2a78(%rsp), %r10
movq %r10, 0x4240(%rsp)
movl %r9d, 0x423c(%rsp)
movl %r8d, 0x4238(%rsp)
movl %edi, 0x4234(%rsp)
movq %rsi, 0x4228(%rsp)
movq %rdx, 0x4220(%rsp)
movl %ecx, 0x421c(%rsp)
movq %rax, 0x4210(%rsp)
movq 0x4240(%rsp), %rcx
movq %rcx, 0x7d0(%rsp)
movq 0x4228(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4220(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x421c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4210(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x423c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4238(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4234(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e68(%rsp)
movl $0x10, 0x4e64(%rsp)
movq 0x4e68(%rsp), %rax
movslq 0x4e64(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e64(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7d8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2aa0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1308af4
movq 0x7d8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2ab8(%rsp)
movb $0x1, 0x3453(%rsp)
testb $0x1, 0x3453(%rsp)
jne 0x1308c35
leaq 0x2a78(%rsp), %rax
movq %rax, 0x3468(%rsp)
movq 0x3468(%rsp), %rax
movq %rax, 0x4e78(%rsp)
movq 0x4e78(%rsp), %rax
movq %rax, 0x7c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1308bd8
movq 0x7c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4e74(%rsp) # imm = 0xFFFFFFFF
movl 0x4e74(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4e70(%rsp)
cmpl $0x1, 0x4e70(%rsp)
jne 0x1308bd8
movq 0x7c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1308ba6
movq 0x7c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1308ba4
jmp 0x1308bd6
movq 0x7c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x56a8(%rsp)
cmpq $0x0, 0x56a8(%rsp)
je 0x1308bd4
movq 0x56a8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1308bd6
jmp 0x1308bd8
movq 0x7c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1308c33
movq %rax, %rdi
callq 0x678a0
jmp 0x1308c35
leaq 0x2a78(%rsp), %rax
movq %rax, 0x3508(%rsp)
movq 0x3508(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7b8(%rsp)
leaq 0x2a78(%rsp), %rax
movq %rax, 0x30e0(%rsp)
movq 0x30e0(%rsp), %rax
movq %rax, 0x5228(%rsp)
movq 0x5228(%rsp), %rax
movq %rax, 0x7c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1308d26
movq 0x7c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5224(%rsp) # imm = 0xFFFFFFFF
movl 0x5224(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5220(%rsp)
cmpl $0x1, 0x5220(%rsp)
jne 0x1308d26
movq 0x7c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1308cf4
movq 0x7c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1308cf2
jmp 0x1308d24
movq 0x7c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54d0(%rsp)
cmpq $0x0, 0x54d0(%rsp)
je 0x1308d22
movq 0x54d0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1308d24
jmp 0x1308d26
movq 0x7c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1308d81
movq %rax, %rdi
callq 0x678a0
movq 0x7b8(%rsp), %rax
movq %rax, 0x2ac0(%rsp)
movl $0x0, 0x2a74(%rsp)
movl 0x2a74(%rsp), %eax
cmpl 0x2ba0(%rsp), %eax
jge 0x1308f27
movl $0x0, 0x2a70(%rsp)
movl 0x2a70(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jge 0x1308f0f
movq 0x2b10(%rsp), %rax
movq %rax, 0x3638(%rsp)
movq 0x3638(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2a00(%rsp)
movl $0x0, 0x29fc(%rsp)
movl 0x29fc(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jge 0x1308ee5
movq 0x2b60(%rsp), %rax
movq %rax, 0x3630(%rsp)
movq 0x3630(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2980(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x2980(%rsp), %rsi
leaq 0x2a00(%rsp), %rdx
callq 0x1453700
vmovaps %zmm0, 0x2940(%rsp)
movq 0x2ac0(%rsp), %rax
vmovaps 0x2940(%rsp), %zmm0
movq %rax, 0x4038(%rsp)
vmovaps %zmm0, 0x3fc0(%rsp)
vmovaps 0x3fc0(%rsp), %zmm0
movq 0x4038(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x2b60(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2b60(%rsp)
movq 0x2ac0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2ac0(%rsp)
movl 0x29fc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x29fc(%rsp)
jmp 0x1308e03
movq 0x2b10(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2b10(%rsp)
movl 0x2a70(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x2a70(%rsp)
jmp 0x1308dbb
jmp 0x1308f11
movl 0x2a74(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x2a74(%rsp)
jmp 0x1308d9c
jmp 0x1308f29
movl 0x2b68(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x2b68(%rsp)
jmp 0x1308072
movl $0x0, 0x2bd4(%rsp)
jmp 0x13173b0
movq 0x2bc0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1309a39
movl $0x0, 0x293c(%rsp)
movl 0x293c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jge 0x1309a29
movq 0x2bc8(%rsp), %rcx
movl 0x293c(%rsp), %eax
leaq 0x28e8(%rsp), %rdx
movq %rdx, 0x2ea8(%rsp)
movq %rcx, 0x2ea0(%rsp)
movl %eax, 0x2e9c(%rsp)
movq 0x2ea0(%rsp), %rax
movq %rax, 0x7b0(%rsp)
movb $0x0, 0x2e9b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e9c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x28e8(%rsp), %r10
movq %r10, 0x46a0(%rsp)
movl %r9d, 0x469c(%rsp)
movl %r8d, 0x4698(%rsp)
movl %edi, 0x4694(%rsp)
movq %rsi, 0x4688(%rsp)
movq %rdx, 0x4680(%rsp)
movl %ecx, 0x467c(%rsp)
movq %rax, 0x4670(%rsp)
movq 0x46a0(%rsp), %rcx
movq %rcx, 0x7a8(%rsp)
movq 0x4688(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4680(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x467c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4670(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x469c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4698(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4694(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d28(%rsp)
movl $0x10, 0x4d24(%rsp)
movq 0x4d28(%rsp), %rax
movslq 0x4d24(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d24(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7b0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2910(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x130913c
movq 0x7b0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2928(%rsp)
movb $0x1, 0x2e9b(%rsp)
testb $0x1, 0x2e9b(%rsp)
jne 0x130927d
leaq 0x28e8(%rsp), %rax
movq %rax, 0x3010(%rsp)
movq 0x3010(%rsp), %rax
movq %rax, 0x53c8(%rsp)
movq 0x53c8(%rsp), %rax
movq %rax, 0x7a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1309220
movq 0x7a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x53c4(%rsp) # imm = 0xFFFFFFFF
movl 0x53c4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x53c0(%rsp)
cmpl $0x1, 0x53c0(%rsp)
jne 0x1309220
movq 0x7a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13091ee
movq 0x7a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13091ec
jmp 0x130921e
movq 0x7a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5400(%rsp)
cmpq $0x0, 0x5400(%rsp)
je 0x130921c
movq 0x5400(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130921e
jmp 0x1309220
movq 0x7a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130927b
movq %rax, %rdi
callq 0x678a0
jmp 0x130927d
leaq 0x28e8(%rsp), %rax
movq %rax, 0x2fe8(%rsp)
movq 0x2fe8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x790(%rsp)
leaq 0x28e8(%rsp), %rax
movq %rax, 0x30e8(%rsp)
movq 0x30e8(%rsp), %rax
movq %rax, 0x5218(%rsp)
movq 0x5218(%rsp), %rax
movq %rax, 0x798(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130936e
movq 0x798(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5214(%rsp) # imm = 0xFFFFFFFF
movl 0x5214(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5210(%rsp)
cmpl $0x1, 0x5210(%rsp)
jne 0x130936e
movq 0x798(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130933c
movq 0x798(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130933a
jmp 0x130936c
movq 0x798(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54d8(%rsp)
cmpq $0x0, 0x54d8(%rsp)
je 0x130936a
movq 0x54d8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130936c
jmp 0x130936e
movq 0x798(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13093c9
movq %rax, %rdi
callq 0x678a0
movq 0x790(%rsp), %rax
movq %rax, 0x2930(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x293c(%rsp), %eax
movq %rcx, 0x4078(%rsp)
movl %eax, 0x4074(%rsp)
movq 0x4078(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x4074(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x28e0(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x293c(%rsp), %eax
leaq 0x2890(%rsp), %rdx
movq %rdx, 0x3440(%rsp)
movq %rcx, 0x3438(%rsp)
movl %eax, 0x3434(%rsp)
movq 0x3438(%rsp), %rax
movq %rax, 0x788(%rsp)
movb $0x0, 0x3433(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3434(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2890(%rsp), %r10
movq %r10, 0x4278(%rsp)
movl %r9d, 0x4274(%rsp)
movl %r8d, 0x4270(%rsp)
movl %edi, 0x426c(%rsp)
movq %rsi, 0x4260(%rsp)
movq %rdx, 0x4258(%rsp)
movl %ecx, 0x4254(%rsp)
movq %rax, 0x4248(%rsp)
movq 0x4278(%rsp), %rcx
movq %rcx, 0x780(%rsp)
movq 0x4260(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4258(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4254(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4248(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4274(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4270(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x426c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e58(%rsp)
movl $0x10, 0x4e54(%rsp)
movq 0x4e58(%rsp), %rax
movslq 0x4e54(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e54(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x788(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x28b8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13095de
movq 0x788(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x28d0(%rsp)
movb $0x1, 0x3433(%rsp)
testb $0x1, 0x3433(%rsp)
jne 0x130971f
leaq 0x2890(%rsp), %rax
movq %rax, 0x3448(%rsp)
movq 0x3448(%rsp), %rax
movq %rax, 0x4e88(%rsp)
movq 0x4e88(%rsp), %rax
movq %rax, 0x778(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13096c2
movq 0x778(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4e84(%rsp) # imm = 0xFFFFFFFF
movl 0x4e84(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4e80(%rsp)
cmpl $0x1, 0x4e80(%rsp)
jne 0x13096c2
movq 0x778(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1309690
movq 0x778(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130968e
jmp 0x13096c0
movq 0x778(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x56a0(%rsp)
cmpq $0x0, 0x56a0(%rsp)
je 0x13096be
movq 0x56a0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13096c0
jmp 0x13096c2
movq 0x778(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130971d
movq %rax, %rdi
callq 0x678a0
jmp 0x130971f
leaq 0x2890(%rsp), %rax
movq %rax, 0x3500(%rsp)
movq 0x3500(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x768(%rsp)
leaq 0x2890(%rsp), %rax
movq %rax, 0x30f0(%rsp)
movq 0x30f0(%rsp), %rax
movq %rax, 0x5208(%rsp)
movq 0x5208(%rsp), %rax
movq %rax, 0x770(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1309810
movq 0x770(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5204(%rsp) # imm = 0xFFFFFFFF
movl 0x5204(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5200(%rsp)
cmpl $0x1, 0x5200(%rsp)
jne 0x1309810
movq 0x770(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13097de
movq 0x770(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13097dc
jmp 0x130980e
movq 0x770(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54e0(%rsp)
cmpq $0x0, 0x54e0(%rsp)
je 0x130980c
movq 0x54e0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130980e
jmp 0x1309810
movq 0x770(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130986b
movq %rax, %rdi
callq 0x678a0
movq 0x768(%rsp), %rax
movq %rax, 0x28d8(%rsp)
movl $0x0, 0x288c(%rsp)
movl 0x288c(%rsp), %eax
cmpl 0x2ba0(%rsp), %eax
jge 0x1309a11
movq 0x28e0(%rsp), %rax
movq %rax, 0x3628(%rsp)
movq 0x3628(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2840(%rsp)
movl $0x0, 0x283c(%rsp)
movl 0x283c(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jge 0x13099e7
movl $0x0, 0x2838(%rsp)
movl 0x2838(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jge 0x13099cf
movq 0x2930(%rsp), %rax
movq %rax, 0x3620(%rsp)
movq 0x3620(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x27c0(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x27c0(%rsp), %rsi
leaq 0x2840(%rsp), %rdx
callq 0x1453700
vmovaps %zmm0, 0x2780(%rsp)
movq 0x28d8(%rsp), %rax
vmovaps 0x2780(%rsp), %zmm0
movq %rax, 0x3fb8(%rsp)
vmovaps %zmm0, 0x3f40(%rsp)
vmovaps 0x3f40(%rsp), %zmm0
movq 0x3fb8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x2930(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2930(%rsp)
movq 0x28d8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x28d8(%rsp)
movl 0x2838(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x2838(%rsp)
jmp 0x13098ed
jmp 0x13099d1
movl 0x283c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x283c(%rsp)
jmp 0x13098ce
movq 0x28e0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x28e0(%rsp)
movl 0x288c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x288c(%rsp)
jmp 0x1309886
jmp 0x1309a13
movl 0x293c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x293c(%rsp)
jmp 0x1308f6c
movl $0x0, 0x2bd4(%rsp)
jmp 0x13173b0
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x130a4ca
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1309a94
cmpl $0x1, 0x2b6c(%rsp)
jne 0x1309a94
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x1442d90
movl %eax, 0x2bd4(%rsp)
jmp 0x13173b0
movl $0x0, 0x277c(%rsp)
movl 0x277c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jge 0x130a4ba
movq 0x2bc8(%rsp), %rcx
movl 0x277c(%rsp), %eax
leaq 0x2728(%rsp), %rdx
movq %rdx, 0x2e90(%rsp)
movq %rcx, 0x2e88(%rsp)
movl %eax, 0x2e84(%rsp)
movq 0x2e88(%rsp), %rax
movq %rax, 0x760(%rsp)
movb $0x0, 0x2e83(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e84(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2728(%rsp), %r10
movq %r10, 0x46d8(%rsp)
movl %r9d, 0x46d4(%rsp)
movl %r8d, 0x46d0(%rsp)
movl %edi, 0x46cc(%rsp)
movq %rsi, 0x46c0(%rsp)
movq %rdx, 0x46b8(%rsp)
movl %ecx, 0x46b4(%rsp)
movq %rax, 0x46a8(%rsp)
movq 0x46d8(%rsp), %rcx
movq %rcx, 0x758(%rsp)
movq 0x46c0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x46b8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x46b4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x46a8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x46d4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x46d0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x46cc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d18(%rsp)
movl $0x10, 0x4d14(%rsp)
movq 0x4d18(%rsp), %rax
movslq 0x4d14(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d14(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x760(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2750(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1309c6f
movq 0x760(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2768(%rsp)
movb $0x1, 0x2e83(%rsp)
testb $0x1, 0x2e83(%rsp)
jne 0x1309db0
leaq 0x2728(%rsp), %rax
movq %rax, 0x3018(%rsp)
movq 0x3018(%rsp), %rax
movq %rax, 0x53b8(%rsp)
movq 0x53b8(%rsp), %rax
movq %rax, 0x750(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1309d53
movq 0x750(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x53b4(%rsp) # imm = 0xFFFFFFFF
movl 0x53b4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x53b0(%rsp)
cmpl $0x1, 0x53b0(%rsp)
jne 0x1309d53
movq 0x750(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1309d21
movq 0x750(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1309d1f
jmp 0x1309d51
movq 0x750(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5408(%rsp)
cmpq $0x0, 0x5408(%rsp)
je 0x1309d4f
movq 0x5408(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1309d51
jmp 0x1309d53
movq 0x750(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1309dae
movq %rax, %rdi
callq 0x678a0
jmp 0x1309db0
leaq 0x2728(%rsp), %rax
movq %rax, 0x2fe0(%rsp)
movq 0x2fe0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x740(%rsp)
leaq 0x2728(%rsp), %rax
movq %rax, 0x30f8(%rsp)
movq 0x30f8(%rsp), %rax
movq %rax, 0x51f8(%rsp)
movq 0x51f8(%rsp), %rax
movq %rax, 0x748(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1309ea1
movq 0x748(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x51f4(%rsp) # imm = 0xFFFFFFFF
movl 0x51f4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x51f0(%rsp)
cmpl $0x1, 0x51f0(%rsp)
jne 0x1309ea1
movq 0x748(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1309e6f
movq 0x748(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1309e6d
jmp 0x1309e9f
movq 0x748(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54e8(%rsp)
cmpq $0x0, 0x54e8(%rsp)
je 0x1309e9d
movq 0x54e8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1309e9f
jmp 0x1309ea1
movq 0x748(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1309efc
movq %rax, %rdi
callq 0x678a0
movq 0x740(%rsp), %rax
movq %rax, 0x2770(%rsp)
movq 0x2bc0(%rsp), %rax
movq %rax, 0x2fd8(%rsp)
movq 0x2fd8(%rsp), %rax
movq (%rax), %rax
movl 0x277c(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x3618(%rsp)
movq 0x3618(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x26c0(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x277c(%rsp), %eax
leaq 0x2670(%rsp), %rdx
movq %rdx, 0x3420(%rsp)
movq %rcx, 0x3418(%rsp)
movl %eax, 0x3414(%rsp)
movq 0x3418(%rsp), %rax
movq %rax, 0x738(%rsp)
movb $0x0, 0x3413(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3414(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2670(%rsp), %r10
movq %r10, 0x42b0(%rsp)
movl %r9d, 0x42ac(%rsp)
movl %r8d, 0x42a8(%rsp)
movl %edi, 0x42a4(%rsp)
movq %rsi, 0x4298(%rsp)
movq %rdx, 0x4290(%rsp)
movl %ecx, 0x428c(%rsp)
movq %rax, 0x4280(%rsp)
movq 0x42b0(%rsp), %rcx
movq %rcx, 0x730(%rsp)
movq 0x4298(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4290(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x428c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4280(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x42ac(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x42a8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x42a4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e48(%rsp)
movl $0x10, 0x4e44(%rsp)
movq 0x4e48(%rsp), %rax
movslq 0x4e44(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e44(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x738(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2698(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x130a118
movq 0x738(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x26b0(%rsp)
movb $0x1, 0x3413(%rsp)
testb $0x1, 0x3413(%rsp)
jne 0x130a259
leaq 0x2670(%rsp), %rax
movq %rax, 0x3428(%rsp)
movq 0x3428(%rsp), %rax
movq %rax, 0x4e98(%rsp)
movq 0x4e98(%rsp), %rax
movq %rax, 0x728(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130a1fc
movq 0x728(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4e94(%rsp) # imm = 0xFFFFFFFF
movl 0x4e94(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4e90(%rsp)
cmpl $0x1, 0x4e90(%rsp)
jne 0x130a1fc
movq 0x728(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130a1ca
movq 0x728(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130a1c8
jmp 0x130a1fa
movq 0x728(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5698(%rsp)
cmpq $0x0, 0x5698(%rsp)
je 0x130a1f8
movq 0x5698(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130a1fa
jmp 0x130a1fc
movq 0x728(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130a257
movq %rax, %rdi
callq 0x678a0
jmp 0x130a259
leaq 0x2670(%rsp), %rax
movq %rax, 0x34f8(%rsp)
movq 0x34f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x718(%rsp)
leaq 0x2670(%rsp), %rax
movq %rax, 0x3100(%rsp)
movq 0x3100(%rsp), %rax
movq %rax, 0x51e8(%rsp)
movq 0x51e8(%rsp), %rax
movq %rax, 0x720(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130a34a
movq 0x720(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x51e4(%rsp) # imm = 0xFFFFFFFF
movl 0x51e4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x51e0(%rsp)
cmpl $0x1, 0x51e0(%rsp)
jne 0x130a34a
movq 0x720(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130a318
movq 0x720(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130a316
jmp 0x130a348
movq 0x720(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54f0(%rsp)
cmpq $0x0, 0x54f0(%rsp)
je 0x130a346
movq 0x54f0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130a348
jmp 0x130a34a
movq 0x720(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130a3a5
movq %rax, %rdi
callq 0x678a0
movq 0x718(%rsp), %rax
movq %rax, 0x26b8(%rsp)
movl $0x0, 0x266c(%rsp)
movl 0x266c(%rsp), %eax
cmpl 0x2b98(%rsp), %eax
jge 0x130a4a2
movq 0x2770(%rsp), %rax
movq %rax, 0x3610(%rsp)
movq 0x3610(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2600(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x2600(%rsp), %rsi
leaq 0x26c0(%rsp), %rdx
callq 0x1453700
vmovaps %zmm0, 0x25c0(%rsp)
movq 0x26b8(%rsp), %rax
vmovaps 0x25c0(%rsp), %zmm0
movq %rax, 0x3f38(%rsp)
vmovaps %zmm0, 0x3ec0(%rsp)
vmovaps 0x3ec0(%rsp), %zmm0
movq 0x3f38(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x2770(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2770(%rsp)
movq 0x26b8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x26b8(%rsp)
movl 0x266c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x266c(%rsp)
jmp 0x130a3c0
jmp 0x130a4a4
movl 0x277c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x277c(%rsp)
jmp 0x1309a9f
movl $0x0, 0x2bd4(%rsp)
jmp 0x13173b0
jmp 0x13173a5
movq 0x2bc8(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1313ee4
movq 0x2bc0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x130b4a8
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b80(%rsp), %ecx
movl 0x2b7c(%rsp), %r8d
movq 0x2b70(%rsp), %r9
movl 0x2b6c(%rsp), %r10d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c60(%rsp)
movq 0x2c60(%rsp), %rcx
movq %rcx, 0x708(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x717(%rsp)
je 0x130a5a3
movq 0x708(%rsp), %rax
movq %rax, 0x4180(%rsp)
movq 0x4180(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x717(%rsp)
movb 0x717(%rsp), %al
testb $0x1, %al
jne 0x130a5b0
jmp 0x130a5c0
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x13173b0
movl $0x0, 0x25bc(%rsp)
movl 0x25bc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x130b498
movq 0x2bc8(%rsp), %rcx
movl 0x25bc(%rsp), %eax
leaq 0x2568(%rsp), %rdx
movq %rdx, 0x2e78(%rsp)
movq %rcx, 0x2e70(%rsp)
movl %eax, 0x2e6c(%rsp)
movq 0x2e70(%rsp), %rax
movq %rax, 0x700(%rsp)
movb $0x0, 0x2e6b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e6c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2568(%rsp), %r10
movq %r10, 0x4710(%rsp)
movl %r9d, 0x470c(%rsp)
movl %r8d, 0x4708(%rsp)
movl %edi, 0x4704(%rsp)
movq %rsi, 0x46f8(%rsp)
movq %rdx, 0x46f0(%rsp)
movl %ecx, 0x46ec(%rsp)
movq %rax, 0x46e0(%rsp)
movq 0x4710(%rsp), %rcx
movq %rcx, 0x6f8(%rsp)
movq 0x46f8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x46f0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x46ec(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x46e0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x470c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4708(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4704(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d08(%rsp)
movl $0x10, 0x4d04(%rsp)
movq 0x4d08(%rsp), %rax
movslq 0x4d04(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d04(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x700(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2590(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x130a79b
movq 0x700(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x25a8(%rsp)
movb $0x1, 0x2e6b(%rsp)
testb $0x1, 0x2e6b(%rsp)
jne 0x130a8dc
leaq 0x2568(%rsp), %rax
movq %rax, 0x3020(%rsp)
movq 0x3020(%rsp), %rax
movq %rax, 0x53a8(%rsp)
movq 0x53a8(%rsp), %rax
movq %rax, 0x6f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130a87f
movq 0x6f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x53a4(%rsp) # imm = 0xFFFFFFFF
movl 0x53a4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x53a0(%rsp)
cmpl $0x1, 0x53a0(%rsp)
jne 0x130a87f
movq 0x6f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130a84d
movq 0x6f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130a84b
jmp 0x130a87d
movq 0x6f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5410(%rsp)
cmpq $0x0, 0x5410(%rsp)
je 0x130a87b
movq 0x5410(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130a87d
jmp 0x130a87f
movq 0x6f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130a8da
movq %rax, %rdi
callq 0x678a0
jmp 0x130a8dc
leaq 0x2568(%rsp), %rax
movq %rax, 0x2fd0(%rsp)
movq 0x2fd0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6e0(%rsp)
leaq 0x2568(%rsp), %rax
movq %rax, 0x3108(%rsp)
movq 0x3108(%rsp), %rax
movq %rax, 0x51d8(%rsp)
movq 0x51d8(%rsp), %rax
movq %rax, 0x6e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130a9cd
movq 0x6e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x51d4(%rsp) # imm = 0xFFFFFFFF
movl 0x51d4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x51d0(%rsp)
cmpl $0x1, 0x51d0(%rsp)
jne 0x130a9cd
movq 0x6e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130a99b
movq 0x6e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130a999
jmp 0x130a9cb
movq 0x6e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54f8(%rsp)
cmpq $0x0, 0x54f8(%rsp)
je 0x130a9c9
movq 0x54f8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130a9cb
jmp 0x130a9cd
movq 0x6e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130aa28
movq %rax, %rdi
callq 0x678a0
movq 0x6e0(%rsp), %rax
movq %rax, 0x25b0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x25bc(%rsp), %eax
leaq 0x2518(%rsp), %rdx
movq %rdx, 0x2e60(%rsp)
movq %rcx, 0x2e58(%rsp)
movl %eax, 0x2e54(%rsp)
movq 0x2e58(%rsp), %rax
movq %rax, 0x6d8(%rsp)
movb $0x0, 0x2e53(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e54(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2518(%rsp), %r10
movq %r10, 0x4748(%rsp)
movl %r9d, 0x4744(%rsp)
movl %r8d, 0x4740(%rsp)
movl %edi, 0x473c(%rsp)
movq %rsi, 0x4730(%rsp)
movq %rdx, 0x4728(%rsp)
movl %ecx, 0x4724(%rsp)
movq %rax, 0x4718(%rsp)
movq 0x4748(%rsp), %rcx
movq %rcx, 0x6d0(%rsp)
movq 0x4730(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4728(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4724(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4718(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4744(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4740(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x473c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4cf8(%rsp)
movl $0x10, 0x4cf4(%rsp)
movq 0x4cf8(%rsp), %rax
movslq 0x4cf4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4cf4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6d8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2540(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x130abf4
movq 0x6d8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2558(%rsp)
movb $0x1, 0x2e53(%rsp)
testb $0x1, 0x2e53(%rsp)
jne 0x130ad35
leaq 0x2518(%rsp), %rax
movq %rax, 0x3028(%rsp)
movq 0x3028(%rsp), %rax
movq %rax, 0x5398(%rsp)
movq 0x5398(%rsp), %rax
movq %rax, 0x6c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130acd8
movq 0x6c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5394(%rsp) # imm = 0xFFFFFFFF
movl 0x5394(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5390(%rsp)
cmpl $0x1, 0x5390(%rsp)
jne 0x130acd8
movq 0x6c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130aca6
movq 0x6c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130aca4
jmp 0x130acd6
movq 0x6c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5418(%rsp)
cmpq $0x0, 0x5418(%rsp)
je 0x130acd4
movq 0x5418(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130acd6
jmp 0x130acd8
movq 0x6c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130ad33
movq %rax, %rdi
callq 0x678a0
jmp 0x130ad35
leaq 0x2518(%rsp), %rax
movq %rax, 0x2fc8(%rsp)
movq 0x2fc8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6b8(%rsp)
leaq 0x2518(%rsp), %rax
movq %rax, 0x3110(%rsp)
movq 0x3110(%rsp), %rax
movq %rax, 0x51c8(%rsp)
movq 0x51c8(%rsp), %rax
movq %rax, 0x6c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130ae26
movq 0x6c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x51c4(%rsp) # imm = 0xFFFFFFFF
movl 0x51c4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x51c0(%rsp)
cmpl $0x1, 0x51c0(%rsp)
jne 0x130ae26
movq 0x6c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130adf4
movq 0x6c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130adf2
jmp 0x130ae24
movq 0x6c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5500(%rsp)
cmpq $0x0, 0x5500(%rsp)
je 0x130ae22
movq 0x5500(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130ae24
jmp 0x130ae26
movq 0x6c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130ae81
movq %rax, %rdi
callq 0x678a0
movq 0x6b8(%rsp), %rax
movq %rax, 0x2560(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x25bc(%rsp), %eax
leaq 0x24c8(%rsp), %rdx
movq %rdx, 0x3400(%rsp)
movq %rcx, 0x33f8(%rsp)
movl %eax, 0x33f4(%rsp)
movq 0x33f8(%rsp), %rax
movq %rax, 0x6b0(%rsp)
movb $0x0, 0x33f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x33f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x24c8(%rsp), %r10
movq %r10, 0x42e8(%rsp)
movl %r9d, 0x42e4(%rsp)
movl %r8d, 0x42e0(%rsp)
movl %edi, 0x42dc(%rsp)
movq %rsi, 0x42d0(%rsp)
movq %rdx, 0x42c8(%rsp)
movl %ecx, 0x42c4(%rsp)
movq %rax, 0x42b8(%rsp)
movq 0x42e8(%rsp), %rcx
movq %rcx, 0x6a8(%rsp)
movq 0x42d0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x42c8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x42c4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x42b8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x42e4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x42e0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x42dc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e38(%rsp)
movl $0x10, 0x4e34(%rsp)
movq 0x4e38(%rsp), %rax
movslq 0x4e34(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e34(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6b0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x24f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x130b04d
movq 0x6b0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2508(%rsp)
movb $0x1, 0x33f3(%rsp)
testb $0x1, 0x33f3(%rsp)
jne 0x130b18e
leaq 0x24c8(%rsp), %rax
movq %rax, 0x3408(%rsp)
movq 0x3408(%rsp), %rax
movq %rax, 0x4ea8(%rsp)
movq 0x4ea8(%rsp), %rax
movq %rax, 0x6a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130b131
movq 0x6a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4ea4(%rsp) # imm = 0xFFFFFFFF
movl 0x4ea4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4ea0(%rsp)
cmpl $0x1, 0x4ea0(%rsp)
jne 0x130b131
movq 0x6a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130b0ff
movq 0x6a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130b0fd
jmp 0x130b12f
movq 0x6a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5690(%rsp)
cmpq $0x0, 0x5690(%rsp)
je 0x130b12d
movq 0x5690(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130b12f
jmp 0x130b131
movq 0x6a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130b18c
movq %rax, %rdi
callq 0x678a0
jmp 0x130b18e
leaq 0x24c8(%rsp), %rax
movq %rax, 0x34f0(%rsp)
movq 0x34f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x690(%rsp)
leaq 0x24c8(%rsp), %rax
movq %rax, 0x3118(%rsp)
movq 0x3118(%rsp), %rax
movq %rax, 0x51b8(%rsp)
movq 0x51b8(%rsp), %rax
movq %rax, 0x698(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130b27f
movq 0x698(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x51b4(%rsp) # imm = 0xFFFFFFFF
movl 0x51b4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x51b0(%rsp)
cmpl $0x1, 0x51b0(%rsp)
jne 0x130b27f
movq 0x698(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130b24d
movq 0x698(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130b24b
jmp 0x130b27d
movq 0x698(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5508(%rsp)
cmpq $0x0, 0x5508(%rsp)
je 0x130b27b
movq 0x5508(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130b27d
jmp 0x130b27f
movq 0x698(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130b2da
movq %rax, %rdi
callq 0x678a0
movq 0x690(%rsp), %rax
movq %rax, 0x2510(%rsp)
movl $0x0, 0x24c4(%rsp)
movl 0x24c4(%rsp), %eax
cmpl 0x2b80(%rsp), %eax
jge 0x130b480
movl $0x0, 0x24c0(%rsp)
movl 0x24c0(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jge 0x130b468
movq 0x25b0(%rsp), %rax
movq %rax, 0x3608(%rsp)
movq 0x3608(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2480(%rsp)
movl $0x0, 0x247c(%rsp)
movl 0x247c(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jge 0x130b43e
movq 0x2560(%rsp), %rax
movq %rax, 0x3600(%rsp)
movq 0x3600(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2400(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x2480(%rsp), %rsi
leaq 0x2400(%rsp), %rdx
callq 0x1453700
vmovaps %zmm0, 0x23c0(%rsp)
movq 0x2510(%rsp), %rax
vmovaps 0x23c0(%rsp), %zmm0
movq %rax, 0x3eb8(%rsp)
vmovaps %zmm0, 0x3e40(%rsp)
vmovaps 0x3e40(%rsp), %zmm0
movq 0x3eb8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x2560(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2560(%rsp)
movq 0x2510(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2510(%rsp)
movl 0x247c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x247c(%rsp)
jmp 0x130b35c
movq 0x25b0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x25b0(%rsp)
movl 0x24c0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x24c0(%rsp)
jmp 0x130b314
jmp 0x130b46a
movl 0x24c4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x24c4(%rsp)
jmp 0x130b2f5
jmp 0x130b482
movl 0x25bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x25bc(%rsp)
jmp 0x130a5cb
movl $0x0, 0x2bd4(%rsp)
jmp 0x13173b0
movq 0x2bc0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x13128f3
cmpl $0x1, 0x2b88(%rsp)
jne 0x130c412
cmpl $0x1, 0x2b84(%rsp)
jne 0x130c412
movl 0x2b7c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jne 0x130c412
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movl 0x2b9c(%rsp), %ecx
movq 0x2b90(%rsp), %r8
movl 0x2b8c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c58(%rsp)
movq 0x2c58(%rsp), %rcx
movq %rcx, 0x680(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x68f(%rsp)
je 0x130b58d
movq 0x680(%rsp), %rax
movq %rax, 0x4188(%rsp)
movq 0x4188(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x68f(%rsp)
movb 0x68f(%rsp), %al
testb $0x1, %al
jne 0x130b59a
jmp 0x130b5aa
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x13173b0
movl $0x0, 0x23bc(%rsp)
movl 0x23bc(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jge 0x130c402
movq 0x2bc8(%rsp), %rcx
movl 0x23bc(%rsp), %eax
leaq 0x2368(%rsp), %rdx
movq %rdx, 0x2e48(%rsp)
movq %rcx, 0x2e40(%rsp)
movl %eax, 0x2e3c(%rsp)
movq 0x2e40(%rsp), %rax
movq %rax, 0x678(%rsp)
movb $0x0, 0x2e3b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e3c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2368(%rsp), %r10
movq %r10, 0x4780(%rsp)
movl %r9d, 0x477c(%rsp)
movl %r8d, 0x4778(%rsp)
movl %edi, 0x4774(%rsp)
movq %rsi, 0x4768(%rsp)
movq %rdx, 0x4760(%rsp)
movl %ecx, 0x475c(%rsp)
movq %rax, 0x4750(%rsp)
movq 0x4780(%rsp), %rcx
movq %rcx, 0x670(%rsp)
movq 0x4768(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4760(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x475c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4750(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x477c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4778(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4774(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4ce8(%rsp)
movl $0x10, 0x4ce4(%rsp)
movq 0x4ce8(%rsp), %rax
movslq 0x4ce4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4ce4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x678(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2390(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x130b785
movq 0x678(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x23a8(%rsp)
movb $0x1, 0x2e3b(%rsp)
testb $0x1, 0x2e3b(%rsp)
jne 0x130b8c6
leaq 0x2368(%rsp), %rax
movq %rax, 0x3030(%rsp)
movq 0x3030(%rsp), %rax
movq %rax, 0x5388(%rsp)
movq 0x5388(%rsp), %rax
movq %rax, 0x668(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130b869
movq 0x668(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5384(%rsp) # imm = 0xFFFFFFFF
movl 0x5384(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5380(%rsp)
cmpl $0x1, 0x5380(%rsp)
jne 0x130b869
movq 0x668(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130b837
movq 0x668(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130b835
jmp 0x130b867
movq 0x668(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5420(%rsp)
cmpq $0x0, 0x5420(%rsp)
je 0x130b865
movq 0x5420(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130b867
jmp 0x130b869
movq 0x668(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130b8c4
movq %rax, %rdi
callq 0x678a0
jmp 0x130b8c6
leaq 0x2368(%rsp), %rax
movq %rax, 0x2fc0(%rsp)
movq 0x2fc0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x658(%rsp)
leaq 0x2368(%rsp), %rax
movq %rax, 0x3120(%rsp)
movq 0x3120(%rsp), %rax
movq %rax, 0x51a8(%rsp)
movq 0x51a8(%rsp), %rax
movq %rax, 0x660(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130b9b7
movq 0x660(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x51a4(%rsp) # imm = 0xFFFFFFFF
movl 0x51a4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x51a0(%rsp)
cmpl $0x1, 0x51a0(%rsp)
jne 0x130b9b7
movq 0x660(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130b985
movq 0x660(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130b983
jmp 0x130b9b5
movq 0x660(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5510(%rsp)
cmpq $0x0, 0x5510(%rsp)
je 0x130b9b3
movq 0x5510(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130b9b5
jmp 0x130b9b7
movq 0x660(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130ba12
movq %rax, %rdi
callq 0x678a0
movq 0x658(%rsp), %rax
movq %rax, 0x23b0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x23bc(%rsp), %eax
leaq 0x2318(%rsp), %rdx
movq %rdx, 0x2e30(%rsp)
movq %rcx, 0x2e28(%rsp)
movl %eax, 0x2e24(%rsp)
movq 0x2e28(%rsp), %rax
movq %rax, 0x650(%rsp)
movb $0x0, 0x2e23(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e24(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2318(%rsp), %r10
movq %r10, 0x47b8(%rsp)
movl %r9d, 0x47b4(%rsp)
movl %r8d, 0x47b0(%rsp)
movl %edi, 0x47ac(%rsp)
movq %rsi, 0x47a0(%rsp)
movq %rdx, 0x4798(%rsp)
movl %ecx, 0x4794(%rsp)
movq %rax, 0x4788(%rsp)
movq 0x47b8(%rsp), %rcx
movq %rcx, 0x648(%rsp)
movq 0x47a0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4798(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4794(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4788(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x47b4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x47b0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x47ac(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4cd8(%rsp)
movl $0x10, 0x4cd4(%rsp)
movq 0x4cd8(%rsp), %rax
movslq 0x4cd4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4cd4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x650(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2340(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x130bbde
movq 0x650(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2358(%rsp)
movb $0x1, 0x2e23(%rsp)
testb $0x1, 0x2e23(%rsp)
jne 0x130bd1f
leaq 0x2318(%rsp), %rax
movq %rax, 0x3038(%rsp)
movq 0x3038(%rsp), %rax
movq %rax, 0x5378(%rsp)
movq 0x5378(%rsp), %rax
movq %rax, 0x640(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130bcc2
movq 0x640(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5374(%rsp) # imm = 0xFFFFFFFF
movl 0x5374(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5370(%rsp)
cmpl $0x1, 0x5370(%rsp)
jne 0x130bcc2
movq 0x640(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130bc90
movq 0x640(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130bc8e
jmp 0x130bcc0
movq 0x640(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5428(%rsp)
cmpq $0x0, 0x5428(%rsp)
je 0x130bcbe
movq 0x5428(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130bcc0
jmp 0x130bcc2
movq 0x640(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130bd1d
movq %rax, %rdi
callq 0x678a0
jmp 0x130bd1f
leaq 0x2318(%rsp), %rax
movq %rax, 0x2fb8(%rsp)
movq 0x2fb8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x630(%rsp)
leaq 0x2318(%rsp), %rax
movq %rax, 0x3128(%rsp)
movq 0x3128(%rsp), %rax
movq %rax, 0x5198(%rsp)
movq 0x5198(%rsp), %rax
movq %rax, 0x638(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130be10
movq 0x638(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5194(%rsp) # imm = 0xFFFFFFFF
movl 0x5194(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5190(%rsp)
cmpl $0x1, 0x5190(%rsp)
jne 0x130be10
movq 0x638(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130bdde
movq 0x638(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130bddc
jmp 0x130be0e
movq 0x638(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5518(%rsp)
cmpq $0x0, 0x5518(%rsp)
je 0x130be0c
movq 0x5518(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130be0e
jmp 0x130be10
movq 0x638(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130be6b
movq %rax, %rdi
callq 0x678a0
movq 0x630(%rsp), %rax
movq %rax, 0x2360(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x23bc(%rsp), %eax
leaq 0x22c8(%rsp), %rdx
movq %rdx, 0x33e0(%rsp)
movq %rcx, 0x33d8(%rsp)
movl %eax, 0x33d4(%rsp)
movq 0x33d8(%rsp), %rax
movq %rax, 0x628(%rsp)
movb $0x0, 0x33d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x33d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x22c8(%rsp), %r10
movq %r10, 0x4320(%rsp)
movl %r9d, 0x431c(%rsp)
movl %r8d, 0x4318(%rsp)
movl %edi, 0x4314(%rsp)
movq %rsi, 0x4308(%rsp)
movq %rdx, 0x4300(%rsp)
movl %ecx, 0x42fc(%rsp)
movq %rax, 0x42f0(%rsp)
movq 0x4320(%rsp), %rcx
movq %rcx, 0x620(%rsp)
movq 0x4308(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4300(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x42fc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x42f0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x431c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4318(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4314(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e28(%rsp)
movl $0x10, 0x4e24(%rsp)
movq 0x4e28(%rsp), %rax
movslq 0x4e24(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e24(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x628(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x22f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x130c037
movq 0x628(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2308(%rsp)
movb $0x1, 0x33d3(%rsp)
testb $0x1, 0x33d3(%rsp)
jne 0x130c178
leaq 0x22c8(%rsp), %rax
movq %rax, 0x33e8(%rsp)
movq 0x33e8(%rsp), %rax
movq %rax, 0x4eb8(%rsp)
movq 0x4eb8(%rsp), %rax
movq %rax, 0x618(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130c11b
movq 0x618(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4eb4(%rsp) # imm = 0xFFFFFFFF
movl 0x4eb4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4eb0(%rsp)
cmpl $0x1, 0x4eb0(%rsp)
jne 0x130c11b
movq 0x618(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130c0e9
movq 0x618(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130c0e7
jmp 0x130c119
movq 0x618(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5688(%rsp)
cmpq $0x0, 0x5688(%rsp)
je 0x130c117
movq 0x5688(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130c119
jmp 0x130c11b
movq 0x618(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130c176
movq %rax, %rdi
callq 0x678a0
jmp 0x130c178
leaq 0x22c8(%rsp), %rax
movq %rax, 0x34e8(%rsp)
movq 0x34e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x608(%rsp)
leaq 0x22c8(%rsp), %rax
movq %rax, 0x3130(%rsp)
movq 0x3130(%rsp), %rax
movq %rax, 0x5188(%rsp)
movq 0x5188(%rsp), %rax
movq %rax, 0x610(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130c269
movq 0x610(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5184(%rsp) # imm = 0xFFFFFFFF
movl 0x5184(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5180(%rsp)
cmpl $0x1, 0x5180(%rsp)
jne 0x130c269
movq 0x610(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130c237
movq 0x610(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130c235
jmp 0x130c267
movq 0x610(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5520(%rsp)
cmpq $0x0, 0x5520(%rsp)
je 0x130c265
movq 0x5520(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130c267
jmp 0x130c269
movq 0x610(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130c2c4
movq %rax, %rdi
callq 0x678a0
movq 0x608(%rsp), %rax
movq %rax, 0x2310(%rsp)
movq 0x2360(%rsp), %rax
movq %rax, 0x35f8(%rsp)
movq 0x35f8(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2280(%rsp)
movl $0x0, 0x227c(%rsp)
movl 0x227c(%rsp), %eax
cmpl 0x2b98(%rsp), %eax
jge 0x130c3ea
movq 0x23b0(%rsp), %rax
movq %rax, 0x35f0(%rsp)
movq 0x35f0(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2200(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x2200(%rsp), %rsi
leaq 0x2280(%rsp), %rdx
callq 0x1453700
vmovaps %zmm0, 0x21c0(%rsp)
movq 0x2310(%rsp), %rax
vmovaps 0x21c0(%rsp), %zmm0
movq %rax, 0x3e38(%rsp)
vmovaps %zmm0, 0x3dc0(%rsp)
vmovaps 0x3dc0(%rsp), %zmm0
movq 0x3e38(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x23b0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x23b0(%rsp)
movq 0x2310(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2310(%rsp)
movl 0x227c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x227c(%rsp)
jmp 0x130c308
jmp 0x130c3ec
movl 0x23bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x23bc(%rsp)
jmp 0x130b5b5
movl $0x0, 0x2bd4(%rsp)
jmp 0x13173b0
movl 0x2b88(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jne 0x130cf74
movl 0x2b84(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jne 0x130cf74
cmpl $0x1, 0x2b7c(%rsp)
jne 0x130cf74
cmpl $0x1, 0x2b6c(%rsp)
jne 0x130cf74
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movl 0x2b9c(%rsp), %ecx
movq 0x2b90(%rsp), %r8
movl 0x2b8c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c50(%rsp)
movq 0x2c50(%rsp), %rcx
movq %rcx, 0x5f8(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x607(%rsp)
je 0x130c4f9
movq 0x5f8(%rsp), %rax
movq %rax, 0x4190(%rsp)
movq 0x4190(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x607(%rsp)
movb 0x607(%rsp), %al
testb $0x1, %al
jne 0x130c506
jmp 0x130c516
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x13173b0
movl $0x0, 0x21bc(%rsp)
movl 0x21bc(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jge 0x130cf64
movq 0x2bc8(%rsp), %rcx
movl 0x21bc(%rsp), %eax
leaq 0x2168(%rsp), %rdx
movq %rdx, 0x2e18(%rsp)
movq %rcx, 0x2e10(%rsp)
movl %eax, 0x2e0c(%rsp)
movq 0x2e10(%rsp), %rax
movq %rax, 0x5f0(%rsp)
movb $0x0, 0x2e0b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e0c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2168(%rsp), %r10
movq %r10, 0x47f0(%rsp)
movl %r9d, 0x47ec(%rsp)
movl %r8d, 0x47e8(%rsp)
movl %edi, 0x47e4(%rsp)
movq %rsi, 0x47d8(%rsp)
movq %rdx, 0x47d0(%rsp)
movl %ecx, 0x47cc(%rsp)
movq %rax, 0x47c0(%rsp)
movq 0x47f0(%rsp), %rcx
movq %rcx, 0x5e8(%rsp)
movq 0x47d8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x47d0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x47cc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x47c0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x47ec(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x47e8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x47e4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4cc8(%rsp)
movl $0x10, 0x4cc4(%rsp)
movq 0x4cc8(%rsp), %rax
movslq 0x4cc4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4cc4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5f0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2190(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x130c6f1
movq 0x5f0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x21a8(%rsp)
movb $0x1, 0x2e0b(%rsp)
testb $0x1, 0x2e0b(%rsp)
jne 0x130c832
leaq 0x2168(%rsp), %rax
movq %rax, 0x3040(%rsp)
movq 0x3040(%rsp), %rax
movq %rax, 0x5368(%rsp)
movq 0x5368(%rsp), %rax
movq %rax, 0x5e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130c7d5
movq 0x5e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5364(%rsp) # imm = 0xFFFFFFFF
movl 0x5364(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5360(%rsp)
cmpl $0x1, 0x5360(%rsp)
jne 0x130c7d5
movq 0x5e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130c7a3
movq 0x5e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130c7a1
jmp 0x130c7d3
movq 0x5e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5430(%rsp)
cmpq $0x0, 0x5430(%rsp)
je 0x130c7d1
movq 0x5430(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130c7d3
jmp 0x130c7d5
movq 0x5e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130c830
movq %rax, %rdi
callq 0x678a0
jmp 0x130c832
leaq 0x2168(%rsp), %rax
movq %rax, 0x2fb0(%rsp)
movq 0x2fb0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5d0(%rsp)
leaq 0x2168(%rsp), %rax
movq %rax, 0x3138(%rsp)
movq 0x3138(%rsp), %rax
movq %rax, 0x5178(%rsp)
movq 0x5178(%rsp), %rax
movq %rax, 0x5d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130c923
movq 0x5d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5174(%rsp) # imm = 0xFFFFFFFF
movl 0x5174(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5170(%rsp)
cmpl $0x1, 0x5170(%rsp)
jne 0x130c923
movq 0x5d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130c8f1
movq 0x5d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130c8ef
jmp 0x130c921
movq 0x5d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5528(%rsp)
cmpq $0x0, 0x5528(%rsp)
je 0x130c91f
movq 0x5528(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130c921
jmp 0x130c923
movq 0x5d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130c97e
movq %rax, %rdi
callq 0x678a0
movq 0x5d0(%rsp), %rax
movq %rax, 0x21b0(%rsp)
movq 0x2bc0(%rsp), %rax
movq %rax, 0x2fa8(%rsp)
movq 0x2fa8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2160(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x21bc(%rsp), %eax
leaq 0x2110(%rsp), %rdx
movq %rdx, 0x33c0(%rsp)
movq %rcx, 0x33b8(%rsp)
movl %eax, 0x33b4(%rsp)
movq 0x33b8(%rsp), %rax
movq %rax, 0x5c8(%rsp)
movb $0x0, 0x33b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x33b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2110(%rsp), %r10
movq %r10, 0x4358(%rsp)
movl %r9d, 0x4354(%rsp)
movl %r8d, 0x4350(%rsp)
movl %edi, 0x434c(%rsp)
movq %rsi, 0x4340(%rsp)
movq %rdx, 0x4338(%rsp)
movl %ecx, 0x4334(%rsp)
movq %rax, 0x4328(%rsp)
movq 0x4358(%rsp), %rcx
movq %rcx, 0x5c0(%rsp)
movq 0x4340(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4338(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4334(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4328(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4354(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4350(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x434c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e18(%rsp)
movl $0x10, 0x4e14(%rsp)
movq 0x4e18(%rsp), %rax
movslq 0x4e14(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e14(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5c8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2138(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x130cb6d
movq 0x5c8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2150(%rsp)
movb $0x1, 0x33b3(%rsp)
testb $0x1, 0x33b3(%rsp)
jne 0x130ccae
leaq 0x2110(%rsp), %rax
movq %rax, 0x33c8(%rsp)
movq 0x33c8(%rsp), %rax
movq %rax, 0x4ec8(%rsp)
movq 0x4ec8(%rsp), %rax
movq %rax, 0x5b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130cc51
movq 0x5b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4ec4(%rsp) # imm = 0xFFFFFFFF
movl 0x4ec4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4ec0(%rsp)
cmpl $0x1, 0x4ec0(%rsp)
jne 0x130cc51
movq 0x5b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130cc1f
movq 0x5b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130cc1d
jmp 0x130cc4f
movq 0x5b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5680(%rsp)
cmpq $0x0, 0x5680(%rsp)
je 0x130cc4d
movq 0x5680(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130cc4f
jmp 0x130cc51
movq 0x5b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130ccac
movq %rax, %rdi
callq 0x678a0
jmp 0x130ccae
leaq 0x2110(%rsp), %rax
movq %rax, 0x34e0(%rsp)
movq 0x34e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5a8(%rsp)
leaq 0x2110(%rsp), %rax
movq %rax, 0x3140(%rsp)
movq 0x3140(%rsp), %rax
movq %rax, 0x5168(%rsp)
movq 0x5168(%rsp), %rax
movq %rax, 0x5b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130cd9f
movq 0x5b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5164(%rsp) # imm = 0xFFFFFFFF
movl 0x5164(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5160(%rsp)
cmpl $0x1, 0x5160(%rsp)
jne 0x130cd9f
movq 0x5b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130cd6d
movq 0x5b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130cd6b
jmp 0x130cd9d
movq 0x5b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5530(%rsp)
cmpq $0x0, 0x5530(%rsp)
je 0x130cd9b
movq 0x5530(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130cd9d
jmp 0x130cd9f
movq 0x5b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130cdfa
movq %rax, %rdi
callq 0x678a0
movq 0x5a8(%rsp), %rax
movq %rax, 0x2158(%rsp)
movl $0x0, 0x210c(%rsp)
movl 0x210c(%rsp), %eax
cmpl 0x2b98(%rsp), %eax
jge 0x130cf4c
movq 0x21b0(%rsp), %rax
movq %rax, 0x35e8(%rsp)
movq 0x35e8(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x20c0(%rsp)
movq 0x2160(%rsp), %rax
vmovss (%rax), %xmm0
vmovss %xmm0, 0x4174(%rsp)
vbroadcastss 0x4174(%rsp), %zmm0
vmovaps %zmm0, 0x4100(%rsp)
vmovaps 0x4100(%rsp), %zmm0
vmovaps %zmm0, 0x2080(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x20c0(%rsp), %rsi
leaq 0x2080(%rsp), %rdx
callq 0x1453700
vmovaps %zmm0, 0x2040(%rsp)
movq 0x2158(%rsp), %rax
vmovaps 0x2040(%rsp), %zmm0
movq %rax, 0x3db8(%rsp)
vmovaps %zmm0, 0x3d40(%rsp)
vmovaps 0x3d40(%rsp), %zmm0
movq 0x3db8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x21b0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x21b0(%rsp)
movq 0x2160(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x2160(%rsp)
movq 0x2158(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2158(%rsp)
movl 0x210c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x210c(%rsp)
jmp 0x130ce15
jmp 0x130cf4e
movl 0x21bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x21bc(%rsp)
jmp 0x130c521
movl $0x0, 0x2bd4(%rsp)
jmp 0x13173b0
cmpl $0x1, 0x2ba8(%rsp)
jne 0x130dec0
cmpl $0x1, 0x2ba4(%rsp)
jne 0x130dec0
movl 0x2b7c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jne 0x130dec0
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b7c(%rsp), %ecx
movq 0x2b70(%rsp), %r8
movl 0x2b6c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c48(%rsp)
movq 0x2c48(%rsp), %rcx
movq %rcx, 0x598(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x5a7(%rsp)
je 0x130d047
movq 0x598(%rsp), %rax
movq %rax, 0x4198(%rsp)
movq 0x4198(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x5a7(%rsp)
movb 0x5a7(%rsp), %al
testb $0x1, %al
jne 0x130d054
jmp 0x130d064
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x13173b0
movl $0x0, 0x203c(%rsp)
movl 0x203c(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x130deb0
movq 0x2bc8(%rsp), %rcx
movl 0x203c(%rsp), %eax
leaq 0x1fe8(%rsp), %rdx
movq %rdx, 0x2e00(%rsp)
movq %rcx, 0x2df8(%rsp)
movl %eax, 0x2df4(%rsp)
movq 0x2df8(%rsp), %rax
movq %rax, 0x590(%rsp)
movb $0x0, 0x2df3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2df4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1fe8(%rsp), %r10
movq %r10, 0x4828(%rsp)
movl %r9d, 0x4824(%rsp)
movl %r8d, 0x4820(%rsp)
movl %edi, 0x481c(%rsp)
movq %rsi, 0x4810(%rsp)
movq %rdx, 0x4808(%rsp)
movl %ecx, 0x4804(%rsp)
movq %rax, 0x47f8(%rsp)
movq 0x4828(%rsp), %rcx
movq %rcx, 0x588(%rsp)
movq 0x4810(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4808(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4804(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x47f8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4824(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4820(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x481c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4cb8(%rsp)
movl $0x10, 0x4cb4(%rsp)
movq 0x4cb8(%rsp), %rax
movslq 0x4cb4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4cb4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x590(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2010(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x130d23f
movq 0x590(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2028(%rsp)
movb $0x1, 0x2df3(%rsp)
testb $0x1, 0x2df3(%rsp)
jne 0x130d380
leaq 0x1fe8(%rsp), %rax
movq %rax, 0x3048(%rsp)
movq 0x3048(%rsp), %rax
movq %rax, 0x5358(%rsp)
movq 0x5358(%rsp), %rax
movq %rax, 0x580(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130d323
movq 0x580(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5354(%rsp) # imm = 0xFFFFFFFF
movl 0x5354(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5350(%rsp)
cmpl $0x1, 0x5350(%rsp)
jne 0x130d323
movq 0x580(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130d2f1
movq 0x580(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130d2ef
jmp 0x130d321
movq 0x580(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5438(%rsp)
cmpq $0x0, 0x5438(%rsp)
je 0x130d31f
movq 0x5438(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130d321
jmp 0x130d323
movq 0x580(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130d37e
movq %rax, %rdi
callq 0x678a0
jmp 0x130d380
leaq 0x1fe8(%rsp), %rax
movq %rax, 0x2fa0(%rsp)
movq 0x2fa0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x570(%rsp)
leaq 0x1fe8(%rsp), %rax
movq %rax, 0x3148(%rsp)
movq 0x3148(%rsp), %rax
movq %rax, 0x5158(%rsp)
movq 0x5158(%rsp), %rax
movq %rax, 0x578(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130d471
movq 0x578(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5154(%rsp) # imm = 0xFFFFFFFF
movl 0x5154(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5150(%rsp)
cmpl $0x1, 0x5150(%rsp)
jne 0x130d471
movq 0x578(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130d43f
movq 0x578(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130d43d
jmp 0x130d46f
movq 0x578(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5538(%rsp)
cmpq $0x0, 0x5538(%rsp)
je 0x130d46d
movq 0x5538(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130d46f
jmp 0x130d471
movq 0x578(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130d4cc
movq %rax, %rdi
callq 0x678a0
movq 0x570(%rsp), %rax
movq %rax, 0x2030(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x203c(%rsp), %eax
leaq 0x1f98(%rsp), %rdx
movq %rdx, 0x2de8(%rsp)
movq %rcx, 0x2de0(%rsp)
movl %eax, 0x2ddc(%rsp)
movq 0x2de0(%rsp), %rax
movq %rax, 0x568(%rsp)
movb $0x0, 0x2ddb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2ddc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1f98(%rsp), %r10
movq %r10, 0x4860(%rsp)
movl %r9d, 0x485c(%rsp)
movl %r8d, 0x4858(%rsp)
movl %edi, 0x4854(%rsp)
movq %rsi, 0x4848(%rsp)
movq %rdx, 0x4840(%rsp)
movl %ecx, 0x483c(%rsp)
movq %rax, 0x4830(%rsp)
movq 0x4860(%rsp), %rcx
movq %rcx, 0x560(%rsp)
movq 0x4848(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4840(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x483c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4830(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x485c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4858(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4854(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4ca8(%rsp)
movl $0x10, 0x4ca4(%rsp)
movq 0x4ca8(%rsp), %rax
movslq 0x4ca4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4ca4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x568(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1fc0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x130d698
movq 0x568(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1fd8(%rsp)
movb $0x1, 0x2ddb(%rsp)
testb $0x1, 0x2ddb(%rsp)
jne 0x130d7d9
leaq 0x1f98(%rsp), %rax
movq %rax, 0x3050(%rsp)
movq 0x3050(%rsp), %rax
movq %rax, 0x5348(%rsp)
movq 0x5348(%rsp), %rax
movq %rax, 0x558(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130d77c
movq 0x558(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5344(%rsp) # imm = 0xFFFFFFFF
movl 0x5344(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5340(%rsp)
cmpl $0x1, 0x5340(%rsp)
jne 0x130d77c
movq 0x558(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130d74a
movq 0x558(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130d748
jmp 0x130d77a
movq 0x558(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5440(%rsp)
cmpq $0x0, 0x5440(%rsp)
je 0x130d778
movq 0x5440(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130d77a
jmp 0x130d77c
movq 0x558(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130d7d7
movq %rax, %rdi
callq 0x678a0
jmp 0x130d7d9
leaq 0x1f98(%rsp), %rax
movq %rax, 0x2f98(%rsp)
movq 0x2f98(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x548(%rsp)
leaq 0x1f98(%rsp), %rax
movq %rax, 0x3150(%rsp)
movq 0x3150(%rsp), %rax
movq %rax, 0x5148(%rsp)
movq 0x5148(%rsp), %rax
movq %rax, 0x550(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130d8ca
movq 0x550(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5144(%rsp) # imm = 0xFFFFFFFF
movl 0x5144(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5140(%rsp)
cmpl $0x1, 0x5140(%rsp)
jne 0x130d8ca
movq 0x550(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130d898
movq 0x550(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130d896
jmp 0x130d8c8
movq 0x550(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5540(%rsp)
cmpq $0x0, 0x5540(%rsp)
je 0x130d8c6
movq 0x5540(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130d8c8
jmp 0x130d8ca
movq 0x550(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130d925
movq %rax, %rdi
callq 0x678a0
movq 0x548(%rsp), %rax
movq %rax, 0x1fe0(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x203c(%rsp), %eax
leaq 0x1f48(%rsp), %rdx
movq %rdx, 0x33a0(%rsp)
movq %rcx, 0x3398(%rsp)
movl %eax, 0x3394(%rsp)
movq 0x3398(%rsp), %rax
movq %rax, 0x540(%rsp)
movb $0x0, 0x3393(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3394(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1f48(%rsp), %r10
movq %r10, 0x4390(%rsp)
movl %r9d, 0x438c(%rsp)
movl %r8d, 0x4388(%rsp)
movl %edi, 0x4384(%rsp)
movq %rsi, 0x4378(%rsp)
movq %rdx, 0x4370(%rsp)
movl %ecx, 0x436c(%rsp)
movq %rax, 0x4360(%rsp)
movq 0x4390(%rsp), %rcx
movq %rcx, 0x538(%rsp)
movq 0x4378(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4370(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x436c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4360(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x438c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4388(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4384(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e08(%rsp)
movl $0x10, 0x4e04(%rsp)
movq 0x4e08(%rsp), %rax
movslq 0x4e04(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e04(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x540(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1f70(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x130daf1
movq 0x540(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1f88(%rsp)
movb $0x1, 0x3393(%rsp)
testb $0x1, 0x3393(%rsp)
jne 0x130dc32
leaq 0x1f48(%rsp), %rax
movq %rax, 0x33a8(%rsp)
movq 0x33a8(%rsp), %rax
movq %rax, 0x4ed8(%rsp)
movq 0x4ed8(%rsp), %rax
movq %rax, 0x530(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130dbd5
movq 0x530(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4ed4(%rsp) # imm = 0xFFFFFFFF
movl 0x4ed4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4ed0(%rsp)
cmpl $0x1, 0x4ed0(%rsp)
jne 0x130dbd5
movq 0x530(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130dba3
movq 0x530(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130dba1
jmp 0x130dbd3
movq 0x530(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5678(%rsp)
cmpq $0x0, 0x5678(%rsp)
je 0x130dbd1
movq 0x5678(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130dbd3
jmp 0x130dbd5
movq 0x530(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130dc30
movq %rax, %rdi
callq 0x678a0
jmp 0x130dc32
leaq 0x1f48(%rsp), %rax
movq %rax, 0x34d8(%rsp)
movq 0x34d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x520(%rsp)
leaq 0x1f48(%rsp), %rax
movq %rax, 0x3158(%rsp)
movq 0x3158(%rsp), %rax
movq %rax, 0x5138(%rsp)
movq 0x5138(%rsp), %rax
movq %rax, 0x528(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130dd23
movq 0x528(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5134(%rsp) # imm = 0xFFFFFFFF
movl 0x5134(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5130(%rsp)
cmpl $0x1, 0x5130(%rsp)
jne 0x130dd23
movq 0x528(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130dcf1
movq 0x528(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130dcef
jmp 0x130dd21
movq 0x528(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5548(%rsp)
cmpq $0x0, 0x5548(%rsp)
je 0x130dd1f
movq 0x5548(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130dd21
jmp 0x130dd23
movq 0x528(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130dd7e
movq %rax, %rdi
callq 0x678a0
movq 0x520(%rsp), %rax
movq %rax, 0x1f90(%rsp)
movq 0x2030(%rsp), %rax
movq %rax, 0x35e0(%rsp)
movq 0x35e0(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1f00(%rsp)
movl $0x0, 0x1efc(%rsp)
movl 0x1efc(%rsp), %eax
cmpl 0x2b78(%rsp), %eax
jge 0x130de98
movq 0x1fe0(%rsp), %rax
movq %rax, 0x35d8(%rsp)
movq 0x35d8(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1e80(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x1f00(%rsp), %rsi
leaq 0x1e80(%rsp), %rdx
callq 0x1453700
vmovaps %zmm0, 0x1e40(%rsp)
movq 0x1f90(%rsp), %rax
vmovaps 0x1e40(%rsp), %zmm0
movq %rax, 0x3d38(%rsp)
vmovaps %zmm0, 0x3cc0(%rsp)
vmovaps 0x3cc0(%rsp), %zmm0
movq 0x3d38(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x1fe0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1fe0(%rsp)
movq 0x1f90(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1f90(%rsp)
movl 0x1efc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1efc(%rsp)
jmp 0x130ddbf
jmp 0x130de9a
movl 0x203c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x203c(%rsp)
jmp 0x130d06f
movl $0x0, 0x2bd4(%rsp)
jmp 0x13173b0
movl 0x2b88(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jne 0x130ea16
movl 0x2b84(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jne 0x130ea16
cmpl $0x1, 0x2b9c(%rsp)
jne 0x130ea16
cmpl $0x1, 0x2b8c(%rsp)
jne 0x130ea16
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b7c(%rsp), %ecx
movq 0x2b70(%rsp), %r8
movl 0x2b6c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c40(%rsp)
movq 0x2c40(%rsp), %rcx
movq %rcx, 0x510(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x51f(%rsp)
je 0x130dfa7
movq 0x510(%rsp), %rax
movq %rax, 0x41a0(%rsp)
movq 0x41a0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x51f(%rsp)
movb 0x51f(%rsp), %al
testb $0x1, %al
jne 0x130dfb4
jmp 0x130dfc4
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x13173b0
movl $0x0, 0x1e3c(%rsp)
movl 0x1e3c(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x130ea06
movq 0x2bc8(%rsp), %rax
movq %rax, 0x2f90(%rsp)
movq 0x2f90(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1e30(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x1e3c(%rsp), %eax
leaq 0x1de0(%rsp), %rdx
movq %rdx, 0x2dd0(%rsp)
movq %rcx, 0x2dc8(%rsp)
movl %eax, 0x2dc4(%rsp)
movq 0x2dc8(%rsp), %rax
movq %rax, 0x508(%rsp)
movb $0x0, 0x2dc3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2dc4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1de0(%rsp), %r10
movq %r10, 0x4898(%rsp)
movl %r9d, 0x4894(%rsp)
movl %r8d, 0x4890(%rsp)
movl %edi, 0x488c(%rsp)
movq %rsi, 0x4880(%rsp)
movq %rdx, 0x4878(%rsp)
movl %ecx, 0x4874(%rsp)
movq %rax, 0x4868(%rsp)
movq 0x4898(%rsp), %rcx
movq %rcx, 0x500(%rsp)
movq 0x4880(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4878(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4874(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4868(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4894(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4890(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x488c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c98(%rsp)
movl $0x10, 0x4c94(%rsp)
movq 0x4c98(%rsp), %rax
movslq 0x4c94(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c94(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x508(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1e08(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x130e1c2
movq 0x508(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1e20(%rsp)
movb $0x1, 0x2dc3(%rsp)
testb $0x1, 0x2dc3(%rsp)
jne 0x130e303
leaq 0x1de0(%rsp), %rax
movq %rax, 0x3058(%rsp)
movq 0x3058(%rsp), %rax
movq %rax, 0x5338(%rsp)
movq 0x5338(%rsp), %rax
movq %rax, 0x4f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130e2a6
movq 0x4f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5334(%rsp) # imm = 0xFFFFFFFF
movl 0x5334(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5330(%rsp)
cmpl $0x1, 0x5330(%rsp)
jne 0x130e2a6
movq 0x4f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130e274
movq 0x4f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130e272
jmp 0x130e2a4
movq 0x4f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5448(%rsp)
cmpq $0x0, 0x5448(%rsp)
je 0x130e2a2
movq 0x5448(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130e2a4
jmp 0x130e2a6
movq 0x4f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130e301
movq %rax, %rdi
callq 0x678a0
jmp 0x130e303
leaq 0x1de0(%rsp), %rax
movq %rax, 0x2f88(%rsp)
movq 0x2f88(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4e8(%rsp)
leaq 0x1de0(%rsp), %rax
movq %rax, 0x3160(%rsp)
movq 0x3160(%rsp), %rax
movq %rax, 0x5128(%rsp)
movq 0x5128(%rsp), %rax
movq %rax, 0x4f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130e3f4
movq 0x4f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5124(%rsp) # imm = 0xFFFFFFFF
movl 0x5124(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5120(%rsp)
cmpl $0x1, 0x5120(%rsp)
jne 0x130e3f4
movq 0x4f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130e3c2
movq 0x4f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130e3c0
jmp 0x130e3f2
movq 0x4f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5550(%rsp)
cmpq $0x0, 0x5550(%rsp)
je 0x130e3f0
movq 0x5550(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130e3f2
jmp 0x130e3f4
movq 0x4f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130e44f
movq %rax, %rdi
callq 0x678a0
movq 0x4e8(%rsp), %rax
movq %rax, 0x1e28(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x1e3c(%rsp), %eax
leaq 0x1d90(%rsp), %rdx
movq %rdx, 0x3380(%rsp)
movq %rcx, 0x3378(%rsp)
movl %eax, 0x3374(%rsp)
movq 0x3378(%rsp), %rax
movq %rax, 0x4e0(%rsp)
movb $0x0, 0x3373(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3374(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1d90(%rsp), %r10
movq %r10, 0x43c8(%rsp)
movl %r9d, 0x43c4(%rsp)
movl %r8d, 0x43c0(%rsp)
movl %edi, 0x43bc(%rsp)
movq %rsi, 0x43b0(%rsp)
movq %rdx, 0x43a8(%rsp)
movl %ecx, 0x43a4(%rsp)
movq %rax, 0x4398(%rsp)
movq 0x43c8(%rsp), %rcx
movq %rcx, 0x4d8(%rsp)
movq 0x43b0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x43a8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x43a4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4398(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x43c4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x43c0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x43bc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4df8(%rsp)
movl $0x10, 0x4df4(%rsp)
movq 0x4df8(%rsp), %rax
movslq 0x4df4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4df4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4e0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1db8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x130e61b
movq 0x4e0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1dd0(%rsp)
movb $0x1, 0x3373(%rsp)
testb $0x1, 0x3373(%rsp)
jne 0x130e75c
leaq 0x1d90(%rsp), %rax
movq %rax, 0x3388(%rsp)
movq 0x3388(%rsp), %rax
movq %rax, 0x4ee8(%rsp)
movq 0x4ee8(%rsp), %rax
movq %rax, 0x4d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130e6ff
movq 0x4d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4ee4(%rsp) # imm = 0xFFFFFFFF
movl 0x4ee4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4ee0(%rsp)
cmpl $0x1, 0x4ee0(%rsp)
jne 0x130e6ff
movq 0x4d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130e6cd
movq 0x4d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130e6cb
jmp 0x130e6fd
movq 0x4d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5670(%rsp)
cmpq $0x0, 0x5670(%rsp)
je 0x130e6fb
movq 0x5670(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130e6fd
jmp 0x130e6ff
movq 0x4d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130e75a
movq %rax, %rdi
callq 0x678a0
jmp 0x130e75c
leaq 0x1d90(%rsp), %rax
movq %rax, 0x34d0(%rsp)
movq 0x34d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4c0(%rsp)
leaq 0x1d90(%rsp), %rax
movq %rax, 0x3168(%rsp)
movq 0x3168(%rsp), %rax
movq %rax, 0x5118(%rsp)
movq 0x5118(%rsp), %rax
movq %rax, 0x4c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130e84d
movq 0x4c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5114(%rsp) # imm = 0xFFFFFFFF
movl 0x5114(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5110(%rsp)
cmpl $0x1, 0x5110(%rsp)
jne 0x130e84d
movq 0x4c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130e81b
movq 0x4c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130e819
jmp 0x130e84b
movq 0x4c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5558(%rsp)
cmpq $0x0, 0x5558(%rsp)
je 0x130e849
movq 0x5558(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130e84b
jmp 0x130e84d
movq 0x4c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130e8a8
movq %rax, %rdi
callq 0x678a0
movq 0x4c0(%rsp), %rax
movq %rax, 0x1dd8(%rsp)
movl $0x0, 0x1d8c(%rsp)
movl 0x1d8c(%rsp), %eax
cmpl 0x2b78(%rsp), %eax
jge 0x130e9ee
movq 0x1e30(%rsp), %rax
vmovss (%rax), %xmm0
vmovss %xmm0, 0x40fc(%rsp)
vbroadcastss 0x40fc(%rsp), %zmm0
vmovaps %zmm0, 0x4080(%rsp)
vmovaps 0x4080(%rsp), %zmm0
vmovaps %zmm0, 0x1d40(%rsp)
movq 0x1e28(%rsp), %rax
movq %rax, 0x35d0(%rsp)
movq 0x35d0(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1d00(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x1d40(%rsp), %rsi
leaq 0x1d00(%rsp), %rdx
callq 0x1453700
vmovaps %zmm0, 0x1cc0(%rsp)
movq 0x1dd8(%rsp), %rax
vmovaps 0x1cc0(%rsp), %zmm0
movq %rax, 0x3cb8(%rsp)
vmovaps %zmm0, 0x3c40(%rsp)
vmovaps 0x3c40(%rsp), %zmm0
movq 0x3cb8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x1e30(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x1e30(%rsp)
movq 0x1e28(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1e28(%rsp)
movq 0x1dd8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1dd8(%rsp)
movl 0x1d8c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1d8c(%rsp)
jmp 0x130e8c3
jmp 0x130e9f0
movl 0x1e3c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1e3c(%rsp)
jmp 0x130dfcf
movl $0x0, 0x2bd4(%rsp)
jmp 0x13173b0
cmpl $0x1, 0x2ba8(%rsp)
je 0x130f9c1
cmpl $0x1, 0x2b88(%rsp)
jne 0x130f9c1
movl 0x2b84(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jne 0x130f9c1
movl 0x2b7c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jne 0x130f9c1
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movl 0x2b9c(%rsp), %ecx
movq 0x2b90(%rsp), %r8
movl 0x2b8c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c38(%rsp)
movq 0x2c38(%rsp), %rcx
movq %rcx, 0x4b0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x4bf(%rsp)
je 0x130eafd
movq 0x4b0(%rsp), %rax
movq %rax, 0x41a8(%rsp)
movq 0x41a8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x4bf(%rsp)
movb 0x4bf(%rsp), %al
testb $0x1, %al
jne 0x130eb0a
jmp 0x130eb1a
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x13173b0
movl $0x0, 0x1cbc(%rsp)
movl 0x1cbc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x130f9b1
movq 0x2bc8(%rsp), %rcx
movl 0x1cbc(%rsp), %eax
leaq 0x1c68(%rsp), %rdx
movq %rdx, 0x2db8(%rsp)
movq %rcx, 0x2db0(%rsp)
movl %eax, 0x2dac(%rsp)
movq 0x2db0(%rsp), %rax
movq %rax, 0x4a8(%rsp)
movb $0x0, 0x2dab(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2dac(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1c68(%rsp), %r10
movq %r10, 0x48d0(%rsp)
movl %r9d, 0x48cc(%rsp)
movl %r8d, 0x48c8(%rsp)
movl %edi, 0x48c4(%rsp)
movq %rsi, 0x48b8(%rsp)
movq %rdx, 0x48b0(%rsp)
movl %ecx, 0x48ac(%rsp)
movq %rax, 0x48a0(%rsp)
movq 0x48d0(%rsp), %rcx
movq %rcx, 0x4a0(%rsp)
movq 0x48b8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x48b0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x48ac(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x48a0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x48cc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x48c8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x48c4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c88(%rsp)
movl $0x10, 0x4c84(%rsp)
movq 0x4c88(%rsp), %rax
movslq 0x4c84(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c84(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4a8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1c90(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x130ecf5
movq 0x4a8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1ca8(%rsp)
movb $0x1, 0x2dab(%rsp)
testb $0x1, 0x2dab(%rsp)
jne 0x130ee36
leaq 0x1c68(%rsp), %rax
movq %rax, 0x3060(%rsp)
movq 0x3060(%rsp), %rax
movq %rax, 0x5328(%rsp)
movq 0x5328(%rsp), %rax
movq %rax, 0x498(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130edd9
movq 0x498(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5324(%rsp) # imm = 0xFFFFFFFF
movl 0x5324(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5320(%rsp)
cmpl $0x1, 0x5320(%rsp)
jne 0x130edd9
movq 0x498(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130eda7
movq 0x498(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130eda5
jmp 0x130edd7
movq 0x498(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5450(%rsp)
cmpq $0x0, 0x5450(%rsp)
je 0x130edd5
movq 0x5450(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130edd7
jmp 0x130edd9
movq 0x498(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130ee34
movq %rax, %rdi
callq 0x678a0
jmp 0x130ee36
leaq 0x1c68(%rsp), %rax
movq %rax, 0x2f80(%rsp)
movq 0x2f80(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x488(%rsp)
leaq 0x1c68(%rsp), %rax
movq %rax, 0x3170(%rsp)
movq 0x3170(%rsp), %rax
movq %rax, 0x5108(%rsp)
movq 0x5108(%rsp), %rax
movq %rax, 0x490(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130ef27
movq 0x490(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5104(%rsp) # imm = 0xFFFFFFFF
movl 0x5104(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5100(%rsp)
cmpl $0x1, 0x5100(%rsp)
jne 0x130ef27
movq 0x490(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130eef5
movq 0x490(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130eef3
jmp 0x130ef25
movq 0x490(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5560(%rsp)
cmpq $0x0, 0x5560(%rsp)
je 0x130ef23
movq 0x5560(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130ef25
jmp 0x130ef27
movq 0x490(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130ef82
movq %rax, %rdi
callq 0x678a0
movq 0x488(%rsp), %rax
movq %rax, 0x1cb0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x1cbc(%rsp), %eax
leaq 0x1c18(%rsp), %rdx
movq %rdx, 0x2da0(%rsp)
movq %rcx, 0x2d98(%rsp)
movl %eax, 0x2d94(%rsp)
movq 0x2d98(%rsp), %rax
movq %rax, 0x480(%rsp)
movb $0x0, 0x2d93(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d94(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1c18(%rsp), %r10
movq %r10, 0x4908(%rsp)
movl %r9d, 0x4904(%rsp)
movl %r8d, 0x4900(%rsp)
movl %edi, 0x48fc(%rsp)
movq %rsi, 0x48f0(%rsp)
movq %rdx, 0x48e8(%rsp)
movl %ecx, 0x48e4(%rsp)
movq %rax, 0x48d8(%rsp)
movq 0x4908(%rsp), %rcx
movq %rcx, 0x478(%rsp)
movq 0x48f0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x48e8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x48e4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x48d8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4904(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4900(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x48fc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c78(%rsp)
movl $0x10, 0x4c74(%rsp)
movq 0x4c78(%rsp), %rax
movslq 0x4c74(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c74(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x480(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1c40(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x130f14e
movq 0x480(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1c58(%rsp)
movb $0x1, 0x2d93(%rsp)
testb $0x1, 0x2d93(%rsp)
jne 0x130f28f
leaq 0x1c18(%rsp), %rax
movq %rax, 0x3068(%rsp)
movq 0x3068(%rsp), %rax
movq %rax, 0x5318(%rsp)
movq 0x5318(%rsp), %rax
movq %rax, 0x470(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130f232
movq 0x470(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5314(%rsp) # imm = 0xFFFFFFFF
movl 0x5314(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5310(%rsp)
cmpl $0x1, 0x5310(%rsp)
jne 0x130f232
movq 0x470(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130f200
movq 0x470(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130f1fe
jmp 0x130f230
movq 0x470(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5458(%rsp)
cmpq $0x0, 0x5458(%rsp)
je 0x130f22e
movq 0x5458(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130f230
jmp 0x130f232
movq 0x470(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130f28d
movq %rax, %rdi
callq 0x678a0
jmp 0x130f28f
leaq 0x1c18(%rsp), %rax
movq %rax, 0x2f78(%rsp)
movq 0x2f78(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x460(%rsp)
leaq 0x1c18(%rsp), %rax
movq %rax, 0x3178(%rsp)
movq 0x3178(%rsp), %rax
movq %rax, 0x50f8(%rsp)
movq 0x50f8(%rsp), %rax
movq %rax, 0x468(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130f380
movq 0x468(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x50f4(%rsp) # imm = 0xFFFFFFFF
movl 0x50f4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x50f0(%rsp)
cmpl $0x1, 0x50f0(%rsp)
jne 0x130f380
movq 0x468(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130f34e
movq 0x468(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130f34c
jmp 0x130f37e
movq 0x468(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5568(%rsp)
cmpq $0x0, 0x5568(%rsp)
je 0x130f37c
movq 0x5568(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130f37e
jmp 0x130f380
movq 0x468(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130f3db
movq %rax, %rdi
callq 0x678a0
movq 0x460(%rsp), %rax
movq %rax, 0x1c60(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x1cbc(%rsp), %eax
leaq 0x1bc8(%rsp), %rdx
movq %rdx, 0x3360(%rsp)
movq %rcx, 0x3358(%rsp)
movl %eax, 0x3354(%rsp)
movq 0x3358(%rsp), %rax
movq %rax, 0x458(%rsp)
movb $0x0, 0x3353(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3354(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1bc8(%rsp), %r10
movq %r10, 0x4400(%rsp)
movl %r9d, 0x43fc(%rsp)
movl %r8d, 0x43f8(%rsp)
movl %edi, 0x43f4(%rsp)
movq %rsi, 0x43e8(%rsp)
movq %rdx, 0x43e0(%rsp)
movl %ecx, 0x43dc(%rsp)
movq %rax, 0x43d0(%rsp)
movq 0x4400(%rsp), %rcx
movq %rcx, 0x450(%rsp)
movq 0x43e8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x43e0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x43dc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x43d0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x43fc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x43f8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x43f4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4de8(%rsp)
movl $0x10, 0x4de4(%rsp)
movq 0x4de8(%rsp), %rax
movslq 0x4de4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4de4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x458(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1bf0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x130f5a7
movq 0x458(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1c08(%rsp)
movb $0x1, 0x3353(%rsp)
testb $0x1, 0x3353(%rsp)
jne 0x130f6e8
leaq 0x1bc8(%rsp), %rax
movq %rax, 0x3368(%rsp)
movq 0x3368(%rsp), %rax
movq %rax, 0x4ef8(%rsp)
movq 0x4ef8(%rsp), %rax
movq %rax, 0x448(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130f68b
movq 0x448(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4ef4(%rsp) # imm = 0xFFFFFFFF
movl 0x4ef4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4ef0(%rsp)
cmpl $0x1, 0x4ef0(%rsp)
jne 0x130f68b
movq 0x448(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130f659
movq 0x448(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130f657
jmp 0x130f689
movq 0x448(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5668(%rsp)
cmpq $0x0, 0x5668(%rsp)
je 0x130f687
movq 0x5668(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130f689
jmp 0x130f68b
movq 0x448(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130f6e6
movq %rax, %rdi
callq 0x678a0
jmp 0x130f6e8
leaq 0x1bc8(%rsp), %rax
movq %rax, 0x34c8(%rsp)
movq 0x34c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x438(%rsp)
leaq 0x1bc8(%rsp), %rax
movq %rax, 0x3180(%rsp)
movq 0x3180(%rsp), %rax
movq %rax, 0x50e8(%rsp)
movq 0x50e8(%rsp), %rax
movq %rax, 0x440(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130f7d9
movq 0x440(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x50e4(%rsp) # imm = 0xFFFFFFFF
movl 0x50e4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x50e0(%rsp)
cmpl $0x1, 0x50e0(%rsp)
jne 0x130f7d9
movq 0x440(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130f7a7
movq 0x440(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130f7a5
jmp 0x130f7d7
movq 0x440(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5570(%rsp)
cmpq $0x0, 0x5570(%rsp)
je 0x130f7d5
movq 0x5570(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130f7d7
jmp 0x130f7d9
movq 0x440(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130f834
movq %rax, %rdi
callq 0x678a0
movq 0x438(%rsp), %rax
movq %rax, 0x1c10(%rsp)
movl $0x0, 0x1bc4(%rsp)
movl 0x1bc4(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jge 0x130f999
movq 0x1c60(%rsp), %rax
movl 0x1bc4(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x35c8(%rsp)
movq 0x35c8(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1b80(%rsp)
movl $0x0, 0x1b7c(%rsp)
movl 0x1b7c(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jge 0x130f981
movq 0x1cb0(%rsp), %rax
movq %rax, 0x35c0(%rsp)
movq 0x35c0(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1b00(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x1b00(%rsp), %rsi
leaq 0x1b80(%rsp), %rdx
callq 0x1453700
vmovaps %zmm0, 0x1ac0(%rsp)
movq 0x1c10(%rsp), %rax
vmovaps 0x1ac0(%rsp), %zmm0
movq %rax, 0x3c38(%rsp)
vmovaps %zmm0, 0x3bc0(%rsp)
vmovaps 0x3bc0(%rsp), %zmm0
movq 0x3c38(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x1cb0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1cb0(%rsp)
movq 0x1c10(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1c10(%rsp)
movl 0x1b7c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b7c(%rsp)
jmp 0x130f8a8
jmp 0x130f983
movl 0x1bc4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1bc4(%rsp)
jmp 0x130f84f
jmp 0x130f99b
movl 0x1cbc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1cbc(%rsp)
jmp 0x130eb25
movl $0x0, 0x2bd4(%rsp)
jmp 0x13173b0
movl 0x2b88(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jne 0x131096c
cmpl $0x1, 0x2ba4(%rsp)
je 0x131096c
cmpl $0x1, 0x2b84(%rsp)
jne 0x131096c
movl 0x2b7c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jne 0x131096c
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movl 0x2b9c(%rsp), %ecx
movq 0x2b90(%rsp), %r8
movl 0x2b8c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c30(%rsp)
movq 0x2c30(%rsp), %rcx
movq %rcx, 0x428(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x437(%rsp)
je 0x130faa8
movq 0x428(%rsp), %rax
movq %rax, 0x41b0(%rsp)
movq 0x41b0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x437(%rsp)
movb 0x437(%rsp), %al
testb $0x1, %al
jne 0x130fab5
jmp 0x130fac5
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x13173b0
movl $0x0, 0x1abc(%rsp)
movl 0x1abc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x131095c
movq 0x2bc8(%rsp), %rcx
movl 0x1abc(%rsp), %eax
leaq 0x1a68(%rsp), %rdx
movq %rdx, 0x2d88(%rsp)
movq %rcx, 0x2d80(%rsp)
movl %eax, 0x2d7c(%rsp)
movq 0x2d80(%rsp), %rax
movq %rax, 0x420(%rsp)
movb $0x0, 0x2d7b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d7c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1a68(%rsp), %r10
movq %r10, 0x4940(%rsp)
movl %r9d, 0x493c(%rsp)
movl %r8d, 0x4938(%rsp)
movl %edi, 0x4934(%rsp)
movq %rsi, 0x4928(%rsp)
movq %rdx, 0x4920(%rsp)
movl %ecx, 0x491c(%rsp)
movq %rax, 0x4910(%rsp)
movq 0x4940(%rsp), %rcx
movq %rcx, 0x418(%rsp)
movq 0x4928(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4920(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x491c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4910(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x493c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4938(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4934(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c68(%rsp)
movl $0x10, 0x4c64(%rsp)
movq 0x4c68(%rsp), %rax
movslq 0x4c64(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c64(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x420(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1a90(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x130fca0
movq 0x420(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1aa8(%rsp)
movb $0x1, 0x2d7b(%rsp)
testb $0x1, 0x2d7b(%rsp)
jne 0x130fde1
leaq 0x1a68(%rsp), %rax
movq %rax, 0x3070(%rsp)
movq 0x3070(%rsp), %rax
movq %rax, 0x5308(%rsp)
movq 0x5308(%rsp), %rax
movq %rax, 0x410(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130fd84
movq 0x410(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5304(%rsp) # imm = 0xFFFFFFFF
movl 0x5304(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5300(%rsp)
cmpl $0x1, 0x5300(%rsp)
jne 0x130fd84
movq 0x410(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130fd52
movq 0x410(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130fd50
jmp 0x130fd82
movq 0x410(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5460(%rsp)
cmpq $0x0, 0x5460(%rsp)
je 0x130fd80
movq 0x5460(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130fd82
jmp 0x130fd84
movq 0x410(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130fddf
movq %rax, %rdi
callq 0x678a0
jmp 0x130fde1
leaq 0x1a68(%rsp), %rax
movq %rax, 0x2f70(%rsp)
movq 0x2f70(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x400(%rsp)
leaq 0x1a68(%rsp), %rax
movq %rax, 0x3188(%rsp)
movq 0x3188(%rsp), %rax
movq %rax, 0x50d8(%rsp)
movq 0x50d8(%rsp), %rax
movq %rax, 0x408(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x130fed2
movq 0x408(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x50d4(%rsp) # imm = 0xFFFFFFFF
movl 0x50d4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x50d0(%rsp)
cmpl $0x1, 0x50d0(%rsp)
jne 0x130fed2
movq 0x408(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x130fea0
movq 0x408(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x130fe9e
jmp 0x130fed0
movq 0x408(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5578(%rsp)
cmpq $0x0, 0x5578(%rsp)
je 0x130fece
movq 0x5578(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x130fed0
jmp 0x130fed2
movq 0x408(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x130ff2d
movq %rax, %rdi
callq 0x678a0
movq 0x400(%rsp), %rax
movq %rax, 0x1ab0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x1abc(%rsp), %eax
leaq 0x1a18(%rsp), %rdx
movq %rdx, 0x2d70(%rsp)
movq %rcx, 0x2d68(%rsp)
movl %eax, 0x2d64(%rsp)
movq 0x2d68(%rsp), %rax
movq %rax, 0x3f8(%rsp)
movb $0x0, 0x2d63(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d64(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1a18(%rsp), %r10
movq %r10, 0x4978(%rsp)
movl %r9d, 0x4974(%rsp)
movl %r8d, 0x4970(%rsp)
movl %edi, 0x496c(%rsp)
movq %rsi, 0x4960(%rsp)
movq %rdx, 0x4958(%rsp)
movl %ecx, 0x4954(%rsp)
movq %rax, 0x4948(%rsp)
movq 0x4978(%rsp), %rcx
movq %rcx, 0x3f0(%rsp)
movq 0x4960(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4958(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4954(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4948(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4974(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4970(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x496c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c58(%rsp)
movl $0x10, 0x4c54(%rsp)
movq 0x4c58(%rsp), %rax
movslq 0x4c54(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c54(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3f8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1a40(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13100f9
movq 0x3f8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1a58(%rsp)
movb $0x1, 0x2d63(%rsp)
testb $0x1, 0x2d63(%rsp)
jne 0x131023a
leaq 0x1a18(%rsp), %rax
movq %rax, 0x3078(%rsp)
movq 0x3078(%rsp), %rax
movq %rax, 0x52f8(%rsp)
movq 0x52f8(%rsp), %rax
movq %rax, 0x3e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13101dd
movq 0x3e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x52f4(%rsp) # imm = 0xFFFFFFFF
movl 0x52f4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x52f0(%rsp)
cmpl $0x1, 0x52f0(%rsp)
jne 0x13101dd
movq 0x3e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13101ab
movq 0x3e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13101a9
jmp 0x13101db
movq 0x3e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5468(%rsp)
cmpq $0x0, 0x5468(%rsp)
je 0x13101d9
movq 0x5468(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13101db
jmp 0x13101dd
movq 0x3e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1310238
movq %rax, %rdi
callq 0x678a0
jmp 0x131023a
leaq 0x1a18(%rsp), %rax
movq %rax, 0x2f68(%rsp)
movq 0x2f68(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d8(%rsp)
leaq 0x1a18(%rsp), %rax
movq %rax, 0x3190(%rsp)
movq 0x3190(%rsp), %rax
movq %rax, 0x50c8(%rsp)
movq 0x50c8(%rsp), %rax
movq %rax, 0x3e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x131032b
movq 0x3e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x50c4(%rsp) # imm = 0xFFFFFFFF
movl 0x50c4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x50c0(%rsp)
cmpl $0x1, 0x50c0(%rsp)
jne 0x131032b
movq 0x3e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13102f9
movq 0x3e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13102f7
jmp 0x1310329
movq 0x3e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5580(%rsp)
cmpq $0x0, 0x5580(%rsp)
je 0x1310327
movq 0x5580(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1310329
jmp 0x131032b
movq 0x3e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1310386
movq %rax, %rdi
callq 0x678a0
movq 0x3d8(%rsp), %rax
movq %rax, 0x1a60(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x1abc(%rsp), %eax
leaq 0x19c8(%rsp), %rdx
movq %rdx, 0x3340(%rsp)
movq %rcx, 0x3338(%rsp)
movl %eax, 0x3334(%rsp)
movq 0x3338(%rsp), %rax
movq %rax, 0x3d0(%rsp)
movb $0x0, 0x3333(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3334(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x19c8(%rsp), %r10
movq %r10, 0x4438(%rsp)
movl %r9d, 0x4434(%rsp)
movl %r8d, 0x4430(%rsp)
movl %edi, 0x442c(%rsp)
movq %rsi, 0x4420(%rsp)
movq %rdx, 0x4418(%rsp)
movl %ecx, 0x4414(%rsp)
movq %rax, 0x4408(%rsp)
movq 0x4438(%rsp), %rcx
movq %rcx, 0x3c8(%rsp)
movq 0x4420(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4418(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4414(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4408(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4434(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4430(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x442c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4dd8(%rsp)
movl $0x10, 0x4dd4(%rsp)
movq 0x4dd8(%rsp), %rax
movslq 0x4dd4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4dd4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3d0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x19f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1310552
movq 0x3d0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1a08(%rsp)
movb $0x1, 0x3333(%rsp)
testb $0x1, 0x3333(%rsp)
jne 0x1310693
leaq 0x19c8(%rsp), %rax
movq %rax, 0x3348(%rsp)
movq 0x3348(%rsp), %rax
movq %rax, 0x4f08(%rsp)
movq 0x4f08(%rsp), %rax
movq %rax, 0x3c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1310636
movq 0x3c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f04(%rsp) # imm = 0xFFFFFFFF
movl 0x4f04(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f00(%rsp)
cmpl $0x1, 0x4f00(%rsp)
jne 0x1310636
movq 0x3c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1310604
movq 0x3c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1310602
jmp 0x1310634
movq 0x3c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5660(%rsp)
cmpq $0x0, 0x5660(%rsp)
je 0x1310632
movq 0x5660(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1310634
jmp 0x1310636
movq 0x3c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1310691
movq %rax, %rdi
callq 0x678a0
jmp 0x1310693
leaq 0x19c8(%rsp), %rax
movq %rax, 0x34c0(%rsp)
movq 0x34c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3b0(%rsp)
leaq 0x19c8(%rsp), %rax
movq %rax, 0x3198(%rsp)
movq 0x3198(%rsp), %rax
movq %rax, 0x50b8(%rsp)
movq 0x50b8(%rsp), %rax
movq %rax, 0x3b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1310784
movq 0x3b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x50b4(%rsp) # imm = 0xFFFFFFFF
movl 0x50b4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x50b0(%rsp)
cmpl $0x1, 0x50b0(%rsp)
jne 0x1310784
movq 0x3b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1310752
movq 0x3b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1310750
jmp 0x1310782
movq 0x3b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5588(%rsp)
cmpq $0x0, 0x5588(%rsp)
je 0x1310780
movq 0x5588(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1310782
jmp 0x1310784
movq 0x3b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13107df
movq %rax, %rdi
callq 0x678a0
movq 0x3b0(%rsp), %rax
movq %rax, 0x1a10(%rsp)
movl $0x0, 0x19c4(%rsp)
movl 0x19c4(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jge 0x1310944
movl $0x0, 0x19c0(%rsp)
movl 0x19c0(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jge 0x131092c
movq 0x1ab0(%rsp), %rax
movq %rax, 0x35b8(%rsp)
movq 0x35b8(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1980(%rsp)
movq 0x1a60(%rsp), %rax
movl 0x19c0(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x35b0(%rsp)
movq 0x35b0(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1940(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x1980(%rsp), %rsi
leaq 0x1940(%rsp), %rdx
callq 0x1453700
vmovaps %zmm0, 0x1900(%rsp)
movq 0x1a10(%rsp), %rax
vmovaps 0x1900(%rsp), %zmm0
movq %rax, 0x3bb8(%rsp)
vmovaps %zmm0, 0x3b40(%rsp)
vmovaps 0x3b40(%rsp), %zmm0
movq 0x3bb8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x1ab0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1ab0(%rsp)
movq 0x1a10(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1a10(%rsp)
movl 0x19c0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x19c0(%rsp)
jmp 0x1310819
jmp 0x131092e
movl 0x19c4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x19c4(%rsp)
jmp 0x13107fa
jmp 0x1310946
movl 0x1abc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1abc(%rsp)
jmp 0x130fad0
movl $0x0, 0x2bd4(%rsp)
jmp 0x13173b0
cmpl $0x1, 0x2b88(%rsp)
je 0x1311917
cmpl $0x1, 0x2ba8(%rsp)
jne 0x1311917
movl 0x2b84(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jne 0x1311917
movl 0x2b7c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jne 0x1311917
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b7c(%rsp), %ecx
movq 0x2b70(%rsp), %r8
movl 0x2b6c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c28(%rsp)
movq 0x2c28(%rsp), %rcx
movq %rcx, 0x3a0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x3af(%rsp)
je 0x1310a53
movq 0x3a0(%rsp), %rax
movq %rax, 0x41b8(%rsp)
movq 0x41b8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x3af(%rsp)
movb 0x3af(%rsp), %al
testb $0x1, %al
jne 0x1310a60
jmp 0x1310a70
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x13173b0
movl $0x0, 0x18fc(%rsp)
movl 0x18fc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x1311907
movq 0x2bc8(%rsp), %rcx
movl 0x18fc(%rsp), %eax
leaq 0x18a8(%rsp), %rdx
movq %rdx, 0x2d58(%rsp)
movq %rcx, 0x2d50(%rsp)
movl %eax, 0x2d4c(%rsp)
movq 0x2d50(%rsp), %rax
movq %rax, 0x398(%rsp)
movb $0x0, 0x2d4b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d4c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x18a8(%rsp), %r10
movq %r10, 0x49b0(%rsp)
movl %r9d, 0x49ac(%rsp)
movl %r8d, 0x49a8(%rsp)
movl %edi, 0x49a4(%rsp)
movq %rsi, 0x4998(%rsp)
movq %rdx, 0x4990(%rsp)
movl %ecx, 0x498c(%rsp)
movq %rax, 0x4980(%rsp)
movq 0x49b0(%rsp), %rcx
movq %rcx, 0x390(%rsp)
movq 0x4998(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4990(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x498c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4980(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x49ac(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x49a8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x49a4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c48(%rsp)
movl $0x10, 0x4c44(%rsp)
movq 0x4c48(%rsp), %rax
movslq 0x4c44(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c44(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x398(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x18d0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1310c4b
movq 0x398(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x18e8(%rsp)
movb $0x1, 0x2d4b(%rsp)
testb $0x1, 0x2d4b(%rsp)
jne 0x1310d8c
leaq 0x18a8(%rsp), %rax
movq %rax, 0x3080(%rsp)
movq 0x3080(%rsp), %rax
movq %rax, 0x52e8(%rsp)
movq 0x52e8(%rsp), %rax
movq %rax, 0x388(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1310d2f
movq 0x388(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x52e4(%rsp) # imm = 0xFFFFFFFF
movl 0x52e4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x52e0(%rsp)
cmpl $0x1, 0x52e0(%rsp)
jne 0x1310d2f
movq 0x388(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1310cfd
movq 0x388(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1310cfb
jmp 0x1310d2d
movq 0x388(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5470(%rsp)
cmpq $0x0, 0x5470(%rsp)
je 0x1310d2b
movq 0x5470(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1310d2d
jmp 0x1310d2f
movq 0x388(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1310d8a
movq %rax, %rdi
callq 0x678a0
jmp 0x1310d8c
leaq 0x18a8(%rsp), %rax
movq %rax, 0x2f60(%rsp)
movq 0x2f60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x378(%rsp)
leaq 0x18a8(%rsp), %rax
movq %rax, 0x31a0(%rsp)
movq 0x31a0(%rsp), %rax
movq %rax, 0x50a8(%rsp)
movq 0x50a8(%rsp), %rax
movq %rax, 0x380(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1310e7d
movq 0x380(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x50a4(%rsp) # imm = 0xFFFFFFFF
movl 0x50a4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x50a0(%rsp)
cmpl $0x1, 0x50a0(%rsp)
jne 0x1310e7d
movq 0x380(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1310e4b
movq 0x380(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1310e49
jmp 0x1310e7b
movq 0x380(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5590(%rsp)
cmpq $0x0, 0x5590(%rsp)
je 0x1310e79
movq 0x5590(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1310e7b
jmp 0x1310e7d
movq 0x380(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1310ed8
movq %rax, %rdi
callq 0x678a0
movq 0x378(%rsp), %rax
movq %rax, 0x18f0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x18fc(%rsp), %eax
leaq 0x1858(%rsp), %rdx
movq %rdx, 0x2d40(%rsp)
movq %rcx, 0x2d38(%rsp)
movl %eax, 0x2d34(%rsp)
movq 0x2d38(%rsp), %rax
movq %rax, 0x370(%rsp)
movb $0x0, 0x2d33(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d34(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1858(%rsp), %r10
movq %r10, 0x49e8(%rsp)
movl %r9d, 0x49e4(%rsp)
movl %r8d, 0x49e0(%rsp)
movl %edi, 0x49dc(%rsp)
movq %rsi, 0x49d0(%rsp)
movq %rdx, 0x49c8(%rsp)
movl %ecx, 0x49c4(%rsp)
movq %rax, 0x49b8(%rsp)
movq 0x49e8(%rsp), %rcx
movq %rcx, 0x368(%rsp)
movq 0x49d0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x49c8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x49c4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x49b8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x49e4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x49e0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x49dc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c38(%rsp)
movl $0x10, 0x4c34(%rsp)
movq 0x4c38(%rsp), %rax
movslq 0x4c34(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c34(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x370(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1880(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13110a4
movq 0x370(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1898(%rsp)
movb $0x1, 0x2d33(%rsp)
testb $0x1, 0x2d33(%rsp)
jne 0x13111e5
leaq 0x1858(%rsp), %rax
movq %rax, 0x3088(%rsp)
movq 0x3088(%rsp), %rax
movq %rax, 0x52d8(%rsp)
movq 0x52d8(%rsp), %rax
movq %rax, 0x360(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1311188
movq 0x360(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x52d4(%rsp) # imm = 0xFFFFFFFF
movl 0x52d4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x52d0(%rsp)
cmpl $0x1, 0x52d0(%rsp)
jne 0x1311188
movq 0x360(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1311156
movq 0x360(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1311154
jmp 0x1311186
movq 0x360(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5478(%rsp)
cmpq $0x0, 0x5478(%rsp)
je 0x1311184
movq 0x5478(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1311186
jmp 0x1311188
movq 0x360(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13111e3
movq %rax, %rdi
callq 0x678a0
jmp 0x13111e5
leaq 0x1858(%rsp), %rax
movq %rax, 0x2f58(%rsp)
movq 0x2f58(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x350(%rsp)
leaq 0x1858(%rsp), %rax
movq %rax, 0x31a8(%rsp)
movq 0x31a8(%rsp), %rax
movq %rax, 0x5098(%rsp)
movq 0x5098(%rsp), %rax
movq %rax, 0x358(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13112d6
movq 0x358(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5094(%rsp) # imm = 0xFFFFFFFF
movl 0x5094(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5090(%rsp)
cmpl $0x1, 0x5090(%rsp)
jne 0x13112d6
movq 0x358(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13112a4
movq 0x358(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13112a2
jmp 0x13112d4
movq 0x358(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5598(%rsp)
cmpq $0x0, 0x5598(%rsp)
je 0x13112d2
movq 0x5598(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13112d4
jmp 0x13112d6
movq 0x358(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1311331
movq %rax, %rdi
callq 0x678a0
movq 0x350(%rsp), %rax
movq %rax, 0x18a0(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x18fc(%rsp), %eax
leaq 0x1808(%rsp), %rdx
movq %rdx, 0x3320(%rsp)
movq %rcx, 0x3318(%rsp)
movl %eax, 0x3314(%rsp)
movq 0x3318(%rsp), %rax
movq %rax, 0x348(%rsp)
movb $0x0, 0x3313(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3314(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1808(%rsp), %r10
movq %r10, 0x4470(%rsp)
movl %r9d, 0x446c(%rsp)
movl %r8d, 0x4468(%rsp)
movl %edi, 0x4464(%rsp)
movq %rsi, 0x4458(%rsp)
movq %rdx, 0x4450(%rsp)
movl %ecx, 0x444c(%rsp)
movq %rax, 0x4440(%rsp)
movq 0x4470(%rsp), %rcx
movq %rcx, 0x340(%rsp)
movq 0x4458(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4450(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x444c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4440(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x446c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4468(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4464(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4dc8(%rsp)
movl $0x10, 0x4dc4(%rsp)
movq 0x4dc8(%rsp), %rax
movslq 0x4dc4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4dc4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x348(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1830(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13114fd
movq 0x348(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1848(%rsp)
movb $0x1, 0x3313(%rsp)
testb $0x1, 0x3313(%rsp)
jne 0x131163e
leaq 0x1808(%rsp), %rax
movq %rax, 0x3328(%rsp)
movq 0x3328(%rsp), %rax
movq %rax, 0x4f18(%rsp)
movq 0x4f18(%rsp), %rax
movq %rax, 0x338(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13115e1
movq 0x338(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f14(%rsp) # imm = 0xFFFFFFFF
movl 0x4f14(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f10(%rsp)
cmpl $0x1, 0x4f10(%rsp)
jne 0x13115e1
movq 0x338(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13115af
movq 0x338(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13115ad
jmp 0x13115df
movq 0x338(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5658(%rsp)
cmpq $0x0, 0x5658(%rsp)
je 0x13115dd
movq 0x5658(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13115df
jmp 0x13115e1
movq 0x338(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131163c
movq %rax, %rdi
callq 0x678a0
jmp 0x131163e
leaq 0x1808(%rsp), %rax
movq %rax, 0x34b8(%rsp)
movq 0x34b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x328(%rsp)
leaq 0x1808(%rsp), %rax
movq %rax, 0x31b0(%rsp)
movq 0x31b0(%rsp), %rax
movq %rax, 0x5088(%rsp)
movq 0x5088(%rsp), %rax
movq %rax, 0x330(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x131172f
movq 0x330(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5084(%rsp) # imm = 0xFFFFFFFF
movl 0x5084(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5080(%rsp)
cmpl $0x1, 0x5080(%rsp)
jne 0x131172f
movq 0x330(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13116fd
movq 0x330(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13116fb
jmp 0x131172d
movq 0x330(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55a0(%rsp)
cmpq $0x0, 0x55a0(%rsp)
je 0x131172b
movq 0x55a0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x131172d
jmp 0x131172f
movq 0x330(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131178a
movq %rax, %rdi
callq 0x678a0
movq 0x328(%rsp), %rax
movq %rax, 0x1850(%rsp)
movl $0x0, 0x1804(%rsp)
movl 0x1804(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jge 0x13118ef
movq 0x18f0(%rsp), %rax
movl 0x1804(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x35a8(%rsp)
movq 0x35a8(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x17c0(%rsp)
movl $0x0, 0x17bc(%rsp)
movl 0x17bc(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jge 0x13118d7
movq 0x18a0(%rsp), %rax
movq %rax, 0x35a0(%rsp)
movq 0x35a0(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1740(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x17c0(%rsp), %rsi
leaq 0x1740(%rsp), %rdx
callq 0x1453700
vmovaps %zmm0, 0x1700(%rsp)
movq 0x1850(%rsp), %rax
vmovaps 0x1700(%rsp), %zmm0
movq %rax, 0x3b38(%rsp)
vmovaps %zmm0, 0x3ac0(%rsp)
vmovaps 0x3ac0(%rsp), %zmm0
movq 0x3b38(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x18a0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x18a0(%rsp)
movq 0x1850(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1850(%rsp)
movl 0x17bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x17bc(%rsp)
jmp 0x13117fe
jmp 0x13118d9
movl 0x1804(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1804(%rsp)
jmp 0x13117a5
jmp 0x13118f1
movl 0x18fc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x18fc(%rsp)
jmp 0x1310a7b
movl $0x0, 0x2bd4(%rsp)
jmp 0x13173b0
movl 0x2b88(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jne 0x13128c2
cmpl $0x1, 0x2b84(%rsp)
je 0x13128c2
cmpl $0x1, 0x2ba4(%rsp)
jne 0x13128c2
movl 0x2b7c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jne 0x13128c2
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b7c(%rsp), %ecx
movq 0x2b70(%rsp), %r8
movl 0x2b6c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c20(%rsp)
movq 0x2c20(%rsp), %rcx
movq %rcx, 0x318(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x327(%rsp)
je 0x13119fe
movq 0x318(%rsp), %rax
movq %rax, 0x41c0(%rsp)
movq 0x41c0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x327(%rsp)
movb 0x327(%rsp), %al
testb $0x1, %al
jne 0x1311a0b
jmp 0x1311a1b
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x13173b0
movl $0x0, 0x16fc(%rsp)
movl 0x16fc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x13128b2
movq 0x2bc8(%rsp), %rcx
movl 0x16fc(%rsp), %eax
leaq 0x16a8(%rsp), %rdx
movq %rdx, 0x2d28(%rsp)
movq %rcx, 0x2d20(%rsp)
movl %eax, 0x2d1c(%rsp)
movq 0x2d20(%rsp), %rax
movq %rax, 0x310(%rsp)
movb $0x0, 0x2d1b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d1c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x16a8(%rsp), %r10
movq %r10, 0x4a20(%rsp)
movl %r9d, 0x4a1c(%rsp)
movl %r8d, 0x4a18(%rsp)
movl %edi, 0x4a14(%rsp)
movq %rsi, 0x4a08(%rsp)
movq %rdx, 0x4a00(%rsp)
movl %ecx, 0x49fc(%rsp)
movq %rax, 0x49f0(%rsp)
movq 0x4a20(%rsp), %rcx
movq %rcx, 0x308(%rsp)
movq 0x4a08(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4a00(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x49fc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x49f0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4a1c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4a18(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4a14(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c28(%rsp)
movl $0x10, 0x4c24(%rsp)
movq 0x4c28(%rsp), %rax
movslq 0x4c24(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c24(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x310(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x16d0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1311bf6
movq 0x310(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x16e8(%rsp)
movb $0x1, 0x2d1b(%rsp)
testb $0x1, 0x2d1b(%rsp)
jne 0x1311d37
leaq 0x16a8(%rsp), %rax
movq %rax, 0x3090(%rsp)
movq 0x3090(%rsp), %rax
movq %rax, 0x52c8(%rsp)
movq 0x52c8(%rsp), %rax
movq %rax, 0x300(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1311cda
movq 0x300(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x52c4(%rsp) # imm = 0xFFFFFFFF
movl 0x52c4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x52c0(%rsp)
cmpl $0x1, 0x52c0(%rsp)
jne 0x1311cda
movq 0x300(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1311ca8
movq 0x300(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1311ca6
jmp 0x1311cd8
movq 0x300(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5480(%rsp)
cmpq $0x0, 0x5480(%rsp)
je 0x1311cd6
movq 0x5480(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1311cd8
jmp 0x1311cda
movq 0x300(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1311d35
movq %rax, %rdi
callq 0x678a0
jmp 0x1311d37
leaq 0x16a8(%rsp), %rax
movq %rax, 0x2f50(%rsp)
movq 0x2f50(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2f0(%rsp)
leaq 0x16a8(%rsp), %rax
movq %rax, 0x31b8(%rsp)
movq 0x31b8(%rsp), %rax
movq %rax, 0x5078(%rsp)
movq 0x5078(%rsp), %rax
movq %rax, 0x2f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1311e28
movq 0x2f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5074(%rsp) # imm = 0xFFFFFFFF
movl 0x5074(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5070(%rsp)
cmpl $0x1, 0x5070(%rsp)
jne 0x1311e28
movq 0x2f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1311df6
movq 0x2f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1311df4
jmp 0x1311e26
movq 0x2f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55a8(%rsp)
cmpq $0x0, 0x55a8(%rsp)
je 0x1311e24
movq 0x55a8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1311e26
jmp 0x1311e28
movq 0x2f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1311e83
movq %rax, %rdi
callq 0x678a0
movq 0x2f0(%rsp), %rax
movq %rax, 0x16f0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x16fc(%rsp), %eax
leaq 0x1658(%rsp), %rdx
movq %rdx, 0x2d10(%rsp)
movq %rcx, 0x2d08(%rsp)
movl %eax, 0x2d04(%rsp)
movq 0x2d08(%rsp), %rax
movq %rax, 0x2e8(%rsp)
movb $0x0, 0x2d03(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d04(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1658(%rsp), %r10
movq %r10, 0x4a58(%rsp)
movl %r9d, 0x4a54(%rsp)
movl %r8d, 0x4a50(%rsp)
movl %edi, 0x4a4c(%rsp)
movq %rsi, 0x4a40(%rsp)
movq %rdx, 0x4a38(%rsp)
movl %ecx, 0x4a34(%rsp)
movq %rax, 0x4a28(%rsp)
movq 0x4a58(%rsp), %rcx
movq %rcx, 0x2e0(%rsp)
movq 0x4a40(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4a38(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4a34(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4a28(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4a54(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4a50(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4a4c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c18(%rsp)
movl $0x10, 0x4c14(%rsp)
movq 0x4c18(%rsp), %rax
movslq 0x4c14(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c14(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2e8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1680(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x131204f
movq 0x2e8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1698(%rsp)
movb $0x1, 0x2d03(%rsp)
testb $0x1, 0x2d03(%rsp)
jne 0x1312190
leaq 0x1658(%rsp), %rax
movq %rax, 0x3098(%rsp)
movq 0x3098(%rsp), %rax
movq %rax, 0x52b8(%rsp)
movq 0x52b8(%rsp), %rax
movq %rax, 0x2d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1312133
movq 0x2d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x52b4(%rsp) # imm = 0xFFFFFFFF
movl 0x52b4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x52b0(%rsp)
cmpl $0x1, 0x52b0(%rsp)
jne 0x1312133
movq 0x2d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1312101
movq 0x2d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13120ff
jmp 0x1312131
movq 0x2d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5488(%rsp)
cmpq $0x0, 0x5488(%rsp)
je 0x131212f
movq 0x5488(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1312131
jmp 0x1312133
movq 0x2d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131218e
movq %rax, %rdi
callq 0x678a0
jmp 0x1312190
leaq 0x1658(%rsp), %rax
movq %rax, 0x2f48(%rsp)
movq 0x2f48(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2c8(%rsp)
leaq 0x1658(%rsp), %rax
movq %rax, 0x31c0(%rsp)
movq 0x31c0(%rsp), %rax
movq %rax, 0x5068(%rsp)
movq 0x5068(%rsp), %rax
movq %rax, 0x2d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1312281
movq 0x2d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5064(%rsp) # imm = 0xFFFFFFFF
movl 0x5064(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5060(%rsp)
cmpl $0x1, 0x5060(%rsp)
jne 0x1312281
movq 0x2d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x131224f
movq 0x2d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x131224d
jmp 0x131227f
movq 0x2d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55b0(%rsp)
cmpq $0x0, 0x55b0(%rsp)
je 0x131227d
movq 0x55b0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x131227f
jmp 0x1312281
movq 0x2d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13122dc
movq %rax, %rdi
callq 0x678a0
movq 0x2c8(%rsp), %rax
movq %rax, 0x16a0(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x16fc(%rsp), %eax
leaq 0x1608(%rsp), %rdx
movq %rdx, 0x3300(%rsp)
movq %rcx, 0x32f8(%rsp)
movl %eax, 0x32f4(%rsp)
movq 0x32f8(%rsp), %rax
movq %rax, 0x2c0(%rsp)
movb $0x0, 0x32f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x32f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1608(%rsp), %r10
movq %r10, 0x44a8(%rsp)
movl %r9d, 0x44a4(%rsp)
movl %r8d, 0x44a0(%rsp)
movl %edi, 0x449c(%rsp)
movq %rsi, 0x4490(%rsp)
movq %rdx, 0x4488(%rsp)
movl %ecx, 0x4484(%rsp)
movq %rax, 0x4478(%rsp)
movq 0x44a8(%rsp), %rcx
movq %rcx, 0x2b8(%rsp)
movq 0x4490(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4488(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4484(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4478(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x44a4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x44a0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x449c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4db8(%rsp)
movl $0x10, 0x4db4(%rsp)
movq 0x4db8(%rsp), %rax
movslq 0x4db4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4db4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2c0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1630(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13124a8
movq 0x2c0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1648(%rsp)
movb $0x1, 0x32f3(%rsp)
testb $0x1, 0x32f3(%rsp)
jne 0x13125e9
leaq 0x1608(%rsp), %rax
movq %rax, 0x3308(%rsp)
movq 0x3308(%rsp), %rax
movq %rax, 0x4f28(%rsp)
movq 0x4f28(%rsp), %rax
movq %rax, 0x2b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x131258c
movq 0x2b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f24(%rsp) # imm = 0xFFFFFFFF
movl 0x4f24(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f20(%rsp)
cmpl $0x1, 0x4f20(%rsp)
jne 0x131258c
movq 0x2b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x131255a
movq 0x2b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1312558
jmp 0x131258a
movq 0x2b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5650(%rsp)
cmpq $0x0, 0x5650(%rsp)
je 0x1312588
movq 0x5650(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x131258a
jmp 0x131258c
movq 0x2b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13125e7
movq %rax, %rdi
callq 0x678a0
jmp 0x13125e9
leaq 0x1608(%rsp), %rax
movq %rax, 0x34b0(%rsp)
movq 0x34b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2a0(%rsp)
leaq 0x1608(%rsp), %rax
movq %rax, 0x31c8(%rsp)
movq 0x31c8(%rsp), %rax
movq %rax, 0x5058(%rsp)
movq 0x5058(%rsp), %rax
movq %rax, 0x2a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13126da
movq 0x2a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5054(%rsp) # imm = 0xFFFFFFFF
movl 0x5054(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5050(%rsp)
cmpl $0x1, 0x5050(%rsp)
jne 0x13126da
movq 0x2a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13126a8
movq 0x2a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13126a6
jmp 0x13126d8
movq 0x2a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55b8(%rsp)
cmpq $0x0, 0x55b8(%rsp)
je 0x13126d6
movq 0x55b8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13126d8
jmp 0x13126da
movq 0x2a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1312735
movq %rax, %rdi
callq 0x678a0
movq 0x2a0(%rsp), %rax
movq %rax, 0x1650(%rsp)
movl $0x0, 0x1604(%rsp)
movl 0x1604(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jge 0x131289a
movl $0x0, 0x1600(%rsp)
movl 0x1600(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jge 0x1312882
movq 0x16f0(%rsp), %rax
movl 0x1600(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x3598(%rsp)
movq 0x3598(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x15c0(%rsp)
movq 0x16a0(%rsp), %rax
movq %rax, 0x3590(%rsp)
movq 0x3590(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1580(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x15c0(%rsp), %rsi
leaq 0x1580(%rsp), %rdx
callq 0x1453700
vmovaps %zmm0, 0x1540(%rsp)
movq 0x1650(%rsp), %rax
vmovaps 0x1540(%rsp), %zmm0
movq %rax, 0x3ab8(%rsp)
vmovaps %zmm0, 0x3a40(%rsp)
vmovaps 0x3a40(%rsp), %zmm0
movq 0x3ab8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x16a0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x16a0(%rsp)
movq 0x1650(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1650(%rsp)
movl 0x1600(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1600(%rsp)
jmp 0x131276f
jmp 0x1312884
movl 0x1604(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1604(%rsp)
jmp 0x1312750
jmp 0x131289c
movl 0x16fc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x16fc(%rsp)
jmp 0x1311a26
movl $0x0, 0x2bd4(%rsp)
jmp 0x13173b0
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x1441b80
movl %eax, 0x2bd4(%rsp)
jmp 0x13173b0
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movl 0x2b9c(%rsp), %ecx
movq 0x2b90(%rsp), %r8
movl 0x2b8c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c18(%rsp)
movq 0x2c18(%rsp), %rcx
movq %rcx, 0x290(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x29f(%rsp)
je 0x1312996
movq 0x290(%rsp), %rax
movq %rax, 0x41c8(%rsp)
movq 0x41c8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x29f(%rsp)
movb 0x29f(%rsp), %al
testb $0x1, %al
jne 0x13129a3
jmp 0x13129b3
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x13173b0
movq 0x2bc0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x131345a
movl $0x0, 0x153c(%rsp)
movl 0x153c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jge 0x131344a
movq 0x2bc8(%rsp), %rcx
movl 0x153c(%rsp), %eax
leaq 0x14e8(%rsp), %rdx
movq %rdx, 0x2cf8(%rsp)
movq %rcx, 0x2cf0(%rsp)
movl %eax, 0x2cec(%rsp)
movq 0x2cf0(%rsp), %rax
movq %rax, 0x288(%rsp)
movb $0x0, 0x2ceb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2cec(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x14e8(%rsp), %r10
movq %r10, 0x4a90(%rsp)
movl %r9d, 0x4a8c(%rsp)
movl %r8d, 0x4a88(%rsp)
movl %edi, 0x4a84(%rsp)
movq %rsi, 0x4a78(%rsp)
movq %rdx, 0x4a70(%rsp)
movl %ecx, 0x4a6c(%rsp)
movq %rax, 0x4a60(%rsp)
movq 0x4a90(%rsp), %rcx
movq %rcx, 0x280(%rsp)
movq 0x4a78(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4a70(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4a6c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4a60(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4a8c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4a88(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4a84(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c08(%rsp)
movl $0x10, 0x4c04(%rsp)
movq 0x4c08(%rsp), %rax
movslq 0x4c04(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c04(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x288(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1510(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1312ba0
movq 0x288(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1528(%rsp)
movb $0x1, 0x2ceb(%rsp)
testb $0x1, 0x2ceb(%rsp)
jne 0x1312ce1
leaq 0x14e8(%rsp), %rax
movq %rax, 0x30a0(%rsp)
movq 0x30a0(%rsp), %rax
movq %rax, 0x52a8(%rsp)
movq 0x52a8(%rsp), %rax
movq %rax, 0x278(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1312c84
movq 0x278(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x52a4(%rsp) # imm = 0xFFFFFFFF
movl 0x52a4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x52a0(%rsp)
cmpl $0x1, 0x52a0(%rsp)
jne 0x1312c84
movq 0x278(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1312c52
movq 0x278(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1312c50
jmp 0x1312c82
movq 0x278(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5490(%rsp)
cmpq $0x0, 0x5490(%rsp)
je 0x1312c80
movq 0x5490(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1312c82
jmp 0x1312c84
movq 0x278(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1312cdf
movq %rax, %rdi
callq 0x678a0
jmp 0x1312ce1
leaq 0x14e8(%rsp), %rax
movq %rax, 0x2f40(%rsp)
movq 0x2f40(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x268(%rsp)
leaq 0x14e8(%rsp), %rax
movq %rax, 0x31d0(%rsp)
movq 0x31d0(%rsp), %rax
movq %rax, 0x5048(%rsp)
movq 0x5048(%rsp), %rax
movq %rax, 0x270(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1312dd2
movq 0x270(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5044(%rsp) # imm = 0xFFFFFFFF
movl 0x5044(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5040(%rsp)
cmpl $0x1, 0x5040(%rsp)
jne 0x1312dd2
movq 0x270(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1312da0
movq 0x270(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1312d9e
jmp 0x1312dd0
movq 0x270(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55c0(%rsp)
cmpq $0x0, 0x55c0(%rsp)
je 0x1312dce
movq 0x55c0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1312dd0
jmp 0x1312dd2
movq 0x270(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1312e2d
movq %rax, %rdi
callq 0x678a0
movq 0x268(%rsp), %rax
movq %rax, 0x1530(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x153c(%rsp), %eax
movq %rcx, 0x4068(%rsp)
movl %eax, 0x4064(%rsp)
movq 0x4068(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x4064(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x14e0(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x153c(%rsp), %eax
leaq 0x1490(%rsp), %rdx
movq %rdx, 0x32e0(%rsp)
movq %rcx, 0x32d8(%rsp)
movl %eax, 0x32d4(%rsp)
movq 0x32d8(%rsp), %rax
movq %rax, 0x260(%rsp)
movb $0x0, 0x32d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x32d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1490(%rsp), %r10
movq %r10, 0x44e0(%rsp)
movl %r9d, 0x44dc(%rsp)
movl %r8d, 0x44d8(%rsp)
movl %edi, 0x44d4(%rsp)
movq %rsi, 0x44c8(%rsp)
movq %rdx, 0x44c0(%rsp)
movl %ecx, 0x44bc(%rsp)
movq %rax, 0x44b0(%rsp)
movq 0x44e0(%rsp), %rcx
movq %rcx, 0x258(%rsp)
movq 0x44c8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x44c0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x44bc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x44b0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x44dc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x44d8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x44d4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4da8(%rsp)
movl $0x10, 0x4da4(%rsp)
movq 0x4da8(%rsp), %rax
movslq 0x4da4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4da4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x260(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x14b8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1313042
movq 0x260(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x14d0(%rsp)
movb $0x1, 0x32d3(%rsp)
testb $0x1, 0x32d3(%rsp)
jne 0x1313183
leaq 0x1490(%rsp), %rax
movq %rax, 0x32e8(%rsp)
movq 0x32e8(%rsp), %rax
movq %rax, 0x4f38(%rsp)
movq 0x4f38(%rsp), %rax
movq %rax, 0x250(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1313126
movq 0x250(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f34(%rsp) # imm = 0xFFFFFFFF
movl 0x4f34(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f30(%rsp)
cmpl $0x1, 0x4f30(%rsp)
jne 0x1313126
movq 0x250(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13130f4
movq 0x250(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13130f2
jmp 0x1313124
movq 0x250(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5648(%rsp)
cmpq $0x0, 0x5648(%rsp)
je 0x1313122
movq 0x5648(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1313124
jmp 0x1313126
movq 0x250(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1313181
movq %rax, %rdi
callq 0x678a0
jmp 0x1313183
leaq 0x1490(%rsp), %rax
movq %rax, 0x34a8(%rsp)
movq 0x34a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x240(%rsp)
leaq 0x1490(%rsp), %rax
movq %rax, 0x31d8(%rsp)
movq 0x31d8(%rsp), %rax
movq %rax, 0x5038(%rsp)
movq 0x5038(%rsp), %rax
movq %rax, 0x248(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1313274
movq 0x248(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5034(%rsp) # imm = 0xFFFFFFFF
movl 0x5034(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5030(%rsp)
cmpl $0x1, 0x5030(%rsp)
jne 0x1313274
movq 0x248(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1313242
movq 0x248(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1313240
jmp 0x1313272
movq 0x248(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55c8(%rsp)
cmpq $0x0, 0x55c8(%rsp)
je 0x1313270
movq 0x55c8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1313272
jmp 0x1313274
movq 0x248(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13132cf
movq %rax, %rdi
callq 0x678a0
movq 0x240(%rsp), %rax
movq %rax, 0x14d8(%rsp)
movl $0x0, 0x148c(%rsp)
movl 0x148c(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jge 0x1313432
movq 0x14e0(%rsp), %rax
movq %rax, 0x3588(%rsp)
movq 0x3588(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1440(%rsp)
movl $0x0, 0x143c(%rsp)
movl 0x143c(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jge 0x1313408
movq 0x1530(%rsp), %rax
movq %rax, 0x3580(%rsp)
movq 0x3580(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x13c0(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x13c0(%rsp), %rsi
leaq 0x1440(%rsp), %rdx
callq 0x1453700
vmovaps %zmm0, 0x1380(%rsp)
movq 0x14d8(%rsp), %rax
vmovaps 0x1380(%rsp), %zmm0
movq %rax, 0x3a38(%rsp)
vmovaps %zmm0, 0x39c0(%rsp)
vmovaps 0x39c0(%rsp), %zmm0
movq 0x3a38(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x1530(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1530(%rsp)
movq 0x14d8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x14d8(%rsp)
movl 0x143c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x143c(%rsp)
jmp 0x131332f
movq 0x14e0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x14e0(%rsp)
movl 0x148c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x148c(%rsp)
jmp 0x13132ea
jmp 0x1313434
movl 0x153c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x153c(%rsp)
jmp 0x13129d0
movl $0x0, 0x2bd4(%rsp)
jmp 0x13173b0
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1313edf
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x13134b5
cmpl $0x1, 0x2b6c(%rsp)
jne 0x13134b5
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x1442d90
movl %eax, 0x2bd4(%rsp)
jmp 0x13173b0
movl $0x0, 0x137c(%rsp)
movl 0x137c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jge 0x1313ecf
movq 0x2bc8(%rsp), %rcx
movl 0x137c(%rsp), %eax
leaq 0x1328(%rsp), %rdx
movq %rdx, 0x2ce0(%rsp)
movq %rcx, 0x2cd8(%rsp)
movl %eax, 0x2cd4(%rsp)
movq 0x2cd8(%rsp), %rax
movq %rax, 0x238(%rsp)
movb $0x0, 0x2cd3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2cd4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1328(%rsp), %r10
movq %r10, 0x4ac8(%rsp)
movl %r9d, 0x4ac4(%rsp)
movl %r8d, 0x4ac0(%rsp)
movl %edi, 0x4abc(%rsp)
movq %rsi, 0x4ab0(%rsp)
movq %rdx, 0x4aa8(%rsp)
movl %ecx, 0x4aa4(%rsp)
movq %rax, 0x4a98(%rsp)
movq 0x4ac8(%rsp), %rcx
movq %rcx, 0x230(%rsp)
movq 0x4ab0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4aa8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4aa4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4a98(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4ac4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4ac0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4abc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4bf8(%rsp)
movl $0x10, 0x4bf4(%rsp)
movq 0x4bf8(%rsp), %rax
movslq 0x4bf4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4bf4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x238(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1350(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1313690
movq 0x238(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1368(%rsp)
movb $0x1, 0x2cd3(%rsp)
testb $0x1, 0x2cd3(%rsp)
jne 0x13137d1
leaq 0x1328(%rsp), %rax
movq %rax, 0x30a8(%rsp)
movq 0x30a8(%rsp), %rax
movq %rax, 0x5298(%rsp)
movq 0x5298(%rsp), %rax
movq %rax, 0x228(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1313774
movq 0x228(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5294(%rsp) # imm = 0xFFFFFFFF
movl 0x5294(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5290(%rsp)
cmpl $0x1, 0x5290(%rsp)
jne 0x1313774
movq 0x228(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1313742
movq 0x228(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1313740
jmp 0x1313772
movq 0x228(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5498(%rsp)
cmpq $0x0, 0x5498(%rsp)
je 0x1313770
movq 0x5498(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1313772
jmp 0x1313774
movq 0x228(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13137cf
movq %rax, %rdi
callq 0x678a0
jmp 0x13137d1
leaq 0x1328(%rsp), %rax
movq %rax, 0x2f38(%rsp)
movq 0x2f38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x218(%rsp)
leaq 0x1328(%rsp), %rax
movq %rax, 0x31e0(%rsp)
movq 0x31e0(%rsp), %rax
movq %rax, 0x5028(%rsp)
movq 0x5028(%rsp), %rax
movq %rax, 0x220(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13138c2
movq 0x220(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5024(%rsp) # imm = 0xFFFFFFFF
movl 0x5024(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5020(%rsp)
cmpl $0x1, 0x5020(%rsp)
jne 0x13138c2
movq 0x220(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1313890
movq 0x220(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x131388e
jmp 0x13138c0
movq 0x220(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55d0(%rsp)
cmpq $0x0, 0x55d0(%rsp)
je 0x13138be
movq 0x55d0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13138c0
jmp 0x13138c2
movq 0x220(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131391d
movq %rax, %rdi
callq 0x678a0
movq 0x218(%rsp), %rax
movq %rax, 0x1370(%rsp)
movq 0x2bc0(%rsp), %rax
movq %rax, 0x2f30(%rsp)
movq 0x2f30(%rsp), %rax
movq (%rax), %rax
movl 0x137c(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x3578(%rsp)
movq 0x3578(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x12c0(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x137c(%rsp), %eax
leaq 0x1270(%rsp), %rdx
movq %rdx, 0x32c0(%rsp)
movq %rcx, 0x32b8(%rsp)
movl %eax, 0x32b4(%rsp)
movq 0x32b8(%rsp), %rax
movq %rax, 0x210(%rsp)
movb $0x0, 0x32b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x32b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1270(%rsp), %r10
movq %r10, 0x4518(%rsp)
movl %r9d, 0x4514(%rsp)
movl %r8d, 0x4510(%rsp)
movl %edi, 0x450c(%rsp)
movq %rsi, 0x4500(%rsp)
movq %rdx, 0x44f8(%rsp)
movl %ecx, 0x44f4(%rsp)
movq %rax, 0x44e8(%rsp)
movq 0x4518(%rsp), %rcx
movq %rcx, 0x208(%rsp)
movq 0x4500(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x44f8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x44f4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x44e8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4514(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4510(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x450c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d98(%rsp)
movl $0x10, 0x4d94(%rsp)
movq 0x4d98(%rsp), %rax
movslq 0x4d94(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d94(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x210(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1298(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1313b36
movq 0x210(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x12b0(%rsp)
movb $0x1, 0x32b3(%rsp)
testb $0x1, 0x32b3(%rsp)
jne 0x1313c77
leaq 0x1270(%rsp), %rax
movq %rax, 0x32c8(%rsp)
movq 0x32c8(%rsp), %rax
movq %rax, 0x4f48(%rsp)
movq 0x4f48(%rsp), %rax
movq %rax, 0x200(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1313c1a
movq 0x200(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f44(%rsp) # imm = 0xFFFFFFFF
movl 0x4f44(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f40(%rsp)
cmpl $0x1, 0x4f40(%rsp)
jne 0x1313c1a
movq 0x200(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1313be8
movq 0x200(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1313be6
jmp 0x1313c18
movq 0x200(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5640(%rsp)
cmpq $0x0, 0x5640(%rsp)
je 0x1313c16
movq 0x5640(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1313c18
jmp 0x1313c1a
movq 0x200(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1313c75
movq %rax, %rdi
callq 0x678a0
jmp 0x1313c77
leaq 0x1270(%rsp), %rax
movq %rax, 0x34a0(%rsp)
movq 0x34a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1f0(%rsp)
leaq 0x1270(%rsp), %rax
movq %rax, 0x31e8(%rsp)
movq 0x31e8(%rsp), %rax
movq %rax, 0x5018(%rsp)
movq 0x5018(%rsp), %rax
movq %rax, 0x1f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1313d68
movq 0x1f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5014(%rsp) # imm = 0xFFFFFFFF
movl 0x5014(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5010(%rsp)
cmpl $0x1, 0x5010(%rsp)
jne 0x1313d68
movq 0x1f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1313d36
movq 0x1f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1313d34
jmp 0x1313d66
movq 0x1f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55d8(%rsp)
cmpq $0x0, 0x55d8(%rsp)
je 0x1313d64
movq 0x55d8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1313d66
jmp 0x1313d68
movq 0x1f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1313dc3
movq %rax, %rdi
callq 0x678a0
movq 0x1f0(%rsp), %rax
movq %rax, 0x12b8(%rsp)
movl $0x0, 0x126c(%rsp)
movl 0x126c(%rsp), %eax
cmpl 0x2b98(%rsp), %eax
jge 0x1313eb7
movq 0x1370(%rsp), %rax
movq %rax, 0x3570(%rsp)
movq 0x3570(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1200(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x1200(%rsp), %rsi
leaq 0x12c0(%rsp), %rdx
callq 0x1453700
vmovaps %zmm0, 0x11c0(%rsp)
movq 0x12b8(%rsp), %rax
vmovaps 0x11c0(%rsp), %zmm0
movq %rax, 0x39b8(%rsp)
vmovaps %zmm0, 0x3940(%rsp)
vmovaps 0x3940(%rsp), %zmm0
movq 0x39b8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x1370(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1370(%rsp)
movq 0x12b8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x12b8(%rsp)
movl 0x126c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x126c(%rsp)
jmp 0x1313dde
jmp 0x1313eb9
movl 0x137c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x137c(%rsp)
jmp 0x13134c0
movl $0x0, 0x2bd4(%rsp)
jmp 0x13173b0
jmp 0x13173a3
movq 0x2bc8(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x13159dd
movq 0x2bc0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1314aa1
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b80(%rsp), %ecx
movl 0x2b7c(%rsp), %r8d
movq 0x2b70(%rsp), %r9
movl 0x2b6c(%rsp), %r10d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c10(%rsp)
movq 0x2c10(%rsp), %rcx
movq %rcx, 0x1e0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1ef(%rsp)
je 0x1313fb8
movq 0x1e0(%rsp), %rax
movq %rax, 0x41d0(%rsp)
movq 0x41d0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1ef(%rsp)
movb 0x1ef(%rsp), %al
testb $0x1, %al
jne 0x1313fc5
jmp 0x1313fd5
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x13173b0
movl $0x0, 0x11bc(%rsp)
movl 0x11bc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x1314a91
movq 0x2bc8(%rsp), %rcx
movl 0x11bc(%rsp), %eax
movq %rcx, 0x4058(%rsp)
movl %eax, 0x4054(%rsp)
movq 0x4058(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x4054(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x11b0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x11bc(%rsp), %eax
leaq 0x1160(%rsp), %rdx
movq %rdx, 0x2cc8(%rsp)
movq %rcx, 0x2cc0(%rsp)
movl %eax, 0x2cbc(%rsp)
movq 0x2cc0(%rsp), %rax
movq %rax, 0x1d8(%rsp)
movb $0x0, 0x2cbb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2cbc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1160(%rsp), %r10
movq %r10, 0x4b00(%rsp)
movl %r9d, 0x4afc(%rsp)
movl %r8d, 0x4af8(%rsp)
movl %edi, 0x4af4(%rsp)
movq %rsi, 0x4ae8(%rsp)
movq %rdx, 0x4ae0(%rsp)
movl %ecx, 0x4adc(%rsp)
movq %rax, 0x4ad0(%rsp)
movq 0x4b00(%rsp), %rcx
movq %rcx, 0x1d0(%rsp)
movq 0x4ae8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4ae0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4adc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4ad0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4afc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4af8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4af4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4be8(%rsp)
movl $0x10, 0x4be4(%rsp)
movq 0x4be8(%rsp), %rax
movslq 0x4be4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4be4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x1d8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1188(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13141f9
movq 0x1d8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x11a0(%rsp)
movb $0x1, 0x2cbb(%rsp)
testb $0x1, 0x2cbb(%rsp)
jne 0x131433a
leaq 0x1160(%rsp), %rax
movq %rax, 0x30b0(%rsp)
movq 0x30b0(%rsp), %rax
movq %rax, 0x5288(%rsp)
movq 0x5288(%rsp), %rax
movq %rax, 0x1c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13142dd
movq 0x1c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5284(%rsp) # imm = 0xFFFFFFFF
movl 0x5284(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5280(%rsp)
cmpl $0x1, 0x5280(%rsp)
jne 0x13142dd
movq 0x1c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13142ab
movq 0x1c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13142a9
jmp 0x13142db
movq 0x1c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54a0(%rsp)
cmpq $0x0, 0x54a0(%rsp)
je 0x13142d9
movq 0x54a0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13142db
jmp 0x13142dd
movq 0x1c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1314338
movq %rax, %rdi
callq 0x678a0
jmp 0x131433a
leaq 0x1160(%rsp), %rax
movq %rax, 0x2f28(%rsp)
movq 0x2f28(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1b8(%rsp)
leaq 0x1160(%rsp), %rax
movq %rax, 0x31f0(%rsp)
movq 0x31f0(%rsp), %rax
movq %rax, 0x5008(%rsp)
movq 0x5008(%rsp), %rax
movq %rax, 0x1c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x131442b
movq 0x1c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5004(%rsp) # imm = 0xFFFFFFFF
movl 0x5004(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5000(%rsp)
cmpl $0x1, 0x5000(%rsp)
jne 0x131442b
movq 0x1c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13143f9
movq 0x1c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13143f7
jmp 0x1314429
movq 0x1c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55e0(%rsp)
cmpq $0x0, 0x55e0(%rsp)
je 0x1314427
movq 0x55e0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1314429
jmp 0x131442b
movq 0x1c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1314486
movq %rax, %rdi
callq 0x678a0
movq 0x1b8(%rsp), %rax
movq %rax, 0x11a8(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x11bc(%rsp), %eax
leaq 0x1110(%rsp), %rdx
movq %rdx, 0x32a0(%rsp)
movq %rcx, 0x3298(%rsp)
movl %eax, 0x3294(%rsp)
movq 0x3298(%rsp), %rax
movq %rax, 0x1b0(%rsp)
movb $0x0, 0x3293(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3294(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1110(%rsp), %r10
movq %r10, 0x4550(%rsp)
movl %r9d, 0x454c(%rsp)
movl %r8d, 0x4548(%rsp)
movl %edi, 0x4544(%rsp)
movq %rsi, 0x4538(%rsp)
movq %rdx, 0x4530(%rsp)
movl %ecx, 0x452c(%rsp)
movq %rax, 0x4520(%rsp)
movq 0x4550(%rsp), %rcx
movq %rcx, 0x1a8(%rsp)
movq 0x4538(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4530(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x452c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4520(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x454c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4548(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4544(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d88(%rsp)
movl $0x10, 0x4d84(%rsp)
movq 0x4d88(%rsp), %rax
movslq 0x4d84(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d84(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x1b0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1138(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1314652
movq 0x1b0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1150(%rsp)
movb $0x1, 0x3293(%rsp)
testb $0x1, 0x3293(%rsp)
jne 0x1314793
leaq 0x1110(%rsp), %rax
movq %rax, 0x32a8(%rsp)
movq 0x32a8(%rsp), %rax
movq %rax, 0x4f58(%rsp)
movq 0x4f58(%rsp), %rax
movq %rax, 0x1a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1314736
movq 0x1a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f54(%rsp) # imm = 0xFFFFFFFF
movl 0x4f54(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f50(%rsp)
cmpl $0x1, 0x4f50(%rsp)
jne 0x1314736
movq 0x1a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1314704
movq 0x1a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1314702
jmp 0x1314734
movq 0x1a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5638(%rsp)
cmpq $0x0, 0x5638(%rsp)
je 0x1314732
movq 0x5638(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1314734
jmp 0x1314736
movq 0x1a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1314791
movq %rax, %rdi
callq 0x678a0
jmp 0x1314793
leaq 0x1110(%rsp), %rax
movq %rax, 0x3498(%rsp)
movq 0x3498(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x190(%rsp)
leaq 0x1110(%rsp), %rax
movq %rax, 0x31f8(%rsp)
movq 0x31f8(%rsp), %rax
movq %rax, 0x4ff8(%rsp)
movq 0x4ff8(%rsp), %rax
movq %rax, 0x198(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1314884
movq 0x198(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4ff4(%rsp) # imm = 0xFFFFFFFF
movl 0x4ff4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4ff0(%rsp)
cmpl $0x1, 0x4ff0(%rsp)
jne 0x1314884
movq 0x198(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1314852
movq 0x198(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1314850
jmp 0x1314882
movq 0x198(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55e8(%rsp)
cmpq $0x0, 0x55e8(%rsp)
je 0x1314880
movq 0x55e8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1314882
jmp 0x1314884
movq 0x198(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13148df
movq %rax, %rdi
callq 0x678a0
movq 0x190(%rsp), %rax
movq %rax, 0x1158(%rsp)
movl $0x0, 0x110c(%rsp)
movl 0x110c(%rsp), %eax
cmpl 0x2b80(%rsp), %eax
jge 0x1314a79
movq 0x11b0(%rsp), %rax
movq %rax, 0x3568(%rsp)
movq 0x3568(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x10c0(%rsp)
movl $0x0, 0x10bc(%rsp)
movl 0x10bc(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jge 0x1314a4f
movl $0x0, 0x10b8(%rsp)
movl 0x10b8(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jge 0x1314a37
movq 0x11a8(%rsp), %rax
movq %rax, 0x3560(%rsp)
movq 0x3560(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1040(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x10c0(%rsp), %rsi
leaq 0x1040(%rsp), %rdx
callq 0x1453700
vmovaps %zmm0, 0x1000(%rsp)
movq 0x1158(%rsp), %rax
vmovaps 0x1000(%rsp), %zmm0
movq %rax, 0x3938(%rsp)
vmovaps %zmm0, 0x38c0(%rsp)
vmovaps 0x38c0(%rsp), %zmm0
movq 0x3938(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x11a8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x11a8(%rsp)
movq 0x1158(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1158(%rsp)
movl 0x10b8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x10b8(%rsp)
jmp 0x131495e
jmp 0x1314a39
movl 0x10bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x10bc(%rsp)
jmp 0x131493f
movq 0x11b0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x11b0(%rsp)
movl 0x110c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x110c(%rsp)
jmp 0x13148fa
jmp 0x1314a7b
movl 0x11bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x11bc(%rsp)
jmp 0x1313fe0
movl $0x0, 0x2bd4(%rsp)
jmp 0x13173b0
movq 0x2bc0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1315608
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b7c(%rsp), %ecx
movq 0x2b70(%rsp), %r8
movl 0x2b6c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c08(%rsp)
movq 0x2c08(%rsp), %rcx
movq %rcx, 0x180(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x18f(%rsp)
je 0x1314b56
movq 0x180(%rsp), %rax
movq %rax, 0x41d8(%rsp)
movq 0x41d8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x18f(%rsp)
movb 0x18f(%rsp), %al
testb $0x1, %al
jne 0x1314b63
jmp 0x1314b73
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x13173b0
movl $0x0, 0xffc(%rsp)
movl 0xffc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x13155f8
movq 0x2bc8(%rsp), %rcx
movl 0xffc(%rsp), %eax
movq %rcx, 0x4048(%rsp)
movl %eax, 0x4044(%rsp)
movq 0x4048(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x4044(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xff0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0xffc(%rsp), %eax
leaq 0xfa0(%rsp), %rdx
movq %rdx, 0x2cb0(%rsp)
movq %rcx, 0x2ca8(%rsp)
movl %eax, 0x2ca4(%rsp)
movq 0x2ca8(%rsp), %rax
movq %rax, 0x178(%rsp)
movb $0x0, 0x2ca3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2ca4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xfa0(%rsp), %r10
movq %r10, 0x4b38(%rsp)
movl %r9d, 0x4b34(%rsp)
movl %r8d, 0x4b30(%rsp)
movl %edi, 0x4b2c(%rsp)
movq %rsi, 0x4b20(%rsp)
movq %rdx, 0x4b18(%rsp)
movl %ecx, 0x4b14(%rsp)
movq %rax, 0x4b08(%rsp)
movq 0x4b38(%rsp), %rcx
movq %rcx, 0x170(%rsp)
movq 0x4b20(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4b18(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4b14(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4b08(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4b34(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4b30(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4b2c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4bd8(%rsp)
movl $0x10, 0x4bd4(%rsp)
movq 0x4bd8(%rsp), %rax
movslq 0x4bd4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4bd4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x178(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xfc8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1314d97
movq 0x178(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xfe0(%rsp)
movb $0x1, 0x2ca3(%rsp)
testb $0x1, 0x2ca3(%rsp)
jne 0x1314ed8
leaq 0xfa0(%rsp), %rax
movq %rax, 0x30b8(%rsp)
movq 0x30b8(%rsp), %rax
movq %rax, 0x5278(%rsp)
movq 0x5278(%rsp), %rax
movq %rax, 0x168(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1314e7b
movq 0x168(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5274(%rsp) # imm = 0xFFFFFFFF
movl 0x5274(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5270(%rsp)
cmpl $0x1, 0x5270(%rsp)
jne 0x1314e7b
movq 0x168(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1314e49
movq 0x168(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1314e47
jmp 0x1314e79
movq 0x168(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54a8(%rsp)
cmpq $0x0, 0x54a8(%rsp)
je 0x1314e77
movq 0x54a8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1314e79
jmp 0x1314e7b
movq 0x168(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1314ed6
movq %rax, %rdi
callq 0x678a0
jmp 0x1314ed8
leaq 0xfa0(%rsp), %rax
movq %rax, 0x2f20(%rsp)
movq 0x2f20(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x158(%rsp)
leaq 0xfa0(%rsp), %rax
movq %rax, 0x3200(%rsp)
movq 0x3200(%rsp), %rax
movq %rax, 0x4fe8(%rsp)
movq 0x4fe8(%rsp), %rax
movq %rax, 0x160(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1314fc9
movq 0x160(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4fe4(%rsp) # imm = 0xFFFFFFFF
movl 0x4fe4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4fe0(%rsp)
cmpl $0x1, 0x4fe0(%rsp)
jne 0x1314fc9
movq 0x160(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1314f97
movq 0x160(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1314f95
jmp 0x1314fc7
movq 0x160(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55f0(%rsp)
cmpq $0x0, 0x55f0(%rsp)
je 0x1314fc5
movq 0x55f0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1314fc7
jmp 0x1314fc9
movq 0x160(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1315024
movq %rax, %rdi
callq 0x678a0
movq 0x158(%rsp), %rax
movq %rax, 0xfe8(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0xffc(%rsp), %eax
leaq 0xf50(%rsp), %rdx
movq %rdx, 0x3280(%rsp)
movq %rcx, 0x3278(%rsp)
movl %eax, 0x3274(%rsp)
movq 0x3278(%rsp), %rax
movq %rax, 0x150(%rsp)
movb $0x0, 0x3273(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3274(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xf50(%rsp), %r10
movq %r10, 0x4588(%rsp)
movl %r9d, 0x4584(%rsp)
movl %r8d, 0x4580(%rsp)
movl %edi, 0x457c(%rsp)
movq %rsi, 0x4570(%rsp)
movq %rdx, 0x4568(%rsp)
movl %ecx, 0x4564(%rsp)
movq %rax, 0x4558(%rsp)
movq 0x4588(%rsp), %rcx
movq %rcx, 0x148(%rsp)
movq 0x4570(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4568(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4564(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4558(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4584(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4580(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x457c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d78(%rsp)
movl $0x10, 0x4d74(%rsp)
movq 0x4d78(%rsp), %rax
movslq 0x4d74(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d74(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x150(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf78(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13151f0
movq 0x150(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xf90(%rsp)
movb $0x1, 0x3273(%rsp)
testb $0x1, 0x3273(%rsp)
jne 0x1315331
leaq 0xf50(%rsp), %rax
movq %rax, 0x3288(%rsp)
movq 0x3288(%rsp), %rax
movq %rax, 0x4f68(%rsp)
movq 0x4f68(%rsp), %rax
movq %rax, 0x140(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13152d4
movq 0x140(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f64(%rsp) # imm = 0xFFFFFFFF
movl 0x4f64(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f60(%rsp)
cmpl $0x1, 0x4f60(%rsp)
jne 0x13152d4
movq 0x140(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13152a2
movq 0x140(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13152a0
jmp 0x13152d2
movq 0x140(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5630(%rsp)
cmpq $0x0, 0x5630(%rsp)
je 0x13152d0
movq 0x5630(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13152d2
jmp 0x13152d4
movq 0x140(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131532f
movq %rax, %rdi
callq 0x678a0
jmp 0x1315331
leaq 0xf50(%rsp), %rax
movq %rax, 0x3490(%rsp)
movq 0x3490(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x130(%rsp)
leaq 0xf50(%rsp), %rax
movq %rax, 0x3208(%rsp)
movq 0x3208(%rsp), %rax
movq %rax, 0x4fd8(%rsp)
movq 0x4fd8(%rsp), %rax
movq %rax, 0x138(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1315422
movq 0x138(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4fd4(%rsp) # imm = 0xFFFFFFFF
movl 0x4fd4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4fd0(%rsp)
cmpl $0x1, 0x4fd0(%rsp)
jne 0x1315422
movq 0x138(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13153f0
movq 0x138(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13153ee
jmp 0x1315420
movq 0x138(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55f8(%rsp)
cmpq $0x0, 0x55f8(%rsp)
je 0x131541e
movq 0x55f8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1315420
jmp 0x1315422
movq 0x138(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131547d
movq %rax, %rdi
callq 0x678a0
movq 0x130(%rsp), %rax
movq %rax, 0xf98(%rsp)
movl $0x0, 0xf4c(%rsp)
movl 0xf4c(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jge 0x13155e0
movq 0xff0(%rsp), %rax
movq %rax, 0x3558(%rsp)
movq 0x3558(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xf00(%rsp)
movl $0x0, 0xefc(%rsp)
movl 0xefc(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jge 0x13155b6
movq 0xfe8(%rsp), %rax
movq %rax, 0x3550(%rsp)
movq 0x3550(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xe80(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0xf00(%rsp), %rsi
leaq 0xe80(%rsp), %rdx
callq 0x1453700
vmovaps %zmm0, 0xe40(%rsp)
movq 0xf98(%rsp), %rax
vmovaps 0xe40(%rsp), %zmm0
movq %rax, 0x38b8(%rsp)
vmovaps %zmm0, 0x3840(%rsp)
vmovaps 0x3840(%rsp), %zmm0
movq 0x38b8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0xfe8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xfe8(%rsp)
movq 0xf98(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xf98(%rsp)
movl 0xefc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xefc(%rsp)
jmp 0x13154dd
movq 0xff0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xff0(%rsp)
movl 0xf4c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xf4c(%rsp)
jmp 0x1315498
jmp 0x13155e2
movl 0xffc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xffc(%rsp)
jmp 0x1314b7e
movl $0x0, 0x2bd4(%rsp)
jmp 0x13173b0
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movq 0x2b90(%rsp), %rcx
movl 0x2b8c(%rsp), %r8d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c00(%rsp)
movq 0x2c00(%rsp), %rcx
movq %rcx, 0x120(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x12f(%rsp)
je 0x13156a0
movq 0x120(%rsp), %rax
movq %rax, 0x41e0(%rsp)
movq 0x41e0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x12f(%rsp)
movb 0x12f(%rsp), %al
testb $0x1, %al
jne 0x13156ad
jmp 0x13156bd
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x13173b0
movq 0x2bc0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x13156fc
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x1441b80
movl %eax, 0x2bd4(%rsp)
jmp 0x13173b0
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x13159d8
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movq 0x2b90(%rsp), %rcx
movl 0x2b8c(%rsp), %r8d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2bf8(%rsp)
movq 0x2bf8(%rsp), %rcx
movq %rcx, 0x110(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x11f(%rsp)
je 0x13157a6
movq 0x110(%rsp), %rax
movq %rax, 0x41e8(%rsp)
movq 0x41e8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x11f(%rsp)
movb 0x11f(%rsp), %al
testb $0x1, %al
jne 0x13157b3
jmp 0x13157c3
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x13173b0
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x131580c
cmpl $0x1, 0x2b6c(%rsp)
jne 0x131580c
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x1442d90
movl %eax, 0x2bd4(%rsp)
jmp 0x13173b0
movq 0x2bc8(%rsp), %rax
movq %rax, 0x2f18(%rsp)
movq 0x2f18(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xe38(%rsp)
movq 0x2bc0(%rsp), %rax
movq %rax, 0x2f10(%rsp)
movq 0x2f10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xe30(%rsp)
movq 0x2bb8(%rsp), %rax
movq %rax, 0x3488(%rsp)
movq 0x3488(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xe28(%rsp)
movl $0x0, 0xe24(%rsp)
movl 0xe24(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jge 0x13159c8
movq 0xe30(%rsp), %rax
movq %rax, 0x3548(%rsp)
movq 0x3548(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xdc0(%rsp)
movl $0x0, 0xdbc(%rsp)
movl 0xdbc(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jge 0x131599e
movq 0xe38(%rsp), %rax
movq %rax, 0x3540(%rsp)
movq 0x3540(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xd40(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0xd40(%rsp), %rsi
leaq 0xdc0(%rsp), %rdx
callq 0x1453700
vmovaps %zmm0, 0xd00(%rsp)
movq 0xe28(%rsp), %rax
vmovaps 0xd00(%rsp), %zmm0
movq %rax, 0x3838(%rsp)
vmovaps %zmm0, 0x37c0(%rsp)
vmovaps 0x37c0(%rsp), %zmm0
movq 0x3838(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0xe38(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xe38(%rsp)
movq 0xe28(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xe28(%rsp)
movl 0xdbc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdbc(%rsp)
jmp 0x13158c5
movq 0xe30(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xe30(%rsp)
movl 0xe24(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xe24(%rsp)
jmp 0x1315880
movl $0x0, 0x2bd4(%rsp)
jmp 0x13173b0
jmp 0x13173a1
movq 0x2bc8(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x131739f
movq 0x2bc8(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1315a38
cmpl $0x1, 0x2b8c(%rsp)
jne 0x1315a38
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x1443c10
movl %eax, 0x2bd4(%rsp)
jmp 0x13173b0
movq 0x2bc0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1316541
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b80(%rsp), %ecx
movl 0x2b7c(%rsp), %r8d
movq 0x2b70(%rsp), %r9
movl 0x2b6c(%rsp), %r10d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2bf0(%rsp)
movq 0x2bf0(%rsp), %rcx
movq %rcx, 0x100(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x10f(%rsp)
je 0x1315afa
movq 0x100(%rsp), %rax
movq %rax, 0x41f0(%rsp)
movq 0x41f0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x10f(%rsp)
movb 0x10f(%rsp), %al
testb $0x1, %al
jne 0x1315b07
jmp 0x1315b17
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x13173b0
movl $0x0, 0xcfc(%rsp)
movl 0xcfc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x1316531
movq 0x2bc8(%rsp), %rax
movq %rax, 0x2f08(%rsp)
movq 0x2f08(%rsp), %rax
movq (%rax), %rax
movl 0xcfc(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x3538(%rsp)
movq 0x3538(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xc80(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0xcfc(%rsp), %eax
leaq 0xc30(%rsp), %rdx
movq %rdx, 0x2c98(%rsp)
movq %rcx, 0x2c90(%rsp)
movl %eax, 0x2c8c(%rsp)
movq 0x2c90(%rsp), %rax
movq %rax, 0xf8(%rsp)
movb $0x0, 0x2c8b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2c8c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xc30(%rsp), %r10
movq %r10, 0x4b70(%rsp)
movl %r9d, 0x4b6c(%rsp)
movl %r8d, 0x4b68(%rsp)
movl %edi, 0x4b64(%rsp)
movq %rsi, 0x4b58(%rsp)
movq %rdx, 0x4b50(%rsp)
movl %ecx, 0x4b4c(%rsp)
movq %rax, 0x4b40(%rsp)
movq 0x4b70(%rsp), %rcx
movq %rcx, 0xf0(%rsp)
movq 0x4b58(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4b50(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4b4c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4b40(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4b6c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4b68(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4b64(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4bc8(%rsp)
movl $0x10, 0x4bc4(%rsp)
movq 0x4bc8(%rsp), %rax
movslq 0x4bc4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4bc4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xf8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc58(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1315d3f
movq 0xf8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xc70(%rsp)
movb $0x1, 0x2c8b(%rsp)
testb $0x1, 0x2c8b(%rsp)
jne 0x1315e80
leaq 0xc30(%rsp), %rax
movq %rax, 0x30c0(%rsp)
movq 0x30c0(%rsp), %rax
movq %rax, 0x5268(%rsp)
movq 0x5268(%rsp), %rax
movq %rax, 0xe8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1315e23
movq 0xe8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5264(%rsp) # imm = 0xFFFFFFFF
movl 0x5264(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5260(%rsp)
cmpl $0x1, 0x5260(%rsp)
jne 0x1315e23
movq 0xe8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1315df1
movq 0xe8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1315def
jmp 0x1315e21
movq 0xe8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54b0(%rsp)
cmpq $0x0, 0x54b0(%rsp)
je 0x1315e1f
movq 0x54b0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1315e21
jmp 0x1315e23
movq 0xe8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1315e7e
movq %rax, %rdi
callq 0x678a0
jmp 0x1315e80
leaq 0xc30(%rsp), %rax
movq %rax, 0x2f00(%rsp)
movq 0x2f00(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xd8(%rsp)
leaq 0xc30(%rsp), %rax
movq %rax, 0x3210(%rsp)
movq 0x3210(%rsp), %rax
movq %rax, 0x4fc8(%rsp)
movq 0x4fc8(%rsp), %rax
movq %rax, 0xe0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1315f71
movq 0xe0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4fc4(%rsp) # imm = 0xFFFFFFFF
movl 0x4fc4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4fc0(%rsp)
cmpl $0x1, 0x4fc0(%rsp)
jne 0x1315f71
movq 0xe0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1315f3f
movq 0xe0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1315f3d
jmp 0x1315f6f
movq 0xe0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5600(%rsp)
cmpq $0x0, 0x5600(%rsp)
je 0x1315f6d
movq 0x5600(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1315f6f
jmp 0x1315f71
movq 0xe0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1315fcc
movq %rax, %rdi
callq 0x678a0
movq 0xd8(%rsp), %rax
movq %rax, 0xc78(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0xcfc(%rsp), %eax
leaq 0xbe0(%rsp), %rdx
movq %rdx, 0x3260(%rsp)
movq %rcx, 0x3258(%rsp)
movl %eax, 0x3254(%rsp)
movq 0x3258(%rsp), %rax
movq %rax, 0xd0(%rsp)
movb $0x0, 0x3253(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3254(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xbe0(%rsp), %r10
movq %r10, 0x45c0(%rsp)
movl %r9d, 0x45bc(%rsp)
movl %r8d, 0x45b8(%rsp)
movl %edi, 0x45b4(%rsp)
movq %rsi, 0x45a8(%rsp)
movq %rdx, 0x45a0(%rsp)
movl %ecx, 0x459c(%rsp)
movq %rax, 0x4590(%rsp)
movq 0x45c0(%rsp), %rcx
movq %rcx, 0xc8(%rsp)
movq 0x45a8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x45a0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x459c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4590(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x45bc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x45b8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x45b4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d68(%rsp)
movl $0x10, 0x4d64(%rsp)
movq 0x4d68(%rsp), %rax
movslq 0x4d64(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d64(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xd0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc08(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1316198
movq 0xd0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xc20(%rsp)
movb $0x1, 0x3253(%rsp)
testb $0x1, 0x3253(%rsp)
jne 0x13162d9
leaq 0xbe0(%rsp), %rax
movq %rax, 0x3268(%rsp)
movq 0x3268(%rsp), %rax
movq %rax, 0x4f78(%rsp)
movq 0x4f78(%rsp), %rax
movq %rax, 0xc0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x131627c
movq 0xc0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f74(%rsp) # imm = 0xFFFFFFFF
movl 0x4f74(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f70(%rsp)
cmpl $0x1, 0x4f70(%rsp)
jne 0x131627c
movq 0xc0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x131624a
movq 0xc0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1316248
jmp 0x131627a
movq 0xc0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5628(%rsp)
cmpq $0x0, 0x5628(%rsp)
je 0x1316278
movq 0x5628(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x131627a
jmp 0x131627c
movq 0xc0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13162d7
movq %rax, %rdi
callq 0x678a0
jmp 0x13162d9
leaq 0xbe0(%rsp), %rax
movq %rax, 0x3480(%rsp)
movq 0x3480(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xb0(%rsp)
leaq 0xbe0(%rsp), %rax
movq %rax, 0x3218(%rsp)
movq 0x3218(%rsp), %rax
movq %rax, 0x4fb8(%rsp)
movq 0x4fb8(%rsp), %rax
movq %rax, 0xb8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13163ca
movq 0xb8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4fb4(%rsp) # imm = 0xFFFFFFFF
movl 0x4fb4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4fb0(%rsp)
cmpl $0x1, 0x4fb0(%rsp)
jne 0x13163ca
movq 0xb8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1316398
movq 0xb8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1316396
jmp 0x13163c8
movq 0xb8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5608(%rsp)
cmpq $0x0, 0x5608(%rsp)
je 0x13163c6
movq 0x5608(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13163c8
jmp 0x13163ca
movq 0xb8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1316425
movq %rax, %rdi
callq 0x678a0
movq 0xb0(%rsp), %rax
movq %rax, 0xc28(%rsp)
movl $0x0, 0xbdc(%rsp)
movl 0xbdc(%rsp), %eax
cmpl 0x2b78(%rsp), %eax
jge 0x1316519
movq 0xc78(%rsp), %rax
movq %rax, 0x3530(%rsp)
movq 0x3530(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xb80(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0xc80(%rsp), %rsi
leaq 0xb80(%rsp), %rdx
callq 0x1453700
vmovaps %zmm0, 0xb40(%rsp)
movq 0xc28(%rsp), %rax
vmovaps 0xb40(%rsp), %zmm0
movq %rax, 0x37b8(%rsp)
vmovaps %zmm0, 0x3740(%rsp)
vmovaps 0x3740(%rsp), %zmm0
movq 0x37b8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0xc78(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xc78(%rsp)
movq 0xc28(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xc28(%rsp)
movl 0xbdc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xbdc(%rsp)
jmp 0x1316440
jmp 0x131651b
movl 0xcfc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xcfc(%rsp)
jmp 0x1315b22
movl $0x0, 0x2bd4(%rsp)
jmp 0x13173b0
movq 0x2bc0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1317001
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b7c(%rsp), %ecx
movq 0x2b70(%rsp), %r8
movl 0x2b6c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2be8(%rsp)
movq 0x2be8(%rsp), %rcx
movq %rcx, 0xa0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xaf(%rsp)
je 0x13165f6
movq 0xa0(%rsp), %rax
movq %rax, 0x41f8(%rsp)
movq 0x41f8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xaf(%rsp)
movb 0xaf(%rsp), %al
testb $0x1, %al
jne 0x1316603
jmp 0x1316613
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x13173b0
movl $0x0, 0xb3c(%rsp)
movl 0xb3c(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x1316ff1
movq 0x2bc8(%rsp), %rax
movq %rax, 0x2ef8(%rsp)
movq 0x2ef8(%rsp), %rax
movq (%rax), %rax
movl 0xb3c(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x3528(%rsp)
movq 0x3528(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xac0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0xb3c(%rsp), %eax
leaq 0xa70(%rsp), %rdx
movq %rdx, 0x2c80(%rsp)
movq %rcx, 0x2c78(%rsp)
movl %eax, 0x2c74(%rsp)
movq 0x2c78(%rsp), %rax
movq %rax, 0x98(%rsp)
movb $0x0, 0x2c73(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2c74(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xa70(%rsp), %r10
movq %r10, 0x4ba8(%rsp)
movl %r9d, 0x4ba4(%rsp)
movl %r8d, 0x4ba0(%rsp)
movl %edi, 0x4b9c(%rsp)
movq %rsi, 0x4b90(%rsp)
movq %rdx, 0x4b88(%rsp)
movl %ecx, 0x4b84(%rsp)
movq %rax, 0x4b78(%rsp)
movq 0x4ba8(%rsp), %rcx
movq %rcx, 0x90(%rsp)
movq 0x4b90(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4b88(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4b84(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4b78(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4ba4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4ba0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4b9c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4bb8(%rsp)
movl $0x10, 0x4bb4(%rsp)
movq 0x4bb8(%rsp), %rax
movslq 0x4bb4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4bb4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x98(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xa98(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x131683b
movq 0x98(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xab0(%rsp)
movb $0x1, 0x2c73(%rsp)
testb $0x1, 0x2c73(%rsp)
jne 0x131697c
leaq 0xa70(%rsp), %rax
movq %rax, 0x30c8(%rsp)
movq 0x30c8(%rsp), %rax
movq %rax, 0x5258(%rsp)
movq 0x5258(%rsp), %rax
movq %rax, 0x88(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x131691f
movq 0x88(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5254(%rsp) # imm = 0xFFFFFFFF
movl 0x5254(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5250(%rsp)
cmpl $0x1, 0x5250(%rsp)
jne 0x131691f
movq 0x88(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13168ed
movq 0x88(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13168eb
jmp 0x131691d
movq 0x88(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54b8(%rsp)
cmpq $0x0, 0x54b8(%rsp)
je 0x131691b
movq 0x54b8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x131691d
jmp 0x131691f
movq 0x88(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131697a
movq %rax, %rdi
callq 0x678a0
jmp 0x131697c
leaq 0xa70(%rsp), %rax
movq %rax, 0x2ef0(%rsp)
movq 0x2ef0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x78(%rsp)
leaq 0xa70(%rsp), %rax
movq %rax, 0x3220(%rsp)
movq 0x3220(%rsp), %rax
movq %rax, 0x4fa8(%rsp)
movq 0x4fa8(%rsp), %rax
movq %rax, 0x80(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1316a6a
movq 0x80(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4fa4(%rsp) # imm = 0xFFFFFFFF
movl 0x4fa4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4fa0(%rsp)
cmpl $0x1, 0x4fa0(%rsp)
jne 0x1316a6a
movq 0x80(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1316a38
movq 0x80(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1316a36
jmp 0x1316a68
movq 0x80(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5610(%rsp)
cmpq $0x0, 0x5610(%rsp)
je 0x1316a66
movq 0x5610(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1316a68
jmp 0x1316a6a
movq 0x80(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1316ac5
movq %rax, %rdi
callq 0x678a0
movq 0x78(%rsp), %rax
movq %rax, 0xab8(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0xb3c(%rsp), %eax
leaq 0xa20(%rsp), %rdx
movq %rdx, 0x3240(%rsp)
movq %rcx, 0x3238(%rsp)
movl %eax, 0x3234(%rsp)
movq 0x3238(%rsp), %rax
movq %rax, 0x70(%rsp)
movb $0x0, 0x3233(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3234(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xa20(%rsp), %r10
movq %r10, 0x45f8(%rsp)
movl %r9d, 0x45f4(%rsp)
movl %r8d, 0x45f0(%rsp)
movl %edi, 0x45ec(%rsp)
movq %rsi, 0x45e0(%rsp)
movq %rdx, 0x45d8(%rsp)
movl %ecx, 0x45d4(%rsp)
movq %rax, 0x45c8(%rsp)
movq 0x45f8(%rsp), %rcx
movq %rcx, 0x68(%rsp)
movq 0x45e0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x45d8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x45d4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x45c8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x45f4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x45f0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x45ec(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d58(%rsp)
movl $0x10, 0x4d54(%rsp)
movq 0x4d58(%rsp), %rax
movslq 0x4d54(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d54(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x70(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xa48(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1316c82
movq 0x70(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xa60(%rsp)
movb $0x1, 0x3233(%rsp)
testb $0x1, 0x3233(%rsp)
jne 0x1316db1
leaq 0xa20(%rsp), %rax
movq %rax, 0x3248(%rsp)
movq 0x3248(%rsp), %rax
movq %rax, 0x4f88(%rsp)
movq 0x4f88(%rsp), %rax
movq %rax, 0x60(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1316d57
movq 0x60(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f84(%rsp) # imm = 0xFFFFFFFF
movl 0x4f84(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f80(%rsp)
cmpl $0x1, 0x4f80(%rsp)
jne 0x1316d57
movq 0x60(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1316d28
movq 0x60(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1316d26
jmp 0x1316d55
movq 0x60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5620(%rsp)
cmpq $0x0, 0x5620(%rsp)
je 0x1316d53
movq 0x5620(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1316d55
jmp 0x1316d57
movq 0x60(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1316daf
movq %rax, %rdi
callq 0x678a0
jmp 0x1316db1
leaq 0xa20(%rsp), %rax
movq %rax, 0x3478(%rsp)
movq 0x3478(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x50(%rsp)
leaq 0xa20(%rsp), %rax
movq %rax, 0x3228(%rsp)
movq 0x3228(%rsp), %rax
movq %rax, 0x4f98(%rsp)
movq 0x4f98(%rsp), %rax
movq %rax, 0x58(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1316e90
movq 0x58(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f94(%rsp) # imm = 0xFFFFFFFF
movl 0x4f94(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f90(%rsp)
cmpl $0x1, 0x4f90(%rsp)
jne 0x1316e90
movq 0x58(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1316e61
movq 0x58(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1316e5f
jmp 0x1316e8e
movq 0x58(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5618(%rsp)
cmpq $0x0, 0x5618(%rsp)
je 0x1316e8c
movq 0x5618(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1316e8e
jmp 0x1316e90
movq 0x58(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1316ee8
movq %rax, %rdi
callq 0x678a0
movq 0x50(%rsp), %rax
movq %rax, 0xa68(%rsp)
movl $0x0, 0xa1c(%rsp)
movl 0xa1c(%rsp), %eax
cmpl 0x2b78(%rsp), %eax
jge 0x1316fd9
movq 0xab8(%rsp), %rax
movq %rax, 0x3520(%rsp)
movq 0x3520(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x9c0(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0xac0(%rsp), %rsi
leaq 0x9c0(%rsp), %rdx
callq 0x1453700
vmovaps %zmm0, 0x980(%rsp)
movq 0xa68(%rsp), %rax
vmovaps 0x980(%rsp), %zmm0
movq %rax, 0x3738(%rsp)
vmovaps %zmm0, 0x36c0(%rsp)
vmovaps 0x36c0(%rsp), %zmm0
movq 0x3738(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0xab8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xab8(%rsp)
movq 0xa68(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xa68(%rsp)
movl 0xa1c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xa1c(%rsp)
jmp 0x1316f00
jmp 0x1316fdb
movl 0xb3c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xb3c(%rsp)
jmp 0x131661e
movl $0x0, 0x2bd4(%rsp)
jmp 0x13173b0
movq 0x2bc0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1317285
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movq 0x2b70(%rsp), %rcx
movl 0x2b6c(%rsp), %r8d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2be0(%rsp)
movq 0x2be0(%rsp), %rcx
movq %rcx, 0x40(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x4f(%rsp)
je 0x131709f
movq 0x40(%rsp), %rax
movq %rax, 0x4200(%rsp)
movq 0x4200(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x4f(%rsp)
movb 0x4f(%rsp), %al
testb $0x1, %al
jne 0x13170a9
jmp 0x13170b9
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x13173b0
movq 0x2bc8(%rsp), %rax
movq %rax, 0x2ee8(%rsp)
movq 0x2ee8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x978(%rsp)
movq 0x2bc0(%rsp), %rax
movq %rax, 0x2ee0(%rsp)
movq 0x2ee0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x970(%rsp)
movq 0x2bb8(%rsp), %rax
movq %rax, 0x3470(%rsp)
movq 0x3470(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x968(%rsp)
movl $0x0, 0x964(%rsp)
movl 0x964(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jge 0x1317275
movq 0x978(%rsp), %rax
movq %rax, 0x3518(%rsp)
movq 0x3518(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x900(%rsp)
movl $0x0, 0x8fc(%rsp)
movl 0x8fc(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jge 0x131724b
movq 0x970(%rsp), %rax
movq %rax, 0x3510(%rsp)
movq 0x3510(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x880(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x900(%rsp), %rsi
leaq 0x880(%rsp), %rdx
callq 0x1453700
vmovaps %zmm0, 0x840(%rsp)
movq 0x968(%rsp), %rax
vmovaps 0x840(%rsp), %zmm0
movq %rax, 0x36b8(%rsp)
vmovaps %zmm0, 0x3640(%rsp)
vmovaps 0x3640(%rsp), %zmm0
movq 0x36b8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x970(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x970(%rsp)
movq 0x968(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x968(%rsp)
movl 0x8fc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x8fc(%rsp)
jmp 0x1317172
movq 0x978(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x978(%rsp)
movl 0x964(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x964(%rsp)
jmp 0x131712d
movl $0x0, 0x2bd4(%rsp)
jmp 0x13173b0
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x131739d
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movq 0x2b90(%rsp), %rdx
movl 0x2b8c(%rsp), %ecx
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6be00
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2bd8(%rsp)
movq 0x2bd8(%rsp), %rcx
movq %rcx, 0x30(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x3f(%rsp)
je 0x131731b
movq 0x30(%rsp), %rax
movq %rax, 0x4208(%rsp)
movq 0x4208(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x3f(%rsp)
movb 0x3f(%rsp), %al
testb $0x1, %al
jne 0x1317325
jmp 0x1317332
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x13173b0
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1317378
cmpl $0x1, 0x2b6c(%rsp)
jne 0x1317378
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x1442d90
movl %eax, 0x2bd4(%rsp)
jmp 0x13173b0
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x1441b80
jmp 0x131739f
jmp 0x13173a1
jmp 0x13173a3
jmp 0x13173a5
movl $0x0, 0x2bd4(%rsp)
movl 0x2bd4(%rsp), %eax
movq %rbp, %rsp
popq %rbp
vzeroupper
retq
nop
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/build_O0/src/layer/x86/binaryop_x86_avx512.cpp
|
2,112,892
|
int ncnn::binary_op_pack16<ncnn::BinaryOp_x86_avx512_functor::binary_op_mul>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op_pack16(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int size = w * h * d;
size_t elemsize = a.elemsize;
int elempack = a.elempack;
int w1 = b.w;
int h1 = b.h;
int d1 = b.d;
int channels1 = b.c;
int size1 = w1 * h1 * d1;
size_t elemsize1 = b.elemsize;
int elempack1 = b.elempack;
if (a.dims == 4)
{
if (b.dims == 4)
{
// type 29
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
c.create(w, h, d, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 3)
{
// type 28
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
for (int y = 0; y < h; y++)
{
__m512 _b0 = _mm512_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
ptr1 += 16;
}
}
}
return 0;
}
if (b.dims == 2)
{
// type 27
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
__m512 _b0 = _mm512_loadu_ps(ptr1);
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
}
ptr1 += 16;
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1 && elempack1 == 1)
{
// type 25
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 26
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
__m512 _b0 = _mm512_loadu_ps((const float*)b + q * 16);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
}
return 0;
}
}
else if (a.dims == 3)
{
if (b.dims == 4)
{
// type 23
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
for (int y = 0; y < h1; y++)
{
__m512 _a0 = _mm512_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m512 _p = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
ptr += 16;
}
}
}
return 0;
}
if (b.dims == 3)
{
if (w1 == 1 && h1 == 1 && channels1 == channels)
{
// special type 1
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* b0 = b.channel(q);
float* outptr = c.channel(q);
__m512 _b0 = _mm512_loadu_ps(b0);
for (int i = 0; i < size; i++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
}
return 0;
}
if (w1 == w && h1 == h && channels1 == 1 && elempack1 == 1)
{
// special type 2
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b;
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _p1 = _mm512_set1_ps(*ptr1);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
ptr1 += 1;
outptr += 16;
}
}
return 0;
}
if (w == 1 && h == 1 && channels1 == channels)
{
// special type 3
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* a0 = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
__m512 _a0 = _mm512_loadu_ps(a0);
for (int i = 0; i < size1; i++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
}
return 0;
}
if (w1 == w && h1 == h && channels == 1 && elempack == 1)
{
// special type 4
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a;
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m512 _p = _mm512_set1_ps(*ptr);
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr += 1;
ptr1 += 16;
outptr += 16;
}
}
return 0;
}
if (w != 1 && w1 == 1 && h1 == h && channels1 == channels)
{
// special type 5
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1 + y * 16);
for (int x = 0; x < w; x++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
}
}
return 0;
}
if (w1 == w && h != 1 && h1 == 1 && channels1 == channels)
{
// special type 6
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _p1 = _mm512_loadu_ps(ptr1 + x * 16);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
}
}
return 0;
}
if (w1 != 1 && w == 1 && h1 == h && channels1 == channels)
{
// special type 7
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
__m512 _p = _mm512_loadu_ps(ptr + y * 16);
for (int x = 0; x < w1; x++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
}
}
return 0;
}
if (w1 == w && h1 != 1 && h == 1 && channels1 == channels)
{
// special type 8
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
__m512 _p = _mm512_loadu_ps(ptr + x * 16);
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
}
}
return 0;
}
// type 19
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 18
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
__m512 _b0 = _mm512_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
ptr1 += 16;
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1 && elempack1 == 1)
{
// type 16
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 17
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
__m512 _b0 = _mm512_loadu_ps((const float*)b + q * 16);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
}
return 0;
}
}
else if (a.dims == 2)
{
if (b.dims == 4)
{
// type 22
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
__m512 _a0 = _mm512_loadu_ps(ptr);
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
__m512 _p = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
}
ptr += 16;
}
}
return 0;
}
if (b.dims == 3)
{
// type 14
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
__m512 _a0 = _mm512_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
ptr += 16;
}
}
return 0;
}
c.create(w, h, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 13
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
if (b.dims == 1)
{
c.create(w, h, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1 && elempack1 == 1)
{
// type 11
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 12
const float* ptr = a;
const float* ptr1 = b;
float* outptr = c;
for (int y = 0; y < h; y++)
{
__m512 _b0 = _mm512_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
ptr1 += 16;
}
return 0;
}
}
else if (a.dims == 1)
{
if (a.w == 1 && elempack == 1)
{
// type 2 3 4 20
return binary_op_2_3_4_20<Op>(a, b, c, opt);
}
if (b.dims == 4)
{
// type 21
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
__m512 _a0 = _mm512_loadu_ps((const float*)a + q * 16);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
}
return 0;
}
if (b.dims == 3)
{
// type 9
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
__m512 _a0 = _mm512_loadu_ps((const float*)a + q * 16);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
}
return 0;
}
if (b.dims == 2)
{
// type 8
c.create(w1, h1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
const float* ptr = a;
const float* ptr1 = b;
float* outptr = c;
for (int y = 0; y < h1; y++)
{
__m512 _a0 = _mm512_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
ptr += 16;
}
return 0;
}
if (b.dims == 1)
{
c.create(w, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1 && elempack1 == 1)
{
// type 6
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 7
binary_op_7_13_19_29<Op>(a, b, c, opt);
}
}
return 0;
}
|
pushq %rbp
movq %rsp, %rbp
andq $-0x40, %rsp
subq $0x56c0, %rsp # imm = 0x56C0
movq %rdi, 0x2bc8(%rsp)
movq %rsi, 0x2bc0(%rsp)
movq %rdx, 0x2bb8(%rsp)
movq %rcx, 0x2bb0(%rsp)
movq 0x2bc8(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x2ba8(%rsp)
movq 0x2bc8(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x2ba4(%rsp)
movq 0x2bc8(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x2ba0(%rsp)
movq 0x2bc8(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x2b9c(%rsp)
movl 0x2ba8(%rsp), %eax
imull 0x2ba4(%rsp), %eax
imull 0x2ba0(%rsp), %eax
movl %eax, 0x2b98(%rsp)
movq 0x2bc8(%rsp), %rax
movq 0x10(%rax), %rax
movq %rax, 0x2b90(%rsp)
movq 0x2bc8(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x2b8c(%rsp)
movq 0x2bc0(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x2b88(%rsp)
movq 0x2bc0(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x2b84(%rsp)
movq 0x2bc0(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x2b80(%rsp)
movq 0x2bc0(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x2b7c(%rsp)
movl 0x2b88(%rsp), %eax
imull 0x2b84(%rsp), %eax
imull 0x2b80(%rsp), %eax
movl %eax, 0x2b78(%rsp)
movq 0x2bc0(%rsp), %rax
movq 0x10(%rax), %rax
movq %rax, 0x2b70(%rsp)
movq 0x2bc0(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x2b6c(%rsp)
movq 0x2bc8(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1319a9f
movq 0x2bc0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1317558
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x1444a90
movl %eax, 0x2bd4(%rsp)
jmp 0x1326980
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movl 0x2ba0(%rsp), %ecx
movl 0x2b9c(%rsp), %r8d
movq 0x2b90(%rsp), %r9
movl 0x2b8c(%rsp), %r10d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c68(%rsp)
movq 0x2c68(%rsp), %rcx
movq %rcx, 0x830(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x83f(%rsp)
je 0x1317608
movq 0x830(%rsp), %rax
movq %rax, 0x4178(%rsp)
movq 0x4178(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x83f(%rsp)
movb 0x83f(%rsp), %al
testb $0x1, %al
jne 0x1317615
jmp 0x1317625
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1326980
movq 0x2bc0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x131851f
movl $0x0, 0x2b68(%rsp)
movl 0x2b68(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jge 0x131850f
movq 0x2bc8(%rsp), %rcx
movl 0x2b68(%rsp), %eax
leaq 0x2b18(%rsp), %rdx
movq %rdx, 0x2ed8(%rsp)
movq %rcx, 0x2ed0(%rsp)
movl %eax, 0x2ecc(%rsp)
movq 0x2ed0(%rsp), %rax
movq %rax, 0x828(%rsp)
movb $0x0, 0x2ecb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2ecc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2b18(%rsp), %r10
movq %r10, 0x4630(%rsp)
movl %r9d, 0x462c(%rsp)
movl %r8d, 0x4628(%rsp)
movl %edi, 0x4624(%rsp)
movq %rsi, 0x4618(%rsp)
movq %rdx, 0x4610(%rsp)
movl %ecx, 0x460c(%rsp)
movq %rax, 0x4600(%rsp)
movq 0x4630(%rsp), %rcx
movq %rcx, 0x820(%rsp)
movq 0x4618(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4610(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x460c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4600(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x462c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4628(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4624(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d48(%rsp)
movl $0x10, 0x4d44(%rsp)
movq 0x4d48(%rsp), %rax
movslq 0x4d44(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d44(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x828(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2b40(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1317812
movq 0x828(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2b58(%rsp)
movb $0x1, 0x2ecb(%rsp)
testb $0x1, 0x2ecb(%rsp)
jne 0x1317953
leaq 0x2b18(%rsp), %rax
movq %rax, 0x3000(%rsp)
movq 0x3000(%rsp), %rax
movq %rax, 0x53e8(%rsp)
movq 0x53e8(%rsp), %rax
movq %rax, 0x818(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13178f6
movq 0x818(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x53e4(%rsp) # imm = 0xFFFFFFFF
movl 0x53e4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x53e0(%rsp)
cmpl $0x1, 0x53e0(%rsp)
jne 0x13178f6
movq 0x818(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13178c4
movq 0x818(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13178c2
jmp 0x13178f4
movq 0x818(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x53f0(%rsp)
cmpq $0x0, 0x53f0(%rsp)
je 0x13178f2
movq 0x53f0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13178f4
jmp 0x13178f6
movq 0x818(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1317951
movq %rax, %rdi
callq 0x678a0
jmp 0x1317953
leaq 0x2b18(%rsp), %rax
movq %rax, 0x2ff8(%rsp)
movq 0x2ff8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x808(%rsp)
leaq 0x2b18(%rsp), %rax
movq %rax, 0x30d0(%rsp)
movq 0x30d0(%rsp), %rax
movq %rax, 0x5248(%rsp)
movq 0x5248(%rsp), %rax
movq %rax, 0x810(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1317a44
movq 0x810(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5244(%rsp) # imm = 0xFFFFFFFF
movl 0x5244(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5240(%rsp)
cmpl $0x1, 0x5240(%rsp)
jne 0x1317a44
movq 0x810(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1317a12
movq 0x810(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1317a10
jmp 0x1317a42
movq 0x810(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54c0(%rsp)
cmpq $0x0, 0x54c0(%rsp)
je 0x1317a40
movq 0x54c0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1317a42
jmp 0x1317a44
movq 0x810(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1317a9f
movq %rax, %rdi
callq 0x678a0
movq 0x808(%rsp), %rax
movq %rax, 0x2b60(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x2b68(%rsp), %eax
leaq 0x2ac8(%rsp), %rdx
movq %rdx, 0x2ec0(%rsp)
movq %rcx, 0x2eb8(%rsp)
movl %eax, 0x2eb4(%rsp)
movq 0x2eb8(%rsp), %rax
movq %rax, 0x800(%rsp)
movb $0x0, 0x2eb3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2eb4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2ac8(%rsp), %r10
movq %r10, 0x4668(%rsp)
movl %r9d, 0x4664(%rsp)
movl %r8d, 0x4660(%rsp)
movl %edi, 0x465c(%rsp)
movq %rsi, 0x4650(%rsp)
movq %rdx, 0x4648(%rsp)
movl %ecx, 0x4644(%rsp)
movq %rax, 0x4638(%rsp)
movq 0x4668(%rsp), %rcx
movq %rcx, 0x7f8(%rsp)
movq 0x4650(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4648(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4644(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4638(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4664(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4660(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x465c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d38(%rsp)
movl $0x10, 0x4d34(%rsp)
movq 0x4d38(%rsp), %rax
movslq 0x4d34(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d34(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x800(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2af0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1317c6b
movq 0x800(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2b08(%rsp)
movb $0x1, 0x2eb3(%rsp)
testb $0x1, 0x2eb3(%rsp)
jne 0x1317dac
leaq 0x2ac8(%rsp), %rax
movq %rax, 0x3008(%rsp)
movq 0x3008(%rsp), %rax
movq %rax, 0x53d8(%rsp)
movq 0x53d8(%rsp), %rax
movq %rax, 0x7f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1317d4f
movq 0x7f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x53d4(%rsp) # imm = 0xFFFFFFFF
movl 0x53d4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x53d0(%rsp)
cmpl $0x1, 0x53d0(%rsp)
jne 0x1317d4f
movq 0x7f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1317d1d
movq 0x7f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1317d1b
jmp 0x1317d4d
movq 0x7f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x53f8(%rsp)
cmpq $0x0, 0x53f8(%rsp)
je 0x1317d4b
movq 0x53f8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1317d4d
jmp 0x1317d4f
movq 0x7f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1317daa
movq %rax, %rdi
callq 0x678a0
jmp 0x1317dac
leaq 0x2ac8(%rsp), %rax
movq %rax, 0x2ff0(%rsp)
movq 0x2ff0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7e0(%rsp)
leaq 0x2ac8(%rsp), %rax
movq %rax, 0x30d8(%rsp)
movq 0x30d8(%rsp), %rax
movq %rax, 0x5238(%rsp)
movq 0x5238(%rsp), %rax
movq %rax, 0x7e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1317e9d
movq 0x7e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5234(%rsp) # imm = 0xFFFFFFFF
movl 0x5234(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5230(%rsp)
cmpl $0x1, 0x5230(%rsp)
jne 0x1317e9d
movq 0x7e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1317e6b
movq 0x7e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1317e69
jmp 0x1317e9b
movq 0x7e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54c8(%rsp)
cmpq $0x0, 0x54c8(%rsp)
je 0x1317e99
movq 0x54c8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1317e9b
jmp 0x1317e9d
movq 0x7e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1317ef8
movq %rax, %rdi
callq 0x678a0
movq 0x7e0(%rsp), %rax
movq %rax, 0x2b10(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x2b68(%rsp), %eax
leaq 0x2a78(%rsp), %rdx
movq %rdx, 0x3460(%rsp)
movq %rcx, 0x3458(%rsp)
movl %eax, 0x3454(%rsp)
movq 0x3458(%rsp), %rax
movq %rax, 0x7d8(%rsp)
movb $0x0, 0x3453(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3454(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2a78(%rsp), %r10
movq %r10, 0x4240(%rsp)
movl %r9d, 0x423c(%rsp)
movl %r8d, 0x4238(%rsp)
movl %edi, 0x4234(%rsp)
movq %rsi, 0x4228(%rsp)
movq %rdx, 0x4220(%rsp)
movl %ecx, 0x421c(%rsp)
movq %rax, 0x4210(%rsp)
movq 0x4240(%rsp), %rcx
movq %rcx, 0x7d0(%rsp)
movq 0x4228(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4220(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x421c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4210(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x423c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4238(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4234(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e68(%rsp)
movl $0x10, 0x4e64(%rsp)
movq 0x4e68(%rsp), %rax
movslq 0x4e64(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e64(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7d8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2aa0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13180c4
movq 0x7d8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2ab8(%rsp)
movb $0x1, 0x3453(%rsp)
testb $0x1, 0x3453(%rsp)
jne 0x1318205
leaq 0x2a78(%rsp), %rax
movq %rax, 0x3468(%rsp)
movq 0x3468(%rsp), %rax
movq %rax, 0x4e78(%rsp)
movq 0x4e78(%rsp), %rax
movq %rax, 0x7c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13181a8
movq 0x7c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4e74(%rsp) # imm = 0xFFFFFFFF
movl 0x4e74(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4e70(%rsp)
cmpl $0x1, 0x4e70(%rsp)
jne 0x13181a8
movq 0x7c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1318176
movq 0x7c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1318174
jmp 0x13181a6
movq 0x7c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x56a8(%rsp)
cmpq $0x0, 0x56a8(%rsp)
je 0x13181a4
movq 0x56a8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13181a6
jmp 0x13181a8
movq 0x7c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1318203
movq %rax, %rdi
callq 0x678a0
jmp 0x1318205
leaq 0x2a78(%rsp), %rax
movq %rax, 0x3508(%rsp)
movq 0x3508(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7b8(%rsp)
leaq 0x2a78(%rsp), %rax
movq %rax, 0x30e0(%rsp)
movq 0x30e0(%rsp), %rax
movq %rax, 0x5228(%rsp)
movq 0x5228(%rsp), %rax
movq %rax, 0x7c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13182f6
movq 0x7c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5224(%rsp) # imm = 0xFFFFFFFF
movl 0x5224(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5220(%rsp)
cmpl $0x1, 0x5220(%rsp)
jne 0x13182f6
movq 0x7c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13182c4
movq 0x7c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13182c2
jmp 0x13182f4
movq 0x7c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54d0(%rsp)
cmpq $0x0, 0x54d0(%rsp)
je 0x13182f2
movq 0x54d0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13182f4
jmp 0x13182f6
movq 0x7c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1318351
movq %rax, %rdi
callq 0x678a0
movq 0x7b8(%rsp), %rax
movq %rax, 0x2ac0(%rsp)
movl $0x0, 0x2a74(%rsp)
movl 0x2a74(%rsp), %eax
cmpl 0x2ba0(%rsp), %eax
jge 0x13184f7
movl $0x0, 0x2a70(%rsp)
movl 0x2a70(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jge 0x13184df
movq 0x2b10(%rsp), %rax
movq %rax, 0x3638(%rsp)
movq 0x3638(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2a00(%rsp)
movl $0x0, 0x29fc(%rsp)
movl 0x29fc(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jge 0x13184b5
movq 0x2b60(%rsp), %rax
movq %rax, 0x3630(%rsp)
movq 0x3630(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2980(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x2980(%rsp), %rsi
leaq 0x2a00(%rsp), %rdx
callq 0x1453820
vmovaps %zmm0, 0x2940(%rsp)
movq 0x2ac0(%rsp), %rax
vmovaps 0x2940(%rsp), %zmm0
movq %rax, 0x4038(%rsp)
vmovaps %zmm0, 0x3fc0(%rsp)
vmovaps 0x3fc0(%rsp), %zmm0
movq 0x4038(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x2b60(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2b60(%rsp)
movq 0x2ac0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2ac0(%rsp)
movl 0x29fc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x29fc(%rsp)
jmp 0x13183d3
movq 0x2b10(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2b10(%rsp)
movl 0x2a70(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x2a70(%rsp)
jmp 0x131838b
jmp 0x13184e1
movl 0x2a74(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x2a74(%rsp)
jmp 0x131836c
jmp 0x13184f9
movl 0x2b68(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x2b68(%rsp)
jmp 0x1317642
movl $0x0, 0x2bd4(%rsp)
jmp 0x1326980
movq 0x2bc0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1319009
movl $0x0, 0x293c(%rsp)
movl 0x293c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jge 0x1318ff9
movq 0x2bc8(%rsp), %rcx
movl 0x293c(%rsp), %eax
leaq 0x28e8(%rsp), %rdx
movq %rdx, 0x2ea8(%rsp)
movq %rcx, 0x2ea0(%rsp)
movl %eax, 0x2e9c(%rsp)
movq 0x2ea0(%rsp), %rax
movq %rax, 0x7b0(%rsp)
movb $0x0, 0x2e9b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e9c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x28e8(%rsp), %r10
movq %r10, 0x46a0(%rsp)
movl %r9d, 0x469c(%rsp)
movl %r8d, 0x4698(%rsp)
movl %edi, 0x4694(%rsp)
movq %rsi, 0x4688(%rsp)
movq %rdx, 0x4680(%rsp)
movl %ecx, 0x467c(%rsp)
movq %rax, 0x4670(%rsp)
movq 0x46a0(%rsp), %rcx
movq %rcx, 0x7a8(%rsp)
movq 0x4688(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4680(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x467c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4670(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x469c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4698(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4694(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d28(%rsp)
movl $0x10, 0x4d24(%rsp)
movq 0x4d28(%rsp), %rax
movslq 0x4d24(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d24(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7b0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2910(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x131870c
movq 0x7b0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2928(%rsp)
movb $0x1, 0x2e9b(%rsp)
testb $0x1, 0x2e9b(%rsp)
jne 0x131884d
leaq 0x28e8(%rsp), %rax
movq %rax, 0x3010(%rsp)
movq 0x3010(%rsp), %rax
movq %rax, 0x53c8(%rsp)
movq 0x53c8(%rsp), %rax
movq %rax, 0x7a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13187f0
movq 0x7a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x53c4(%rsp) # imm = 0xFFFFFFFF
movl 0x53c4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x53c0(%rsp)
cmpl $0x1, 0x53c0(%rsp)
jne 0x13187f0
movq 0x7a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13187be
movq 0x7a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13187bc
jmp 0x13187ee
movq 0x7a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5400(%rsp)
cmpq $0x0, 0x5400(%rsp)
je 0x13187ec
movq 0x5400(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13187ee
jmp 0x13187f0
movq 0x7a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131884b
movq %rax, %rdi
callq 0x678a0
jmp 0x131884d
leaq 0x28e8(%rsp), %rax
movq %rax, 0x2fe8(%rsp)
movq 0x2fe8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x790(%rsp)
leaq 0x28e8(%rsp), %rax
movq %rax, 0x30e8(%rsp)
movq 0x30e8(%rsp), %rax
movq %rax, 0x5218(%rsp)
movq 0x5218(%rsp), %rax
movq %rax, 0x798(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x131893e
movq 0x798(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5214(%rsp) # imm = 0xFFFFFFFF
movl 0x5214(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5210(%rsp)
cmpl $0x1, 0x5210(%rsp)
jne 0x131893e
movq 0x798(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x131890c
movq 0x798(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x131890a
jmp 0x131893c
movq 0x798(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54d8(%rsp)
cmpq $0x0, 0x54d8(%rsp)
je 0x131893a
movq 0x54d8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x131893c
jmp 0x131893e
movq 0x798(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1318999
movq %rax, %rdi
callq 0x678a0
movq 0x790(%rsp), %rax
movq %rax, 0x2930(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x293c(%rsp), %eax
movq %rcx, 0x4078(%rsp)
movl %eax, 0x4074(%rsp)
movq 0x4078(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x4074(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x28e0(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x293c(%rsp), %eax
leaq 0x2890(%rsp), %rdx
movq %rdx, 0x3440(%rsp)
movq %rcx, 0x3438(%rsp)
movl %eax, 0x3434(%rsp)
movq 0x3438(%rsp), %rax
movq %rax, 0x788(%rsp)
movb $0x0, 0x3433(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3434(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2890(%rsp), %r10
movq %r10, 0x4278(%rsp)
movl %r9d, 0x4274(%rsp)
movl %r8d, 0x4270(%rsp)
movl %edi, 0x426c(%rsp)
movq %rsi, 0x4260(%rsp)
movq %rdx, 0x4258(%rsp)
movl %ecx, 0x4254(%rsp)
movq %rax, 0x4248(%rsp)
movq 0x4278(%rsp), %rcx
movq %rcx, 0x780(%rsp)
movq 0x4260(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4258(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4254(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4248(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4274(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4270(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x426c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e58(%rsp)
movl $0x10, 0x4e54(%rsp)
movq 0x4e58(%rsp), %rax
movslq 0x4e54(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e54(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x788(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x28b8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1318bae
movq 0x788(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x28d0(%rsp)
movb $0x1, 0x3433(%rsp)
testb $0x1, 0x3433(%rsp)
jne 0x1318cef
leaq 0x2890(%rsp), %rax
movq %rax, 0x3448(%rsp)
movq 0x3448(%rsp), %rax
movq %rax, 0x4e88(%rsp)
movq 0x4e88(%rsp), %rax
movq %rax, 0x778(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1318c92
movq 0x778(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4e84(%rsp) # imm = 0xFFFFFFFF
movl 0x4e84(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4e80(%rsp)
cmpl $0x1, 0x4e80(%rsp)
jne 0x1318c92
movq 0x778(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1318c60
movq 0x778(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1318c5e
jmp 0x1318c90
movq 0x778(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x56a0(%rsp)
cmpq $0x0, 0x56a0(%rsp)
je 0x1318c8e
movq 0x56a0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1318c90
jmp 0x1318c92
movq 0x778(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1318ced
movq %rax, %rdi
callq 0x678a0
jmp 0x1318cef
leaq 0x2890(%rsp), %rax
movq %rax, 0x3500(%rsp)
movq 0x3500(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x768(%rsp)
leaq 0x2890(%rsp), %rax
movq %rax, 0x30f0(%rsp)
movq 0x30f0(%rsp), %rax
movq %rax, 0x5208(%rsp)
movq 0x5208(%rsp), %rax
movq %rax, 0x770(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1318de0
movq 0x770(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5204(%rsp) # imm = 0xFFFFFFFF
movl 0x5204(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5200(%rsp)
cmpl $0x1, 0x5200(%rsp)
jne 0x1318de0
movq 0x770(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1318dae
movq 0x770(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1318dac
jmp 0x1318dde
movq 0x770(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54e0(%rsp)
cmpq $0x0, 0x54e0(%rsp)
je 0x1318ddc
movq 0x54e0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1318dde
jmp 0x1318de0
movq 0x770(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1318e3b
movq %rax, %rdi
callq 0x678a0
movq 0x768(%rsp), %rax
movq %rax, 0x28d8(%rsp)
movl $0x0, 0x288c(%rsp)
movl 0x288c(%rsp), %eax
cmpl 0x2ba0(%rsp), %eax
jge 0x1318fe1
movq 0x28e0(%rsp), %rax
movq %rax, 0x3628(%rsp)
movq 0x3628(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2840(%rsp)
movl $0x0, 0x283c(%rsp)
movl 0x283c(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jge 0x1318fb7
movl $0x0, 0x2838(%rsp)
movl 0x2838(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jge 0x1318f9f
movq 0x2930(%rsp), %rax
movq %rax, 0x3620(%rsp)
movq 0x3620(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x27c0(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x27c0(%rsp), %rsi
leaq 0x2840(%rsp), %rdx
callq 0x1453820
vmovaps %zmm0, 0x2780(%rsp)
movq 0x28d8(%rsp), %rax
vmovaps 0x2780(%rsp), %zmm0
movq %rax, 0x3fb8(%rsp)
vmovaps %zmm0, 0x3f40(%rsp)
vmovaps 0x3f40(%rsp), %zmm0
movq 0x3fb8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x2930(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2930(%rsp)
movq 0x28d8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x28d8(%rsp)
movl 0x2838(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x2838(%rsp)
jmp 0x1318ebd
jmp 0x1318fa1
movl 0x283c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x283c(%rsp)
jmp 0x1318e9e
movq 0x28e0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x28e0(%rsp)
movl 0x288c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x288c(%rsp)
jmp 0x1318e56
jmp 0x1318fe3
movl 0x293c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x293c(%rsp)
jmp 0x131853c
movl $0x0, 0x2bd4(%rsp)
jmp 0x1326980
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1319a9a
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1319064
cmpl $0x1, 0x2b6c(%rsp)
jne 0x1319064
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x1445ca0
movl %eax, 0x2bd4(%rsp)
jmp 0x1326980
movl $0x0, 0x277c(%rsp)
movl 0x277c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jge 0x1319a8a
movq 0x2bc8(%rsp), %rcx
movl 0x277c(%rsp), %eax
leaq 0x2728(%rsp), %rdx
movq %rdx, 0x2e90(%rsp)
movq %rcx, 0x2e88(%rsp)
movl %eax, 0x2e84(%rsp)
movq 0x2e88(%rsp), %rax
movq %rax, 0x760(%rsp)
movb $0x0, 0x2e83(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e84(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2728(%rsp), %r10
movq %r10, 0x46d8(%rsp)
movl %r9d, 0x46d4(%rsp)
movl %r8d, 0x46d0(%rsp)
movl %edi, 0x46cc(%rsp)
movq %rsi, 0x46c0(%rsp)
movq %rdx, 0x46b8(%rsp)
movl %ecx, 0x46b4(%rsp)
movq %rax, 0x46a8(%rsp)
movq 0x46d8(%rsp), %rcx
movq %rcx, 0x758(%rsp)
movq 0x46c0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x46b8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x46b4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x46a8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x46d4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x46d0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x46cc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d18(%rsp)
movl $0x10, 0x4d14(%rsp)
movq 0x4d18(%rsp), %rax
movslq 0x4d14(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d14(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x760(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2750(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x131923f
movq 0x760(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2768(%rsp)
movb $0x1, 0x2e83(%rsp)
testb $0x1, 0x2e83(%rsp)
jne 0x1319380
leaq 0x2728(%rsp), %rax
movq %rax, 0x3018(%rsp)
movq 0x3018(%rsp), %rax
movq %rax, 0x53b8(%rsp)
movq 0x53b8(%rsp), %rax
movq %rax, 0x750(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1319323
movq 0x750(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x53b4(%rsp) # imm = 0xFFFFFFFF
movl 0x53b4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x53b0(%rsp)
cmpl $0x1, 0x53b0(%rsp)
jne 0x1319323
movq 0x750(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13192f1
movq 0x750(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13192ef
jmp 0x1319321
movq 0x750(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5408(%rsp)
cmpq $0x0, 0x5408(%rsp)
je 0x131931f
movq 0x5408(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1319321
jmp 0x1319323
movq 0x750(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131937e
movq %rax, %rdi
callq 0x678a0
jmp 0x1319380
leaq 0x2728(%rsp), %rax
movq %rax, 0x2fe0(%rsp)
movq 0x2fe0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x740(%rsp)
leaq 0x2728(%rsp), %rax
movq %rax, 0x30f8(%rsp)
movq 0x30f8(%rsp), %rax
movq %rax, 0x51f8(%rsp)
movq 0x51f8(%rsp), %rax
movq %rax, 0x748(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1319471
movq 0x748(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x51f4(%rsp) # imm = 0xFFFFFFFF
movl 0x51f4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x51f0(%rsp)
cmpl $0x1, 0x51f0(%rsp)
jne 0x1319471
movq 0x748(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x131943f
movq 0x748(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x131943d
jmp 0x131946f
movq 0x748(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54e8(%rsp)
cmpq $0x0, 0x54e8(%rsp)
je 0x131946d
movq 0x54e8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x131946f
jmp 0x1319471
movq 0x748(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13194cc
movq %rax, %rdi
callq 0x678a0
movq 0x740(%rsp), %rax
movq %rax, 0x2770(%rsp)
movq 0x2bc0(%rsp), %rax
movq %rax, 0x2fd8(%rsp)
movq 0x2fd8(%rsp), %rax
movq (%rax), %rax
movl 0x277c(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x3618(%rsp)
movq 0x3618(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x26c0(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x277c(%rsp), %eax
leaq 0x2670(%rsp), %rdx
movq %rdx, 0x3420(%rsp)
movq %rcx, 0x3418(%rsp)
movl %eax, 0x3414(%rsp)
movq 0x3418(%rsp), %rax
movq %rax, 0x738(%rsp)
movb $0x0, 0x3413(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3414(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2670(%rsp), %r10
movq %r10, 0x42b0(%rsp)
movl %r9d, 0x42ac(%rsp)
movl %r8d, 0x42a8(%rsp)
movl %edi, 0x42a4(%rsp)
movq %rsi, 0x4298(%rsp)
movq %rdx, 0x4290(%rsp)
movl %ecx, 0x428c(%rsp)
movq %rax, 0x4280(%rsp)
movq 0x42b0(%rsp), %rcx
movq %rcx, 0x730(%rsp)
movq 0x4298(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4290(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x428c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4280(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x42ac(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x42a8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x42a4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e48(%rsp)
movl $0x10, 0x4e44(%rsp)
movq 0x4e48(%rsp), %rax
movslq 0x4e44(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e44(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x738(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2698(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13196e8
movq 0x738(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x26b0(%rsp)
movb $0x1, 0x3413(%rsp)
testb $0x1, 0x3413(%rsp)
jne 0x1319829
leaq 0x2670(%rsp), %rax
movq %rax, 0x3428(%rsp)
movq 0x3428(%rsp), %rax
movq %rax, 0x4e98(%rsp)
movq 0x4e98(%rsp), %rax
movq %rax, 0x728(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13197cc
movq 0x728(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4e94(%rsp) # imm = 0xFFFFFFFF
movl 0x4e94(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4e90(%rsp)
cmpl $0x1, 0x4e90(%rsp)
jne 0x13197cc
movq 0x728(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x131979a
movq 0x728(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1319798
jmp 0x13197ca
movq 0x728(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5698(%rsp)
cmpq $0x0, 0x5698(%rsp)
je 0x13197c8
movq 0x5698(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13197ca
jmp 0x13197cc
movq 0x728(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1319827
movq %rax, %rdi
callq 0x678a0
jmp 0x1319829
leaq 0x2670(%rsp), %rax
movq %rax, 0x34f8(%rsp)
movq 0x34f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x718(%rsp)
leaq 0x2670(%rsp), %rax
movq %rax, 0x3100(%rsp)
movq 0x3100(%rsp), %rax
movq %rax, 0x51e8(%rsp)
movq 0x51e8(%rsp), %rax
movq %rax, 0x720(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x131991a
movq 0x720(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x51e4(%rsp) # imm = 0xFFFFFFFF
movl 0x51e4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x51e0(%rsp)
cmpl $0x1, 0x51e0(%rsp)
jne 0x131991a
movq 0x720(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13198e8
movq 0x720(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13198e6
jmp 0x1319918
movq 0x720(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54f0(%rsp)
cmpq $0x0, 0x54f0(%rsp)
je 0x1319916
movq 0x54f0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1319918
jmp 0x131991a
movq 0x720(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1319975
movq %rax, %rdi
callq 0x678a0
movq 0x718(%rsp), %rax
movq %rax, 0x26b8(%rsp)
movl $0x0, 0x266c(%rsp)
movl 0x266c(%rsp), %eax
cmpl 0x2b98(%rsp), %eax
jge 0x1319a72
movq 0x2770(%rsp), %rax
movq %rax, 0x3610(%rsp)
movq 0x3610(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2600(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x2600(%rsp), %rsi
leaq 0x26c0(%rsp), %rdx
callq 0x1453820
vmovaps %zmm0, 0x25c0(%rsp)
movq 0x26b8(%rsp), %rax
vmovaps 0x25c0(%rsp), %zmm0
movq %rax, 0x3f38(%rsp)
vmovaps %zmm0, 0x3ec0(%rsp)
vmovaps 0x3ec0(%rsp), %zmm0
movq 0x3f38(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x2770(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2770(%rsp)
movq 0x26b8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x26b8(%rsp)
movl 0x266c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x266c(%rsp)
jmp 0x1319990
jmp 0x1319a74
movl 0x277c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x277c(%rsp)
jmp 0x131906f
movl $0x0, 0x2bd4(%rsp)
jmp 0x1326980
jmp 0x1326975
movq 0x2bc8(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x13234b4
movq 0x2bc0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x131aa78
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b80(%rsp), %ecx
movl 0x2b7c(%rsp), %r8d
movq 0x2b70(%rsp), %r9
movl 0x2b6c(%rsp), %r10d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c60(%rsp)
movq 0x2c60(%rsp), %rcx
movq %rcx, 0x708(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x717(%rsp)
je 0x1319b73
movq 0x708(%rsp), %rax
movq %rax, 0x4180(%rsp)
movq 0x4180(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x717(%rsp)
movb 0x717(%rsp), %al
testb $0x1, %al
jne 0x1319b80
jmp 0x1319b90
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1326980
movl $0x0, 0x25bc(%rsp)
movl 0x25bc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x131aa68
movq 0x2bc8(%rsp), %rcx
movl 0x25bc(%rsp), %eax
leaq 0x2568(%rsp), %rdx
movq %rdx, 0x2e78(%rsp)
movq %rcx, 0x2e70(%rsp)
movl %eax, 0x2e6c(%rsp)
movq 0x2e70(%rsp), %rax
movq %rax, 0x700(%rsp)
movb $0x0, 0x2e6b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e6c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2568(%rsp), %r10
movq %r10, 0x4710(%rsp)
movl %r9d, 0x470c(%rsp)
movl %r8d, 0x4708(%rsp)
movl %edi, 0x4704(%rsp)
movq %rsi, 0x46f8(%rsp)
movq %rdx, 0x46f0(%rsp)
movl %ecx, 0x46ec(%rsp)
movq %rax, 0x46e0(%rsp)
movq 0x4710(%rsp), %rcx
movq %rcx, 0x6f8(%rsp)
movq 0x46f8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x46f0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x46ec(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x46e0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x470c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4708(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4704(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d08(%rsp)
movl $0x10, 0x4d04(%rsp)
movq 0x4d08(%rsp), %rax
movslq 0x4d04(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d04(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x700(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2590(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1319d6b
movq 0x700(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x25a8(%rsp)
movb $0x1, 0x2e6b(%rsp)
testb $0x1, 0x2e6b(%rsp)
jne 0x1319eac
leaq 0x2568(%rsp), %rax
movq %rax, 0x3020(%rsp)
movq 0x3020(%rsp), %rax
movq %rax, 0x53a8(%rsp)
movq 0x53a8(%rsp), %rax
movq %rax, 0x6f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1319e4f
movq 0x6f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x53a4(%rsp) # imm = 0xFFFFFFFF
movl 0x53a4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x53a0(%rsp)
cmpl $0x1, 0x53a0(%rsp)
jne 0x1319e4f
movq 0x6f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1319e1d
movq 0x6f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1319e1b
jmp 0x1319e4d
movq 0x6f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5410(%rsp)
cmpq $0x0, 0x5410(%rsp)
je 0x1319e4b
movq 0x5410(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1319e4d
jmp 0x1319e4f
movq 0x6f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1319eaa
movq %rax, %rdi
callq 0x678a0
jmp 0x1319eac
leaq 0x2568(%rsp), %rax
movq %rax, 0x2fd0(%rsp)
movq 0x2fd0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6e0(%rsp)
leaq 0x2568(%rsp), %rax
movq %rax, 0x3108(%rsp)
movq 0x3108(%rsp), %rax
movq %rax, 0x51d8(%rsp)
movq 0x51d8(%rsp), %rax
movq %rax, 0x6e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1319f9d
movq 0x6e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x51d4(%rsp) # imm = 0xFFFFFFFF
movl 0x51d4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x51d0(%rsp)
cmpl $0x1, 0x51d0(%rsp)
jne 0x1319f9d
movq 0x6e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1319f6b
movq 0x6e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1319f69
jmp 0x1319f9b
movq 0x6e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54f8(%rsp)
cmpq $0x0, 0x54f8(%rsp)
je 0x1319f99
movq 0x54f8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1319f9b
jmp 0x1319f9d
movq 0x6e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1319ff8
movq %rax, %rdi
callq 0x678a0
movq 0x6e0(%rsp), %rax
movq %rax, 0x25b0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x25bc(%rsp), %eax
leaq 0x2518(%rsp), %rdx
movq %rdx, 0x2e60(%rsp)
movq %rcx, 0x2e58(%rsp)
movl %eax, 0x2e54(%rsp)
movq 0x2e58(%rsp), %rax
movq %rax, 0x6d8(%rsp)
movb $0x0, 0x2e53(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e54(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2518(%rsp), %r10
movq %r10, 0x4748(%rsp)
movl %r9d, 0x4744(%rsp)
movl %r8d, 0x4740(%rsp)
movl %edi, 0x473c(%rsp)
movq %rsi, 0x4730(%rsp)
movq %rdx, 0x4728(%rsp)
movl %ecx, 0x4724(%rsp)
movq %rax, 0x4718(%rsp)
movq 0x4748(%rsp), %rcx
movq %rcx, 0x6d0(%rsp)
movq 0x4730(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4728(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4724(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4718(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4744(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4740(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x473c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4cf8(%rsp)
movl $0x10, 0x4cf4(%rsp)
movq 0x4cf8(%rsp), %rax
movslq 0x4cf4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4cf4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6d8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2540(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x131a1c4
movq 0x6d8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2558(%rsp)
movb $0x1, 0x2e53(%rsp)
testb $0x1, 0x2e53(%rsp)
jne 0x131a305
leaq 0x2518(%rsp), %rax
movq %rax, 0x3028(%rsp)
movq 0x3028(%rsp), %rax
movq %rax, 0x5398(%rsp)
movq 0x5398(%rsp), %rax
movq %rax, 0x6c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x131a2a8
movq 0x6c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5394(%rsp) # imm = 0xFFFFFFFF
movl 0x5394(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5390(%rsp)
cmpl $0x1, 0x5390(%rsp)
jne 0x131a2a8
movq 0x6c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x131a276
movq 0x6c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x131a274
jmp 0x131a2a6
movq 0x6c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5418(%rsp)
cmpq $0x0, 0x5418(%rsp)
je 0x131a2a4
movq 0x5418(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x131a2a6
jmp 0x131a2a8
movq 0x6c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131a303
movq %rax, %rdi
callq 0x678a0
jmp 0x131a305
leaq 0x2518(%rsp), %rax
movq %rax, 0x2fc8(%rsp)
movq 0x2fc8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6b8(%rsp)
leaq 0x2518(%rsp), %rax
movq %rax, 0x3110(%rsp)
movq 0x3110(%rsp), %rax
movq %rax, 0x51c8(%rsp)
movq 0x51c8(%rsp), %rax
movq %rax, 0x6c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x131a3f6
movq 0x6c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x51c4(%rsp) # imm = 0xFFFFFFFF
movl 0x51c4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x51c0(%rsp)
cmpl $0x1, 0x51c0(%rsp)
jne 0x131a3f6
movq 0x6c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x131a3c4
movq 0x6c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x131a3c2
jmp 0x131a3f4
movq 0x6c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5500(%rsp)
cmpq $0x0, 0x5500(%rsp)
je 0x131a3f2
movq 0x5500(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x131a3f4
jmp 0x131a3f6
movq 0x6c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131a451
movq %rax, %rdi
callq 0x678a0
movq 0x6b8(%rsp), %rax
movq %rax, 0x2560(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x25bc(%rsp), %eax
leaq 0x24c8(%rsp), %rdx
movq %rdx, 0x3400(%rsp)
movq %rcx, 0x33f8(%rsp)
movl %eax, 0x33f4(%rsp)
movq 0x33f8(%rsp), %rax
movq %rax, 0x6b0(%rsp)
movb $0x0, 0x33f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x33f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x24c8(%rsp), %r10
movq %r10, 0x42e8(%rsp)
movl %r9d, 0x42e4(%rsp)
movl %r8d, 0x42e0(%rsp)
movl %edi, 0x42dc(%rsp)
movq %rsi, 0x42d0(%rsp)
movq %rdx, 0x42c8(%rsp)
movl %ecx, 0x42c4(%rsp)
movq %rax, 0x42b8(%rsp)
movq 0x42e8(%rsp), %rcx
movq %rcx, 0x6a8(%rsp)
movq 0x42d0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x42c8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x42c4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x42b8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x42e4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x42e0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x42dc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e38(%rsp)
movl $0x10, 0x4e34(%rsp)
movq 0x4e38(%rsp), %rax
movslq 0x4e34(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e34(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6b0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x24f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x131a61d
movq 0x6b0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2508(%rsp)
movb $0x1, 0x33f3(%rsp)
testb $0x1, 0x33f3(%rsp)
jne 0x131a75e
leaq 0x24c8(%rsp), %rax
movq %rax, 0x3408(%rsp)
movq 0x3408(%rsp), %rax
movq %rax, 0x4ea8(%rsp)
movq 0x4ea8(%rsp), %rax
movq %rax, 0x6a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x131a701
movq 0x6a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4ea4(%rsp) # imm = 0xFFFFFFFF
movl 0x4ea4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4ea0(%rsp)
cmpl $0x1, 0x4ea0(%rsp)
jne 0x131a701
movq 0x6a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x131a6cf
movq 0x6a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x131a6cd
jmp 0x131a6ff
movq 0x6a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5690(%rsp)
cmpq $0x0, 0x5690(%rsp)
je 0x131a6fd
movq 0x5690(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x131a6ff
jmp 0x131a701
movq 0x6a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131a75c
movq %rax, %rdi
callq 0x678a0
jmp 0x131a75e
leaq 0x24c8(%rsp), %rax
movq %rax, 0x34f0(%rsp)
movq 0x34f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x690(%rsp)
leaq 0x24c8(%rsp), %rax
movq %rax, 0x3118(%rsp)
movq 0x3118(%rsp), %rax
movq %rax, 0x51b8(%rsp)
movq 0x51b8(%rsp), %rax
movq %rax, 0x698(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x131a84f
movq 0x698(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x51b4(%rsp) # imm = 0xFFFFFFFF
movl 0x51b4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x51b0(%rsp)
cmpl $0x1, 0x51b0(%rsp)
jne 0x131a84f
movq 0x698(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x131a81d
movq 0x698(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x131a81b
jmp 0x131a84d
movq 0x698(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5508(%rsp)
cmpq $0x0, 0x5508(%rsp)
je 0x131a84b
movq 0x5508(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x131a84d
jmp 0x131a84f
movq 0x698(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131a8aa
movq %rax, %rdi
callq 0x678a0
movq 0x690(%rsp), %rax
movq %rax, 0x2510(%rsp)
movl $0x0, 0x24c4(%rsp)
movl 0x24c4(%rsp), %eax
cmpl 0x2b80(%rsp), %eax
jge 0x131aa50
movl $0x0, 0x24c0(%rsp)
movl 0x24c0(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jge 0x131aa38
movq 0x25b0(%rsp), %rax
movq %rax, 0x3608(%rsp)
movq 0x3608(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2480(%rsp)
movl $0x0, 0x247c(%rsp)
movl 0x247c(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jge 0x131aa0e
movq 0x2560(%rsp), %rax
movq %rax, 0x3600(%rsp)
movq 0x3600(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2400(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x2480(%rsp), %rsi
leaq 0x2400(%rsp), %rdx
callq 0x1453820
vmovaps %zmm0, 0x23c0(%rsp)
movq 0x2510(%rsp), %rax
vmovaps 0x23c0(%rsp), %zmm0
movq %rax, 0x3eb8(%rsp)
vmovaps %zmm0, 0x3e40(%rsp)
vmovaps 0x3e40(%rsp), %zmm0
movq 0x3eb8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x2560(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2560(%rsp)
movq 0x2510(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2510(%rsp)
movl 0x247c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x247c(%rsp)
jmp 0x131a92c
movq 0x25b0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x25b0(%rsp)
movl 0x24c0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x24c0(%rsp)
jmp 0x131a8e4
jmp 0x131aa3a
movl 0x24c4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x24c4(%rsp)
jmp 0x131a8c5
jmp 0x131aa52
movl 0x25bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x25bc(%rsp)
jmp 0x1319b9b
movl $0x0, 0x2bd4(%rsp)
jmp 0x1326980
movq 0x2bc0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1321ec3
cmpl $0x1, 0x2b88(%rsp)
jne 0x131b9e2
cmpl $0x1, 0x2b84(%rsp)
jne 0x131b9e2
movl 0x2b7c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jne 0x131b9e2
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movl 0x2b9c(%rsp), %ecx
movq 0x2b90(%rsp), %r8
movl 0x2b8c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c58(%rsp)
movq 0x2c58(%rsp), %rcx
movq %rcx, 0x680(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x68f(%rsp)
je 0x131ab5d
movq 0x680(%rsp), %rax
movq %rax, 0x4188(%rsp)
movq 0x4188(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x68f(%rsp)
movb 0x68f(%rsp), %al
testb $0x1, %al
jne 0x131ab6a
jmp 0x131ab7a
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1326980
movl $0x0, 0x23bc(%rsp)
movl 0x23bc(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jge 0x131b9d2
movq 0x2bc8(%rsp), %rcx
movl 0x23bc(%rsp), %eax
leaq 0x2368(%rsp), %rdx
movq %rdx, 0x2e48(%rsp)
movq %rcx, 0x2e40(%rsp)
movl %eax, 0x2e3c(%rsp)
movq 0x2e40(%rsp), %rax
movq %rax, 0x678(%rsp)
movb $0x0, 0x2e3b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e3c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2368(%rsp), %r10
movq %r10, 0x4780(%rsp)
movl %r9d, 0x477c(%rsp)
movl %r8d, 0x4778(%rsp)
movl %edi, 0x4774(%rsp)
movq %rsi, 0x4768(%rsp)
movq %rdx, 0x4760(%rsp)
movl %ecx, 0x475c(%rsp)
movq %rax, 0x4750(%rsp)
movq 0x4780(%rsp), %rcx
movq %rcx, 0x670(%rsp)
movq 0x4768(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4760(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x475c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4750(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x477c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4778(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4774(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4ce8(%rsp)
movl $0x10, 0x4ce4(%rsp)
movq 0x4ce8(%rsp), %rax
movslq 0x4ce4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4ce4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x678(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2390(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x131ad55
movq 0x678(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x23a8(%rsp)
movb $0x1, 0x2e3b(%rsp)
testb $0x1, 0x2e3b(%rsp)
jne 0x131ae96
leaq 0x2368(%rsp), %rax
movq %rax, 0x3030(%rsp)
movq 0x3030(%rsp), %rax
movq %rax, 0x5388(%rsp)
movq 0x5388(%rsp), %rax
movq %rax, 0x668(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x131ae39
movq 0x668(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5384(%rsp) # imm = 0xFFFFFFFF
movl 0x5384(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5380(%rsp)
cmpl $0x1, 0x5380(%rsp)
jne 0x131ae39
movq 0x668(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x131ae07
movq 0x668(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x131ae05
jmp 0x131ae37
movq 0x668(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5420(%rsp)
cmpq $0x0, 0x5420(%rsp)
je 0x131ae35
movq 0x5420(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x131ae37
jmp 0x131ae39
movq 0x668(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131ae94
movq %rax, %rdi
callq 0x678a0
jmp 0x131ae96
leaq 0x2368(%rsp), %rax
movq %rax, 0x2fc0(%rsp)
movq 0x2fc0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x658(%rsp)
leaq 0x2368(%rsp), %rax
movq %rax, 0x3120(%rsp)
movq 0x3120(%rsp), %rax
movq %rax, 0x51a8(%rsp)
movq 0x51a8(%rsp), %rax
movq %rax, 0x660(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x131af87
movq 0x660(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x51a4(%rsp) # imm = 0xFFFFFFFF
movl 0x51a4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x51a0(%rsp)
cmpl $0x1, 0x51a0(%rsp)
jne 0x131af87
movq 0x660(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x131af55
movq 0x660(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x131af53
jmp 0x131af85
movq 0x660(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5510(%rsp)
cmpq $0x0, 0x5510(%rsp)
je 0x131af83
movq 0x5510(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x131af85
jmp 0x131af87
movq 0x660(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131afe2
movq %rax, %rdi
callq 0x678a0
movq 0x658(%rsp), %rax
movq %rax, 0x23b0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x23bc(%rsp), %eax
leaq 0x2318(%rsp), %rdx
movq %rdx, 0x2e30(%rsp)
movq %rcx, 0x2e28(%rsp)
movl %eax, 0x2e24(%rsp)
movq 0x2e28(%rsp), %rax
movq %rax, 0x650(%rsp)
movb $0x0, 0x2e23(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e24(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2318(%rsp), %r10
movq %r10, 0x47b8(%rsp)
movl %r9d, 0x47b4(%rsp)
movl %r8d, 0x47b0(%rsp)
movl %edi, 0x47ac(%rsp)
movq %rsi, 0x47a0(%rsp)
movq %rdx, 0x4798(%rsp)
movl %ecx, 0x4794(%rsp)
movq %rax, 0x4788(%rsp)
movq 0x47b8(%rsp), %rcx
movq %rcx, 0x648(%rsp)
movq 0x47a0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4798(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4794(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4788(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x47b4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x47b0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x47ac(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4cd8(%rsp)
movl $0x10, 0x4cd4(%rsp)
movq 0x4cd8(%rsp), %rax
movslq 0x4cd4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4cd4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x650(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2340(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x131b1ae
movq 0x650(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2358(%rsp)
movb $0x1, 0x2e23(%rsp)
testb $0x1, 0x2e23(%rsp)
jne 0x131b2ef
leaq 0x2318(%rsp), %rax
movq %rax, 0x3038(%rsp)
movq 0x3038(%rsp), %rax
movq %rax, 0x5378(%rsp)
movq 0x5378(%rsp), %rax
movq %rax, 0x640(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x131b292
movq 0x640(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5374(%rsp) # imm = 0xFFFFFFFF
movl 0x5374(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5370(%rsp)
cmpl $0x1, 0x5370(%rsp)
jne 0x131b292
movq 0x640(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x131b260
movq 0x640(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x131b25e
jmp 0x131b290
movq 0x640(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5428(%rsp)
cmpq $0x0, 0x5428(%rsp)
je 0x131b28e
movq 0x5428(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x131b290
jmp 0x131b292
movq 0x640(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131b2ed
movq %rax, %rdi
callq 0x678a0
jmp 0x131b2ef
leaq 0x2318(%rsp), %rax
movq %rax, 0x2fb8(%rsp)
movq 0x2fb8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x630(%rsp)
leaq 0x2318(%rsp), %rax
movq %rax, 0x3128(%rsp)
movq 0x3128(%rsp), %rax
movq %rax, 0x5198(%rsp)
movq 0x5198(%rsp), %rax
movq %rax, 0x638(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x131b3e0
movq 0x638(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5194(%rsp) # imm = 0xFFFFFFFF
movl 0x5194(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5190(%rsp)
cmpl $0x1, 0x5190(%rsp)
jne 0x131b3e0
movq 0x638(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x131b3ae
movq 0x638(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x131b3ac
jmp 0x131b3de
movq 0x638(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5518(%rsp)
cmpq $0x0, 0x5518(%rsp)
je 0x131b3dc
movq 0x5518(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x131b3de
jmp 0x131b3e0
movq 0x638(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131b43b
movq %rax, %rdi
callq 0x678a0
movq 0x630(%rsp), %rax
movq %rax, 0x2360(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x23bc(%rsp), %eax
leaq 0x22c8(%rsp), %rdx
movq %rdx, 0x33e0(%rsp)
movq %rcx, 0x33d8(%rsp)
movl %eax, 0x33d4(%rsp)
movq 0x33d8(%rsp), %rax
movq %rax, 0x628(%rsp)
movb $0x0, 0x33d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x33d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x22c8(%rsp), %r10
movq %r10, 0x4320(%rsp)
movl %r9d, 0x431c(%rsp)
movl %r8d, 0x4318(%rsp)
movl %edi, 0x4314(%rsp)
movq %rsi, 0x4308(%rsp)
movq %rdx, 0x4300(%rsp)
movl %ecx, 0x42fc(%rsp)
movq %rax, 0x42f0(%rsp)
movq 0x4320(%rsp), %rcx
movq %rcx, 0x620(%rsp)
movq 0x4308(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4300(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x42fc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x42f0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x431c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4318(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4314(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e28(%rsp)
movl $0x10, 0x4e24(%rsp)
movq 0x4e28(%rsp), %rax
movslq 0x4e24(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e24(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x628(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x22f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x131b607
movq 0x628(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2308(%rsp)
movb $0x1, 0x33d3(%rsp)
testb $0x1, 0x33d3(%rsp)
jne 0x131b748
leaq 0x22c8(%rsp), %rax
movq %rax, 0x33e8(%rsp)
movq 0x33e8(%rsp), %rax
movq %rax, 0x4eb8(%rsp)
movq 0x4eb8(%rsp), %rax
movq %rax, 0x618(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x131b6eb
movq 0x618(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4eb4(%rsp) # imm = 0xFFFFFFFF
movl 0x4eb4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4eb0(%rsp)
cmpl $0x1, 0x4eb0(%rsp)
jne 0x131b6eb
movq 0x618(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x131b6b9
movq 0x618(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x131b6b7
jmp 0x131b6e9
movq 0x618(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5688(%rsp)
cmpq $0x0, 0x5688(%rsp)
je 0x131b6e7
movq 0x5688(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x131b6e9
jmp 0x131b6eb
movq 0x618(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131b746
movq %rax, %rdi
callq 0x678a0
jmp 0x131b748
leaq 0x22c8(%rsp), %rax
movq %rax, 0x34e8(%rsp)
movq 0x34e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x608(%rsp)
leaq 0x22c8(%rsp), %rax
movq %rax, 0x3130(%rsp)
movq 0x3130(%rsp), %rax
movq %rax, 0x5188(%rsp)
movq 0x5188(%rsp), %rax
movq %rax, 0x610(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x131b839
movq 0x610(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5184(%rsp) # imm = 0xFFFFFFFF
movl 0x5184(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5180(%rsp)
cmpl $0x1, 0x5180(%rsp)
jne 0x131b839
movq 0x610(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x131b807
movq 0x610(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x131b805
jmp 0x131b837
movq 0x610(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5520(%rsp)
cmpq $0x0, 0x5520(%rsp)
je 0x131b835
movq 0x5520(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x131b837
jmp 0x131b839
movq 0x610(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131b894
movq %rax, %rdi
callq 0x678a0
movq 0x608(%rsp), %rax
movq %rax, 0x2310(%rsp)
movq 0x2360(%rsp), %rax
movq %rax, 0x35f8(%rsp)
movq 0x35f8(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2280(%rsp)
movl $0x0, 0x227c(%rsp)
movl 0x227c(%rsp), %eax
cmpl 0x2b98(%rsp), %eax
jge 0x131b9ba
movq 0x23b0(%rsp), %rax
movq %rax, 0x35f0(%rsp)
movq 0x35f0(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2200(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x2200(%rsp), %rsi
leaq 0x2280(%rsp), %rdx
callq 0x1453820
vmovaps %zmm0, 0x21c0(%rsp)
movq 0x2310(%rsp), %rax
vmovaps 0x21c0(%rsp), %zmm0
movq %rax, 0x3e38(%rsp)
vmovaps %zmm0, 0x3dc0(%rsp)
vmovaps 0x3dc0(%rsp), %zmm0
movq 0x3e38(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x23b0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x23b0(%rsp)
movq 0x2310(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2310(%rsp)
movl 0x227c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x227c(%rsp)
jmp 0x131b8d8
jmp 0x131b9bc
movl 0x23bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x23bc(%rsp)
jmp 0x131ab85
movl $0x0, 0x2bd4(%rsp)
jmp 0x1326980
movl 0x2b88(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jne 0x131c544
movl 0x2b84(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jne 0x131c544
cmpl $0x1, 0x2b7c(%rsp)
jne 0x131c544
cmpl $0x1, 0x2b6c(%rsp)
jne 0x131c544
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movl 0x2b9c(%rsp), %ecx
movq 0x2b90(%rsp), %r8
movl 0x2b8c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c50(%rsp)
movq 0x2c50(%rsp), %rcx
movq %rcx, 0x5f8(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x607(%rsp)
je 0x131bac9
movq 0x5f8(%rsp), %rax
movq %rax, 0x4190(%rsp)
movq 0x4190(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x607(%rsp)
movb 0x607(%rsp), %al
testb $0x1, %al
jne 0x131bad6
jmp 0x131bae6
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1326980
movl $0x0, 0x21bc(%rsp)
movl 0x21bc(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jge 0x131c534
movq 0x2bc8(%rsp), %rcx
movl 0x21bc(%rsp), %eax
leaq 0x2168(%rsp), %rdx
movq %rdx, 0x2e18(%rsp)
movq %rcx, 0x2e10(%rsp)
movl %eax, 0x2e0c(%rsp)
movq 0x2e10(%rsp), %rax
movq %rax, 0x5f0(%rsp)
movb $0x0, 0x2e0b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e0c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2168(%rsp), %r10
movq %r10, 0x47f0(%rsp)
movl %r9d, 0x47ec(%rsp)
movl %r8d, 0x47e8(%rsp)
movl %edi, 0x47e4(%rsp)
movq %rsi, 0x47d8(%rsp)
movq %rdx, 0x47d0(%rsp)
movl %ecx, 0x47cc(%rsp)
movq %rax, 0x47c0(%rsp)
movq 0x47f0(%rsp), %rcx
movq %rcx, 0x5e8(%rsp)
movq 0x47d8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x47d0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x47cc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x47c0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x47ec(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x47e8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x47e4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4cc8(%rsp)
movl $0x10, 0x4cc4(%rsp)
movq 0x4cc8(%rsp), %rax
movslq 0x4cc4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4cc4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5f0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2190(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x131bcc1
movq 0x5f0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x21a8(%rsp)
movb $0x1, 0x2e0b(%rsp)
testb $0x1, 0x2e0b(%rsp)
jne 0x131be02
leaq 0x2168(%rsp), %rax
movq %rax, 0x3040(%rsp)
movq 0x3040(%rsp), %rax
movq %rax, 0x5368(%rsp)
movq 0x5368(%rsp), %rax
movq %rax, 0x5e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x131bda5
movq 0x5e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5364(%rsp) # imm = 0xFFFFFFFF
movl 0x5364(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5360(%rsp)
cmpl $0x1, 0x5360(%rsp)
jne 0x131bda5
movq 0x5e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x131bd73
movq 0x5e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x131bd71
jmp 0x131bda3
movq 0x5e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5430(%rsp)
cmpq $0x0, 0x5430(%rsp)
je 0x131bda1
movq 0x5430(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x131bda3
jmp 0x131bda5
movq 0x5e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131be00
movq %rax, %rdi
callq 0x678a0
jmp 0x131be02
leaq 0x2168(%rsp), %rax
movq %rax, 0x2fb0(%rsp)
movq 0x2fb0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5d0(%rsp)
leaq 0x2168(%rsp), %rax
movq %rax, 0x3138(%rsp)
movq 0x3138(%rsp), %rax
movq %rax, 0x5178(%rsp)
movq 0x5178(%rsp), %rax
movq %rax, 0x5d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x131bef3
movq 0x5d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5174(%rsp) # imm = 0xFFFFFFFF
movl 0x5174(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5170(%rsp)
cmpl $0x1, 0x5170(%rsp)
jne 0x131bef3
movq 0x5d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x131bec1
movq 0x5d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x131bebf
jmp 0x131bef1
movq 0x5d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5528(%rsp)
cmpq $0x0, 0x5528(%rsp)
je 0x131beef
movq 0x5528(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x131bef1
jmp 0x131bef3
movq 0x5d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131bf4e
movq %rax, %rdi
callq 0x678a0
movq 0x5d0(%rsp), %rax
movq %rax, 0x21b0(%rsp)
movq 0x2bc0(%rsp), %rax
movq %rax, 0x2fa8(%rsp)
movq 0x2fa8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2160(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x21bc(%rsp), %eax
leaq 0x2110(%rsp), %rdx
movq %rdx, 0x33c0(%rsp)
movq %rcx, 0x33b8(%rsp)
movl %eax, 0x33b4(%rsp)
movq 0x33b8(%rsp), %rax
movq %rax, 0x5c8(%rsp)
movb $0x0, 0x33b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x33b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2110(%rsp), %r10
movq %r10, 0x4358(%rsp)
movl %r9d, 0x4354(%rsp)
movl %r8d, 0x4350(%rsp)
movl %edi, 0x434c(%rsp)
movq %rsi, 0x4340(%rsp)
movq %rdx, 0x4338(%rsp)
movl %ecx, 0x4334(%rsp)
movq %rax, 0x4328(%rsp)
movq 0x4358(%rsp), %rcx
movq %rcx, 0x5c0(%rsp)
movq 0x4340(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4338(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4334(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4328(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4354(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4350(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x434c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e18(%rsp)
movl $0x10, 0x4e14(%rsp)
movq 0x4e18(%rsp), %rax
movslq 0x4e14(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e14(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5c8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2138(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x131c13d
movq 0x5c8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2150(%rsp)
movb $0x1, 0x33b3(%rsp)
testb $0x1, 0x33b3(%rsp)
jne 0x131c27e
leaq 0x2110(%rsp), %rax
movq %rax, 0x33c8(%rsp)
movq 0x33c8(%rsp), %rax
movq %rax, 0x4ec8(%rsp)
movq 0x4ec8(%rsp), %rax
movq %rax, 0x5b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x131c221
movq 0x5b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4ec4(%rsp) # imm = 0xFFFFFFFF
movl 0x4ec4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4ec0(%rsp)
cmpl $0x1, 0x4ec0(%rsp)
jne 0x131c221
movq 0x5b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x131c1ef
movq 0x5b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x131c1ed
jmp 0x131c21f
movq 0x5b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5680(%rsp)
cmpq $0x0, 0x5680(%rsp)
je 0x131c21d
movq 0x5680(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x131c21f
jmp 0x131c221
movq 0x5b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131c27c
movq %rax, %rdi
callq 0x678a0
jmp 0x131c27e
leaq 0x2110(%rsp), %rax
movq %rax, 0x34e0(%rsp)
movq 0x34e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5a8(%rsp)
leaq 0x2110(%rsp), %rax
movq %rax, 0x3140(%rsp)
movq 0x3140(%rsp), %rax
movq %rax, 0x5168(%rsp)
movq 0x5168(%rsp), %rax
movq %rax, 0x5b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x131c36f
movq 0x5b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5164(%rsp) # imm = 0xFFFFFFFF
movl 0x5164(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5160(%rsp)
cmpl $0x1, 0x5160(%rsp)
jne 0x131c36f
movq 0x5b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x131c33d
movq 0x5b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x131c33b
jmp 0x131c36d
movq 0x5b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5530(%rsp)
cmpq $0x0, 0x5530(%rsp)
je 0x131c36b
movq 0x5530(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x131c36d
jmp 0x131c36f
movq 0x5b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131c3ca
movq %rax, %rdi
callq 0x678a0
movq 0x5a8(%rsp), %rax
movq %rax, 0x2158(%rsp)
movl $0x0, 0x210c(%rsp)
movl 0x210c(%rsp), %eax
cmpl 0x2b98(%rsp), %eax
jge 0x131c51c
movq 0x21b0(%rsp), %rax
movq %rax, 0x35e8(%rsp)
movq 0x35e8(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x20c0(%rsp)
movq 0x2160(%rsp), %rax
vmovss (%rax), %xmm0
vmovss %xmm0, 0x4174(%rsp)
vbroadcastss 0x4174(%rsp), %zmm0
vmovaps %zmm0, 0x4100(%rsp)
vmovaps 0x4100(%rsp), %zmm0
vmovaps %zmm0, 0x2080(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x20c0(%rsp), %rsi
leaq 0x2080(%rsp), %rdx
callq 0x1453820
vmovaps %zmm0, 0x2040(%rsp)
movq 0x2158(%rsp), %rax
vmovaps 0x2040(%rsp), %zmm0
movq %rax, 0x3db8(%rsp)
vmovaps %zmm0, 0x3d40(%rsp)
vmovaps 0x3d40(%rsp), %zmm0
movq 0x3db8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x21b0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x21b0(%rsp)
movq 0x2160(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x2160(%rsp)
movq 0x2158(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2158(%rsp)
movl 0x210c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x210c(%rsp)
jmp 0x131c3e5
jmp 0x131c51e
movl 0x21bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x21bc(%rsp)
jmp 0x131baf1
movl $0x0, 0x2bd4(%rsp)
jmp 0x1326980
cmpl $0x1, 0x2ba8(%rsp)
jne 0x131d490
cmpl $0x1, 0x2ba4(%rsp)
jne 0x131d490
movl 0x2b7c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jne 0x131d490
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b7c(%rsp), %ecx
movq 0x2b70(%rsp), %r8
movl 0x2b6c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c48(%rsp)
movq 0x2c48(%rsp), %rcx
movq %rcx, 0x598(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x5a7(%rsp)
je 0x131c617
movq 0x598(%rsp), %rax
movq %rax, 0x4198(%rsp)
movq 0x4198(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x5a7(%rsp)
movb 0x5a7(%rsp), %al
testb $0x1, %al
jne 0x131c624
jmp 0x131c634
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1326980
movl $0x0, 0x203c(%rsp)
movl 0x203c(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x131d480
movq 0x2bc8(%rsp), %rcx
movl 0x203c(%rsp), %eax
leaq 0x1fe8(%rsp), %rdx
movq %rdx, 0x2e00(%rsp)
movq %rcx, 0x2df8(%rsp)
movl %eax, 0x2df4(%rsp)
movq 0x2df8(%rsp), %rax
movq %rax, 0x590(%rsp)
movb $0x0, 0x2df3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2df4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1fe8(%rsp), %r10
movq %r10, 0x4828(%rsp)
movl %r9d, 0x4824(%rsp)
movl %r8d, 0x4820(%rsp)
movl %edi, 0x481c(%rsp)
movq %rsi, 0x4810(%rsp)
movq %rdx, 0x4808(%rsp)
movl %ecx, 0x4804(%rsp)
movq %rax, 0x47f8(%rsp)
movq 0x4828(%rsp), %rcx
movq %rcx, 0x588(%rsp)
movq 0x4810(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4808(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4804(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x47f8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4824(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4820(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x481c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4cb8(%rsp)
movl $0x10, 0x4cb4(%rsp)
movq 0x4cb8(%rsp), %rax
movslq 0x4cb4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4cb4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x590(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2010(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x131c80f
movq 0x590(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2028(%rsp)
movb $0x1, 0x2df3(%rsp)
testb $0x1, 0x2df3(%rsp)
jne 0x131c950
leaq 0x1fe8(%rsp), %rax
movq %rax, 0x3048(%rsp)
movq 0x3048(%rsp), %rax
movq %rax, 0x5358(%rsp)
movq 0x5358(%rsp), %rax
movq %rax, 0x580(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x131c8f3
movq 0x580(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5354(%rsp) # imm = 0xFFFFFFFF
movl 0x5354(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5350(%rsp)
cmpl $0x1, 0x5350(%rsp)
jne 0x131c8f3
movq 0x580(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x131c8c1
movq 0x580(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x131c8bf
jmp 0x131c8f1
movq 0x580(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5438(%rsp)
cmpq $0x0, 0x5438(%rsp)
je 0x131c8ef
movq 0x5438(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x131c8f1
jmp 0x131c8f3
movq 0x580(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131c94e
movq %rax, %rdi
callq 0x678a0
jmp 0x131c950
leaq 0x1fe8(%rsp), %rax
movq %rax, 0x2fa0(%rsp)
movq 0x2fa0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x570(%rsp)
leaq 0x1fe8(%rsp), %rax
movq %rax, 0x3148(%rsp)
movq 0x3148(%rsp), %rax
movq %rax, 0x5158(%rsp)
movq 0x5158(%rsp), %rax
movq %rax, 0x578(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x131ca41
movq 0x578(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5154(%rsp) # imm = 0xFFFFFFFF
movl 0x5154(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5150(%rsp)
cmpl $0x1, 0x5150(%rsp)
jne 0x131ca41
movq 0x578(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x131ca0f
movq 0x578(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x131ca0d
jmp 0x131ca3f
movq 0x578(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5538(%rsp)
cmpq $0x0, 0x5538(%rsp)
je 0x131ca3d
movq 0x5538(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x131ca3f
jmp 0x131ca41
movq 0x578(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131ca9c
movq %rax, %rdi
callq 0x678a0
movq 0x570(%rsp), %rax
movq %rax, 0x2030(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x203c(%rsp), %eax
leaq 0x1f98(%rsp), %rdx
movq %rdx, 0x2de8(%rsp)
movq %rcx, 0x2de0(%rsp)
movl %eax, 0x2ddc(%rsp)
movq 0x2de0(%rsp), %rax
movq %rax, 0x568(%rsp)
movb $0x0, 0x2ddb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2ddc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1f98(%rsp), %r10
movq %r10, 0x4860(%rsp)
movl %r9d, 0x485c(%rsp)
movl %r8d, 0x4858(%rsp)
movl %edi, 0x4854(%rsp)
movq %rsi, 0x4848(%rsp)
movq %rdx, 0x4840(%rsp)
movl %ecx, 0x483c(%rsp)
movq %rax, 0x4830(%rsp)
movq 0x4860(%rsp), %rcx
movq %rcx, 0x560(%rsp)
movq 0x4848(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4840(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x483c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4830(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x485c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4858(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4854(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4ca8(%rsp)
movl $0x10, 0x4ca4(%rsp)
movq 0x4ca8(%rsp), %rax
movslq 0x4ca4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4ca4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x568(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1fc0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x131cc68
movq 0x568(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1fd8(%rsp)
movb $0x1, 0x2ddb(%rsp)
testb $0x1, 0x2ddb(%rsp)
jne 0x131cda9
leaq 0x1f98(%rsp), %rax
movq %rax, 0x3050(%rsp)
movq 0x3050(%rsp), %rax
movq %rax, 0x5348(%rsp)
movq 0x5348(%rsp), %rax
movq %rax, 0x558(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x131cd4c
movq 0x558(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5344(%rsp) # imm = 0xFFFFFFFF
movl 0x5344(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5340(%rsp)
cmpl $0x1, 0x5340(%rsp)
jne 0x131cd4c
movq 0x558(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x131cd1a
movq 0x558(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x131cd18
jmp 0x131cd4a
movq 0x558(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5440(%rsp)
cmpq $0x0, 0x5440(%rsp)
je 0x131cd48
movq 0x5440(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x131cd4a
jmp 0x131cd4c
movq 0x558(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131cda7
movq %rax, %rdi
callq 0x678a0
jmp 0x131cda9
leaq 0x1f98(%rsp), %rax
movq %rax, 0x2f98(%rsp)
movq 0x2f98(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x548(%rsp)
leaq 0x1f98(%rsp), %rax
movq %rax, 0x3150(%rsp)
movq 0x3150(%rsp), %rax
movq %rax, 0x5148(%rsp)
movq 0x5148(%rsp), %rax
movq %rax, 0x550(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x131ce9a
movq 0x550(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5144(%rsp) # imm = 0xFFFFFFFF
movl 0x5144(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5140(%rsp)
cmpl $0x1, 0x5140(%rsp)
jne 0x131ce9a
movq 0x550(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x131ce68
movq 0x550(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x131ce66
jmp 0x131ce98
movq 0x550(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5540(%rsp)
cmpq $0x0, 0x5540(%rsp)
je 0x131ce96
movq 0x5540(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x131ce98
jmp 0x131ce9a
movq 0x550(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131cef5
movq %rax, %rdi
callq 0x678a0
movq 0x548(%rsp), %rax
movq %rax, 0x1fe0(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x203c(%rsp), %eax
leaq 0x1f48(%rsp), %rdx
movq %rdx, 0x33a0(%rsp)
movq %rcx, 0x3398(%rsp)
movl %eax, 0x3394(%rsp)
movq 0x3398(%rsp), %rax
movq %rax, 0x540(%rsp)
movb $0x0, 0x3393(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3394(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1f48(%rsp), %r10
movq %r10, 0x4390(%rsp)
movl %r9d, 0x438c(%rsp)
movl %r8d, 0x4388(%rsp)
movl %edi, 0x4384(%rsp)
movq %rsi, 0x4378(%rsp)
movq %rdx, 0x4370(%rsp)
movl %ecx, 0x436c(%rsp)
movq %rax, 0x4360(%rsp)
movq 0x4390(%rsp), %rcx
movq %rcx, 0x538(%rsp)
movq 0x4378(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4370(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x436c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4360(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x438c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4388(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4384(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e08(%rsp)
movl $0x10, 0x4e04(%rsp)
movq 0x4e08(%rsp), %rax
movslq 0x4e04(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e04(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x540(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1f70(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x131d0c1
movq 0x540(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1f88(%rsp)
movb $0x1, 0x3393(%rsp)
testb $0x1, 0x3393(%rsp)
jne 0x131d202
leaq 0x1f48(%rsp), %rax
movq %rax, 0x33a8(%rsp)
movq 0x33a8(%rsp), %rax
movq %rax, 0x4ed8(%rsp)
movq 0x4ed8(%rsp), %rax
movq %rax, 0x530(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x131d1a5
movq 0x530(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4ed4(%rsp) # imm = 0xFFFFFFFF
movl 0x4ed4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4ed0(%rsp)
cmpl $0x1, 0x4ed0(%rsp)
jne 0x131d1a5
movq 0x530(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x131d173
movq 0x530(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x131d171
jmp 0x131d1a3
movq 0x530(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5678(%rsp)
cmpq $0x0, 0x5678(%rsp)
je 0x131d1a1
movq 0x5678(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x131d1a3
jmp 0x131d1a5
movq 0x530(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131d200
movq %rax, %rdi
callq 0x678a0
jmp 0x131d202
leaq 0x1f48(%rsp), %rax
movq %rax, 0x34d8(%rsp)
movq 0x34d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x520(%rsp)
leaq 0x1f48(%rsp), %rax
movq %rax, 0x3158(%rsp)
movq 0x3158(%rsp), %rax
movq %rax, 0x5138(%rsp)
movq 0x5138(%rsp), %rax
movq %rax, 0x528(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x131d2f3
movq 0x528(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5134(%rsp) # imm = 0xFFFFFFFF
movl 0x5134(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5130(%rsp)
cmpl $0x1, 0x5130(%rsp)
jne 0x131d2f3
movq 0x528(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x131d2c1
movq 0x528(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x131d2bf
jmp 0x131d2f1
movq 0x528(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5548(%rsp)
cmpq $0x0, 0x5548(%rsp)
je 0x131d2ef
movq 0x5548(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x131d2f1
jmp 0x131d2f3
movq 0x528(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131d34e
movq %rax, %rdi
callq 0x678a0
movq 0x520(%rsp), %rax
movq %rax, 0x1f90(%rsp)
movq 0x2030(%rsp), %rax
movq %rax, 0x35e0(%rsp)
movq 0x35e0(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1f00(%rsp)
movl $0x0, 0x1efc(%rsp)
movl 0x1efc(%rsp), %eax
cmpl 0x2b78(%rsp), %eax
jge 0x131d468
movq 0x1fe0(%rsp), %rax
movq %rax, 0x35d8(%rsp)
movq 0x35d8(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1e80(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x1f00(%rsp), %rsi
leaq 0x1e80(%rsp), %rdx
callq 0x1453820
vmovaps %zmm0, 0x1e40(%rsp)
movq 0x1f90(%rsp), %rax
vmovaps 0x1e40(%rsp), %zmm0
movq %rax, 0x3d38(%rsp)
vmovaps %zmm0, 0x3cc0(%rsp)
vmovaps 0x3cc0(%rsp), %zmm0
movq 0x3d38(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x1fe0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1fe0(%rsp)
movq 0x1f90(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1f90(%rsp)
movl 0x1efc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1efc(%rsp)
jmp 0x131d38f
jmp 0x131d46a
movl 0x203c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x203c(%rsp)
jmp 0x131c63f
movl $0x0, 0x2bd4(%rsp)
jmp 0x1326980
movl 0x2b88(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jne 0x131dfe6
movl 0x2b84(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jne 0x131dfe6
cmpl $0x1, 0x2b9c(%rsp)
jne 0x131dfe6
cmpl $0x1, 0x2b8c(%rsp)
jne 0x131dfe6
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b7c(%rsp), %ecx
movq 0x2b70(%rsp), %r8
movl 0x2b6c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c40(%rsp)
movq 0x2c40(%rsp), %rcx
movq %rcx, 0x510(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x51f(%rsp)
je 0x131d577
movq 0x510(%rsp), %rax
movq %rax, 0x41a0(%rsp)
movq 0x41a0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x51f(%rsp)
movb 0x51f(%rsp), %al
testb $0x1, %al
jne 0x131d584
jmp 0x131d594
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1326980
movl $0x0, 0x1e3c(%rsp)
movl 0x1e3c(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x131dfd6
movq 0x2bc8(%rsp), %rax
movq %rax, 0x2f90(%rsp)
movq 0x2f90(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1e30(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x1e3c(%rsp), %eax
leaq 0x1de0(%rsp), %rdx
movq %rdx, 0x2dd0(%rsp)
movq %rcx, 0x2dc8(%rsp)
movl %eax, 0x2dc4(%rsp)
movq 0x2dc8(%rsp), %rax
movq %rax, 0x508(%rsp)
movb $0x0, 0x2dc3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2dc4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1de0(%rsp), %r10
movq %r10, 0x4898(%rsp)
movl %r9d, 0x4894(%rsp)
movl %r8d, 0x4890(%rsp)
movl %edi, 0x488c(%rsp)
movq %rsi, 0x4880(%rsp)
movq %rdx, 0x4878(%rsp)
movl %ecx, 0x4874(%rsp)
movq %rax, 0x4868(%rsp)
movq 0x4898(%rsp), %rcx
movq %rcx, 0x500(%rsp)
movq 0x4880(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4878(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4874(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4868(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4894(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4890(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x488c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c98(%rsp)
movl $0x10, 0x4c94(%rsp)
movq 0x4c98(%rsp), %rax
movslq 0x4c94(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c94(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x508(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1e08(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x131d792
movq 0x508(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1e20(%rsp)
movb $0x1, 0x2dc3(%rsp)
testb $0x1, 0x2dc3(%rsp)
jne 0x131d8d3
leaq 0x1de0(%rsp), %rax
movq %rax, 0x3058(%rsp)
movq 0x3058(%rsp), %rax
movq %rax, 0x5338(%rsp)
movq 0x5338(%rsp), %rax
movq %rax, 0x4f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x131d876
movq 0x4f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5334(%rsp) # imm = 0xFFFFFFFF
movl 0x5334(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5330(%rsp)
cmpl $0x1, 0x5330(%rsp)
jne 0x131d876
movq 0x4f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x131d844
movq 0x4f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x131d842
jmp 0x131d874
movq 0x4f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5448(%rsp)
cmpq $0x0, 0x5448(%rsp)
je 0x131d872
movq 0x5448(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x131d874
jmp 0x131d876
movq 0x4f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131d8d1
movq %rax, %rdi
callq 0x678a0
jmp 0x131d8d3
leaq 0x1de0(%rsp), %rax
movq %rax, 0x2f88(%rsp)
movq 0x2f88(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4e8(%rsp)
leaq 0x1de0(%rsp), %rax
movq %rax, 0x3160(%rsp)
movq 0x3160(%rsp), %rax
movq %rax, 0x5128(%rsp)
movq 0x5128(%rsp), %rax
movq %rax, 0x4f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x131d9c4
movq 0x4f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5124(%rsp) # imm = 0xFFFFFFFF
movl 0x5124(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5120(%rsp)
cmpl $0x1, 0x5120(%rsp)
jne 0x131d9c4
movq 0x4f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x131d992
movq 0x4f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x131d990
jmp 0x131d9c2
movq 0x4f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5550(%rsp)
cmpq $0x0, 0x5550(%rsp)
je 0x131d9c0
movq 0x5550(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x131d9c2
jmp 0x131d9c4
movq 0x4f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131da1f
movq %rax, %rdi
callq 0x678a0
movq 0x4e8(%rsp), %rax
movq %rax, 0x1e28(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x1e3c(%rsp), %eax
leaq 0x1d90(%rsp), %rdx
movq %rdx, 0x3380(%rsp)
movq %rcx, 0x3378(%rsp)
movl %eax, 0x3374(%rsp)
movq 0x3378(%rsp), %rax
movq %rax, 0x4e0(%rsp)
movb $0x0, 0x3373(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3374(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1d90(%rsp), %r10
movq %r10, 0x43c8(%rsp)
movl %r9d, 0x43c4(%rsp)
movl %r8d, 0x43c0(%rsp)
movl %edi, 0x43bc(%rsp)
movq %rsi, 0x43b0(%rsp)
movq %rdx, 0x43a8(%rsp)
movl %ecx, 0x43a4(%rsp)
movq %rax, 0x4398(%rsp)
movq 0x43c8(%rsp), %rcx
movq %rcx, 0x4d8(%rsp)
movq 0x43b0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x43a8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x43a4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4398(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x43c4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x43c0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x43bc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4df8(%rsp)
movl $0x10, 0x4df4(%rsp)
movq 0x4df8(%rsp), %rax
movslq 0x4df4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4df4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4e0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1db8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x131dbeb
movq 0x4e0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1dd0(%rsp)
movb $0x1, 0x3373(%rsp)
testb $0x1, 0x3373(%rsp)
jne 0x131dd2c
leaq 0x1d90(%rsp), %rax
movq %rax, 0x3388(%rsp)
movq 0x3388(%rsp), %rax
movq %rax, 0x4ee8(%rsp)
movq 0x4ee8(%rsp), %rax
movq %rax, 0x4d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x131dccf
movq 0x4d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4ee4(%rsp) # imm = 0xFFFFFFFF
movl 0x4ee4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4ee0(%rsp)
cmpl $0x1, 0x4ee0(%rsp)
jne 0x131dccf
movq 0x4d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x131dc9d
movq 0x4d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x131dc9b
jmp 0x131dccd
movq 0x4d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5670(%rsp)
cmpq $0x0, 0x5670(%rsp)
je 0x131dccb
movq 0x5670(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x131dccd
jmp 0x131dccf
movq 0x4d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131dd2a
movq %rax, %rdi
callq 0x678a0
jmp 0x131dd2c
leaq 0x1d90(%rsp), %rax
movq %rax, 0x34d0(%rsp)
movq 0x34d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4c0(%rsp)
leaq 0x1d90(%rsp), %rax
movq %rax, 0x3168(%rsp)
movq 0x3168(%rsp), %rax
movq %rax, 0x5118(%rsp)
movq 0x5118(%rsp), %rax
movq %rax, 0x4c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x131de1d
movq 0x4c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5114(%rsp) # imm = 0xFFFFFFFF
movl 0x5114(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5110(%rsp)
cmpl $0x1, 0x5110(%rsp)
jne 0x131de1d
movq 0x4c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x131ddeb
movq 0x4c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x131dde9
jmp 0x131de1b
movq 0x4c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5558(%rsp)
cmpq $0x0, 0x5558(%rsp)
je 0x131de19
movq 0x5558(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x131de1b
jmp 0x131de1d
movq 0x4c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131de78
movq %rax, %rdi
callq 0x678a0
movq 0x4c0(%rsp), %rax
movq %rax, 0x1dd8(%rsp)
movl $0x0, 0x1d8c(%rsp)
movl 0x1d8c(%rsp), %eax
cmpl 0x2b78(%rsp), %eax
jge 0x131dfbe
movq 0x1e30(%rsp), %rax
vmovss (%rax), %xmm0
vmovss %xmm0, 0x40fc(%rsp)
vbroadcastss 0x40fc(%rsp), %zmm0
vmovaps %zmm0, 0x4080(%rsp)
vmovaps 0x4080(%rsp), %zmm0
vmovaps %zmm0, 0x1d40(%rsp)
movq 0x1e28(%rsp), %rax
movq %rax, 0x35d0(%rsp)
movq 0x35d0(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1d00(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x1d40(%rsp), %rsi
leaq 0x1d00(%rsp), %rdx
callq 0x1453820
vmovaps %zmm0, 0x1cc0(%rsp)
movq 0x1dd8(%rsp), %rax
vmovaps 0x1cc0(%rsp), %zmm0
movq %rax, 0x3cb8(%rsp)
vmovaps %zmm0, 0x3c40(%rsp)
vmovaps 0x3c40(%rsp), %zmm0
movq 0x3cb8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x1e30(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x1e30(%rsp)
movq 0x1e28(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1e28(%rsp)
movq 0x1dd8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1dd8(%rsp)
movl 0x1d8c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1d8c(%rsp)
jmp 0x131de93
jmp 0x131dfc0
movl 0x1e3c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1e3c(%rsp)
jmp 0x131d59f
movl $0x0, 0x2bd4(%rsp)
jmp 0x1326980
cmpl $0x1, 0x2ba8(%rsp)
je 0x131ef91
cmpl $0x1, 0x2b88(%rsp)
jne 0x131ef91
movl 0x2b84(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jne 0x131ef91
movl 0x2b7c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jne 0x131ef91
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movl 0x2b9c(%rsp), %ecx
movq 0x2b90(%rsp), %r8
movl 0x2b8c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c38(%rsp)
movq 0x2c38(%rsp), %rcx
movq %rcx, 0x4b0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x4bf(%rsp)
je 0x131e0cd
movq 0x4b0(%rsp), %rax
movq %rax, 0x41a8(%rsp)
movq 0x41a8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x4bf(%rsp)
movb 0x4bf(%rsp), %al
testb $0x1, %al
jne 0x131e0da
jmp 0x131e0ea
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1326980
movl $0x0, 0x1cbc(%rsp)
movl 0x1cbc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x131ef81
movq 0x2bc8(%rsp), %rcx
movl 0x1cbc(%rsp), %eax
leaq 0x1c68(%rsp), %rdx
movq %rdx, 0x2db8(%rsp)
movq %rcx, 0x2db0(%rsp)
movl %eax, 0x2dac(%rsp)
movq 0x2db0(%rsp), %rax
movq %rax, 0x4a8(%rsp)
movb $0x0, 0x2dab(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2dac(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1c68(%rsp), %r10
movq %r10, 0x48d0(%rsp)
movl %r9d, 0x48cc(%rsp)
movl %r8d, 0x48c8(%rsp)
movl %edi, 0x48c4(%rsp)
movq %rsi, 0x48b8(%rsp)
movq %rdx, 0x48b0(%rsp)
movl %ecx, 0x48ac(%rsp)
movq %rax, 0x48a0(%rsp)
movq 0x48d0(%rsp), %rcx
movq %rcx, 0x4a0(%rsp)
movq 0x48b8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x48b0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x48ac(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x48a0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x48cc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x48c8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x48c4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c88(%rsp)
movl $0x10, 0x4c84(%rsp)
movq 0x4c88(%rsp), %rax
movslq 0x4c84(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c84(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4a8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1c90(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x131e2c5
movq 0x4a8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1ca8(%rsp)
movb $0x1, 0x2dab(%rsp)
testb $0x1, 0x2dab(%rsp)
jne 0x131e406
leaq 0x1c68(%rsp), %rax
movq %rax, 0x3060(%rsp)
movq 0x3060(%rsp), %rax
movq %rax, 0x5328(%rsp)
movq 0x5328(%rsp), %rax
movq %rax, 0x498(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x131e3a9
movq 0x498(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5324(%rsp) # imm = 0xFFFFFFFF
movl 0x5324(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5320(%rsp)
cmpl $0x1, 0x5320(%rsp)
jne 0x131e3a9
movq 0x498(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x131e377
movq 0x498(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x131e375
jmp 0x131e3a7
movq 0x498(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5450(%rsp)
cmpq $0x0, 0x5450(%rsp)
je 0x131e3a5
movq 0x5450(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x131e3a7
jmp 0x131e3a9
movq 0x498(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131e404
movq %rax, %rdi
callq 0x678a0
jmp 0x131e406
leaq 0x1c68(%rsp), %rax
movq %rax, 0x2f80(%rsp)
movq 0x2f80(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x488(%rsp)
leaq 0x1c68(%rsp), %rax
movq %rax, 0x3170(%rsp)
movq 0x3170(%rsp), %rax
movq %rax, 0x5108(%rsp)
movq 0x5108(%rsp), %rax
movq %rax, 0x490(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x131e4f7
movq 0x490(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5104(%rsp) # imm = 0xFFFFFFFF
movl 0x5104(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5100(%rsp)
cmpl $0x1, 0x5100(%rsp)
jne 0x131e4f7
movq 0x490(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x131e4c5
movq 0x490(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x131e4c3
jmp 0x131e4f5
movq 0x490(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5560(%rsp)
cmpq $0x0, 0x5560(%rsp)
je 0x131e4f3
movq 0x5560(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x131e4f5
jmp 0x131e4f7
movq 0x490(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131e552
movq %rax, %rdi
callq 0x678a0
movq 0x488(%rsp), %rax
movq %rax, 0x1cb0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x1cbc(%rsp), %eax
leaq 0x1c18(%rsp), %rdx
movq %rdx, 0x2da0(%rsp)
movq %rcx, 0x2d98(%rsp)
movl %eax, 0x2d94(%rsp)
movq 0x2d98(%rsp), %rax
movq %rax, 0x480(%rsp)
movb $0x0, 0x2d93(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d94(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1c18(%rsp), %r10
movq %r10, 0x4908(%rsp)
movl %r9d, 0x4904(%rsp)
movl %r8d, 0x4900(%rsp)
movl %edi, 0x48fc(%rsp)
movq %rsi, 0x48f0(%rsp)
movq %rdx, 0x48e8(%rsp)
movl %ecx, 0x48e4(%rsp)
movq %rax, 0x48d8(%rsp)
movq 0x4908(%rsp), %rcx
movq %rcx, 0x478(%rsp)
movq 0x48f0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x48e8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x48e4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x48d8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4904(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4900(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x48fc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c78(%rsp)
movl $0x10, 0x4c74(%rsp)
movq 0x4c78(%rsp), %rax
movslq 0x4c74(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c74(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x480(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1c40(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x131e71e
movq 0x480(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1c58(%rsp)
movb $0x1, 0x2d93(%rsp)
testb $0x1, 0x2d93(%rsp)
jne 0x131e85f
leaq 0x1c18(%rsp), %rax
movq %rax, 0x3068(%rsp)
movq 0x3068(%rsp), %rax
movq %rax, 0x5318(%rsp)
movq 0x5318(%rsp), %rax
movq %rax, 0x470(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x131e802
movq 0x470(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5314(%rsp) # imm = 0xFFFFFFFF
movl 0x5314(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5310(%rsp)
cmpl $0x1, 0x5310(%rsp)
jne 0x131e802
movq 0x470(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x131e7d0
movq 0x470(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x131e7ce
jmp 0x131e800
movq 0x470(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5458(%rsp)
cmpq $0x0, 0x5458(%rsp)
je 0x131e7fe
movq 0x5458(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x131e800
jmp 0x131e802
movq 0x470(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131e85d
movq %rax, %rdi
callq 0x678a0
jmp 0x131e85f
leaq 0x1c18(%rsp), %rax
movq %rax, 0x2f78(%rsp)
movq 0x2f78(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x460(%rsp)
leaq 0x1c18(%rsp), %rax
movq %rax, 0x3178(%rsp)
movq 0x3178(%rsp), %rax
movq %rax, 0x50f8(%rsp)
movq 0x50f8(%rsp), %rax
movq %rax, 0x468(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x131e950
movq 0x468(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x50f4(%rsp) # imm = 0xFFFFFFFF
movl 0x50f4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x50f0(%rsp)
cmpl $0x1, 0x50f0(%rsp)
jne 0x131e950
movq 0x468(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x131e91e
movq 0x468(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x131e91c
jmp 0x131e94e
movq 0x468(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5568(%rsp)
cmpq $0x0, 0x5568(%rsp)
je 0x131e94c
movq 0x5568(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x131e94e
jmp 0x131e950
movq 0x468(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131e9ab
movq %rax, %rdi
callq 0x678a0
movq 0x460(%rsp), %rax
movq %rax, 0x1c60(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x1cbc(%rsp), %eax
leaq 0x1bc8(%rsp), %rdx
movq %rdx, 0x3360(%rsp)
movq %rcx, 0x3358(%rsp)
movl %eax, 0x3354(%rsp)
movq 0x3358(%rsp), %rax
movq %rax, 0x458(%rsp)
movb $0x0, 0x3353(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3354(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1bc8(%rsp), %r10
movq %r10, 0x4400(%rsp)
movl %r9d, 0x43fc(%rsp)
movl %r8d, 0x43f8(%rsp)
movl %edi, 0x43f4(%rsp)
movq %rsi, 0x43e8(%rsp)
movq %rdx, 0x43e0(%rsp)
movl %ecx, 0x43dc(%rsp)
movq %rax, 0x43d0(%rsp)
movq 0x4400(%rsp), %rcx
movq %rcx, 0x450(%rsp)
movq 0x43e8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x43e0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x43dc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x43d0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x43fc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x43f8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x43f4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4de8(%rsp)
movl $0x10, 0x4de4(%rsp)
movq 0x4de8(%rsp), %rax
movslq 0x4de4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4de4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x458(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1bf0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x131eb77
movq 0x458(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1c08(%rsp)
movb $0x1, 0x3353(%rsp)
testb $0x1, 0x3353(%rsp)
jne 0x131ecb8
leaq 0x1bc8(%rsp), %rax
movq %rax, 0x3368(%rsp)
movq 0x3368(%rsp), %rax
movq %rax, 0x4ef8(%rsp)
movq 0x4ef8(%rsp), %rax
movq %rax, 0x448(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x131ec5b
movq 0x448(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4ef4(%rsp) # imm = 0xFFFFFFFF
movl 0x4ef4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4ef0(%rsp)
cmpl $0x1, 0x4ef0(%rsp)
jne 0x131ec5b
movq 0x448(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x131ec29
movq 0x448(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x131ec27
jmp 0x131ec59
movq 0x448(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5668(%rsp)
cmpq $0x0, 0x5668(%rsp)
je 0x131ec57
movq 0x5668(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x131ec59
jmp 0x131ec5b
movq 0x448(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131ecb6
movq %rax, %rdi
callq 0x678a0
jmp 0x131ecb8
leaq 0x1bc8(%rsp), %rax
movq %rax, 0x34c8(%rsp)
movq 0x34c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x438(%rsp)
leaq 0x1bc8(%rsp), %rax
movq %rax, 0x3180(%rsp)
movq 0x3180(%rsp), %rax
movq %rax, 0x50e8(%rsp)
movq 0x50e8(%rsp), %rax
movq %rax, 0x440(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x131eda9
movq 0x440(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x50e4(%rsp) # imm = 0xFFFFFFFF
movl 0x50e4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x50e0(%rsp)
cmpl $0x1, 0x50e0(%rsp)
jne 0x131eda9
movq 0x440(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x131ed77
movq 0x440(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x131ed75
jmp 0x131eda7
movq 0x440(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5570(%rsp)
cmpq $0x0, 0x5570(%rsp)
je 0x131eda5
movq 0x5570(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x131eda7
jmp 0x131eda9
movq 0x440(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131ee04
movq %rax, %rdi
callq 0x678a0
movq 0x438(%rsp), %rax
movq %rax, 0x1c10(%rsp)
movl $0x0, 0x1bc4(%rsp)
movl 0x1bc4(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jge 0x131ef69
movq 0x1c60(%rsp), %rax
movl 0x1bc4(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x35c8(%rsp)
movq 0x35c8(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1b80(%rsp)
movl $0x0, 0x1b7c(%rsp)
movl 0x1b7c(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jge 0x131ef51
movq 0x1cb0(%rsp), %rax
movq %rax, 0x35c0(%rsp)
movq 0x35c0(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1b00(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x1b00(%rsp), %rsi
leaq 0x1b80(%rsp), %rdx
callq 0x1453820
vmovaps %zmm0, 0x1ac0(%rsp)
movq 0x1c10(%rsp), %rax
vmovaps 0x1ac0(%rsp), %zmm0
movq %rax, 0x3c38(%rsp)
vmovaps %zmm0, 0x3bc0(%rsp)
vmovaps 0x3bc0(%rsp), %zmm0
movq 0x3c38(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x1cb0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1cb0(%rsp)
movq 0x1c10(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1c10(%rsp)
movl 0x1b7c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b7c(%rsp)
jmp 0x131ee78
jmp 0x131ef53
movl 0x1bc4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1bc4(%rsp)
jmp 0x131ee1f
jmp 0x131ef6b
movl 0x1cbc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1cbc(%rsp)
jmp 0x131e0f5
movl $0x0, 0x2bd4(%rsp)
jmp 0x1326980
movl 0x2b88(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jne 0x131ff3c
cmpl $0x1, 0x2ba4(%rsp)
je 0x131ff3c
cmpl $0x1, 0x2b84(%rsp)
jne 0x131ff3c
movl 0x2b7c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jne 0x131ff3c
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movl 0x2b9c(%rsp), %ecx
movq 0x2b90(%rsp), %r8
movl 0x2b8c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c30(%rsp)
movq 0x2c30(%rsp), %rcx
movq %rcx, 0x428(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x437(%rsp)
je 0x131f078
movq 0x428(%rsp), %rax
movq %rax, 0x41b0(%rsp)
movq 0x41b0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x437(%rsp)
movb 0x437(%rsp), %al
testb $0x1, %al
jne 0x131f085
jmp 0x131f095
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1326980
movl $0x0, 0x1abc(%rsp)
movl 0x1abc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x131ff2c
movq 0x2bc8(%rsp), %rcx
movl 0x1abc(%rsp), %eax
leaq 0x1a68(%rsp), %rdx
movq %rdx, 0x2d88(%rsp)
movq %rcx, 0x2d80(%rsp)
movl %eax, 0x2d7c(%rsp)
movq 0x2d80(%rsp), %rax
movq %rax, 0x420(%rsp)
movb $0x0, 0x2d7b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d7c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1a68(%rsp), %r10
movq %r10, 0x4940(%rsp)
movl %r9d, 0x493c(%rsp)
movl %r8d, 0x4938(%rsp)
movl %edi, 0x4934(%rsp)
movq %rsi, 0x4928(%rsp)
movq %rdx, 0x4920(%rsp)
movl %ecx, 0x491c(%rsp)
movq %rax, 0x4910(%rsp)
movq 0x4940(%rsp), %rcx
movq %rcx, 0x418(%rsp)
movq 0x4928(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4920(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x491c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4910(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x493c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4938(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4934(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c68(%rsp)
movl $0x10, 0x4c64(%rsp)
movq 0x4c68(%rsp), %rax
movslq 0x4c64(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c64(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x420(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1a90(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x131f270
movq 0x420(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1aa8(%rsp)
movb $0x1, 0x2d7b(%rsp)
testb $0x1, 0x2d7b(%rsp)
jne 0x131f3b1
leaq 0x1a68(%rsp), %rax
movq %rax, 0x3070(%rsp)
movq 0x3070(%rsp), %rax
movq %rax, 0x5308(%rsp)
movq 0x5308(%rsp), %rax
movq %rax, 0x410(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x131f354
movq 0x410(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5304(%rsp) # imm = 0xFFFFFFFF
movl 0x5304(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5300(%rsp)
cmpl $0x1, 0x5300(%rsp)
jne 0x131f354
movq 0x410(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x131f322
movq 0x410(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x131f320
jmp 0x131f352
movq 0x410(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5460(%rsp)
cmpq $0x0, 0x5460(%rsp)
je 0x131f350
movq 0x5460(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x131f352
jmp 0x131f354
movq 0x410(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131f3af
movq %rax, %rdi
callq 0x678a0
jmp 0x131f3b1
leaq 0x1a68(%rsp), %rax
movq %rax, 0x2f70(%rsp)
movq 0x2f70(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x400(%rsp)
leaq 0x1a68(%rsp), %rax
movq %rax, 0x3188(%rsp)
movq 0x3188(%rsp), %rax
movq %rax, 0x50d8(%rsp)
movq 0x50d8(%rsp), %rax
movq %rax, 0x408(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x131f4a2
movq 0x408(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x50d4(%rsp) # imm = 0xFFFFFFFF
movl 0x50d4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x50d0(%rsp)
cmpl $0x1, 0x50d0(%rsp)
jne 0x131f4a2
movq 0x408(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x131f470
movq 0x408(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x131f46e
jmp 0x131f4a0
movq 0x408(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5578(%rsp)
cmpq $0x0, 0x5578(%rsp)
je 0x131f49e
movq 0x5578(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x131f4a0
jmp 0x131f4a2
movq 0x408(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131f4fd
movq %rax, %rdi
callq 0x678a0
movq 0x400(%rsp), %rax
movq %rax, 0x1ab0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x1abc(%rsp), %eax
leaq 0x1a18(%rsp), %rdx
movq %rdx, 0x2d70(%rsp)
movq %rcx, 0x2d68(%rsp)
movl %eax, 0x2d64(%rsp)
movq 0x2d68(%rsp), %rax
movq %rax, 0x3f8(%rsp)
movb $0x0, 0x2d63(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d64(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1a18(%rsp), %r10
movq %r10, 0x4978(%rsp)
movl %r9d, 0x4974(%rsp)
movl %r8d, 0x4970(%rsp)
movl %edi, 0x496c(%rsp)
movq %rsi, 0x4960(%rsp)
movq %rdx, 0x4958(%rsp)
movl %ecx, 0x4954(%rsp)
movq %rax, 0x4948(%rsp)
movq 0x4978(%rsp), %rcx
movq %rcx, 0x3f0(%rsp)
movq 0x4960(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4958(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4954(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4948(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4974(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4970(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x496c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c58(%rsp)
movl $0x10, 0x4c54(%rsp)
movq 0x4c58(%rsp), %rax
movslq 0x4c54(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c54(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3f8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1a40(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x131f6c9
movq 0x3f8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1a58(%rsp)
movb $0x1, 0x2d63(%rsp)
testb $0x1, 0x2d63(%rsp)
jne 0x131f80a
leaq 0x1a18(%rsp), %rax
movq %rax, 0x3078(%rsp)
movq 0x3078(%rsp), %rax
movq %rax, 0x52f8(%rsp)
movq 0x52f8(%rsp), %rax
movq %rax, 0x3e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x131f7ad
movq 0x3e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x52f4(%rsp) # imm = 0xFFFFFFFF
movl 0x52f4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x52f0(%rsp)
cmpl $0x1, 0x52f0(%rsp)
jne 0x131f7ad
movq 0x3e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x131f77b
movq 0x3e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x131f779
jmp 0x131f7ab
movq 0x3e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5468(%rsp)
cmpq $0x0, 0x5468(%rsp)
je 0x131f7a9
movq 0x5468(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x131f7ab
jmp 0x131f7ad
movq 0x3e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131f808
movq %rax, %rdi
callq 0x678a0
jmp 0x131f80a
leaq 0x1a18(%rsp), %rax
movq %rax, 0x2f68(%rsp)
movq 0x2f68(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d8(%rsp)
leaq 0x1a18(%rsp), %rax
movq %rax, 0x3190(%rsp)
movq 0x3190(%rsp), %rax
movq %rax, 0x50c8(%rsp)
movq 0x50c8(%rsp), %rax
movq %rax, 0x3e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x131f8fb
movq 0x3e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x50c4(%rsp) # imm = 0xFFFFFFFF
movl 0x50c4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x50c0(%rsp)
cmpl $0x1, 0x50c0(%rsp)
jne 0x131f8fb
movq 0x3e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x131f8c9
movq 0x3e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x131f8c7
jmp 0x131f8f9
movq 0x3e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5580(%rsp)
cmpq $0x0, 0x5580(%rsp)
je 0x131f8f7
movq 0x5580(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x131f8f9
jmp 0x131f8fb
movq 0x3e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131f956
movq %rax, %rdi
callq 0x678a0
movq 0x3d8(%rsp), %rax
movq %rax, 0x1a60(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x1abc(%rsp), %eax
leaq 0x19c8(%rsp), %rdx
movq %rdx, 0x3340(%rsp)
movq %rcx, 0x3338(%rsp)
movl %eax, 0x3334(%rsp)
movq 0x3338(%rsp), %rax
movq %rax, 0x3d0(%rsp)
movb $0x0, 0x3333(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3334(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x19c8(%rsp), %r10
movq %r10, 0x4438(%rsp)
movl %r9d, 0x4434(%rsp)
movl %r8d, 0x4430(%rsp)
movl %edi, 0x442c(%rsp)
movq %rsi, 0x4420(%rsp)
movq %rdx, 0x4418(%rsp)
movl %ecx, 0x4414(%rsp)
movq %rax, 0x4408(%rsp)
movq 0x4438(%rsp), %rcx
movq %rcx, 0x3c8(%rsp)
movq 0x4420(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4418(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4414(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4408(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4434(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4430(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x442c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4dd8(%rsp)
movl $0x10, 0x4dd4(%rsp)
movq 0x4dd8(%rsp), %rax
movslq 0x4dd4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4dd4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3d0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x19f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x131fb22
movq 0x3d0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1a08(%rsp)
movb $0x1, 0x3333(%rsp)
testb $0x1, 0x3333(%rsp)
jne 0x131fc63
leaq 0x19c8(%rsp), %rax
movq %rax, 0x3348(%rsp)
movq 0x3348(%rsp), %rax
movq %rax, 0x4f08(%rsp)
movq 0x4f08(%rsp), %rax
movq %rax, 0x3c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x131fc06
movq 0x3c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f04(%rsp) # imm = 0xFFFFFFFF
movl 0x4f04(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f00(%rsp)
cmpl $0x1, 0x4f00(%rsp)
jne 0x131fc06
movq 0x3c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x131fbd4
movq 0x3c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x131fbd2
jmp 0x131fc04
movq 0x3c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5660(%rsp)
cmpq $0x0, 0x5660(%rsp)
je 0x131fc02
movq 0x5660(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x131fc04
jmp 0x131fc06
movq 0x3c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131fc61
movq %rax, %rdi
callq 0x678a0
jmp 0x131fc63
leaq 0x19c8(%rsp), %rax
movq %rax, 0x34c0(%rsp)
movq 0x34c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3b0(%rsp)
leaq 0x19c8(%rsp), %rax
movq %rax, 0x3198(%rsp)
movq 0x3198(%rsp), %rax
movq %rax, 0x50b8(%rsp)
movq 0x50b8(%rsp), %rax
movq %rax, 0x3b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x131fd54
movq 0x3b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x50b4(%rsp) # imm = 0xFFFFFFFF
movl 0x50b4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x50b0(%rsp)
cmpl $0x1, 0x50b0(%rsp)
jne 0x131fd54
movq 0x3b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x131fd22
movq 0x3b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x131fd20
jmp 0x131fd52
movq 0x3b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5588(%rsp)
cmpq $0x0, 0x5588(%rsp)
je 0x131fd50
movq 0x5588(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x131fd52
jmp 0x131fd54
movq 0x3b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x131fdaf
movq %rax, %rdi
callq 0x678a0
movq 0x3b0(%rsp), %rax
movq %rax, 0x1a10(%rsp)
movl $0x0, 0x19c4(%rsp)
movl 0x19c4(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jge 0x131ff14
movl $0x0, 0x19c0(%rsp)
movl 0x19c0(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jge 0x131fefc
movq 0x1ab0(%rsp), %rax
movq %rax, 0x35b8(%rsp)
movq 0x35b8(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1980(%rsp)
movq 0x1a60(%rsp), %rax
movl 0x19c0(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x35b0(%rsp)
movq 0x35b0(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1940(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x1980(%rsp), %rsi
leaq 0x1940(%rsp), %rdx
callq 0x1453820
vmovaps %zmm0, 0x1900(%rsp)
movq 0x1a10(%rsp), %rax
vmovaps 0x1900(%rsp), %zmm0
movq %rax, 0x3bb8(%rsp)
vmovaps %zmm0, 0x3b40(%rsp)
vmovaps 0x3b40(%rsp), %zmm0
movq 0x3bb8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x1ab0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1ab0(%rsp)
movq 0x1a10(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1a10(%rsp)
movl 0x19c0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x19c0(%rsp)
jmp 0x131fde9
jmp 0x131fefe
movl 0x19c4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x19c4(%rsp)
jmp 0x131fdca
jmp 0x131ff16
movl 0x1abc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1abc(%rsp)
jmp 0x131f0a0
movl $0x0, 0x2bd4(%rsp)
jmp 0x1326980
cmpl $0x1, 0x2b88(%rsp)
je 0x1320ee7
cmpl $0x1, 0x2ba8(%rsp)
jne 0x1320ee7
movl 0x2b84(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jne 0x1320ee7
movl 0x2b7c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jne 0x1320ee7
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b7c(%rsp), %ecx
movq 0x2b70(%rsp), %r8
movl 0x2b6c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c28(%rsp)
movq 0x2c28(%rsp), %rcx
movq %rcx, 0x3a0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x3af(%rsp)
je 0x1320023
movq 0x3a0(%rsp), %rax
movq %rax, 0x41b8(%rsp)
movq 0x41b8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x3af(%rsp)
movb 0x3af(%rsp), %al
testb $0x1, %al
jne 0x1320030
jmp 0x1320040
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1326980
movl $0x0, 0x18fc(%rsp)
movl 0x18fc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x1320ed7
movq 0x2bc8(%rsp), %rcx
movl 0x18fc(%rsp), %eax
leaq 0x18a8(%rsp), %rdx
movq %rdx, 0x2d58(%rsp)
movq %rcx, 0x2d50(%rsp)
movl %eax, 0x2d4c(%rsp)
movq 0x2d50(%rsp), %rax
movq %rax, 0x398(%rsp)
movb $0x0, 0x2d4b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d4c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x18a8(%rsp), %r10
movq %r10, 0x49b0(%rsp)
movl %r9d, 0x49ac(%rsp)
movl %r8d, 0x49a8(%rsp)
movl %edi, 0x49a4(%rsp)
movq %rsi, 0x4998(%rsp)
movq %rdx, 0x4990(%rsp)
movl %ecx, 0x498c(%rsp)
movq %rax, 0x4980(%rsp)
movq 0x49b0(%rsp), %rcx
movq %rcx, 0x390(%rsp)
movq 0x4998(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4990(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x498c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4980(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x49ac(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x49a8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x49a4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c48(%rsp)
movl $0x10, 0x4c44(%rsp)
movq 0x4c48(%rsp), %rax
movslq 0x4c44(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c44(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x398(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x18d0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x132021b
movq 0x398(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x18e8(%rsp)
movb $0x1, 0x2d4b(%rsp)
testb $0x1, 0x2d4b(%rsp)
jne 0x132035c
leaq 0x18a8(%rsp), %rax
movq %rax, 0x3080(%rsp)
movq 0x3080(%rsp), %rax
movq %rax, 0x52e8(%rsp)
movq 0x52e8(%rsp), %rax
movq %rax, 0x388(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13202ff
movq 0x388(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x52e4(%rsp) # imm = 0xFFFFFFFF
movl 0x52e4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x52e0(%rsp)
cmpl $0x1, 0x52e0(%rsp)
jne 0x13202ff
movq 0x388(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13202cd
movq 0x388(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13202cb
jmp 0x13202fd
movq 0x388(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5470(%rsp)
cmpq $0x0, 0x5470(%rsp)
je 0x13202fb
movq 0x5470(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13202fd
jmp 0x13202ff
movq 0x388(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132035a
movq %rax, %rdi
callq 0x678a0
jmp 0x132035c
leaq 0x18a8(%rsp), %rax
movq %rax, 0x2f60(%rsp)
movq 0x2f60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x378(%rsp)
leaq 0x18a8(%rsp), %rax
movq %rax, 0x31a0(%rsp)
movq 0x31a0(%rsp), %rax
movq %rax, 0x50a8(%rsp)
movq 0x50a8(%rsp), %rax
movq %rax, 0x380(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132044d
movq 0x380(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x50a4(%rsp) # imm = 0xFFFFFFFF
movl 0x50a4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x50a0(%rsp)
cmpl $0x1, 0x50a0(%rsp)
jne 0x132044d
movq 0x380(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x132041b
movq 0x380(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1320419
jmp 0x132044b
movq 0x380(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5590(%rsp)
cmpq $0x0, 0x5590(%rsp)
je 0x1320449
movq 0x5590(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132044b
jmp 0x132044d
movq 0x380(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13204a8
movq %rax, %rdi
callq 0x678a0
movq 0x378(%rsp), %rax
movq %rax, 0x18f0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x18fc(%rsp), %eax
leaq 0x1858(%rsp), %rdx
movq %rdx, 0x2d40(%rsp)
movq %rcx, 0x2d38(%rsp)
movl %eax, 0x2d34(%rsp)
movq 0x2d38(%rsp), %rax
movq %rax, 0x370(%rsp)
movb $0x0, 0x2d33(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d34(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1858(%rsp), %r10
movq %r10, 0x49e8(%rsp)
movl %r9d, 0x49e4(%rsp)
movl %r8d, 0x49e0(%rsp)
movl %edi, 0x49dc(%rsp)
movq %rsi, 0x49d0(%rsp)
movq %rdx, 0x49c8(%rsp)
movl %ecx, 0x49c4(%rsp)
movq %rax, 0x49b8(%rsp)
movq 0x49e8(%rsp), %rcx
movq %rcx, 0x368(%rsp)
movq 0x49d0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x49c8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x49c4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x49b8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x49e4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x49e0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x49dc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c38(%rsp)
movl $0x10, 0x4c34(%rsp)
movq 0x4c38(%rsp), %rax
movslq 0x4c34(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c34(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x370(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1880(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1320674
movq 0x370(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1898(%rsp)
movb $0x1, 0x2d33(%rsp)
testb $0x1, 0x2d33(%rsp)
jne 0x13207b5
leaq 0x1858(%rsp), %rax
movq %rax, 0x3088(%rsp)
movq 0x3088(%rsp), %rax
movq %rax, 0x52d8(%rsp)
movq 0x52d8(%rsp), %rax
movq %rax, 0x360(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1320758
movq 0x360(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x52d4(%rsp) # imm = 0xFFFFFFFF
movl 0x52d4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x52d0(%rsp)
cmpl $0x1, 0x52d0(%rsp)
jne 0x1320758
movq 0x360(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1320726
movq 0x360(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1320724
jmp 0x1320756
movq 0x360(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5478(%rsp)
cmpq $0x0, 0x5478(%rsp)
je 0x1320754
movq 0x5478(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1320756
jmp 0x1320758
movq 0x360(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13207b3
movq %rax, %rdi
callq 0x678a0
jmp 0x13207b5
leaq 0x1858(%rsp), %rax
movq %rax, 0x2f58(%rsp)
movq 0x2f58(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x350(%rsp)
leaq 0x1858(%rsp), %rax
movq %rax, 0x31a8(%rsp)
movq 0x31a8(%rsp), %rax
movq %rax, 0x5098(%rsp)
movq 0x5098(%rsp), %rax
movq %rax, 0x358(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13208a6
movq 0x358(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5094(%rsp) # imm = 0xFFFFFFFF
movl 0x5094(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5090(%rsp)
cmpl $0x1, 0x5090(%rsp)
jne 0x13208a6
movq 0x358(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1320874
movq 0x358(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1320872
jmp 0x13208a4
movq 0x358(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5598(%rsp)
cmpq $0x0, 0x5598(%rsp)
je 0x13208a2
movq 0x5598(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13208a4
jmp 0x13208a6
movq 0x358(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1320901
movq %rax, %rdi
callq 0x678a0
movq 0x350(%rsp), %rax
movq %rax, 0x18a0(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x18fc(%rsp), %eax
leaq 0x1808(%rsp), %rdx
movq %rdx, 0x3320(%rsp)
movq %rcx, 0x3318(%rsp)
movl %eax, 0x3314(%rsp)
movq 0x3318(%rsp), %rax
movq %rax, 0x348(%rsp)
movb $0x0, 0x3313(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3314(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1808(%rsp), %r10
movq %r10, 0x4470(%rsp)
movl %r9d, 0x446c(%rsp)
movl %r8d, 0x4468(%rsp)
movl %edi, 0x4464(%rsp)
movq %rsi, 0x4458(%rsp)
movq %rdx, 0x4450(%rsp)
movl %ecx, 0x444c(%rsp)
movq %rax, 0x4440(%rsp)
movq 0x4470(%rsp), %rcx
movq %rcx, 0x340(%rsp)
movq 0x4458(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4450(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x444c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4440(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x446c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4468(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4464(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4dc8(%rsp)
movl $0x10, 0x4dc4(%rsp)
movq 0x4dc8(%rsp), %rax
movslq 0x4dc4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4dc4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x348(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1830(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1320acd
movq 0x348(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1848(%rsp)
movb $0x1, 0x3313(%rsp)
testb $0x1, 0x3313(%rsp)
jne 0x1320c0e
leaq 0x1808(%rsp), %rax
movq %rax, 0x3328(%rsp)
movq 0x3328(%rsp), %rax
movq %rax, 0x4f18(%rsp)
movq 0x4f18(%rsp), %rax
movq %rax, 0x338(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1320bb1
movq 0x338(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f14(%rsp) # imm = 0xFFFFFFFF
movl 0x4f14(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f10(%rsp)
cmpl $0x1, 0x4f10(%rsp)
jne 0x1320bb1
movq 0x338(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1320b7f
movq 0x338(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1320b7d
jmp 0x1320baf
movq 0x338(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5658(%rsp)
cmpq $0x0, 0x5658(%rsp)
je 0x1320bad
movq 0x5658(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1320baf
jmp 0x1320bb1
movq 0x338(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1320c0c
movq %rax, %rdi
callq 0x678a0
jmp 0x1320c0e
leaq 0x1808(%rsp), %rax
movq %rax, 0x34b8(%rsp)
movq 0x34b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x328(%rsp)
leaq 0x1808(%rsp), %rax
movq %rax, 0x31b0(%rsp)
movq 0x31b0(%rsp), %rax
movq %rax, 0x5088(%rsp)
movq 0x5088(%rsp), %rax
movq %rax, 0x330(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1320cff
movq 0x330(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5084(%rsp) # imm = 0xFFFFFFFF
movl 0x5084(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5080(%rsp)
cmpl $0x1, 0x5080(%rsp)
jne 0x1320cff
movq 0x330(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1320ccd
movq 0x330(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1320ccb
jmp 0x1320cfd
movq 0x330(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55a0(%rsp)
cmpq $0x0, 0x55a0(%rsp)
je 0x1320cfb
movq 0x55a0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1320cfd
jmp 0x1320cff
movq 0x330(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1320d5a
movq %rax, %rdi
callq 0x678a0
movq 0x328(%rsp), %rax
movq %rax, 0x1850(%rsp)
movl $0x0, 0x1804(%rsp)
movl 0x1804(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jge 0x1320ebf
movq 0x18f0(%rsp), %rax
movl 0x1804(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x35a8(%rsp)
movq 0x35a8(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x17c0(%rsp)
movl $0x0, 0x17bc(%rsp)
movl 0x17bc(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jge 0x1320ea7
movq 0x18a0(%rsp), %rax
movq %rax, 0x35a0(%rsp)
movq 0x35a0(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1740(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x17c0(%rsp), %rsi
leaq 0x1740(%rsp), %rdx
callq 0x1453820
vmovaps %zmm0, 0x1700(%rsp)
movq 0x1850(%rsp), %rax
vmovaps 0x1700(%rsp), %zmm0
movq %rax, 0x3b38(%rsp)
vmovaps %zmm0, 0x3ac0(%rsp)
vmovaps 0x3ac0(%rsp), %zmm0
movq 0x3b38(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x18a0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x18a0(%rsp)
movq 0x1850(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1850(%rsp)
movl 0x17bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x17bc(%rsp)
jmp 0x1320dce
jmp 0x1320ea9
movl 0x1804(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1804(%rsp)
jmp 0x1320d75
jmp 0x1320ec1
movl 0x18fc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x18fc(%rsp)
jmp 0x132004b
movl $0x0, 0x2bd4(%rsp)
jmp 0x1326980
movl 0x2b88(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jne 0x1321e92
cmpl $0x1, 0x2b84(%rsp)
je 0x1321e92
cmpl $0x1, 0x2ba4(%rsp)
jne 0x1321e92
movl 0x2b7c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jne 0x1321e92
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b7c(%rsp), %ecx
movq 0x2b70(%rsp), %r8
movl 0x2b6c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c20(%rsp)
movq 0x2c20(%rsp), %rcx
movq %rcx, 0x318(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x327(%rsp)
je 0x1320fce
movq 0x318(%rsp), %rax
movq %rax, 0x41c0(%rsp)
movq 0x41c0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x327(%rsp)
movb 0x327(%rsp), %al
testb $0x1, %al
jne 0x1320fdb
jmp 0x1320feb
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1326980
movl $0x0, 0x16fc(%rsp)
movl 0x16fc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x1321e82
movq 0x2bc8(%rsp), %rcx
movl 0x16fc(%rsp), %eax
leaq 0x16a8(%rsp), %rdx
movq %rdx, 0x2d28(%rsp)
movq %rcx, 0x2d20(%rsp)
movl %eax, 0x2d1c(%rsp)
movq 0x2d20(%rsp), %rax
movq %rax, 0x310(%rsp)
movb $0x0, 0x2d1b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d1c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x16a8(%rsp), %r10
movq %r10, 0x4a20(%rsp)
movl %r9d, 0x4a1c(%rsp)
movl %r8d, 0x4a18(%rsp)
movl %edi, 0x4a14(%rsp)
movq %rsi, 0x4a08(%rsp)
movq %rdx, 0x4a00(%rsp)
movl %ecx, 0x49fc(%rsp)
movq %rax, 0x49f0(%rsp)
movq 0x4a20(%rsp), %rcx
movq %rcx, 0x308(%rsp)
movq 0x4a08(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4a00(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x49fc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x49f0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4a1c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4a18(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4a14(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c28(%rsp)
movl $0x10, 0x4c24(%rsp)
movq 0x4c28(%rsp), %rax
movslq 0x4c24(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c24(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x310(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x16d0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13211c6
movq 0x310(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x16e8(%rsp)
movb $0x1, 0x2d1b(%rsp)
testb $0x1, 0x2d1b(%rsp)
jne 0x1321307
leaq 0x16a8(%rsp), %rax
movq %rax, 0x3090(%rsp)
movq 0x3090(%rsp), %rax
movq %rax, 0x52c8(%rsp)
movq 0x52c8(%rsp), %rax
movq %rax, 0x300(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13212aa
movq 0x300(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x52c4(%rsp) # imm = 0xFFFFFFFF
movl 0x52c4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x52c0(%rsp)
cmpl $0x1, 0x52c0(%rsp)
jne 0x13212aa
movq 0x300(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1321278
movq 0x300(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1321276
jmp 0x13212a8
movq 0x300(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5480(%rsp)
cmpq $0x0, 0x5480(%rsp)
je 0x13212a6
movq 0x5480(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13212a8
jmp 0x13212aa
movq 0x300(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1321305
movq %rax, %rdi
callq 0x678a0
jmp 0x1321307
leaq 0x16a8(%rsp), %rax
movq %rax, 0x2f50(%rsp)
movq 0x2f50(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2f0(%rsp)
leaq 0x16a8(%rsp), %rax
movq %rax, 0x31b8(%rsp)
movq 0x31b8(%rsp), %rax
movq %rax, 0x5078(%rsp)
movq 0x5078(%rsp), %rax
movq %rax, 0x2f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13213f8
movq 0x2f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5074(%rsp) # imm = 0xFFFFFFFF
movl 0x5074(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5070(%rsp)
cmpl $0x1, 0x5070(%rsp)
jne 0x13213f8
movq 0x2f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13213c6
movq 0x2f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13213c4
jmp 0x13213f6
movq 0x2f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55a8(%rsp)
cmpq $0x0, 0x55a8(%rsp)
je 0x13213f4
movq 0x55a8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13213f6
jmp 0x13213f8
movq 0x2f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1321453
movq %rax, %rdi
callq 0x678a0
movq 0x2f0(%rsp), %rax
movq %rax, 0x16f0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x16fc(%rsp), %eax
leaq 0x1658(%rsp), %rdx
movq %rdx, 0x2d10(%rsp)
movq %rcx, 0x2d08(%rsp)
movl %eax, 0x2d04(%rsp)
movq 0x2d08(%rsp), %rax
movq %rax, 0x2e8(%rsp)
movb $0x0, 0x2d03(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d04(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1658(%rsp), %r10
movq %r10, 0x4a58(%rsp)
movl %r9d, 0x4a54(%rsp)
movl %r8d, 0x4a50(%rsp)
movl %edi, 0x4a4c(%rsp)
movq %rsi, 0x4a40(%rsp)
movq %rdx, 0x4a38(%rsp)
movl %ecx, 0x4a34(%rsp)
movq %rax, 0x4a28(%rsp)
movq 0x4a58(%rsp), %rcx
movq %rcx, 0x2e0(%rsp)
movq 0x4a40(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4a38(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4a34(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4a28(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4a54(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4a50(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4a4c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c18(%rsp)
movl $0x10, 0x4c14(%rsp)
movq 0x4c18(%rsp), %rax
movslq 0x4c14(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c14(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2e8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1680(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x132161f
movq 0x2e8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1698(%rsp)
movb $0x1, 0x2d03(%rsp)
testb $0x1, 0x2d03(%rsp)
jne 0x1321760
leaq 0x1658(%rsp), %rax
movq %rax, 0x3098(%rsp)
movq 0x3098(%rsp), %rax
movq %rax, 0x52b8(%rsp)
movq 0x52b8(%rsp), %rax
movq %rax, 0x2d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1321703
movq 0x2d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x52b4(%rsp) # imm = 0xFFFFFFFF
movl 0x52b4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x52b0(%rsp)
cmpl $0x1, 0x52b0(%rsp)
jne 0x1321703
movq 0x2d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13216d1
movq 0x2d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13216cf
jmp 0x1321701
movq 0x2d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5488(%rsp)
cmpq $0x0, 0x5488(%rsp)
je 0x13216ff
movq 0x5488(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1321701
jmp 0x1321703
movq 0x2d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132175e
movq %rax, %rdi
callq 0x678a0
jmp 0x1321760
leaq 0x1658(%rsp), %rax
movq %rax, 0x2f48(%rsp)
movq 0x2f48(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2c8(%rsp)
leaq 0x1658(%rsp), %rax
movq %rax, 0x31c0(%rsp)
movq 0x31c0(%rsp), %rax
movq %rax, 0x5068(%rsp)
movq 0x5068(%rsp), %rax
movq %rax, 0x2d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1321851
movq 0x2d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5064(%rsp) # imm = 0xFFFFFFFF
movl 0x5064(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5060(%rsp)
cmpl $0x1, 0x5060(%rsp)
jne 0x1321851
movq 0x2d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x132181f
movq 0x2d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x132181d
jmp 0x132184f
movq 0x2d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55b0(%rsp)
cmpq $0x0, 0x55b0(%rsp)
je 0x132184d
movq 0x55b0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132184f
jmp 0x1321851
movq 0x2d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13218ac
movq %rax, %rdi
callq 0x678a0
movq 0x2c8(%rsp), %rax
movq %rax, 0x16a0(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x16fc(%rsp), %eax
leaq 0x1608(%rsp), %rdx
movq %rdx, 0x3300(%rsp)
movq %rcx, 0x32f8(%rsp)
movl %eax, 0x32f4(%rsp)
movq 0x32f8(%rsp), %rax
movq %rax, 0x2c0(%rsp)
movb $0x0, 0x32f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x32f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1608(%rsp), %r10
movq %r10, 0x44a8(%rsp)
movl %r9d, 0x44a4(%rsp)
movl %r8d, 0x44a0(%rsp)
movl %edi, 0x449c(%rsp)
movq %rsi, 0x4490(%rsp)
movq %rdx, 0x4488(%rsp)
movl %ecx, 0x4484(%rsp)
movq %rax, 0x4478(%rsp)
movq 0x44a8(%rsp), %rcx
movq %rcx, 0x2b8(%rsp)
movq 0x4490(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4488(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4484(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4478(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x44a4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x44a0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x449c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4db8(%rsp)
movl $0x10, 0x4db4(%rsp)
movq 0x4db8(%rsp), %rax
movslq 0x4db4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4db4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2c0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1630(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1321a78
movq 0x2c0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1648(%rsp)
movb $0x1, 0x32f3(%rsp)
testb $0x1, 0x32f3(%rsp)
jne 0x1321bb9
leaq 0x1608(%rsp), %rax
movq %rax, 0x3308(%rsp)
movq 0x3308(%rsp), %rax
movq %rax, 0x4f28(%rsp)
movq 0x4f28(%rsp), %rax
movq %rax, 0x2b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1321b5c
movq 0x2b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f24(%rsp) # imm = 0xFFFFFFFF
movl 0x4f24(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f20(%rsp)
cmpl $0x1, 0x4f20(%rsp)
jne 0x1321b5c
movq 0x2b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1321b2a
movq 0x2b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1321b28
jmp 0x1321b5a
movq 0x2b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5650(%rsp)
cmpq $0x0, 0x5650(%rsp)
je 0x1321b58
movq 0x5650(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1321b5a
jmp 0x1321b5c
movq 0x2b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1321bb7
movq %rax, %rdi
callq 0x678a0
jmp 0x1321bb9
leaq 0x1608(%rsp), %rax
movq %rax, 0x34b0(%rsp)
movq 0x34b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2a0(%rsp)
leaq 0x1608(%rsp), %rax
movq %rax, 0x31c8(%rsp)
movq 0x31c8(%rsp), %rax
movq %rax, 0x5058(%rsp)
movq 0x5058(%rsp), %rax
movq %rax, 0x2a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1321caa
movq 0x2a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5054(%rsp) # imm = 0xFFFFFFFF
movl 0x5054(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5050(%rsp)
cmpl $0x1, 0x5050(%rsp)
jne 0x1321caa
movq 0x2a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1321c78
movq 0x2a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1321c76
jmp 0x1321ca8
movq 0x2a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55b8(%rsp)
cmpq $0x0, 0x55b8(%rsp)
je 0x1321ca6
movq 0x55b8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1321ca8
jmp 0x1321caa
movq 0x2a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1321d05
movq %rax, %rdi
callq 0x678a0
movq 0x2a0(%rsp), %rax
movq %rax, 0x1650(%rsp)
movl $0x0, 0x1604(%rsp)
movl 0x1604(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jge 0x1321e6a
movl $0x0, 0x1600(%rsp)
movl 0x1600(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jge 0x1321e52
movq 0x16f0(%rsp), %rax
movl 0x1600(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x3598(%rsp)
movq 0x3598(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x15c0(%rsp)
movq 0x16a0(%rsp), %rax
movq %rax, 0x3590(%rsp)
movq 0x3590(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1580(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x15c0(%rsp), %rsi
leaq 0x1580(%rsp), %rdx
callq 0x1453820
vmovaps %zmm0, 0x1540(%rsp)
movq 0x1650(%rsp), %rax
vmovaps 0x1540(%rsp), %zmm0
movq %rax, 0x3ab8(%rsp)
vmovaps %zmm0, 0x3a40(%rsp)
vmovaps 0x3a40(%rsp), %zmm0
movq 0x3ab8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x16a0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x16a0(%rsp)
movq 0x1650(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1650(%rsp)
movl 0x1600(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1600(%rsp)
jmp 0x1321d3f
jmp 0x1321e54
movl 0x1604(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1604(%rsp)
jmp 0x1321d20
jmp 0x1321e6c
movl 0x16fc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x16fc(%rsp)
jmp 0x1320ff6
movl $0x0, 0x2bd4(%rsp)
jmp 0x1326980
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x1444a90
movl %eax, 0x2bd4(%rsp)
jmp 0x1326980
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movl 0x2b9c(%rsp), %ecx
movq 0x2b90(%rsp), %r8
movl 0x2b8c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c18(%rsp)
movq 0x2c18(%rsp), %rcx
movq %rcx, 0x290(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x29f(%rsp)
je 0x1321f66
movq 0x290(%rsp), %rax
movq %rax, 0x41c8(%rsp)
movq 0x41c8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x29f(%rsp)
movb 0x29f(%rsp), %al
testb $0x1, %al
jne 0x1321f73
jmp 0x1321f83
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1326980
movq 0x2bc0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1322a2a
movl $0x0, 0x153c(%rsp)
movl 0x153c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jge 0x1322a1a
movq 0x2bc8(%rsp), %rcx
movl 0x153c(%rsp), %eax
leaq 0x14e8(%rsp), %rdx
movq %rdx, 0x2cf8(%rsp)
movq %rcx, 0x2cf0(%rsp)
movl %eax, 0x2cec(%rsp)
movq 0x2cf0(%rsp), %rax
movq %rax, 0x288(%rsp)
movb $0x0, 0x2ceb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2cec(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x14e8(%rsp), %r10
movq %r10, 0x4a90(%rsp)
movl %r9d, 0x4a8c(%rsp)
movl %r8d, 0x4a88(%rsp)
movl %edi, 0x4a84(%rsp)
movq %rsi, 0x4a78(%rsp)
movq %rdx, 0x4a70(%rsp)
movl %ecx, 0x4a6c(%rsp)
movq %rax, 0x4a60(%rsp)
movq 0x4a90(%rsp), %rcx
movq %rcx, 0x280(%rsp)
movq 0x4a78(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4a70(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4a6c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4a60(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4a8c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4a88(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4a84(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c08(%rsp)
movl $0x10, 0x4c04(%rsp)
movq 0x4c08(%rsp), %rax
movslq 0x4c04(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c04(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x288(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1510(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1322170
movq 0x288(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1528(%rsp)
movb $0x1, 0x2ceb(%rsp)
testb $0x1, 0x2ceb(%rsp)
jne 0x13222b1
leaq 0x14e8(%rsp), %rax
movq %rax, 0x30a0(%rsp)
movq 0x30a0(%rsp), %rax
movq %rax, 0x52a8(%rsp)
movq 0x52a8(%rsp), %rax
movq %rax, 0x278(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1322254
movq 0x278(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x52a4(%rsp) # imm = 0xFFFFFFFF
movl 0x52a4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x52a0(%rsp)
cmpl $0x1, 0x52a0(%rsp)
jne 0x1322254
movq 0x278(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1322222
movq 0x278(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1322220
jmp 0x1322252
movq 0x278(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5490(%rsp)
cmpq $0x0, 0x5490(%rsp)
je 0x1322250
movq 0x5490(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1322252
jmp 0x1322254
movq 0x278(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13222af
movq %rax, %rdi
callq 0x678a0
jmp 0x13222b1
leaq 0x14e8(%rsp), %rax
movq %rax, 0x2f40(%rsp)
movq 0x2f40(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x268(%rsp)
leaq 0x14e8(%rsp), %rax
movq %rax, 0x31d0(%rsp)
movq 0x31d0(%rsp), %rax
movq %rax, 0x5048(%rsp)
movq 0x5048(%rsp), %rax
movq %rax, 0x270(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13223a2
movq 0x270(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5044(%rsp) # imm = 0xFFFFFFFF
movl 0x5044(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5040(%rsp)
cmpl $0x1, 0x5040(%rsp)
jne 0x13223a2
movq 0x270(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1322370
movq 0x270(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x132236e
jmp 0x13223a0
movq 0x270(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55c0(%rsp)
cmpq $0x0, 0x55c0(%rsp)
je 0x132239e
movq 0x55c0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13223a0
jmp 0x13223a2
movq 0x270(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13223fd
movq %rax, %rdi
callq 0x678a0
movq 0x268(%rsp), %rax
movq %rax, 0x1530(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x153c(%rsp), %eax
movq %rcx, 0x4068(%rsp)
movl %eax, 0x4064(%rsp)
movq 0x4068(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x4064(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x14e0(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x153c(%rsp), %eax
leaq 0x1490(%rsp), %rdx
movq %rdx, 0x32e0(%rsp)
movq %rcx, 0x32d8(%rsp)
movl %eax, 0x32d4(%rsp)
movq 0x32d8(%rsp), %rax
movq %rax, 0x260(%rsp)
movb $0x0, 0x32d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x32d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1490(%rsp), %r10
movq %r10, 0x44e0(%rsp)
movl %r9d, 0x44dc(%rsp)
movl %r8d, 0x44d8(%rsp)
movl %edi, 0x44d4(%rsp)
movq %rsi, 0x44c8(%rsp)
movq %rdx, 0x44c0(%rsp)
movl %ecx, 0x44bc(%rsp)
movq %rax, 0x44b0(%rsp)
movq 0x44e0(%rsp), %rcx
movq %rcx, 0x258(%rsp)
movq 0x44c8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x44c0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x44bc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x44b0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x44dc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x44d8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x44d4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4da8(%rsp)
movl $0x10, 0x4da4(%rsp)
movq 0x4da8(%rsp), %rax
movslq 0x4da4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4da4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x260(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x14b8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1322612
movq 0x260(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x14d0(%rsp)
movb $0x1, 0x32d3(%rsp)
testb $0x1, 0x32d3(%rsp)
jne 0x1322753
leaq 0x1490(%rsp), %rax
movq %rax, 0x32e8(%rsp)
movq 0x32e8(%rsp), %rax
movq %rax, 0x4f38(%rsp)
movq 0x4f38(%rsp), %rax
movq %rax, 0x250(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13226f6
movq 0x250(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f34(%rsp) # imm = 0xFFFFFFFF
movl 0x4f34(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f30(%rsp)
cmpl $0x1, 0x4f30(%rsp)
jne 0x13226f6
movq 0x250(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13226c4
movq 0x250(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13226c2
jmp 0x13226f4
movq 0x250(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5648(%rsp)
cmpq $0x0, 0x5648(%rsp)
je 0x13226f2
movq 0x5648(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13226f4
jmp 0x13226f6
movq 0x250(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1322751
movq %rax, %rdi
callq 0x678a0
jmp 0x1322753
leaq 0x1490(%rsp), %rax
movq %rax, 0x34a8(%rsp)
movq 0x34a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x240(%rsp)
leaq 0x1490(%rsp), %rax
movq %rax, 0x31d8(%rsp)
movq 0x31d8(%rsp), %rax
movq %rax, 0x5038(%rsp)
movq 0x5038(%rsp), %rax
movq %rax, 0x248(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1322844
movq 0x248(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5034(%rsp) # imm = 0xFFFFFFFF
movl 0x5034(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5030(%rsp)
cmpl $0x1, 0x5030(%rsp)
jne 0x1322844
movq 0x248(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1322812
movq 0x248(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1322810
jmp 0x1322842
movq 0x248(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55c8(%rsp)
cmpq $0x0, 0x55c8(%rsp)
je 0x1322840
movq 0x55c8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1322842
jmp 0x1322844
movq 0x248(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132289f
movq %rax, %rdi
callq 0x678a0
movq 0x240(%rsp), %rax
movq %rax, 0x14d8(%rsp)
movl $0x0, 0x148c(%rsp)
movl 0x148c(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jge 0x1322a02
movq 0x14e0(%rsp), %rax
movq %rax, 0x3588(%rsp)
movq 0x3588(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1440(%rsp)
movl $0x0, 0x143c(%rsp)
movl 0x143c(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jge 0x13229d8
movq 0x1530(%rsp), %rax
movq %rax, 0x3580(%rsp)
movq 0x3580(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x13c0(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x13c0(%rsp), %rsi
leaq 0x1440(%rsp), %rdx
callq 0x1453820
vmovaps %zmm0, 0x1380(%rsp)
movq 0x14d8(%rsp), %rax
vmovaps 0x1380(%rsp), %zmm0
movq %rax, 0x3a38(%rsp)
vmovaps %zmm0, 0x39c0(%rsp)
vmovaps 0x39c0(%rsp), %zmm0
movq 0x3a38(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x1530(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1530(%rsp)
movq 0x14d8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x14d8(%rsp)
movl 0x143c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x143c(%rsp)
jmp 0x13228ff
movq 0x14e0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x14e0(%rsp)
movl 0x148c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x148c(%rsp)
jmp 0x13228ba
jmp 0x1322a04
movl 0x153c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x153c(%rsp)
jmp 0x1321fa0
movl $0x0, 0x2bd4(%rsp)
jmp 0x1326980
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x13234af
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1322a85
cmpl $0x1, 0x2b6c(%rsp)
jne 0x1322a85
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x1445ca0
movl %eax, 0x2bd4(%rsp)
jmp 0x1326980
movl $0x0, 0x137c(%rsp)
movl 0x137c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jge 0x132349f
movq 0x2bc8(%rsp), %rcx
movl 0x137c(%rsp), %eax
leaq 0x1328(%rsp), %rdx
movq %rdx, 0x2ce0(%rsp)
movq %rcx, 0x2cd8(%rsp)
movl %eax, 0x2cd4(%rsp)
movq 0x2cd8(%rsp), %rax
movq %rax, 0x238(%rsp)
movb $0x0, 0x2cd3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2cd4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1328(%rsp), %r10
movq %r10, 0x4ac8(%rsp)
movl %r9d, 0x4ac4(%rsp)
movl %r8d, 0x4ac0(%rsp)
movl %edi, 0x4abc(%rsp)
movq %rsi, 0x4ab0(%rsp)
movq %rdx, 0x4aa8(%rsp)
movl %ecx, 0x4aa4(%rsp)
movq %rax, 0x4a98(%rsp)
movq 0x4ac8(%rsp), %rcx
movq %rcx, 0x230(%rsp)
movq 0x4ab0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4aa8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4aa4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4a98(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4ac4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4ac0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4abc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4bf8(%rsp)
movl $0x10, 0x4bf4(%rsp)
movq 0x4bf8(%rsp), %rax
movslq 0x4bf4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4bf4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x238(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1350(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1322c60
movq 0x238(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1368(%rsp)
movb $0x1, 0x2cd3(%rsp)
testb $0x1, 0x2cd3(%rsp)
jne 0x1322da1
leaq 0x1328(%rsp), %rax
movq %rax, 0x30a8(%rsp)
movq 0x30a8(%rsp), %rax
movq %rax, 0x5298(%rsp)
movq 0x5298(%rsp), %rax
movq %rax, 0x228(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1322d44
movq 0x228(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5294(%rsp) # imm = 0xFFFFFFFF
movl 0x5294(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5290(%rsp)
cmpl $0x1, 0x5290(%rsp)
jne 0x1322d44
movq 0x228(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1322d12
movq 0x228(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1322d10
jmp 0x1322d42
movq 0x228(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5498(%rsp)
cmpq $0x0, 0x5498(%rsp)
je 0x1322d40
movq 0x5498(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1322d42
jmp 0x1322d44
movq 0x228(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1322d9f
movq %rax, %rdi
callq 0x678a0
jmp 0x1322da1
leaq 0x1328(%rsp), %rax
movq %rax, 0x2f38(%rsp)
movq 0x2f38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x218(%rsp)
leaq 0x1328(%rsp), %rax
movq %rax, 0x31e0(%rsp)
movq 0x31e0(%rsp), %rax
movq %rax, 0x5028(%rsp)
movq 0x5028(%rsp), %rax
movq %rax, 0x220(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1322e92
movq 0x220(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5024(%rsp) # imm = 0xFFFFFFFF
movl 0x5024(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5020(%rsp)
cmpl $0x1, 0x5020(%rsp)
jne 0x1322e92
movq 0x220(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1322e60
movq 0x220(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1322e5e
jmp 0x1322e90
movq 0x220(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55d0(%rsp)
cmpq $0x0, 0x55d0(%rsp)
je 0x1322e8e
movq 0x55d0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1322e90
jmp 0x1322e92
movq 0x220(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1322eed
movq %rax, %rdi
callq 0x678a0
movq 0x218(%rsp), %rax
movq %rax, 0x1370(%rsp)
movq 0x2bc0(%rsp), %rax
movq %rax, 0x2f30(%rsp)
movq 0x2f30(%rsp), %rax
movq (%rax), %rax
movl 0x137c(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x3578(%rsp)
movq 0x3578(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x12c0(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x137c(%rsp), %eax
leaq 0x1270(%rsp), %rdx
movq %rdx, 0x32c0(%rsp)
movq %rcx, 0x32b8(%rsp)
movl %eax, 0x32b4(%rsp)
movq 0x32b8(%rsp), %rax
movq %rax, 0x210(%rsp)
movb $0x0, 0x32b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x32b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1270(%rsp), %r10
movq %r10, 0x4518(%rsp)
movl %r9d, 0x4514(%rsp)
movl %r8d, 0x4510(%rsp)
movl %edi, 0x450c(%rsp)
movq %rsi, 0x4500(%rsp)
movq %rdx, 0x44f8(%rsp)
movl %ecx, 0x44f4(%rsp)
movq %rax, 0x44e8(%rsp)
movq 0x4518(%rsp), %rcx
movq %rcx, 0x208(%rsp)
movq 0x4500(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x44f8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x44f4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x44e8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4514(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4510(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x450c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d98(%rsp)
movl $0x10, 0x4d94(%rsp)
movq 0x4d98(%rsp), %rax
movslq 0x4d94(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d94(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x210(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1298(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1323106
movq 0x210(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x12b0(%rsp)
movb $0x1, 0x32b3(%rsp)
testb $0x1, 0x32b3(%rsp)
jne 0x1323247
leaq 0x1270(%rsp), %rax
movq %rax, 0x32c8(%rsp)
movq 0x32c8(%rsp), %rax
movq %rax, 0x4f48(%rsp)
movq 0x4f48(%rsp), %rax
movq %rax, 0x200(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13231ea
movq 0x200(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f44(%rsp) # imm = 0xFFFFFFFF
movl 0x4f44(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f40(%rsp)
cmpl $0x1, 0x4f40(%rsp)
jne 0x13231ea
movq 0x200(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13231b8
movq 0x200(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13231b6
jmp 0x13231e8
movq 0x200(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5640(%rsp)
cmpq $0x0, 0x5640(%rsp)
je 0x13231e6
movq 0x5640(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13231e8
jmp 0x13231ea
movq 0x200(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1323245
movq %rax, %rdi
callq 0x678a0
jmp 0x1323247
leaq 0x1270(%rsp), %rax
movq %rax, 0x34a0(%rsp)
movq 0x34a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1f0(%rsp)
leaq 0x1270(%rsp), %rax
movq %rax, 0x31e8(%rsp)
movq 0x31e8(%rsp), %rax
movq %rax, 0x5018(%rsp)
movq 0x5018(%rsp), %rax
movq %rax, 0x1f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1323338
movq 0x1f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5014(%rsp) # imm = 0xFFFFFFFF
movl 0x5014(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5010(%rsp)
cmpl $0x1, 0x5010(%rsp)
jne 0x1323338
movq 0x1f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1323306
movq 0x1f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1323304
jmp 0x1323336
movq 0x1f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55d8(%rsp)
cmpq $0x0, 0x55d8(%rsp)
je 0x1323334
movq 0x55d8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1323336
jmp 0x1323338
movq 0x1f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1323393
movq %rax, %rdi
callq 0x678a0
movq 0x1f0(%rsp), %rax
movq %rax, 0x12b8(%rsp)
movl $0x0, 0x126c(%rsp)
movl 0x126c(%rsp), %eax
cmpl 0x2b98(%rsp), %eax
jge 0x1323487
movq 0x1370(%rsp), %rax
movq %rax, 0x3570(%rsp)
movq 0x3570(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1200(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x1200(%rsp), %rsi
leaq 0x12c0(%rsp), %rdx
callq 0x1453820
vmovaps %zmm0, 0x11c0(%rsp)
movq 0x12b8(%rsp), %rax
vmovaps 0x11c0(%rsp), %zmm0
movq %rax, 0x39b8(%rsp)
vmovaps %zmm0, 0x3940(%rsp)
vmovaps 0x3940(%rsp), %zmm0
movq 0x39b8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x1370(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1370(%rsp)
movq 0x12b8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x12b8(%rsp)
movl 0x126c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x126c(%rsp)
jmp 0x13233ae
jmp 0x1323489
movl 0x137c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x137c(%rsp)
jmp 0x1322a90
movl $0x0, 0x2bd4(%rsp)
jmp 0x1326980
jmp 0x1326973
movq 0x2bc8(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1324fad
movq 0x2bc0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1324071
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b80(%rsp), %ecx
movl 0x2b7c(%rsp), %r8d
movq 0x2b70(%rsp), %r9
movl 0x2b6c(%rsp), %r10d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c10(%rsp)
movq 0x2c10(%rsp), %rcx
movq %rcx, 0x1e0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1ef(%rsp)
je 0x1323588
movq 0x1e0(%rsp), %rax
movq %rax, 0x41d0(%rsp)
movq 0x41d0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1ef(%rsp)
movb 0x1ef(%rsp), %al
testb $0x1, %al
jne 0x1323595
jmp 0x13235a5
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1326980
movl $0x0, 0x11bc(%rsp)
movl 0x11bc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x1324061
movq 0x2bc8(%rsp), %rcx
movl 0x11bc(%rsp), %eax
movq %rcx, 0x4058(%rsp)
movl %eax, 0x4054(%rsp)
movq 0x4058(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x4054(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x11b0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x11bc(%rsp), %eax
leaq 0x1160(%rsp), %rdx
movq %rdx, 0x2cc8(%rsp)
movq %rcx, 0x2cc0(%rsp)
movl %eax, 0x2cbc(%rsp)
movq 0x2cc0(%rsp), %rax
movq %rax, 0x1d8(%rsp)
movb $0x0, 0x2cbb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2cbc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1160(%rsp), %r10
movq %r10, 0x4b00(%rsp)
movl %r9d, 0x4afc(%rsp)
movl %r8d, 0x4af8(%rsp)
movl %edi, 0x4af4(%rsp)
movq %rsi, 0x4ae8(%rsp)
movq %rdx, 0x4ae0(%rsp)
movl %ecx, 0x4adc(%rsp)
movq %rax, 0x4ad0(%rsp)
movq 0x4b00(%rsp), %rcx
movq %rcx, 0x1d0(%rsp)
movq 0x4ae8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4ae0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4adc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4ad0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4afc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4af8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4af4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4be8(%rsp)
movl $0x10, 0x4be4(%rsp)
movq 0x4be8(%rsp), %rax
movslq 0x4be4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4be4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x1d8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1188(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13237c9
movq 0x1d8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x11a0(%rsp)
movb $0x1, 0x2cbb(%rsp)
testb $0x1, 0x2cbb(%rsp)
jne 0x132390a
leaq 0x1160(%rsp), %rax
movq %rax, 0x30b0(%rsp)
movq 0x30b0(%rsp), %rax
movq %rax, 0x5288(%rsp)
movq 0x5288(%rsp), %rax
movq %rax, 0x1c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13238ad
movq 0x1c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5284(%rsp) # imm = 0xFFFFFFFF
movl 0x5284(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5280(%rsp)
cmpl $0x1, 0x5280(%rsp)
jne 0x13238ad
movq 0x1c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x132387b
movq 0x1c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1323879
jmp 0x13238ab
movq 0x1c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54a0(%rsp)
cmpq $0x0, 0x54a0(%rsp)
je 0x13238a9
movq 0x54a0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13238ab
jmp 0x13238ad
movq 0x1c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1323908
movq %rax, %rdi
callq 0x678a0
jmp 0x132390a
leaq 0x1160(%rsp), %rax
movq %rax, 0x2f28(%rsp)
movq 0x2f28(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1b8(%rsp)
leaq 0x1160(%rsp), %rax
movq %rax, 0x31f0(%rsp)
movq 0x31f0(%rsp), %rax
movq %rax, 0x5008(%rsp)
movq 0x5008(%rsp), %rax
movq %rax, 0x1c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13239fb
movq 0x1c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5004(%rsp) # imm = 0xFFFFFFFF
movl 0x5004(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5000(%rsp)
cmpl $0x1, 0x5000(%rsp)
jne 0x13239fb
movq 0x1c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13239c9
movq 0x1c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13239c7
jmp 0x13239f9
movq 0x1c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55e0(%rsp)
cmpq $0x0, 0x55e0(%rsp)
je 0x13239f7
movq 0x55e0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13239f9
jmp 0x13239fb
movq 0x1c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1323a56
movq %rax, %rdi
callq 0x678a0
movq 0x1b8(%rsp), %rax
movq %rax, 0x11a8(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x11bc(%rsp), %eax
leaq 0x1110(%rsp), %rdx
movq %rdx, 0x32a0(%rsp)
movq %rcx, 0x3298(%rsp)
movl %eax, 0x3294(%rsp)
movq 0x3298(%rsp), %rax
movq %rax, 0x1b0(%rsp)
movb $0x0, 0x3293(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3294(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1110(%rsp), %r10
movq %r10, 0x4550(%rsp)
movl %r9d, 0x454c(%rsp)
movl %r8d, 0x4548(%rsp)
movl %edi, 0x4544(%rsp)
movq %rsi, 0x4538(%rsp)
movq %rdx, 0x4530(%rsp)
movl %ecx, 0x452c(%rsp)
movq %rax, 0x4520(%rsp)
movq 0x4550(%rsp), %rcx
movq %rcx, 0x1a8(%rsp)
movq 0x4538(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4530(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x452c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4520(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x454c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4548(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4544(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d88(%rsp)
movl $0x10, 0x4d84(%rsp)
movq 0x4d88(%rsp), %rax
movslq 0x4d84(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d84(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x1b0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1138(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1323c22
movq 0x1b0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1150(%rsp)
movb $0x1, 0x3293(%rsp)
testb $0x1, 0x3293(%rsp)
jne 0x1323d63
leaq 0x1110(%rsp), %rax
movq %rax, 0x32a8(%rsp)
movq 0x32a8(%rsp), %rax
movq %rax, 0x4f58(%rsp)
movq 0x4f58(%rsp), %rax
movq %rax, 0x1a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1323d06
movq 0x1a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f54(%rsp) # imm = 0xFFFFFFFF
movl 0x4f54(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f50(%rsp)
cmpl $0x1, 0x4f50(%rsp)
jne 0x1323d06
movq 0x1a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1323cd4
movq 0x1a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1323cd2
jmp 0x1323d04
movq 0x1a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5638(%rsp)
cmpq $0x0, 0x5638(%rsp)
je 0x1323d02
movq 0x5638(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1323d04
jmp 0x1323d06
movq 0x1a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1323d61
movq %rax, %rdi
callq 0x678a0
jmp 0x1323d63
leaq 0x1110(%rsp), %rax
movq %rax, 0x3498(%rsp)
movq 0x3498(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x190(%rsp)
leaq 0x1110(%rsp), %rax
movq %rax, 0x31f8(%rsp)
movq 0x31f8(%rsp), %rax
movq %rax, 0x4ff8(%rsp)
movq 0x4ff8(%rsp), %rax
movq %rax, 0x198(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1323e54
movq 0x198(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4ff4(%rsp) # imm = 0xFFFFFFFF
movl 0x4ff4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4ff0(%rsp)
cmpl $0x1, 0x4ff0(%rsp)
jne 0x1323e54
movq 0x198(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1323e22
movq 0x198(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1323e20
jmp 0x1323e52
movq 0x198(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55e8(%rsp)
cmpq $0x0, 0x55e8(%rsp)
je 0x1323e50
movq 0x55e8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1323e52
jmp 0x1323e54
movq 0x198(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1323eaf
movq %rax, %rdi
callq 0x678a0
movq 0x190(%rsp), %rax
movq %rax, 0x1158(%rsp)
movl $0x0, 0x110c(%rsp)
movl 0x110c(%rsp), %eax
cmpl 0x2b80(%rsp), %eax
jge 0x1324049
movq 0x11b0(%rsp), %rax
movq %rax, 0x3568(%rsp)
movq 0x3568(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x10c0(%rsp)
movl $0x0, 0x10bc(%rsp)
movl 0x10bc(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jge 0x132401f
movl $0x0, 0x10b8(%rsp)
movl 0x10b8(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jge 0x1324007
movq 0x11a8(%rsp), %rax
movq %rax, 0x3560(%rsp)
movq 0x3560(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1040(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x10c0(%rsp), %rsi
leaq 0x1040(%rsp), %rdx
callq 0x1453820
vmovaps %zmm0, 0x1000(%rsp)
movq 0x1158(%rsp), %rax
vmovaps 0x1000(%rsp), %zmm0
movq %rax, 0x3938(%rsp)
vmovaps %zmm0, 0x38c0(%rsp)
vmovaps 0x38c0(%rsp), %zmm0
movq 0x3938(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x11a8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x11a8(%rsp)
movq 0x1158(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1158(%rsp)
movl 0x10b8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x10b8(%rsp)
jmp 0x1323f2e
jmp 0x1324009
movl 0x10bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x10bc(%rsp)
jmp 0x1323f0f
movq 0x11b0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x11b0(%rsp)
movl 0x110c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x110c(%rsp)
jmp 0x1323eca
jmp 0x132404b
movl 0x11bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x11bc(%rsp)
jmp 0x13235b0
movl $0x0, 0x2bd4(%rsp)
jmp 0x1326980
movq 0x2bc0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1324bd8
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b7c(%rsp), %ecx
movq 0x2b70(%rsp), %r8
movl 0x2b6c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c08(%rsp)
movq 0x2c08(%rsp), %rcx
movq %rcx, 0x180(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x18f(%rsp)
je 0x1324126
movq 0x180(%rsp), %rax
movq %rax, 0x41d8(%rsp)
movq 0x41d8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x18f(%rsp)
movb 0x18f(%rsp), %al
testb $0x1, %al
jne 0x1324133
jmp 0x1324143
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1326980
movl $0x0, 0xffc(%rsp)
movl 0xffc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x1324bc8
movq 0x2bc8(%rsp), %rcx
movl 0xffc(%rsp), %eax
movq %rcx, 0x4048(%rsp)
movl %eax, 0x4044(%rsp)
movq 0x4048(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x4044(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xff0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0xffc(%rsp), %eax
leaq 0xfa0(%rsp), %rdx
movq %rdx, 0x2cb0(%rsp)
movq %rcx, 0x2ca8(%rsp)
movl %eax, 0x2ca4(%rsp)
movq 0x2ca8(%rsp), %rax
movq %rax, 0x178(%rsp)
movb $0x0, 0x2ca3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2ca4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xfa0(%rsp), %r10
movq %r10, 0x4b38(%rsp)
movl %r9d, 0x4b34(%rsp)
movl %r8d, 0x4b30(%rsp)
movl %edi, 0x4b2c(%rsp)
movq %rsi, 0x4b20(%rsp)
movq %rdx, 0x4b18(%rsp)
movl %ecx, 0x4b14(%rsp)
movq %rax, 0x4b08(%rsp)
movq 0x4b38(%rsp), %rcx
movq %rcx, 0x170(%rsp)
movq 0x4b20(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4b18(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4b14(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4b08(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4b34(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4b30(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4b2c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4bd8(%rsp)
movl $0x10, 0x4bd4(%rsp)
movq 0x4bd8(%rsp), %rax
movslq 0x4bd4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4bd4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x178(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xfc8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1324367
movq 0x178(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xfe0(%rsp)
movb $0x1, 0x2ca3(%rsp)
testb $0x1, 0x2ca3(%rsp)
jne 0x13244a8
leaq 0xfa0(%rsp), %rax
movq %rax, 0x30b8(%rsp)
movq 0x30b8(%rsp), %rax
movq %rax, 0x5278(%rsp)
movq 0x5278(%rsp), %rax
movq %rax, 0x168(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132444b
movq 0x168(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5274(%rsp) # imm = 0xFFFFFFFF
movl 0x5274(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5270(%rsp)
cmpl $0x1, 0x5270(%rsp)
jne 0x132444b
movq 0x168(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1324419
movq 0x168(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1324417
jmp 0x1324449
movq 0x168(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54a8(%rsp)
cmpq $0x0, 0x54a8(%rsp)
je 0x1324447
movq 0x54a8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1324449
jmp 0x132444b
movq 0x168(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13244a6
movq %rax, %rdi
callq 0x678a0
jmp 0x13244a8
leaq 0xfa0(%rsp), %rax
movq %rax, 0x2f20(%rsp)
movq 0x2f20(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x158(%rsp)
leaq 0xfa0(%rsp), %rax
movq %rax, 0x3200(%rsp)
movq 0x3200(%rsp), %rax
movq %rax, 0x4fe8(%rsp)
movq 0x4fe8(%rsp), %rax
movq %rax, 0x160(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1324599
movq 0x160(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4fe4(%rsp) # imm = 0xFFFFFFFF
movl 0x4fe4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4fe0(%rsp)
cmpl $0x1, 0x4fe0(%rsp)
jne 0x1324599
movq 0x160(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1324567
movq 0x160(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1324565
jmp 0x1324597
movq 0x160(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55f0(%rsp)
cmpq $0x0, 0x55f0(%rsp)
je 0x1324595
movq 0x55f0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1324597
jmp 0x1324599
movq 0x160(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13245f4
movq %rax, %rdi
callq 0x678a0
movq 0x158(%rsp), %rax
movq %rax, 0xfe8(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0xffc(%rsp), %eax
leaq 0xf50(%rsp), %rdx
movq %rdx, 0x3280(%rsp)
movq %rcx, 0x3278(%rsp)
movl %eax, 0x3274(%rsp)
movq 0x3278(%rsp), %rax
movq %rax, 0x150(%rsp)
movb $0x0, 0x3273(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3274(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xf50(%rsp), %r10
movq %r10, 0x4588(%rsp)
movl %r9d, 0x4584(%rsp)
movl %r8d, 0x4580(%rsp)
movl %edi, 0x457c(%rsp)
movq %rsi, 0x4570(%rsp)
movq %rdx, 0x4568(%rsp)
movl %ecx, 0x4564(%rsp)
movq %rax, 0x4558(%rsp)
movq 0x4588(%rsp), %rcx
movq %rcx, 0x148(%rsp)
movq 0x4570(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4568(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4564(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4558(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4584(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4580(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x457c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d78(%rsp)
movl $0x10, 0x4d74(%rsp)
movq 0x4d78(%rsp), %rax
movslq 0x4d74(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d74(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x150(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf78(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13247c0
movq 0x150(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xf90(%rsp)
movb $0x1, 0x3273(%rsp)
testb $0x1, 0x3273(%rsp)
jne 0x1324901
leaq 0xf50(%rsp), %rax
movq %rax, 0x3288(%rsp)
movq 0x3288(%rsp), %rax
movq %rax, 0x4f68(%rsp)
movq 0x4f68(%rsp), %rax
movq %rax, 0x140(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13248a4
movq 0x140(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f64(%rsp) # imm = 0xFFFFFFFF
movl 0x4f64(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f60(%rsp)
cmpl $0x1, 0x4f60(%rsp)
jne 0x13248a4
movq 0x140(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1324872
movq 0x140(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1324870
jmp 0x13248a2
movq 0x140(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5630(%rsp)
cmpq $0x0, 0x5630(%rsp)
je 0x13248a0
movq 0x5630(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13248a2
jmp 0x13248a4
movq 0x140(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13248ff
movq %rax, %rdi
callq 0x678a0
jmp 0x1324901
leaq 0xf50(%rsp), %rax
movq %rax, 0x3490(%rsp)
movq 0x3490(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x130(%rsp)
leaq 0xf50(%rsp), %rax
movq %rax, 0x3208(%rsp)
movq 0x3208(%rsp), %rax
movq %rax, 0x4fd8(%rsp)
movq 0x4fd8(%rsp), %rax
movq %rax, 0x138(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13249f2
movq 0x138(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4fd4(%rsp) # imm = 0xFFFFFFFF
movl 0x4fd4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4fd0(%rsp)
cmpl $0x1, 0x4fd0(%rsp)
jne 0x13249f2
movq 0x138(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13249c0
movq 0x138(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13249be
jmp 0x13249f0
movq 0x138(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55f8(%rsp)
cmpq $0x0, 0x55f8(%rsp)
je 0x13249ee
movq 0x55f8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13249f0
jmp 0x13249f2
movq 0x138(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1324a4d
movq %rax, %rdi
callq 0x678a0
movq 0x130(%rsp), %rax
movq %rax, 0xf98(%rsp)
movl $0x0, 0xf4c(%rsp)
movl 0xf4c(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jge 0x1324bb0
movq 0xff0(%rsp), %rax
movq %rax, 0x3558(%rsp)
movq 0x3558(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xf00(%rsp)
movl $0x0, 0xefc(%rsp)
movl 0xefc(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jge 0x1324b86
movq 0xfe8(%rsp), %rax
movq %rax, 0x3550(%rsp)
movq 0x3550(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xe80(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0xf00(%rsp), %rsi
leaq 0xe80(%rsp), %rdx
callq 0x1453820
vmovaps %zmm0, 0xe40(%rsp)
movq 0xf98(%rsp), %rax
vmovaps 0xe40(%rsp), %zmm0
movq %rax, 0x38b8(%rsp)
vmovaps %zmm0, 0x3840(%rsp)
vmovaps 0x3840(%rsp), %zmm0
movq 0x38b8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0xfe8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xfe8(%rsp)
movq 0xf98(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xf98(%rsp)
movl 0xefc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xefc(%rsp)
jmp 0x1324aad
movq 0xff0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xff0(%rsp)
movl 0xf4c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xf4c(%rsp)
jmp 0x1324a68
jmp 0x1324bb2
movl 0xffc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xffc(%rsp)
jmp 0x132414e
movl $0x0, 0x2bd4(%rsp)
jmp 0x1326980
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movq 0x2b90(%rsp), %rcx
movl 0x2b8c(%rsp), %r8d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c00(%rsp)
movq 0x2c00(%rsp), %rcx
movq %rcx, 0x120(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x12f(%rsp)
je 0x1324c70
movq 0x120(%rsp), %rax
movq %rax, 0x41e0(%rsp)
movq 0x41e0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x12f(%rsp)
movb 0x12f(%rsp), %al
testb $0x1, %al
jne 0x1324c7d
jmp 0x1324c8d
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1326980
movq 0x2bc0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1324ccc
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x1444a90
movl %eax, 0x2bd4(%rsp)
jmp 0x1326980
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1324fa8
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movq 0x2b90(%rsp), %rcx
movl 0x2b8c(%rsp), %r8d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2bf8(%rsp)
movq 0x2bf8(%rsp), %rcx
movq %rcx, 0x110(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x11f(%rsp)
je 0x1324d76
movq 0x110(%rsp), %rax
movq %rax, 0x41e8(%rsp)
movq 0x41e8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x11f(%rsp)
movb 0x11f(%rsp), %al
testb $0x1, %al
jne 0x1324d83
jmp 0x1324d93
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1326980
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1324ddc
cmpl $0x1, 0x2b6c(%rsp)
jne 0x1324ddc
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x1445ca0
movl %eax, 0x2bd4(%rsp)
jmp 0x1326980
movq 0x2bc8(%rsp), %rax
movq %rax, 0x2f18(%rsp)
movq 0x2f18(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xe38(%rsp)
movq 0x2bc0(%rsp), %rax
movq %rax, 0x2f10(%rsp)
movq 0x2f10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xe30(%rsp)
movq 0x2bb8(%rsp), %rax
movq %rax, 0x3488(%rsp)
movq 0x3488(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xe28(%rsp)
movl $0x0, 0xe24(%rsp)
movl 0xe24(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jge 0x1324f98
movq 0xe30(%rsp), %rax
movq %rax, 0x3548(%rsp)
movq 0x3548(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xdc0(%rsp)
movl $0x0, 0xdbc(%rsp)
movl 0xdbc(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jge 0x1324f6e
movq 0xe38(%rsp), %rax
movq %rax, 0x3540(%rsp)
movq 0x3540(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xd40(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0xd40(%rsp), %rsi
leaq 0xdc0(%rsp), %rdx
callq 0x1453820
vmovaps %zmm0, 0xd00(%rsp)
movq 0xe28(%rsp), %rax
vmovaps 0xd00(%rsp), %zmm0
movq %rax, 0x3838(%rsp)
vmovaps %zmm0, 0x37c0(%rsp)
vmovaps 0x37c0(%rsp), %zmm0
movq 0x3838(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0xe38(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xe38(%rsp)
movq 0xe28(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xe28(%rsp)
movl 0xdbc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdbc(%rsp)
jmp 0x1324e95
movq 0xe30(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xe30(%rsp)
movl 0xe24(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xe24(%rsp)
jmp 0x1324e50
movl $0x0, 0x2bd4(%rsp)
jmp 0x1326980
jmp 0x1326971
movq 0x2bc8(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x132696f
movq 0x2bc8(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1325008
cmpl $0x1, 0x2b8c(%rsp)
jne 0x1325008
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x1446b20
movl %eax, 0x2bd4(%rsp)
jmp 0x1326980
movq 0x2bc0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1325b11
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b80(%rsp), %ecx
movl 0x2b7c(%rsp), %r8d
movq 0x2b70(%rsp), %r9
movl 0x2b6c(%rsp), %r10d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2bf0(%rsp)
movq 0x2bf0(%rsp), %rcx
movq %rcx, 0x100(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x10f(%rsp)
je 0x13250ca
movq 0x100(%rsp), %rax
movq %rax, 0x41f0(%rsp)
movq 0x41f0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x10f(%rsp)
movb 0x10f(%rsp), %al
testb $0x1, %al
jne 0x13250d7
jmp 0x13250e7
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1326980
movl $0x0, 0xcfc(%rsp)
movl 0xcfc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x1325b01
movq 0x2bc8(%rsp), %rax
movq %rax, 0x2f08(%rsp)
movq 0x2f08(%rsp), %rax
movq (%rax), %rax
movl 0xcfc(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x3538(%rsp)
movq 0x3538(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xc80(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0xcfc(%rsp), %eax
leaq 0xc30(%rsp), %rdx
movq %rdx, 0x2c98(%rsp)
movq %rcx, 0x2c90(%rsp)
movl %eax, 0x2c8c(%rsp)
movq 0x2c90(%rsp), %rax
movq %rax, 0xf8(%rsp)
movb $0x0, 0x2c8b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2c8c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xc30(%rsp), %r10
movq %r10, 0x4b70(%rsp)
movl %r9d, 0x4b6c(%rsp)
movl %r8d, 0x4b68(%rsp)
movl %edi, 0x4b64(%rsp)
movq %rsi, 0x4b58(%rsp)
movq %rdx, 0x4b50(%rsp)
movl %ecx, 0x4b4c(%rsp)
movq %rax, 0x4b40(%rsp)
movq 0x4b70(%rsp), %rcx
movq %rcx, 0xf0(%rsp)
movq 0x4b58(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4b50(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4b4c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4b40(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4b6c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4b68(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4b64(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4bc8(%rsp)
movl $0x10, 0x4bc4(%rsp)
movq 0x4bc8(%rsp), %rax
movslq 0x4bc4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4bc4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xf8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc58(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x132530f
movq 0xf8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xc70(%rsp)
movb $0x1, 0x2c8b(%rsp)
testb $0x1, 0x2c8b(%rsp)
jne 0x1325450
leaq 0xc30(%rsp), %rax
movq %rax, 0x30c0(%rsp)
movq 0x30c0(%rsp), %rax
movq %rax, 0x5268(%rsp)
movq 0x5268(%rsp), %rax
movq %rax, 0xe8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13253f3
movq 0xe8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5264(%rsp) # imm = 0xFFFFFFFF
movl 0x5264(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5260(%rsp)
cmpl $0x1, 0x5260(%rsp)
jne 0x13253f3
movq 0xe8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13253c1
movq 0xe8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13253bf
jmp 0x13253f1
movq 0xe8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54b0(%rsp)
cmpq $0x0, 0x54b0(%rsp)
je 0x13253ef
movq 0x54b0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13253f1
jmp 0x13253f3
movq 0xe8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132544e
movq %rax, %rdi
callq 0x678a0
jmp 0x1325450
leaq 0xc30(%rsp), %rax
movq %rax, 0x2f00(%rsp)
movq 0x2f00(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xd8(%rsp)
leaq 0xc30(%rsp), %rax
movq %rax, 0x3210(%rsp)
movq 0x3210(%rsp), %rax
movq %rax, 0x4fc8(%rsp)
movq 0x4fc8(%rsp), %rax
movq %rax, 0xe0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1325541
movq 0xe0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4fc4(%rsp) # imm = 0xFFFFFFFF
movl 0x4fc4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4fc0(%rsp)
cmpl $0x1, 0x4fc0(%rsp)
jne 0x1325541
movq 0xe0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x132550f
movq 0xe0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x132550d
jmp 0x132553f
movq 0xe0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5600(%rsp)
cmpq $0x0, 0x5600(%rsp)
je 0x132553d
movq 0x5600(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132553f
jmp 0x1325541
movq 0xe0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132559c
movq %rax, %rdi
callq 0x678a0
movq 0xd8(%rsp), %rax
movq %rax, 0xc78(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0xcfc(%rsp), %eax
leaq 0xbe0(%rsp), %rdx
movq %rdx, 0x3260(%rsp)
movq %rcx, 0x3258(%rsp)
movl %eax, 0x3254(%rsp)
movq 0x3258(%rsp), %rax
movq %rax, 0xd0(%rsp)
movb $0x0, 0x3253(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3254(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xbe0(%rsp), %r10
movq %r10, 0x45c0(%rsp)
movl %r9d, 0x45bc(%rsp)
movl %r8d, 0x45b8(%rsp)
movl %edi, 0x45b4(%rsp)
movq %rsi, 0x45a8(%rsp)
movq %rdx, 0x45a0(%rsp)
movl %ecx, 0x459c(%rsp)
movq %rax, 0x4590(%rsp)
movq 0x45c0(%rsp), %rcx
movq %rcx, 0xc8(%rsp)
movq 0x45a8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x45a0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x459c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4590(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x45bc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x45b8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x45b4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d68(%rsp)
movl $0x10, 0x4d64(%rsp)
movq 0x4d68(%rsp), %rax
movslq 0x4d64(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d64(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xd0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc08(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1325768
movq 0xd0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xc20(%rsp)
movb $0x1, 0x3253(%rsp)
testb $0x1, 0x3253(%rsp)
jne 0x13258a9
leaq 0xbe0(%rsp), %rax
movq %rax, 0x3268(%rsp)
movq 0x3268(%rsp), %rax
movq %rax, 0x4f78(%rsp)
movq 0x4f78(%rsp), %rax
movq %rax, 0xc0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132584c
movq 0xc0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f74(%rsp) # imm = 0xFFFFFFFF
movl 0x4f74(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f70(%rsp)
cmpl $0x1, 0x4f70(%rsp)
jne 0x132584c
movq 0xc0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x132581a
movq 0xc0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1325818
jmp 0x132584a
movq 0xc0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5628(%rsp)
cmpq $0x0, 0x5628(%rsp)
je 0x1325848
movq 0x5628(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132584a
jmp 0x132584c
movq 0xc0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13258a7
movq %rax, %rdi
callq 0x678a0
jmp 0x13258a9
leaq 0xbe0(%rsp), %rax
movq %rax, 0x3480(%rsp)
movq 0x3480(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xb0(%rsp)
leaq 0xbe0(%rsp), %rax
movq %rax, 0x3218(%rsp)
movq 0x3218(%rsp), %rax
movq %rax, 0x4fb8(%rsp)
movq 0x4fb8(%rsp), %rax
movq %rax, 0xb8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132599a
movq 0xb8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4fb4(%rsp) # imm = 0xFFFFFFFF
movl 0x4fb4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4fb0(%rsp)
cmpl $0x1, 0x4fb0(%rsp)
jne 0x132599a
movq 0xb8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1325968
movq 0xb8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1325966
jmp 0x1325998
movq 0xb8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5608(%rsp)
cmpq $0x0, 0x5608(%rsp)
je 0x1325996
movq 0x5608(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1325998
jmp 0x132599a
movq 0xb8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13259f5
movq %rax, %rdi
callq 0x678a0
movq 0xb0(%rsp), %rax
movq %rax, 0xc28(%rsp)
movl $0x0, 0xbdc(%rsp)
movl 0xbdc(%rsp), %eax
cmpl 0x2b78(%rsp), %eax
jge 0x1325ae9
movq 0xc78(%rsp), %rax
movq %rax, 0x3530(%rsp)
movq 0x3530(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xb80(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0xc80(%rsp), %rsi
leaq 0xb80(%rsp), %rdx
callq 0x1453820
vmovaps %zmm0, 0xb40(%rsp)
movq 0xc28(%rsp), %rax
vmovaps 0xb40(%rsp), %zmm0
movq %rax, 0x37b8(%rsp)
vmovaps %zmm0, 0x3740(%rsp)
vmovaps 0x3740(%rsp), %zmm0
movq 0x37b8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0xc78(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xc78(%rsp)
movq 0xc28(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xc28(%rsp)
movl 0xbdc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xbdc(%rsp)
jmp 0x1325a10
jmp 0x1325aeb
movl 0xcfc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xcfc(%rsp)
jmp 0x13250f2
movl $0x0, 0x2bd4(%rsp)
jmp 0x1326980
movq 0x2bc0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x13265d1
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b7c(%rsp), %ecx
movq 0x2b70(%rsp), %r8
movl 0x2b6c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2be8(%rsp)
movq 0x2be8(%rsp), %rcx
movq %rcx, 0xa0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xaf(%rsp)
je 0x1325bc6
movq 0xa0(%rsp), %rax
movq %rax, 0x41f8(%rsp)
movq 0x41f8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xaf(%rsp)
movb 0xaf(%rsp), %al
testb $0x1, %al
jne 0x1325bd3
jmp 0x1325be3
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1326980
movl $0x0, 0xb3c(%rsp)
movl 0xb3c(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x13265c1
movq 0x2bc8(%rsp), %rax
movq %rax, 0x2ef8(%rsp)
movq 0x2ef8(%rsp), %rax
movq (%rax), %rax
movl 0xb3c(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x3528(%rsp)
movq 0x3528(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xac0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0xb3c(%rsp), %eax
leaq 0xa70(%rsp), %rdx
movq %rdx, 0x2c80(%rsp)
movq %rcx, 0x2c78(%rsp)
movl %eax, 0x2c74(%rsp)
movq 0x2c78(%rsp), %rax
movq %rax, 0x98(%rsp)
movb $0x0, 0x2c73(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2c74(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xa70(%rsp), %r10
movq %r10, 0x4ba8(%rsp)
movl %r9d, 0x4ba4(%rsp)
movl %r8d, 0x4ba0(%rsp)
movl %edi, 0x4b9c(%rsp)
movq %rsi, 0x4b90(%rsp)
movq %rdx, 0x4b88(%rsp)
movl %ecx, 0x4b84(%rsp)
movq %rax, 0x4b78(%rsp)
movq 0x4ba8(%rsp), %rcx
movq %rcx, 0x90(%rsp)
movq 0x4b90(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4b88(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4b84(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4b78(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4ba4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4ba0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4b9c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4bb8(%rsp)
movl $0x10, 0x4bb4(%rsp)
movq 0x4bb8(%rsp), %rax
movslq 0x4bb4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4bb4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x98(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xa98(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1325e0b
movq 0x98(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xab0(%rsp)
movb $0x1, 0x2c73(%rsp)
testb $0x1, 0x2c73(%rsp)
jne 0x1325f4c
leaq 0xa70(%rsp), %rax
movq %rax, 0x30c8(%rsp)
movq 0x30c8(%rsp), %rax
movq %rax, 0x5258(%rsp)
movq 0x5258(%rsp), %rax
movq %rax, 0x88(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1325eef
movq 0x88(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5254(%rsp) # imm = 0xFFFFFFFF
movl 0x5254(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5250(%rsp)
cmpl $0x1, 0x5250(%rsp)
jne 0x1325eef
movq 0x88(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1325ebd
movq 0x88(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1325ebb
jmp 0x1325eed
movq 0x88(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54b8(%rsp)
cmpq $0x0, 0x54b8(%rsp)
je 0x1325eeb
movq 0x54b8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1325eed
jmp 0x1325eef
movq 0x88(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1325f4a
movq %rax, %rdi
callq 0x678a0
jmp 0x1325f4c
leaq 0xa70(%rsp), %rax
movq %rax, 0x2ef0(%rsp)
movq 0x2ef0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x78(%rsp)
leaq 0xa70(%rsp), %rax
movq %rax, 0x3220(%rsp)
movq 0x3220(%rsp), %rax
movq %rax, 0x4fa8(%rsp)
movq 0x4fa8(%rsp), %rax
movq %rax, 0x80(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132603a
movq 0x80(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4fa4(%rsp) # imm = 0xFFFFFFFF
movl 0x4fa4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4fa0(%rsp)
cmpl $0x1, 0x4fa0(%rsp)
jne 0x132603a
movq 0x80(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1326008
movq 0x80(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1326006
jmp 0x1326038
movq 0x80(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5610(%rsp)
cmpq $0x0, 0x5610(%rsp)
je 0x1326036
movq 0x5610(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1326038
jmp 0x132603a
movq 0x80(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1326095
movq %rax, %rdi
callq 0x678a0
movq 0x78(%rsp), %rax
movq %rax, 0xab8(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0xb3c(%rsp), %eax
leaq 0xa20(%rsp), %rdx
movq %rdx, 0x3240(%rsp)
movq %rcx, 0x3238(%rsp)
movl %eax, 0x3234(%rsp)
movq 0x3238(%rsp), %rax
movq %rax, 0x70(%rsp)
movb $0x0, 0x3233(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3234(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xa20(%rsp), %r10
movq %r10, 0x45f8(%rsp)
movl %r9d, 0x45f4(%rsp)
movl %r8d, 0x45f0(%rsp)
movl %edi, 0x45ec(%rsp)
movq %rsi, 0x45e0(%rsp)
movq %rdx, 0x45d8(%rsp)
movl %ecx, 0x45d4(%rsp)
movq %rax, 0x45c8(%rsp)
movq 0x45f8(%rsp), %rcx
movq %rcx, 0x68(%rsp)
movq 0x45e0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x45d8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x45d4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x45c8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x45f4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x45f0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x45ec(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d58(%rsp)
movl $0x10, 0x4d54(%rsp)
movq 0x4d58(%rsp), %rax
movslq 0x4d54(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d54(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x70(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xa48(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1326252
movq 0x70(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xa60(%rsp)
movb $0x1, 0x3233(%rsp)
testb $0x1, 0x3233(%rsp)
jne 0x1326381
leaq 0xa20(%rsp), %rax
movq %rax, 0x3248(%rsp)
movq 0x3248(%rsp), %rax
movq %rax, 0x4f88(%rsp)
movq 0x4f88(%rsp), %rax
movq %rax, 0x60(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1326327
movq 0x60(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f84(%rsp) # imm = 0xFFFFFFFF
movl 0x4f84(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f80(%rsp)
cmpl $0x1, 0x4f80(%rsp)
jne 0x1326327
movq 0x60(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13262f8
movq 0x60(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13262f6
jmp 0x1326325
movq 0x60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5620(%rsp)
cmpq $0x0, 0x5620(%rsp)
je 0x1326323
movq 0x5620(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1326325
jmp 0x1326327
movq 0x60(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132637f
movq %rax, %rdi
callq 0x678a0
jmp 0x1326381
leaq 0xa20(%rsp), %rax
movq %rax, 0x3478(%rsp)
movq 0x3478(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x50(%rsp)
leaq 0xa20(%rsp), %rax
movq %rax, 0x3228(%rsp)
movq 0x3228(%rsp), %rax
movq %rax, 0x4f98(%rsp)
movq 0x4f98(%rsp), %rax
movq %rax, 0x58(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1326460
movq 0x58(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f94(%rsp) # imm = 0xFFFFFFFF
movl 0x4f94(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f90(%rsp)
cmpl $0x1, 0x4f90(%rsp)
jne 0x1326460
movq 0x58(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1326431
movq 0x58(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x132642f
jmp 0x132645e
movq 0x58(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5618(%rsp)
cmpq $0x0, 0x5618(%rsp)
je 0x132645c
movq 0x5618(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132645e
jmp 0x1326460
movq 0x58(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13264b8
movq %rax, %rdi
callq 0x678a0
movq 0x50(%rsp), %rax
movq %rax, 0xa68(%rsp)
movl $0x0, 0xa1c(%rsp)
movl 0xa1c(%rsp), %eax
cmpl 0x2b78(%rsp), %eax
jge 0x13265a9
movq 0xab8(%rsp), %rax
movq %rax, 0x3520(%rsp)
movq 0x3520(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x9c0(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0xac0(%rsp), %rsi
leaq 0x9c0(%rsp), %rdx
callq 0x1453820
vmovaps %zmm0, 0x980(%rsp)
movq 0xa68(%rsp), %rax
vmovaps 0x980(%rsp), %zmm0
movq %rax, 0x3738(%rsp)
vmovaps %zmm0, 0x36c0(%rsp)
vmovaps 0x36c0(%rsp), %zmm0
movq 0x3738(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0xab8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xab8(%rsp)
movq 0xa68(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xa68(%rsp)
movl 0xa1c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xa1c(%rsp)
jmp 0x13264d0
jmp 0x13265ab
movl 0xb3c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xb3c(%rsp)
jmp 0x1325bee
movl $0x0, 0x2bd4(%rsp)
jmp 0x1326980
movq 0x2bc0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1326855
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movq 0x2b70(%rsp), %rcx
movl 0x2b6c(%rsp), %r8d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2be0(%rsp)
movq 0x2be0(%rsp), %rcx
movq %rcx, 0x40(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x4f(%rsp)
je 0x132666f
movq 0x40(%rsp), %rax
movq %rax, 0x4200(%rsp)
movq 0x4200(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x4f(%rsp)
movb 0x4f(%rsp), %al
testb $0x1, %al
jne 0x1326679
jmp 0x1326689
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1326980
movq 0x2bc8(%rsp), %rax
movq %rax, 0x2ee8(%rsp)
movq 0x2ee8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x978(%rsp)
movq 0x2bc0(%rsp), %rax
movq %rax, 0x2ee0(%rsp)
movq 0x2ee0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x970(%rsp)
movq 0x2bb8(%rsp), %rax
movq %rax, 0x3470(%rsp)
movq 0x3470(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x968(%rsp)
movl $0x0, 0x964(%rsp)
movl 0x964(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jge 0x1326845
movq 0x978(%rsp), %rax
movq %rax, 0x3518(%rsp)
movq 0x3518(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x900(%rsp)
movl $0x0, 0x8fc(%rsp)
movl 0x8fc(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jge 0x132681b
movq 0x970(%rsp), %rax
movq %rax, 0x3510(%rsp)
movq 0x3510(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x880(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x900(%rsp), %rsi
leaq 0x880(%rsp), %rdx
callq 0x1453820
vmovaps %zmm0, 0x840(%rsp)
movq 0x968(%rsp), %rax
vmovaps 0x840(%rsp), %zmm0
movq %rax, 0x36b8(%rsp)
vmovaps %zmm0, 0x3640(%rsp)
vmovaps 0x3640(%rsp), %zmm0
movq 0x36b8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x970(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x970(%rsp)
movq 0x968(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x968(%rsp)
movl 0x8fc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x8fc(%rsp)
jmp 0x1326742
movq 0x978(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x978(%rsp)
movl 0x964(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x964(%rsp)
jmp 0x13266fd
movl $0x0, 0x2bd4(%rsp)
jmp 0x1326980
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x132696d
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movq 0x2b90(%rsp), %rdx
movl 0x2b8c(%rsp), %ecx
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6be00
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2bd8(%rsp)
movq 0x2bd8(%rsp), %rcx
movq %rcx, 0x30(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x3f(%rsp)
je 0x13268eb
movq 0x30(%rsp), %rax
movq %rax, 0x4208(%rsp)
movq 0x4208(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x3f(%rsp)
movb 0x3f(%rsp), %al
testb $0x1, %al
jne 0x13268f5
jmp 0x1326902
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1326980
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1326948
cmpl $0x1, 0x2b6c(%rsp)
jne 0x1326948
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x1445ca0
movl %eax, 0x2bd4(%rsp)
jmp 0x1326980
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x1444a90
jmp 0x132696f
jmp 0x1326971
jmp 0x1326973
jmp 0x1326975
movl $0x0, 0x2bd4(%rsp)
movl 0x2bd4(%rsp), %eax
movq %rbp, %rsp
popq %rbp
vzeroupper
retq
nop
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/build_O0/src/layer/x86/binaryop_x86_avx512.cpp
|
2,112,893
|
int ncnn::binary_op_pack16<ncnn::BinaryOp_x86_avx512_functor::binary_op_div>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op_pack16(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int size = w * h * d;
size_t elemsize = a.elemsize;
int elempack = a.elempack;
int w1 = b.w;
int h1 = b.h;
int d1 = b.d;
int channels1 = b.c;
int size1 = w1 * h1 * d1;
size_t elemsize1 = b.elemsize;
int elempack1 = b.elempack;
if (a.dims == 4)
{
if (b.dims == 4)
{
// type 29
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
c.create(w, h, d, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 3)
{
// type 28
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
for (int y = 0; y < h; y++)
{
__m512 _b0 = _mm512_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
ptr1 += 16;
}
}
}
return 0;
}
if (b.dims == 2)
{
// type 27
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
__m512 _b0 = _mm512_loadu_ps(ptr1);
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
}
ptr1 += 16;
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1 && elempack1 == 1)
{
// type 25
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 26
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
__m512 _b0 = _mm512_loadu_ps((const float*)b + q * 16);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
}
return 0;
}
}
else if (a.dims == 3)
{
if (b.dims == 4)
{
// type 23
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
for (int y = 0; y < h1; y++)
{
__m512 _a0 = _mm512_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m512 _p = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
ptr += 16;
}
}
}
return 0;
}
if (b.dims == 3)
{
if (w1 == 1 && h1 == 1 && channels1 == channels)
{
// special type 1
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* b0 = b.channel(q);
float* outptr = c.channel(q);
__m512 _b0 = _mm512_loadu_ps(b0);
for (int i = 0; i < size; i++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
}
return 0;
}
if (w1 == w && h1 == h && channels1 == 1 && elempack1 == 1)
{
// special type 2
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b;
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _p1 = _mm512_set1_ps(*ptr1);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
ptr1 += 1;
outptr += 16;
}
}
return 0;
}
if (w == 1 && h == 1 && channels1 == channels)
{
// special type 3
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* a0 = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
__m512 _a0 = _mm512_loadu_ps(a0);
for (int i = 0; i < size1; i++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
}
return 0;
}
if (w1 == w && h1 == h && channels == 1 && elempack == 1)
{
// special type 4
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a;
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m512 _p = _mm512_set1_ps(*ptr);
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr += 1;
ptr1 += 16;
outptr += 16;
}
}
return 0;
}
if (w != 1 && w1 == 1 && h1 == h && channels1 == channels)
{
// special type 5
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1 + y * 16);
for (int x = 0; x < w; x++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
}
}
return 0;
}
if (w1 == w && h != 1 && h1 == 1 && channels1 == channels)
{
// special type 6
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _p1 = _mm512_loadu_ps(ptr1 + x * 16);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
}
}
return 0;
}
if (w1 != 1 && w == 1 && h1 == h && channels1 == channels)
{
// special type 7
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
__m512 _p = _mm512_loadu_ps(ptr + y * 16);
for (int x = 0; x < w1; x++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
}
}
return 0;
}
if (w1 == w && h1 != 1 && h == 1 && channels1 == channels)
{
// special type 8
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
__m512 _p = _mm512_loadu_ps(ptr + x * 16);
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
}
}
return 0;
}
// type 19
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 18
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
__m512 _b0 = _mm512_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
ptr1 += 16;
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1 && elempack1 == 1)
{
// type 16
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 17
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
__m512 _b0 = _mm512_loadu_ps((const float*)b + q * 16);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
}
return 0;
}
}
else if (a.dims == 2)
{
if (b.dims == 4)
{
// type 22
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
__m512 _a0 = _mm512_loadu_ps(ptr);
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
__m512 _p = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
}
ptr += 16;
}
}
return 0;
}
if (b.dims == 3)
{
// type 14
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
__m512 _a0 = _mm512_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
ptr += 16;
}
}
return 0;
}
c.create(w, h, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 13
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
if (b.dims == 1)
{
c.create(w, h, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1 && elempack1 == 1)
{
// type 11
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 12
const float* ptr = a;
const float* ptr1 = b;
float* outptr = c;
for (int y = 0; y < h; y++)
{
__m512 _b0 = _mm512_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
ptr1 += 16;
}
return 0;
}
}
else if (a.dims == 1)
{
if (a.w == 1 && elempack == 1)
{
// type 2 3 4 20
return binary_op_2_3_4_20<Op>(a, b, c, opt);
}
if (b.dims == 4)
{
// type 21
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
__m512 _a0 = _mm512_loadu_ps((const float*)a + q * 16);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
}
return 0;
}
if (b.dims == 3)
{
// type 9
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
__m512 _a0 = _mm512_loadu_ps((const float*)a + q * 16);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
}
return 0;
}
if (b.dims == 2)
{
// type 8
c.create(w1, h1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
const float* ptr = a;
const float* ptr1 = b;
float* outptr = c;
for (int y = 0; y < h1; y++)
{
__m512 _a0 = _mm512_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
ptr += 16;
}
return 0;
}
if (b.dims == 1)
{
c.create(w, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1 && elempack1 == 1)
{
// type 6
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 7
binary_op_7_13_19_29<Op>(a, b, c, opt);
}
}
return 0;
}
|
pushq %rbp
movq %rsp, %rbp
andq $-0x40, %rsp
subq $0x56c0, %rsp # imm = 0x56C0
movq %rdi, 0x2bc8(%rsp)
movq %rsi, 0x2bc0(%rsp)
movq %rdx, 0x2bb8(%rsp)
movq %rcx, 0x2bb0(%rsp)
movq 0x2bc8(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x2ba8(%rsp)
movq 0x2bc8(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x2ba4(%rsp)
movq 0x2bc8(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x2ba0(%rsp)
movq 0x2bc8(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x2b9c(%rsp)
movl 0x2ba8(%rsp), %eax
imull 0x2ba4(%rsp), %eax
imull 0x2ba0(%rsp), %eax
movl %eax, 0x2b98(%rsp)
movq 0x2bc8(%rsp), %rax
movq 0x10(%rax), %rax
movq %rax, 0x2b90(%rsp)
movq 0x2bc8(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x2b8c(%rsp)
movq 0x2bc0(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x2b88(%rsp)
movq 0x2bc0(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x2b84(%rsp)
movq 0x2bc0(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x2b80(%rsp)
movq 0x2bc0(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x2b7c(%rsp)
movl 0x2b88(%rsp), %eax
imull 0x2b84(%rsp), %eax
imull 0x2b80(%rsp), %eax
movl %eax, 0x2b78(%rsp)
movq 0x2bc0(%rsp), %rax
movq 0x10(%rax), %rax
movq %rax, 0x2b70(%rsp)
movq 0x2bc0(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x2b6c(%rsp)
movq 0x2bc8(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x132906f
movq 0x2bc0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1326b28
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x14479a0
movl %eax, 0x2bd4(%rsp)
jmp 0x1335f50
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movl 0x2ba0(%rsp), %ecx
movl 0x2b9c(%rsp), %r8d
movq 0x2b90(%rsp), %r9
movl 0x2b8c(%rsp), %r10d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c68(%rsp)
movq 0x2c68(%rsp), %rcx
movq %rcx, 0x830(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x83f(%rsp)
je 0x1326bd8
movq 0x830(%rsp), %rax
movq %rax, 0x4178(%rsp)
movq 0x4178(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x83f(%rsp)
movb 0x83f(%rsp), %al
testb $0x1, %al
jne 0x1326be5
jmp 0x1326bf5
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1335f50
movq 0x2bc0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1327aef
movl $0x0, 0x2b68(%rsp)
movl 0x2b68(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jge 0x1327adf
movq 0x2bc8(%rsp), %rcx
movl 0x2b68(%rsp), %eax
leaq 0x2b18(%rsp), %rdx
movq %rdx, 0x2ed8(%rsp)
movq %rcx, 0x2ed0(%rsp)
movl %eax, 0x2ecc(%rsp)
movq 0x2ed0(%rsp), %rax
movq %rax, 0x828(%rsp)
movb $0x0, 0x2ecb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2ecc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2b18(%rsp), %r10
movq %r10, 0x4630(%rsp)
movl %r9d, 0x462c(%rsp)
movl %r8d, 0x4628(%rsp)
movl %edi, 0x4624(%rsp)
movq %rsi, 0x4618(%rsp)
movq %rdx, 0x4610(%rsp)
movl %ecx, 0x460c(%rsp)
movq %rax, 0x4600(%rsp)
movq 0x4630(%rsp), %rcx
movq %rcx, 0x820(%rsp)
movq 0x4618(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4610(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x460c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4600(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x462c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4628(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4624(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d48(%rsp)
movl $0x10, 0x4d44(%rsp)
movq 0x4d48(%rsp), %rax
movslq 0x4d44(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d44(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x828(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2b40(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1326de2
movq 0x828(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2b58(%rsp)
movb $0x1, 0x2ecb(%rsp)
testb $0x1, 0x2ecb(%rsp)
jne 0x1326f23
leaq 0x2b18(%rsp), %rax
movq %rax, 0x3000(%rsp)
movq 0x3000(%rsp), %rax
movq %rax, 0x53e8(%rsp)
movq 0x53e8(%rsp), %rax
movq %rax, 0x818(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1326ec6
movq 0x818(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x53e4(%rsp) # imm = 0xFFFFFFFF
movl 0x53e4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x53e0(%rsp)
cmpl $0x1, 0x53e0(%rsp)
jne 0x1326ec6
movq 0x818(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1326e94
movq 0x818(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1326e92
jmp 0x1326ec4
movq 0x818(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x53f0(%rsp)
cmpq $0x0, 0x53f0(%rsp)
je 0x1326ec2
movq 0x53f0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1326ec4
jmp 0x1326ec6
movq 0x818(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1326f21
movq %rax, %rdi
callq 0x678a0
jmp 0x1326f23
leaq 0x2b18(%rsp), %rax
movq %rax, 0x2ff8(%rsp)
movq 0x2ff8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x808(%rsp)
leaq 0x2b18(%rsp), %rax
movq %rax, 0x30d0(%rsp)
movq 0x30d0(%rsp), %rax
movq %rax, 0x5248(%rsp)
movq 0x5248(%rsp), %rax
movq %rax, 0x810(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1327014
movq 0x810(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5244(%rsp) # imm = 0xFFFFFFFF
movl 0x5244(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5240(%rsp)
cmpl $0x1, 0x5240(%rsp)
jne 0x1327014
movq 0x810(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1326fe2
movq 0x810(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1326fe0
jmp 0x1327012
movq 0x810(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54c0(%rsp)
cmpq $0x0, 0x54c0(%rsp)
je 0x1327010
movq 0x54c0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1327012
jmp 0x1327014
movq 0x810(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132706f
movq %rax, %rdi
callq 0x678a0
movq 0x808(%rsp), %rax
movq %rax, 0x2b60(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x2b68(%rsp), %eax
leaq 0x2ac8(%rsp), %rdx
movq %rdx, 0x2ec0(%rsp)
movq %rcx, 0x2eb8(%rsp)
movl %eax, 0x2eb4(%rsp)
movq 0x2eb8(%rsp), %rax
movq %rax, 0x800(%rsp)
movb $0x0, 0x2eb3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2eb4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2ac8(%rsp), %r10
movq %r10, 0x4668(%rsp)
movl %r9d, 0x4664(%rsp)
movl %r8d, 0x4660(%rsp)
movl %edi, 0x465c(%rsp)
movq %rsi, 0x4650(%rsp)
movq %rdx, 0x4648(%rsp)
movl %ecx, 0x4644(%rsp)
movq %rax, 0x4638(%rsp)
movq 0x4668(%rsp), %rcx
movq %rcx, 0x7f8(%rsp)
movq 0x4650(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4648(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4644(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4638(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4664(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4660(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x465c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d38(%rsp)
movl $0x10, 0x4d34(%rsp)
movq 0x4d38(%rsp), %rax
movslq 0x4d34(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d34(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x800(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2af0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x132723b
movq 0x800(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2b08(%rsp)
movb $0x1, 0x2eb3(%rsp)
testb $0x1, 0x2eb3(%rsp)
jne 0x132737c
leaq 0x2ac8(%rsp), %rax
movq %rax, 0x3008(%rsp)
movq 0x3008(%rsp), %rax
movq %rax, 0x53d8(%rsp)
movq 0x53d8(%rsp), %rax
movq %rax, 0x7f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132731f
movq 0x7f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x53d4(%rsp) # imm = 0xFFFFFFFF
movl 0x53d4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x53d0(%rsp)
cmpl $0x1, 0x53d0(%rsp)
jne 0x132731f
movq 0x7f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13272ed
movq 0x7f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13272eb
jmp 0x132731d
movq 0x7f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x53f8(%rsp)
cmpq $0x0, 0x53f8(%rsp)
je 0x132731b
movq 0x53f8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132731d
jmp 0x132731f
movq 0x7f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132737a
movq %rax, %rdi
callq 0x678a0
jmp 0x132737c
leaq 0x2ac8(%rsp), %rax
movq %rax, 0x2ff0(%rsp)
movq 0x2ff0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7e0(%rsp)
leaq 0x2ac8(%rsp), %rax
movq %rax, 0x30d8(%rsp)
movq 0x30d8(%rsp), %rax
movq %rax, 0x5238(%rsp)
movq 0x5238(%rsp), %rax
movq %rax, 0x7e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132746d
movq 0x7e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5234(%rsp) # imm = 0xFFFFFFFF
movl 0x5234(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5230(%rsp)
cmpl $0x1, 0x5230(%rsp)
jne 0x132746d
movq 0x7e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x132743b
movq 0x7e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1327439
jmp 0x132746b
movq 0x7e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54c8(%rsp)
cmpq $0x0, 0x54c8(%rsp)
je 0x1327469
movq 0x54c8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132746b
jmp 0x132746d
movq 0x7e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13274c8
movq %rax, %rdi
callq 0x678a0
movq 0x7e0(%rsp), %rax
movq %rax, 0x2b10(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x2b68(%rsp), %eax
leaq 0x2a78(%rsp), %rdx
movq %rdx, 0x3460(%rsp)
movq %rcx, 0x3458(%rsp)
movl %eax, 0x3454(%rsp)
movq 0x3458(%rsp), %rax
movq %rax, 0x7d8(%rsp)
movb $0x0, 0x3453(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3454(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2a78(%rsp), %r10
movq %r10, 0x4240(%rsp)
movl %r9d, 0x423c(%rsp)
movl %r8d, 0x4238(%rsp)
movl %edi, 0x4234(%rsp)
movq %rsi, 0x4228(%rsp)
movq %rdx, 0x4220(%rsp)
movl %ecx, 0x421c(%rsp)
movq %rax, 0x4210(%rsp)
movq 0x4240(%rsp), %rcx
movq %rcx, 0x7d0(%rsp)
movq 0x4228(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4220(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x421c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4210(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x423c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4238(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4234(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e68(%rsp)
movl $0x10, 0x4e64(%rsp)
movq 0x4e68(%rsp), %rax
movslq 0x4e64(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e64(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7d8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2aa0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1327694
movq 0x7d8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2ab8(%rsp)
movb $0x1, 0x3453(%rsp)
testb $0x1, 0x3453(%rsp)
jne 0x13277d5
leaq 0x2a78(%rsp), %rax
movq %rax, 0x3468(%rsp)
movq 0x3468(%rsp), %rax
movq %rax, 0x4e78(%rsp)
movq 0x4e78(%rsp), %rax
movq %rax, 0x7c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1327778
movq 0x7c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4e74(%rsp) # imm = 0xFFFFFFFF
movl 0x4e74(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4e70(%rsp)
cmpl $0x1, 0x4e70(%rsp)
jne 0x1327778
movq 0x7c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1327746
movq 0x7c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1327744
jmp 0x1327776
movq 0x7c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x56a8(%rsp)
cmpq $0x0, 0x56a8(%rsp)
je 0x1327774
movq 0x56a8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1327776
jmp 0x1327778
movq 0x7c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13277d3
movq %rax, %rdi
callq 0x678a0
jmp 0x13277d5
leaq 0x2a78(%rsp), %rax
movq %rax, 0x3508(%rsp)
movq 0x3508(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7b8(%rsp)
leaq 0x2a78(%rsp), %rax
movq %rax, 0x30e0(%rsp)
movq 0x30e0(%rsp), %rax
movq %rax, 0x5228(%rsp)
movq 0x5228(%rsp), %rax
movq %rax, 0x7c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13278c6
movq 0x7c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5224(%rsp) # imm = 0xFFFFFFFF
movl 0x5224(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5220(%rsp)
cmpl $0x1, 0x5220(%rsp)
jne 0x13278c6
movq 0x7c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1327894
movq 0x7c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1327892
jmp 0x13278c4
movq 0x7c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54d0(%rsp)
cmpq $0x0, 0x54d0(%rsp)
je 0x13278c2
movq 0x54d0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13278c4
jmp 0x13278c6
movq 0x7c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1327921
movq %rax, %rdi
callq 0x678a0
movq 0x7b8(%rsp), %rax
movq %rax, 0x2ac0(%rsp)
movl $0x0, 0x2a74(%rsp)
movl 0x2a74(%rsp), %eax
cmpl 0x2ba0(%rsp), %eax
jge 0x1327ac7
movl $0x0, 0x2a70(%rsp)
movl 0x2a70(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jge 0x1327aaf
movq 0x2b10(%rsp), %rax
movq %rax, 0x3638(%rsp)
movq 0x3638(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2a00(%rsp)
movl $0x0, 0x29fc(%rsp)
movl 0x29fc(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jge 0x1327a85
movq 0x2b60(%rsp), %rax
movq %rax, 0x3630(%rsp)
movq 0x3630(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2980(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x2980(%rsp), %rsi
leaq 0x2a00(%rsp), %rdx
callq 0x1453940
vmovaps %zmm0, 0x2940(%rsp)
movq 0x2ac0(%rsp), %rax
vmovaps 0x2940(%rsp), %zmm0
movq %rax, 0x4038(%rsp)
vmovaps %zmm0, 0x3fc0(%rsp)
vmovaps 0x3fc0(%rsp), %zmm0
movq 0x4038(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x2b60(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2b60(%rsp)
movq 0x2ac0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2ac0(%rsp)
movl 0x29fc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x29fc(%rsp)
jmp 0x13279a3
movq 0x2b10(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2b10(%rsp)
movl 0x2a70(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x2a70(%rsp)
jmp 0x132795b
jmp 0x1327ab1
movl 0x2a74(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x2a74(%rsp)
jmp 0x132793c
jmp 0x1327ac9
movl 0x2b68(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x2b68(%rsp)
jmp 0x1326c12
movl $0x0, 0x2bd4(%rsp)
jmp 0x1335f50
movq 0x2bc0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x13285d9
movl $0x0, 0x293c(%rsp)
movl 0x293c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jge 0x13285c9
movq 0x2bc8(%rsp), %rcx
movl 0x293c(%rsp), %eax
leaq 0x28e8(%rsp), %rdx
movq %rdx, 0x2ea8(%rsp)
movq %rcx, 0x2ea0(%rsp)
movl %eax, 0x2e9c(%rsp)
movq 0x2ea0(%rsp), %rax
movq %rax, 0x7b0(%rsp)
movb $0x0, 0x2e9b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e9c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x28e8(%rsp), %r10
movq %r10, 0x46a0(%rsp)
movl %r9d, 0x469c(%rsp)
movl %r8d, 0x4698(%rsp)
movl %edi, 0x4694(%rsp)
movq %rsi, 0x4688(%rsp)
movq %rdx, 0x4680(%rsp)
movl %ecx, 0x467c(%rsp)
movq %rax, 0x4670(%rsp)
movq 0x46a0(%rsp), %rcx
movq %rcx, 0x7a8(%rsp)
movq 0x4688(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4680(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x467c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4670(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x469c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4698(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4694(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d28(%rsp)
movl $0x10, 0x4d24(%rsp)
movq 0x4d28(%rsp), %rax
movslq 0x4d24(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d24(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7b0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2910(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1327cdc
movq 0x7b0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2928(%rsp)
movb $0x1, 0x2e9b(%rsp)
testb $0x1, 0x2e9b(%rsp)
jne 0x1327e1d
leaq 0x28e8(%rsp), %rax
movq %rax, 0x3010(%rsp)
movq 0x3010(%rsp), %rax
movq %rax, 0x53c8(%rsp)
movq 0x53c8(%rsp), %rax
movq %rax, 0x7a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1327dc0
movq 0x7a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x53c4(%rsp) # imm = 0xFFFFFFFF
movl 0x53c4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x53c0(%rsp)
cmpl $0x1, 0x53c0(%rsp)
jne 0x1327dc0
movq 0x7a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1327d8e
movq 0x7a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1327d8c
jmp 0x1327dbe
movq 0x7a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5400(%rsp)
cmpq $0x0, 0x5400(%rsp)
je 0x1327dbc
movq 0x5400(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1327dbe
jmp 0x1327dc0
movq 0x7a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1327e1b
movq %rax, %rdi
callq 0x678a0
jmp 0x1327e1d
leaq 0x28e8(%rsp), %rax
movq %rax, 0x2fe8(%rsp)
movq 0x2fe8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x790(%rsp)
leaq 0x28e8(%rsp), %rax
movq %rax, 0x30e8(%rsp)
movq 0x30e8(%rsp), %rax
movq %rax, 0x5218(%rsp)
movq 0x5218(%rsp), %rax
movq %rax, 0x798(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1327f0e
movq 0x798(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5214(%rsp) # imm = 0xFFFFFFFF
movl 0x5214(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5210(%rsp)
cmpl $0x1, 0x5210(%rsp)
jne 0x1327f0e
movq 0x798(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1327edc
movq 0x798(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1327eda
jmp 0x1327f0c
movq 0x798(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54d8(%rsp)
cmpq $0x0, 0x54d8(%rsp)
je 0x1327f0a
movq 0x54d8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1327f0c
jmp 0x1327f0e
movq 0x798(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1327f69
movq %rax, %rdi
callq 0x678a0
movq 0x790(%rsp), %rax
movq %rax, 0x2930(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x293c(%rsp), %eax
movq %rcx, 0x4078(%rsp)
movl %eax, 0x4074(%rsp)
movq 0x4078(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x4074(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x28e0(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x293c(%rsp), %eax
leaq 0x2890(%rsp), %rdx
movq %rdx, 0x3440(%rsp)
movq %rcx, 0x3438(%rsp)
movl %eax, 0x3434(%rsp)
movq 0x3438(%rsp), %rax
movq %rax, 0x788(%rsp)
movb $0x0, 0x3433(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3434(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2890(%rsp), %r10
movq %r10, 0x4278(%rsp)
movl %r9d, 0x4274(%rsp)
movl %r8d, 0x4270(%rsp)
movl %edi, 0x426c(%rsp)
movq %rsi, 0x4260(%rsp)
movq %rdx, 0x4258(%rsp)
movl %ecx, 0x4254(%rsp)
movq %rax, 0x4248(%rsp)
movq 0x4278(%rsp), %rcx
movq %rcx, 0x780(%rsp)
movq 0x4260(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4258(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4254(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4248(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4274(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4270(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x426c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e58(%rsp)
movl $0x10, 0x4e54(%rsp)
movq 0x4e58(%rsp), %rax
movslq 0x4e54(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e54(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x788(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x28b8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x132817e
movq 0x788(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x28d0(%rsp)
movb $0x1, 0x3433(%rsp)
testb $0x1, 0x3433(%rsp)
jne 0x13282bf
leaq 0x2890(%rsp), %rax
movq %rax, 0x3448(%rsp)
movq 0x3448(%rsp), %rax
movq %rax, 0x4e88(%rsp)
movq 0x4e88(%rsp), %rax
movq %rax, 0x778(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1328262
movq 0x778(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4e84(%rsp) # imm = 0xFFFFFFFF
movl 0x4e84(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4e80(%rsp)
cmpl $0x1, 0x4e80(%rsp)
jne 0x1328262
movq 0x778(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1328230
movq 0x778(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x132822e
jmp 0x1328260
movq 0x778(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x56a0(%rsp)
cmpq $0x0, 0x56a0(%rsp)
je 0x132825e
movq 0x56a0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1328260
jmp 0x1328262
movq 0x778(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13282bd
movq %rax, %rdi
callq 0x678a0
jmp 0x13282bf
leaq 0x2890(%rsp), %rax
movq %rax, 0x3500(%rsp)
movq 0x3500(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x768(%rsp)
leaq 0x2890(%rsp), %rax
movq %rax, 0x30f0(%rsp)
movq 0x30f0(%rsp), %rax
movq %rax, 0x5208(%rsp)
movq 0x5208(%rsp), %rax
movq %rax, 0x770(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13283b0
movq 0x770(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5204(%rsp) # imm = 0xFFFFFFFF
movl 0x5204(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5200(%rsp)
cmpl $0x1, 0x5200(%rsp)
jne 0x13283b0
movq 0x770(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x132837e
movq 0x770(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x132837c
jmp 0x13283ae
movq 0x770(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54e0(%rsp)
cmpq $0x0, 0x54e0(%rsp)
je 0x13283ac
movq 0x54e0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13283ae
jmp 0x13283b0
movq 0x770(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132840b
movq %rax, %rdi
callq 0x678a0
movq 0x768(%rsp), %rax
movq %rax, 0x28d8(%rsp)
movl $0x0, 0x288c(%rsp)
movl 0x288c(%rsp), %eax
cmpl 0x2ba0(%rsp), %eax
jge 0x13285b1
movq 0x28e0(%rsp), %rax
movq %rax, 0x3628(%rsp)
movq 0x3628(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2840(%rsp)
movl $0x0, 0x283c(%rsp)
movl 0x283c(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jge 0x1328587
movl $0x0, 0x2838(%rsp)
movl 0x2838(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jge 0x132856f
movq 0x2930(%rsp), %rax
movq %rax, 0x3620(%rsp)
movq 0x3620(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x27c0(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x27c0(%rsp), %rsi
leaq 0x2840(%rsp), %rdx
callq 0x1453940
vmovaps %zmm0, 0x2780(%rsp)
movq 0x28d8(%rsp), %rax
vmovaps 0x2780(%rsp), %zmm0
movq %rax, 0x3fb8(%rsp)
vmovaps %zmm0, 0x3f40(%rsp)
vmovaps 0x3f40(%rsp), %zmm0
movq 0x3fb8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x2930(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2930(%rsp)
movq 0x28d8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x28d8(%rsp)
movl 0x2838(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x2838(%rsp)
jmp 0x132848d
jmp 0x1328571
movl 0x283c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x283c(%rsp)
jmp 0x132846e
movq 0x28e0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x28e0(%rsp)
movl 0x288c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x288c(%rsp)
jmp 0x1328426
jmp 0x13285b3
movl 0x293c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x293c(%rsp)
jmp 0x1327b0c
movl $0x0, 0x2bd4(%rsp)
jmp 0x1335f50
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x132906a
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1328634
cmpl $0x1, 0x2b6c(%rsp)
jne 0x1328634
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x1448bb0
movl %eax, 0x2bd4(%rsp)
jmp 0x1335f50
movl $0x0, 0x277c(%rsp)
movl 0x277c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jge 0x132905a
movq 0x2bc8(%rsp), %rcx
movl 0x277c(%rsp), %eax
leaq 0x2728(%rsp), %rdx
movq %rdx, 0x2e90(%rsp)
movq %rcx, 0x2e88(%rsp)
movl %eax, 0x2e84(%rsp)
movq 0x2e88(%rsp), %rax
movq %rax, 0x760(%rsp)
movb $0x0, 0x2e83(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e84(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2728(%rsp), %r10
movq %r10, 0x46d8(%rsp)
movl %r9d, 0x46d4(%rsp)
movl %r8d, 0x46d0(%rsp)
movl %edi, 0x46cc(%rsp)
movq %rsi, 0x46c0(%rsp)
movq %rdx, 0x46b8(%rsp)
movl %ecx, 0x46b4(%rsp)
movq %rax, 0x46a8(%rsp)
movq 0x46d8(%rsp), %rcx
movq %rcx, 0x758(%rsp)
movq 0x46c0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x46b8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x46b4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x46a8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x46d4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x46d0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x46cc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d18(%rsp)
movl $0x10, 0x4d14(%rsp)
movq 0x4d18(%rsp), %rax
movslq 0x4d14(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d14(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x760(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2750(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x132880f
movq 0x760(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2768(%rsp)
movb $0x1, 0x2e83(%rsp)
testb $0x1, 0x2e83(%rsp)
jne 0x1328950
leaq 0x2728(%rsp), %rax
movq %rax, 0x3018(%rsp)
movq 0x3018(%rsp), %rax
movq %rax, 0x53b8(%rsp)
movq 0x53b8(%rsp), %rax
movq %rax, 0x750(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13288f3
movq 0x750(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x53b4(%rsp) # imm = 0xFFFFFFFF
movl 0x53b4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x53b0(%rsp)
cmpl $0x1, 0x53b0(%rsp)
jne 0x13288f3
movq 0x750(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13288c1
movq 0x750(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13288bf
jmp 0x13288f1
movq 0x750(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5408(%rsp)
cmpq $0x0, 0x5408(%rsp)
je 0x13288ef
movq 0x5408(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13288f1
jmp 0x13288f3
movq 0x750(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132894e
movq %rax, %rdi
callq 0x678a0
jmp 0x1328950
leaq 0x2728(%rsp), %rax
movq %rax, 0x2fe0(%rsp)
movq 0x2fe0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x740(%rsp)
leaq 0x2728(%rsp), %rax
movq %rax, 0x30f8(%rsp)
movq 0x30f8(%rsp), %rax
movq %rax, 0x51f8(%rsp)
movq 0x51f8(%rsp), %rax
movq %rax, 0x748(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1328a41
movq 0x748(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x51f4(%rsp) # imm = 0xFFFFFFFF
movl 0x51f4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x51f0(%rsp)
cmpl $0x1, 0x51f0(%rsp)
jne 0x1328a41
movq 0x748(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1328a0f
movq 0x748(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1328a0d
jmp 0x1328a3f
movq 0x748(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54e8(%rsp)
cmpq $0x0, 0x54e8(%rsp)
je 0x1328a3d
movq 0x54e8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1328a3f
jmp 0x1328a41
movq 0x748(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1328a9c
movq %rax, %rdi
callq 0x678a0
movq 0x740(%rsp), %rax
movq %rax, 0x2770(%rsp)
movq 0x2bc0(%rsp), %rax
movq %rax, 0x2fd8(%rsp)
movq 0x2fd8(%rsp), %rax
movq (%rax), %rax
movl 0x277c(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x3618(%rsp)
movq 0x3618(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x26c0(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x277c(%rsp), %eax
leaq 0x2670(%rsp), %rdx
movq %rdx, 0x3420(%rsp)
movq %rcx, 0x3418(%rsp)
movl %eax, 0x3414(%rsp)
movq 0x3418(%rsp), %rax
movq %rax, 0x738(%rsp)
movb $0x0, 0x3413(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3414(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2670(%rsp), %r10
movq %r10, 0x42b0(%rsp)
movl %r9d, 0x42ac(%rsp)
movl %r8d, 0x42a8(%rsp)
movl %edi, 0x42a4(%rsp)
movq %rsi, 0x4298(%rsp)
movq %rdx, 0x4290(%rsp)
movl %ecx, 0x428c(%rsp)
movq %rax, 0x4280(%rsp)
movq 0x42b0(%rsp), %rcx
movq %rcx, 0x730(%rsp)
movq 0x4298(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4290(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x428c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4280(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x42ac(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x42a8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x42a4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e48(%rsp)
movl $0x10, 0x4e44(%rsp)
movq 0x4e48(%rsp), %rax
movslq 0x4e44(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e44(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x738(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2698(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1328cb8
movq 0x738(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x26b0(%rsp)
movb $0x1, 0x3413(%rsp)
testb $0x1, 0x3413(%rsp)
jne 0x1328df9
leaq 0x2670(%rsp), %rax
movq %rax, 0x3428(%rsp)
movq 0x3428(%rsp), %rax
movq %rax, 0x4e98(%rsp)
movq 0x4e98(%rsp), %rax
movq %rax, 0x728(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1328d9c
movq 0x728(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4e94(%rsp) # imm = 0xFFFFFFFF
movl 0x4e94(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4e90(%rsp)
cmpl $0x1, 0x4e90(%rsp)
jne 0x1328d9c
movq 0x728(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1328d6a
movq 0x728(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1328d68
jmp 0x1328d9a
movq 0x728(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5698(%rsp)
cmpq $0x0, 0x5698(%rsp)
je 0x1328d98
movq 0x5698(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1328d9a
jmp 0x1328d9c
movq 0x728(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1328df7
movq %rax, %rdi
callq 0x678a0
jmp 0x1328df9
leaq 0x2670(%rsp), %rax
movq %rax, 0x34f8(%rsp)
movq 0x34f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x718(%rsp)
leaq 0x2670(%rsp), %rax
movq %rax, 0x3100(%rsp)
movq 0x3100(%rsp), %rax
movq %rax, 0x51e8(%rsp)
movq 0x51e8(%rsp), %rax
movq %rax, 0x720(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1328eea
movq 0x720(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x51e4(%rsp) # imm = 0xFFFFFFFF
movl 0x51e4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x51e0(%rsp)
cmpl $0x1, 0x51e0(%rsp)
jne 0x1328eea
movq 0x720(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1328eb8
movq 0x720(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1328eb6
jmp 0x1328ee8
movq 0x720(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54f0(%rsp)
cmpq $0x0, 0x54f0(%rsp)
je 0x1328ee6
movq 0x54f0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1328ee8
jmp 0x1328eea
movq 0x720(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1328f45
movq %rax, %rdi
callq 0x678a0
movq 0x718(%rsp), %rax
movq %rax, 0x26b8(%rsp)
movl $0x0, 0x266c(%rsp)
movl 0x266c(%rsp), %eax
cmpl 0x2b98(%rsp), %eax
jge 0x1329042
movq 0x2770(%rsp), %rax
movq %rax, 0x3610(%rsp)
movq 0x3610(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2600(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x2600(%rsp), %rsi
leaq 0x26c0(%rsp), %rdx
callq 0x1453940
vmovaps %zmm0, 0x25c0(%rsp)
movq 0x26b8(%rsp), %rax
vmovaps 0x25c0(%rsp), %zmm0
movq %rax, 0x3f38(%rsp)
vmovaps %zmm0, 0x3ec0(%rsp)
vmovaps 0x3ec0(%rsp), %zmm0
movq 0x3f38(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x2770(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2770(%rsp)
movq 0x26b8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x26b8(%rsp)
movl 0x266c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x266c(%rsp)
jmp 0x1328f60
jmp 0x1329044
movl 0x277c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x277c(%rsp)
jmp 0x132863f
movl $0x0, 0x2bd4(%rsp)
jmp 0x1335f50
jmp 0x1335f45
movq 0x2bc8(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1332a84
movq 0x2bc0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x132a048
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b80(%rsp), %ecx
movl 0x2b7c(%rsp), %r8d
movq 0x2b70(%rsp), %r9
movl 0x2b6c(%rsp), %r10d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c60(%rsp)
movq 0x2c60(%rsp), %rcx
movq %rcx, 0x708(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x717(%rsp)
je 0x1329143
movq 0x708(%rsp), %rax
movq %rax, 0x4180(%rsp)
movq 0x4180(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x717(%rsp)
movb 0x717(%rsp), %al
testb $0x1, %al
jne 0x1329150
jmp 0x1329160
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1335f50
movl $0x0, 0x25bc(%rsp)
movl 0x25bc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x132a038
movq 0x2bc8(%rsp), %rcx
movl 0x25bc(%rsp), %eax
leaq 0x2568(%rsp), %rdx
movq %rdx, 0x2e78(%rsp)
movq %rcx, 0x2e70(%rsp)
movl %eax, 0x2e6c(%rsp)
movq 0x2e70(%rsp), %rax
movq %rax, 0x700(%rsp)
movb $0x0, 0x2e6b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e6c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2568(%rsp), %r10
movq %r10, 0x4710(%rsp)
movl %r9d, 0x470c(%rsp)
movl %r8d, 0x4708(%rsp)
movl %edi, 0x4704(%rsp)
movq %rsi, 0x46f8(%rsp)
movq %rdx, 0x46f0(%rsp)
movl %ecx, 0x46ec(%rsp)
movq %rax, 0x46e0(%rsp)
movq 0x4710(%rsp), %rcx
movq %rcx, 0x6f8(%rsp)
movq 0x46f8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x46f0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x46ec(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x46e0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x470c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4708(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4704(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d08(%rsp)
movl $0x10, 0x4d04(%rsp)
movq 0x4d08(%rsp), %rax
movslq 0x4d04(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d04(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x700(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2590(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x132933b
movq 0x700(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x25a8(%rsp)
movb $0x1, 0x2e6b(%rsp)
testb $0x1, 0x2e6b(%rsp)
jne 0x132947c
leaq 0x2568(%rsp), %rax
movq %rax, 0x3020(%rsp)
movq 0x3020(%rsp), %rax
movq %rax, 0x53a8(%rsp)
movq 0x53a8(%rsp), %rax
movq %rax, 0x6f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132941f
movq 0x6f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x53a4(%rsp) # imm = 0xFFFFFFFF
movl 0x53a4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x53a0(%rsp)
cmpl $0x1, 0x53a0(%rsp)
jne 0x132941f
movq 0x6f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13293ed
movq 0x6f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13293eb
jmp 0x132941d
movq 0x6f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5410(%rsp)
cmpq $0x0, 0x5410(%rsp)
je 0x132941b
movq 0x5410(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132941d
jmp 0x132941f
movq 0x6f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132947a
movq %rax, %rdi
callq 0x678a0
jmp 0x132947c
leaq 0x2568(%rsp), %rax
movq %rax, 0x2fd0(%rsp)
movq 0x2fd0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6e0(%rsp)
leaq 0x2568(%rsp), %rax
movq %rax, 0x3108(%rsp)
movq 0x3108(%rsp), %rax
movq %rax, 0x51d8(%rsp)
movq 0x51d8(%rsp), %rax
movq %rax, 0x6e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132956d
movq 0x6e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x51d4(%rsp) # imm = 0xFFFFFFFF
movl 0x51d4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x51d0(%rsp)
cmpl $0x1, 0x51d0(%rsp)
jne 0x132956d
movq 0x6e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x132953b
movq 0x6e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1329539
jmp 0x132956b
movq 0x6e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54f8(%rsp)
cmpq $0x0, 0x54f8(%rsp)
je 0x1329569
movq 0x54f8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132956b
jmp 0x132956d
movq 0x6e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13295c8
movq %rax, %rdi
callq 0x678a0
movq 0x6e0(%rsp), %rax
movq %rax, 0x25b0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x25bc(%rsp), %eax
leaq 0x2518(%rsp), %rdx
movq %rdx, 0x2e60(%rsp)
movq %rcx, 0x2e58(%rsp)
movl %eax, 0x2e54(%rsp)
movq 0x2e58(%rsp), %rax
movq %rax, 0x6d8(%rsp)
movb $0x0, 0x2e53(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e54(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2518(%rsp), %r10
movq %r10, 0x4748(%rsp)
movl %r9d, 0x4744(%rsp)
movl %r8d, 0x4740(%rsp)
movl %edi, 0x473c(%rsp)
movq %rsi, 0x4730(%rsp)
movq %rdx, 0x4728(%rsp)
movl %ecx, 0x4724(%rsp)
movq %rax, 0x4718(%rsp)
movq 0x4748(%rsp), %rcx
movq %rcx, 0x6d0(%rsp)
movq 0x4730(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4728(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4724(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4718(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4744(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4740(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x473c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4cf8(%rsp)
movl $0x10, 0x4cf4(%rsp)
movq 0x4cf8(%rsp), %rax
movslq 0x4cf4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4cf4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6d8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2540(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1329794
movq 0x6d8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2558(%rsp)
movb $0x1, 0x2e53(%rsp)
testb $0x1, 0x2e53(%rsp)
jne 0x13298d5
leaq 0x2518(%rsp), %rax
movq %rax, 0x3028(%rsp)
movq 0x3028(%rsp), %rax
movq %rax, 0x5398(%rsp)
movq 0x5398(%rsp), %rax
movq %rax, 0x6c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1329878
movq 0x6c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5394(%rsp) # imm = 0xFFFFFFFF
movl 0x5394(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5390(%rsp)
cmpl $0x1, 0x5390(%rsp)
jne 0x1329878
movq 0x6c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1329846
movq 0x6c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1329844
jmp 0x1329876
movq 0x6c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5418(%rsp)
cmpq $0x0, 0x5418(%rsp)
je 0x1329874
movq 0x5418(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1329876
jmp 0x1329878
movq 0x6c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13298d3
movq %rax, %rdi
callq 0x678a0
jmp 0x13298d5
leaq 0x2518(%rsp), %rax
movq %rax, 0x2fc8(%rsp)
movq 0x2fc8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6b8(%rsp)
leaq 0x2518(%rsp), %rax
movq %rax, 0x3110(%rsp)
movq 0x3110(%rsp), %rax
movq %rax, 0x51c8(%rsp)
movq 0x51c8(%rsp), %rax
movq %rax, 0x6c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13299c6
movq 0x6c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x51c4(%rsp) # imm = 0xFFFFFFFF
movl 0x51c4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x51c0(%rsp)
cmpl $0x1, 0x51c0(%rsp)
jne 0x13299c6
movq 0x6c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1329994
movq 0x6c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1329992
jmp 0x13299c4
movq 0x6c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5500(%rsp)
cmpq $0x0, 0x5500(%rsp)
je 0x13299c2
movq 0x5500(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13299c4
jmp 0x13299c6
movq 0x6c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1329a21
movq %rax, %rdi
callq 0x678a0
movq 0x6b8(%rsp), %rax
movq %rax, 0x2560(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x25bc(%rsp), %eax
leaq 0x24c8(%rsp), %rdx
movq %rdx, 0x3400(%rsp)
movq %rcx, 0x33f8(%rsp)
movl %eax, 0x33f4(%rsp)
movq 0x33f8(%rsp), %rax
movq %rax, 0x6b0(%rsp)
movb $0x0, 0x33f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x33f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x24c8(%rsp), %r10
movq %r10, 0x42e8(%rsp)
movl %r9d, 0x42e4(%rsp)
movl %r8d, 0x42e0(%rsp)
movl %edi, 0x42dc(%rsp)
movq %rsi, 0x42d0(%rsp)
movq %rdx, 0x42c8(%rsp)
movl %ecx, 0x42c4(%rsp)
movq %rax, 0x42b8(%rsp)
movq 0x42e8(%rsp), %rcx
movq %rcx, 0x6a8(%rsp)
movq 0x42d0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x42c8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x42c4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x42b8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x42e4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x42e0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x42dc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e38(%rsp)
movl $0x10, 0x4e34(%rsp)
movq 0x4e38(%rsp), %rax
movslq 0x4e34(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e34(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6b0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x24f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1329bed
movq 0x6b0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2508(%rsp)
movb $0x1, 0x33f3(%rsp)
testb $0x1, 0x33f3(%rsp)
jne 0x1329d2e
leaq 0x24c8(%rsp), %rax
movq %rax, 0x3408(%rsp)
movq 0x3408(%rsp), %rax
movq %rax, 0x4ea8(%rsp)
movq 0x4ea8(%rsp), %rax
movq %rax, 0x6a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1329cd1
movq 0x6a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4ea4(%rsp) # imm = 0xFFFFFFFF
movl 0x4ea4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4ea0(%rsp)
cmpl $0x1, 0x4ea0(%rsp)
jne 0x1329cd1
movq 0x6a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1329c9f
movq 0x6a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1329c9d
jmp 0x1329ccf
movq 0x6a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5690(%rsp)
cmpq $0x0, 0x5690(%rsp)
je 0x1329ccd
movq 0x5690(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1329ccf
jmp 0x1329cd1
movq 0x6a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1329d2c
movq %rax, %rdi
callq 0x678a0
jmp 0x1329d2e
leaq 0x24c8(%rsp), %rax
movq %rax, 0x34f0(%rsp)
movq 0x34f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x690(%rsp)
leaq 0x24c8(%rsp), %rax
movq %rax, 0x3118(%rsp)
movq 0x3118(%rsp), %rax
movq %rax, 0x51b8(%rsp)
movq 0x51b8(%rsp), %rax
movq %rax, 0x698(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1329e1f
movq 0x698(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x51b4(%rsp) # imm = 0xFFFFFFFF
movl 0x51b4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x51b0(%rsp)
cmpl $0x1, 0x51b0(%rsp)
jne 0x1329e1f
movq 0x698(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1329ded
movq 0x698(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1329deb
jmp 0x1329e1d
movq 0x698(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5508(%rsp)
cmpq $0x0, 0x5508(%rsp)
je 0x1329e1b
movq 0x5508(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1329e1d
jmp 0x1329e1f
movq 0x698(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1329e7a
movq %rax, %rdi
callq 0x678a0
movq 0x690(%rsp), %rax
movq %rax, 0x2510(%rsp)
movl $0x0, 0x24c4(%rsp)
movl 0x24c4(%rsp), %eax
cmpl 0x2b80(%rsp), %eax
jge 0x132a020
movl $0x0, 0x24c0(%rsp)
movl 0x24c0(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jge 0x132a008
movq 0x25b0(%rsp), %rax
movq %rax, 0x3608(%rsp)
movq 0x3608(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2480(%rsp)
movl $0x0, 0x247c(%rsp)
movl 0x247c(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jge 0x1329fde
movq 0x2560(%rsp), %rax
movq %rax, 0x3600(%rsp)
movq 0x3600(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2400(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x2480(%rsp), %rsi
leaq 0x2400(%rsp), %rdx
callq 0x1453940
vmovaps %zmm0, 0x23c0(%rsp)
movq 0x2510(%rsp), %rax
vmovaps 0x23c0(%rsp), %zmm0
movq %rax, 0x3eb8(%rsp)
vmovaps %zmm0, 0x3e40(%rsp)
vmovaps 0x3e40(%rsp), %zmm0
movq 0x3eb8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x2560(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2560(%rsp)
movq 0x2510(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2510(%rsp)
movl 0x247c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x247c(%rsp)
jmp 0x1329efc
movq 0x25b0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x25b0(%rsp)
movl 0x24c0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x24c0(%rsp)
jmp 0x1329eb4
jmp 0x132a00a
movl 0x24c4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x24c4(%rsp)
jmp 0x1329e95
jmp 0x132a022
movl 0x25bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x25bc(%rsp)
jmp 0x132916b
movl $0x0, 0x2bd4(%rsp)
jmp 0x1335f50
movq 0x2bc0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1331493
cmpl $0x1, 0x2b88(%rsp)
jne 0x132afb2
cmpl $0x1, 0x2b84(%rsp)
jne 0x132afb2
movl 0x2b7c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jne 0x132afb2
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movl 0x2b9c(%rsp), %ecx
movq 0x2b90(%rsp), %r8
movl 0x2b8c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c58(%rsp)
movq 0x2c58(%rsp), %rcx
movq %rcx, 0x680(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x68f(%rsp)
je 0x132a12d
movq 0x680(%rsp), %rax
movq %rax, 0x4188(%rsp)
movq 0x4188(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x68f(%rsp)
movb 0x68f(%rsp), %al
testb $0x1, %al
jne 0x132a13a
jmp 0x132a14a
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1335f50
movl $0x0, 0x23bc(%rsp)
movl 0x23bc(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jge 0x132afa2
movq 0x2bc8(%rsp), %rcx
movl 0x23bc(%rsp), %eax
leaq 0x2368(%rsp), %rdx
movq %rdx, 0x2e48(%rsp)
movq %rcx, 0x2e40(%rsp)
movl %eax, 0x2e3c(%rsp)
movq 0x2e40(%rsp), %rax
movq %rax, 0x678(%rsp)
movb $0x0, 0x2e3b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e3c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2368(%rsp), %r10
movq %r10, 0x4780(%rsp)
movl %r9d, 0x477c(%rsp)
movl %r8d, 0x4778(%rsp)
movl %edi, 0x4774(%rsp)
movq %rsi, 0x4768(%rsp)
movq %rdx, 0x4760(%rsp)
movl %ecx, 0x475c(%rsp)
movq %rax, 0x4750(%rsp)
movq 0x4780(%rsp), %rcx
movq %rcx, 0x670(%rsp)
movq 0x4768(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4760(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x475c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4750(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x477c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4778(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4774(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4ce8(%rsp)
movl $0x10, 0x4ce4(%rsp)
movq 0x4ce8(%rsp), %rax
movslq 0x4ce4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4ce4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x678(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2390(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x132a325
movq 0x678(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x23a8(%rsp)
movb $0x1, 0x2e3b(%rsp)
testb $0x1, 0x2e3b(%rsp)
jne 0x132a466
leaq 0x2368(%rsp), %rax
movq %rax, 0x3030(%rsp)
movq 0x3030(%rsp), %rax
movq %rax, 0x5388(%rsp)
movq 0x5388(%rsp), %rax
movq %rax, 0x668(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132a409
movq 0x668(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5384(%rsp) # imm = 0xFFFFFFFF
movl 0x5384(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5380(%rsp)
cmpl $0x1, 0x5380(%rsp)
jne 0x132a409
movq 0x668(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x132a3d7
movq 0x668(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x132a3d5
jmp 0x132a407
movq 0x668(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5420(%rsp)
cmpq $0x0, 0x5420(%rsp)
je 0x132a405
movq 0x5420(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132a407
jmp 0x132a409
movq 0x668(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132a464
movq %rax, %rdi
callq 0x678a0
jmp 0x132a466
leaq 0x2368(%rsp), %rax
movq %rax, 0x2fc0(%rsp)
movq 0x2fc0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x658(%rsp)
leaq 0x2368(%rsp), %rax
movq %rax, 0x3120(%rsp)
movq 0x3120(%rsp), %rax
movq %rax, 0x51a8(%rsp)
movq 0x51a8(%rsp), %rax
movq %rax, 0x660(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132a557
movq 0x660(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x51a4(%rsp) # imm = 0xFFFFFFFF
movl 0x51a4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x51a0(%rsp)
cmpl $0x1, 0x51a0(%rsp)
jne 0x132a557
movq 0x660(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x132a525
movq 0x660(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x132a523
jmp 0x132a555
movq 0x660(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5510(%rsp)
cmpq $0x0, 0x5510(%rsp)
je 0x132a553
movq 0x5510(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132a555
jmp 0x132a557
movq 0x660(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132a5b2
movq %rax, %rdi
callq 0x678a0
movq 0x658(%rsp), %rax
movq %rax, 0x23b0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x23bc(%rsp), %eax
leaq 0x2318(%rsp), %rdx
movq %rdx, 0x2e30(%rsp)
movq %rcx, 0x2e28(%rsp)
movl %eax, 0x2e24(%rsp)
movq 0x2e28(%rsp), %rax
movq %rax, 0x650(%rsp)
movb $0x0, 0x2e23(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e24(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2318(%rsp), %r10
movq %r10, 0x47b8(%rsp)
movl %r9d, 0x47b4(%rsp)
movl %r8d, 0x47b0(%rsp)
movl %edi, 0x47ac(%rsp)
movq %rsi, 0x47a0(%rsp)
movq %rdx, 0x4798(%rsp)
movl %ecx, 0x4794(%rsp)
movq %rax, 0x4788(%rsp)
movq 0x47b8(%rsp), %rcx
movq %rcx, 0x648(%rsp)
movq 0x47a0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4798(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4794(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4788(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x47b4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x47b0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x47ac(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4cd8(%rsp)
movl $0x10, 0x4cd4(%rsp)
movq 0x4cd8(%rsp), %rax
movslq 0x4cd4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4cd4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x650(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2340(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x132a77e
movq 0x650(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2358(%rsp)
movb $0x1, 0x2e23(%rsp)
testb $0x1, 0x2e23(%rsp)
jne 0x132a8bf
leaq 0x2318(%rsp), %rax
movq %rax, 0x3038(%rsp)
movq 0x3038(%rsp), %rax
movq %rax, 0x5378(%rsp)
movq 0x5378(%rsp), %rax
movq %rax, 0x640(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132a862
movq 0x640(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5374(%rsp) # imm = 0xFFFFFFFF
movl 0x5374(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5370(%rsp)
cmpl $0x1, 0x5370(%rsp)
jne 0x132a862
movq 0x640(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x132a830
movq 0x640(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x132a82e
jmp 0x132a860
movq 0x640(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5428(%rsp)
cmpq $0x0, 0x5428(%rsp)
je 0x132a85e
movq 0x5428(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132a860
jmp 0x132a862
movq 0x640(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132a8bd
movq %rax, %rdi
callq 0x678a0
jmp 0x132a8bf
leaq 0x2318(%rsp), %rax
movq %rax, 0x2fb8(%rsp)
movq 0x2fb8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x630(%rsp)
leaq 0x2318(%rsp), %rax
movq %rax, 0x3128(%rsp)
movq 0x3128(%rsp), %rax
movq %rax, 0x5198(%rsp)
movq 0x5198(%rsp), %rax
movq %rax, 0x638(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132a9b0
movq 0x638(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5194(%rsp) # imm = 0xFFFFFFFF
movl 0x5194(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5190(%rsp)
cmpl $0x1, 0x5190(%rsp)
jne 0x132a9b0
movq 0x638(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x132a97e
movq 0x638(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x132a97c
jmp 0x132a9ae
movq 0x638(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5518(%rsp)
cmpq $0x0, 0x5518(%rsp)
je 0x132a9ac
movq 0x5518(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132a9ae
jmp 0x132a9b0
movq 0x638(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132aa0b
movq %rax, %rdi
callq 0x678a0
movq 0x630(%rsp), %rax
movq %rax, 0x2360(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x23bc(%rsp), %eax
leaq 0x22c8(%rsp), %rdx
movq %rdx, 0x33e0(%rsp)
movq %rcx, 0x33d8(%rsp)
movl %eax, 0x33d4(%rsp)
movq 0x33d8(%rsp), %rax
movq %rax, 0x628(%rsp)
movb $0x0, 0x33d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x33d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x22c8(%rsp), %r10
movq %r10, 0x4320(%rsp)
movl %r9d, 0x431c(%rsp)
movl %r8d, 0x4318(%rsp)
movl %edi, 0x4314(%rsp)
movq %rsi, 0x4308(%rsp)
movq %rdx, 0x4300(%rsp)
movl %ecx, 0x42fc(%rsp)
movq %rax, 0x42f0(%rsp)
movq 0x4320(%rsp), %rcx
movq %rcx, 0x620(%rsp)
movq 0x4308(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4300(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x42fc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x42f0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x431c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4318(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4314(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e28(%rsp)
movl $0x10, 0x4e24(%rsp)
movq 0x4e28(%rsp), %rax
movslq 0x4e24(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e24(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x628(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x22f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x132abd7
movq 0x628(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2308(%rsp)
movb $0x1, 0x33d3(%rsp)
testb $0x1, 0x33d3(%rsp)
jne 0x132ad18
leaq 0x22c8(%rsp), %rax
movq %rax, 0x33e8(%rsp)
movq 0x33e8(%rsp), %rax
movq %rax, 0x4eb8(%rsp)
movq 0x4eb8(%rsp), %rax
movq %rax, 0x618(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132acbb
movq 0x618(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4eb4(%rsp) # imm = 0xFFFFFFFF
movl 0x4eb4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4eb0(%rsp)
cmpl $0x1, 0x4eb0(%rsp)
jne 0x132acbb
movq 0x618(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x132ac89
movq 0x618(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x132ac87
jmp 0x132acb9
movq 0x618(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5688(%rsp)
cmpq $0x0, 0x5688(%rsp)
je 0x132acb7
movq 0x5688(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132acb9
jmp 0x132acbb
movq 0x618(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132ad16
movq %rax, %rdi
callq 0x678a0
jmp 0x132ad18
leaq 0x22c8(%rsp), %rax
movq %rax, 0x34e8(%rsp)
movq 0x34e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x608(%rsp)
leaq 0x22c8(%rsp), %rax
movq %rax, 0x3130(%rsp)
movq 0x3130(%rsp), %rax
movq %rax, 0x5188(%rsp)
movq 0x5188(%rsp), %rax
movq %rax, 0x610(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132ae09
movq 0x610(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5184(%rsp) # imm = 0xFFFFFFFF
movl 0x5184(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5180(%rsp)
cmpl $0x1, 0x5180(%rsp)
jne 0x132ae09
movq 0x610(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x132add7
movq 0x610(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x132add5
jmp 0x132ae07
movq 0x610(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5520(%rsp)
cmpq $0x0, 0x5520(%rsp)
je 0x132ae05
movq 0x5520(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132ae07
jmp 0x132ae09
movq 0x610(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132ae64
movq %rax, %rdi
callq 0x678a0
movq 0x608(%rsp), %rax
movq %rax, 0x2310(%rsp)
movq 0x2360(%rsp), %rax
movq %rax, 0x35f8(%rsp)
movq 0x35f8(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2280(%rsp)
movl $0x0, 0x227c(%rsp)
movl 0x227c(%rsp), %eax
cmpl 0x2b98(%rsp), %eax
jge 0x132af8a
movq 0x23b0(%rsp), %rax
movq %rax, 0x35f0(%rsp)
movq 0x35f0(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2200(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x2200(%rsp), %rsi
leaq 0x2280(%rsp), %rdx
callq 0x1453940
vmovaps %zmm0, 0x21c0(%rsp)
movq 0x2310(%rsp), %rax
vmovaps 0x21c0(%rsp), %zmm0
movq %rax, 0x3e38(%rsp)
vmovaps %zmm0, 0x3dc0(%rsp)
vmovaps 0x3dc0(%rsp), %zmm0
movq 0x3e38(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x23b0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x23b0(%rsp)
movq 0x2310(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2310(%rsp)
movl 0x227c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x227c(%rsp)
jmp 0x132aea8
jmp 0x132af8c
movl 0x23bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x23bc(%rsp)
jmp 0x132a155
movl $0x0, 0x2bd4(%rsp)
jmp 0x1335f50
movl 0x2b88(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jne 0x132bb14
movl 0x2b84(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jne 0x132bb14
cmpl $0x1, 0x2b7c(%rsp)
jne 0x132bb14
cmpl $0x1, 0x2b6c(%rsp)
jne 0x132bb14
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movl 0x2b9c(%rsp), %ecx
movq 0x2b90(%rsp), %r8
movl 0x2b8c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c50(%rsp)
movq 0x2c50(%rsp), %rcx
movq %rcx, 0x5f8(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x607(%rsp)
je 0x132b099
movq 0x5f8(%rsp), %rax
movq %rax, 0x4190(%rsp)
movq 0x4190(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x607(%rsp)
movb 0x607(%rsp), %al
testb $0x1, %al
jne 0x132b0a6
jmp 0x132b0b6
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1335f50
movl $0x0, 0x21bc(%rsp)
movl 0x21bc(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jge 0x132bb04
movq 0x2bc8(%rsp), %rcx
movl 0x21bc(%rsp), %eax
leaq 0x2168(%rsp), %rdx
movq %rdx, 0x2e18(%rsp)
movq %rcx, 0x2e10(%rsp)
movl %eax, 0x2e0c(%rsp)
movq 0x2e10(%rsp), %rax
movq %rax, 0x5f0(%rsp)
movb $0x0, 0x2e0b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e0c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2168(%rsp), %r10
movq %r10, 0x47f0(%rsp)
movl %r9d, 0x47ec(%rsp)
movl %r8d, 0x47e8(%rsp)
movl %edi, 0x47e4(%rsp)
movq %rsi, 0x47d8(%rsp)
movq %rdx, 0x47d0(%rsp)
movl %ecx, 0x47cc(%rsp)
movq %rax, 0x47c0(%rsp)
movq 0x47f0(%rsp), %rcx
movq %rcx, 0x5e8(%rsp)
movq 0x47d8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x47d0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x47cc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x47c0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x47ec(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x47e8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x47e4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4cc8(%rsp)
movl $0x10, 0x4cc4(%rsp)
movq 0x4cc8(%rsp), %rax
movslq 0x4cc4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4cc4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5f0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2190(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x132b291
movq 0x5f0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x21a8(%rsp)
movb $0x1, 0x2e0b(%rsp)
testb $0x1, 0x2e0b(%rsp)
jne 0x132b3d2
leaq 0x2168(%rsp), %rax
movq %rax, 0x3040(%rsp)
movq 0x3040(%rsp), %rax
movq %rax, 0x5368(%rsp)
movq 0x5368(%rsp), %rax
movq %rax, 0x5e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132b375
movq 0x5e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5364(%rsp) # imm = 0xFFFFFFFF
movl 0x5364(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5360(%rsp)
cmpl $0x1, 0x5360(%rsp)
jne 0x132b375
movq 0x5e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x132b343
movq 0x5e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x132b341
jmp 0x132b373
movq 0x5e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5430(%rsp)
cmpq $0x0, 0x5430(%rsp)
je 0x132b371
movq 0x5430(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132b373
jmp 0x132b375
movq 0x5e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132b3d0
movq %rax, %rdi
callq 0x678a0
jmp 0x132b3d2
leaq 0x2168(%rsp), %rax
movq %rax, 0x2fb0(%rsp)
movq 0x2fb0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5d0(%rsp)
leaq 0x2168(%rsp), %rax
movq %rax, 0x3138(%rsp)
movq 0x3138(%rsp), %rax
movq %rax, 0x5178(%rsp)
movq 0x5178(%rsp), %rax
movq %rax, 0x5d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132b4c3
movq 0x5d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5174(%rsp) # imm = 0xFFFFFFFF
movl 0x5174(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5170(%rsp)
cmpl $0x1, 0x5170(%rsp)
jne 0x132b4c3
movq 0x5d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x132b491
movq 0x5d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x132b48f
jmp 0x132b4c1
movq 0x5d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5528(%rsp)
cmpq $0x0, 0x5528(%rsp)
je 0x132b4bf
movq 0x5528(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132b4c1
jmp 0x132b4c3
movq 0x5d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132b51e
movq %rax, %rdi
callq 0x678a0
movq 0x5d0(%rsp), %rax
movq %rax, 0x21b0(%rsp)
movq 0x2bc0(%rsp), %rax
movq %rax, 0x2fa8(%rsp)
movq 0x2fa8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2160(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x21bc(%rsp), %eax
leaq 0x2110(%rsp), %rdx
movq %rdx, 0x33c0(%rsp)
movq %rcx, 0x33b8(%rsp)
movl %eax, 0x33b4(%rsp)
movq 0x33b8(%rsp), %rax
movq %rax, 0x5c8(%rsp)
movb $0x0, 0x33b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x33b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2110(%rsp), %r10
movq %r10, 0x4358(%rsp)
movl %r9d, 0x4354(%rsp)
movl %r8d, 0x4350(%rsp)
movl %edi, 0x434c(%rsp)
movq %rsi, 0x4340(%rsp)
movq %rdx, 0x4338(%rsp)
movl %ecx, 0x4334(%rsp)
movq %rax, 0x4328(%rsp)
movq 0x4358(%rsp), %rcx
movq %rcx, 0x5c0(%rsp)
movq 0x4340(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4338(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4334(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4328(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4354(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4350(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x434c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e18(%rsp)
movl $0x10, 0x4e14(%rsp)
movq 0x4e18(%rsp), %rax
movslq 0x4e14(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e14(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5c8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2138(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x132b70d
movq 0x5c8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2150(%rsp)
movb $0x1, 0x33b3(%rsp)
testb $0x1, 0x33b3(%rsp)
jne 0x132b84e
leaq 0x2110(%rsp), %rax
movq %rax, 0x33c8(%rsp)
movq 0x33c8(%rsp), %rax
movq %rax, 0x4ec8(%rsp)
movq 0x4ec8(%rsp), %rax
movq %rax, 0x5b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132b7f1
movq 0x5b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4ec4(%rsp) # imm = 0xFFFFFFFF
movl 0x4ec4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4ec0(%rsp)
cmpl $0x1, 0x4ec0(%rsp)
jne 0x132b7f1
movq 0x5b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x132b7bf
movq 0x5b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x132b7bd
jmp 0x132b7ef
movq 0x5b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5680(%rsp)
cmpq $0x0, 0x5680(%rsp)
je 0x132b7ed
movq 0x5680(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132b7ef
jmp 0x132b7f1
movq 0x5b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132b84c
movq %rax, %rdi
callq 0x678a0
jmp 0x132b84e
leaq 0x2110(%rsp), %rax
movq %rax, 0x34e0(%rsp)
movq 0x34e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5a8(%rsp)
leaq 0x2110(%rsp), %rax
movq %rax, 0x3140(%rsp)
movq 0x3140(%rsp), %rax
movq %rax, 0x5168(%rsp)
movq 0x5168(%rsp), %rax
movq %rax, 0x5b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132b93f
movq 0x5b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5164(%rsp) # imm = 0xFFFFFFFF
movl 0x5164(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5160(%rsp)
cmpl $0x1, 0x5160(%rsp)
jne 0x132b93f
movq 0x5b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x132b90d
movq 0x5b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x132b90b
jmp 0x132b93d
movq 0x5b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5530(%rsp)
cmpq $0x0, 0x5530(%rsp)
je 0x132b93b
movq 0x5530(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132b93d
jmp 0x132b93f
movq 0x5b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132b99a
movq %rax, %rdi
callq 0x678a0
movq 0x5a8(%rsp), %rax
movq %rax, 0x2158(%rsp)
movl $0x0, 0x210c(%rsp)
movl 0x210c(%rsp), %eax
cmpl 0x2b98(%rsp), %eax
jge 0x132baec
movq 0x21b0(%rsp), %rax
movq %rax, 0x35e8(%rsp)
movq 0x35e8(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x20c0(%rsp)
movq 0x2160(%rsp), %rax
vmovss (%rax), %xmm0
vmovss %xmm0, 0x4174(%rsp)
vbroadcastss 0x4174(%rsp), %zmm0
vmovaps %zmm0, 0x4100(%rsp)
vmovaps 0x4100(%rsp), %zmm0
vmovaps %zmm0, 0x2080(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x20c0(%rsp), %rsi
leaq 0x2080(%rsp), %rdx
callq 0x1453940
vmovaps %zmm0, 0x2040(%rsp)
movq 0x2158(%rsp), %rax
vmovaps 0x2040(%rsp), %zmm0
movq %rax, 0x3db8(%rsp)
vmovaps %zmm0, 0x3d40(%rsp)
vmovaps 0x3d40(%rsp), %zmm0
movq 0x3db8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x21b0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x21b0(%rsp)
movq 0x2160(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x2160(%rsp)
movq 0x2158(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2158(%rsp)
movl 0x210c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x210c(%rsp)
jmp 0x132b9b5
jmp 0x132baee
movl 0x21bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x21bc(%rsp)
jmp 0x132b0c1
movl $0x0, 0x2bd4(%rsp)
jmp 0x1335f50
cmpl $0x1, 0x2ba8(%rsp)
jne 0x132ca60
cmpl $0x1, 0x2ba4(%rsp)
jne 0x132ca60
movl 0x2b7c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jne 0x132ca60
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b7c(%rsp), %ecx
movq 0x2b70(%rsp), %r8
movl 0x2b6c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c48(%rsp)
movq 0x2c48(%rsp), %rcx
movq %rcx, 0x598(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x5a7(%rsp)
je 0x132bbe7
movq 0x598(%rsp), %rax
movq %rax, 0x4198(%rsp)
movq 0x4198(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x5a7(%rsp)
movb 0x5a7(%rsp), %al
testb $0x1, %al
jne 0x132bbf4
jmp 0x132bc04
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1335f50
movl $0x0, 0x203c(%rsp)
movl 0x203c(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x132ca50
movq 0x2bc8(%rsp), %rcx
movl 0x203c(%rsp), %eax
leaq 0x1fe8(%rsp), %rdx
movq %rdx, 0x2e00(%rsp)
movq %rcx, 0x2df8(%rsp)
movl %eax, 0x2df4(%rsp)
movq 0x2df8(%rsp), %rax
movq %rax, 0x590(%rsp)
movb $0x0, 0x2df3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2df4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1fe8(%rsp), %r10
movq %r10, 0x4828(%rsp)
movl %r9d, 0x4824(%rsp)
movl %r8d, 0x4820(%rsp)
movl %edi, 0x481c(%rsp)
movq %rsi, 0x4810(%rsp)
movq %rdx, 0x4808(%rsp)
movl %ecx, 0x4804(%rsp)
movq %rax, 0x47f8(%rsp)
movq 0x4828(%rsp), %rcx
movq %rcx, 0x588(%rsp)
movq 0x4810(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4808(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4804(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x47f8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4824(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4820(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x481c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4cb8(%rsp)
movl $0x10, 0x4cb4(%rsp)
movq 0x4cb8(%rsp), %rax
movslq 0x4cb4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4cb4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x590(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2010(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x132bddf
movq 0x590(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2028(%rsp)
movb $0x1, 0x2df3(%rsp)
testb $0x1, 0x2df3(%rsp)
jne 0x132bf20
leaq 0x1fe8(%rsp), %rax
movq %rax, 0x3048(%rsp)
movq 0x3048(%rsp), %rax
movq %rax, 0x5358(%rsp)
movq 0x5358(%rsp), %rax
movq %rax, 0x580(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132bec3
movq 0x580(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5354(%rsp) # imm = 0xFFFFFFFF
movl 0x5354(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5350(%rsp)
cmpl $0x1, 0x5350(%rsp)
jne 0x132bec3
movq 0x580(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x132be91
movq 0x580(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x132be8f
jmp 0x132bec1
movq 0x580(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5438(%rsp)
cmpq $0x0, 0x5438(%rsp)
je 0x132bebf
movq 0x5438(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132bec1
jmp 0x132bec3
movq 0x580(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132bf1e
movq %rax, %rdi
callq 0x678a0
jmp 0x132bf20
leaq 0x1fe8(%rsp), %rax
movq %rax, 0x2fa0(%rsp)
movq 0x2fa0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x570(%rsp)
leaq 0x1fe8(%rsp), %rax
movq %rax, 0x3148(%rsp)
movq 0x3148(%rsp), %rax
movq %rax, 0x5158(%rsp)
movq 0x5158(%rsp), %rax
movq %rax, 0x578(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132c011
movq 0x578(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5154(%rsp) # imm = 0xFFFFFFFF
movl 0x5154(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5150(%rsp)
cmpl $0x1, 0x5150(%rsp)
jne 0x132c011
movq 0x578(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x132bfdf
movq 0x578(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x132bfdd
jmp 0x132c00f
movq 0x578(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5538(%rsp)
cmpq $0x0, 0x5538(%rsp)
je 0x132c00d
movq 0x5538(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132c00f
jmp 0x132c011
movq 0x578(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132c06c
movq %rax, %rdi
callq 0x678a0
movq 0x570(%rsp), %rax
movq %rax, 0x2030(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x203c(%rsp), %eax
leaq 0x1f98(%rsp), %rdx
movq %rdx, 0x2de8(%rsp)
movq %rcx, 0x2de0(%rsp)
movl %eax, 0x2ddc(%rsp)
movq 0x2de0(%rsp), %rax
movq %rax, 0x568(%rsp)
movb $0x0, 0x2ddb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2ddc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1f98(%rsp), %r10
movq %r10, 0x4860(%rsp)
movl %r9d, 0x485c(%rsp)
movl %r8d, 0x4858(%rsp)
movl %edi, 0x4854(%rsp)
movq %rsi, 0x4848(%rsp)
movq %rdx, 0x4840(%rsp)
movl %ecx, 0x483c(%rsp)
movq %rax, 0x4830(%rsp)
movq 0x4860(%rsp), %rcx
movq %rcx, 0x560(%rsp)
movq 0x4848(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4840(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x483c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4830(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x485c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4858(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4854(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4ca8(%rsp)
movl $0x10, 0x4ca4(%rsp)
movq 0x4ca8(%rsp), %rax
movslq 0x4ca4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4ca4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x568(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1fc0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x132c238
movq 0x568(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1fd8(%rsp)
movb $0x1, 0x2ddb(%rsp)
testb $0x1, 0x2ddb(%rsp)
jne 0x132c379
leaq 0x1f98(%rsp), %rax
movq %rax, 0x3050(%rsp)
movq 0x3050(%rsp), %rax
movq %rax, 0x5348(%rsp)
movq 0x5348(%rsp), %rax
movq %rax, 0x558(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132c31c
movq 0x558(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5344(%rsp) # imm = 0xFFFFFFFF
movl 0x5344(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5340(%rsp)
cmpl $0x1, 0x5340(%rsp)
jne 0x132c31c
movq 0x558(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x132c2ea
movq 0x558(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x132c2e8
jmp 0x132c31a
movq 0x558(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5440(%rsp)
cmpq $0x0, 0x5440(%rsp)
je 0x132c318
movq 0x5440(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132c31a
jmp 0x132c31c
movq 0x558(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132c377
movq %rax, %rdi
callq 0x678a0
jmp 0x132c379
leaq 0x1f98(%rsp), %rax
movq %rax, 0x2f98(%rsp)
movq 0x2f98(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x548(%rsp)
leaq 0x1f98(%rsp), %rax
movq %rax, 0x3150(%rsp)
movq 0x3150(%rsp), %rax
movq %rax, 0x5148(%rsp)
movq 0x5148(%rsp), %rax
movq %rax, 0x550(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132c46a
movq 0x550(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5144(%rsp) # imm = 0xFFFFFFFF
movl 0x5144(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5140(%rsp)
cmpl $0x1, 0x5140(%rsp)
jne 0x132c46a
movq 0x550(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x132c438
movq 0x550(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x132c436
jmp 0x132c468
movq 0x550(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5540(%rsp)
cmpq $0x0, 0x5540(%rsp)
je 0x132c466
movq 0x5540(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132c468
jmp 0x132c46a
movq 0x550(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132c4c5
movq %rax, %rdi
callq 0x678a0
movq 0x548(%rsp), %rax
movq %rax, 0x1fe0(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x203c(%rsp), %eax
leaq 0x1f48(%rsp), %rdx
movq %rdx, 0x33a0(%rsp)
movq %rcx, 0x3398(%rsp)
movl %eax, 0x3394(%rsp)
movq 0x3398(%rsp), %rax
movq %rax, 0x540(%rsp)
movb $0x0, 0x3393(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3394(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1f48(%rsp), %r10
movq %r10, 0x4390(%rsp)
movl %r9d, 0x438c(%rsp)
movl %r8d, 0x4388(%rsp)
movl %edi, 0x4384(%rsp)
movq %rsi, 0x4378(%rsp)
movq %rdx, 0x4370(%rsp)
movl %ecx, 0x436c(%rsp)
movq %rax, 0x4360(%rsp)
movq 0x4390(%rsp), %rcx
movq %rcx, 0x538(%rsp)
movq 0x4378(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4370(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x436c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4360(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x438c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4388(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4384(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e08(%rsp)
movl $0x10, 0x4e04(%rsp)
movq 0x4e08(%rsp), %rax
movslq 0x4e04(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e04(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x540(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1f70(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x132c691
movq 0x540(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1f88(%rsp)
movb $0x1, 0x3393(%rsp)
testb $0x1, 0x3393(%rsp)
jne 0x132c7d2
leaq 0x1f48(%rsp), %rax
movq %rax, 0x33a8(%rsp)
movq 0x33a8(%rsp), %rax
movq %rax, 0x4ed8(%rsp)
movq 0x4ed8(%rsp), %rax
movq %rax, 0x530(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132c775
movq 0x530(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4ed4(%rsp) # imm = 0xFFFFFFFF
movl 0x4ed4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4ed0(%rsp)
cmpl $0x1, 0x4ed0(%rsp)
jne 0x132c775
movq 0x530(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x132c743
movq 0x530(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x132c741
jmp 0x132c773
movq 0x530(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5678(%rsp)
cmpq $0x0, 0x5678(%rsp)
je 0x132c771
movq 0x5678(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132c773
jmp 0x132c775
movq 0x530(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132c7d0
movq %rax, %rdi
callq 0x678a0
jmp 0x132c7d2
leaq 0x1f48(%rsp), %rax
movq %rax, 0x34d8(%rsp)
movq 0x34d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x520(%rsp)
leaq 0x1f48(%rsp), %rax
movq %rax, 0x3158(%rsp)
movq 0x3158(%rsp), %rax
movq %rax, 0x5138(%rsp)
movq 0x5138(%rsp), %rax
movq %rax, 0x528(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132c8c3
movq 0x528(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5134(%rsp) # imm = 0xFFFFFFFF
movl 0x5134(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5130(%rsp)
cmpl $0x1, 0x5130(%rsp)
jne 0x132c8c3
movq 0x528(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x132c891
movq 0x528(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x132c88f
jmp 0x132c8c1
movq 0x528(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5548(%rsp)
cmpq $0x0, 0x5548(%rsp)
je 0x132c8bf
movq 0x5548(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132c8c1
jmp 0x132c8c3
movq 0x528(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132c91e
movq %rax, %rdi
callq 0x678a0
movq 0x520(%rsp), %rax
movq %rax, 0x1f90(%rsp)
movq 0x2030(%rsp), %rax
movq %rax, 0x35e0(%rsp)
movq 0x35e0(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1f00(%rsp)
movl $0x0, 0x1efc(%rsp)
movl 0x1efc(%rsp), %eax
cmpl 0x2b78(%rsp), %eax
jge 0x132ca38
movq 0x1fe0(%rsp), %rax
movq %rax, 0x35d8(%rsp)
movq 0x35d8(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1e80(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x1f00(%rsp), %rsi
leaq 0x1e80(%rsp), %rdx
callq 0x1453940
vmovaps %zmm0, 0x1e40(%rsp)
movq 0x1f90(%rsp), %rax
vmovaps 0x1e40(%rsp), %zmm0
movq %rax, 0x3d38(%rsp)
vmovaps %zmm0, 0x3cc0(%rsp)
vmovaps 0x3cc0(%rsp), %zmm0
movq 0x3d38(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x1fe0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1fe0(%rsp)
movq 0x1f90(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1f90(%rsp)
movl 0x1efc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1efc(%rsp)
jmp 0x132c95f
jmp 0x132ca3a
movl 0x203c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x203c(%rsp)
jmp 0x132bc0f
movl $0x0, 0x2bd4(%rsp)
jmp 0x1335f50
movl 0x2b88(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jne 0x132d5b6
movl 0x2b84(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jne 0x132d5b6
cmpl $0x1, 0x2b9c(%rsp)
jne 0x132d5b6
cmpl $0x1, 0x2b8c(%rsp)
jne 0x132d5b6
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b7c(%rsp), %ecx
movq 0x2b70(%rsp), %r8
movl 0x2b6c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c40(%rsp)
movq 0x2c40(%rsp), %rcx
movq %rcx, 0x510(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x51f(%rsp)
je 0x132cb47
movq 0x510(%rsp), %rax
movq %rax, 0x41a0(%rsp)
movq 0x41a0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x51f(%rsp)
movb 0x51f(%rsp), %al
testb $0x1, %al
jne 0x132cb54
jmp 0x132cb64
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1335f50
movl $0x0, 0x1e3c(%rsp)
movl 0x1e3c(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x132d5a6
movq 0x2bc8(%rsp), %rax
movq %rax, 0x2f90(%rsp)
movq 0x2f90(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1e30(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x1e3c(%rsp), %eax
leaq 0x1de0(%rsp), %rdx
movq %rdx, 0x2dd0(%rsp)
movq %rcx, 0x2dc8(%rsp)
movl %eax, 0x2dc4(%rsp)
movq 0x2dc8(%rsp), %rax
movq %rax, 0x508(%rsp)
movb $0x0, 0x2dc3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2dc4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1de0(%rsp), %r10
movq %r10, 0x4898(%rsp)
movl %r9d, 0x4894(%rsp)
movl %r8d, 0x4890(%rsp)
movl %edi, 0x488c(%rsp)
movq %rsi, 0x4880(%rsp)
movq %rdx, 0x4878(%rsp)
movl %ecx, 0x4874(%rsp)
movq %rax, 0x4868(%rsp)
movq 0x4898(%rsp), %rcx
movq %rcx, 0x500(%rsp)
movq 0x4880(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4878(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4874(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4868(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4894(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4890(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x488c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c98(%rsp)
movl $0x10, 0x4c94(%rsp)
movq 0x4c98(%rsp), %rax
movslq 0x4c94(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c94(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x508(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1e08(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x132cd62
movq 0x508(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1e20(%rsp)
movb $0x1, 0x2dc3(%rsp)
testb $0x1, 0x2dc3(%rsp)
jne 0x132cea3
leaq 0x1de0(%rsp), %rax
movq %rax, 0x3058(%rsp)
movq 0x3058(%rsp), %rax
movq %rax, 0x5338(%rsp)
movq 0x5338(%rsp), %rax
movq %rax, 0x4f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132ce46
movq 0x4f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5334(%rsp) # imm = 0xFFFFFFFF
movl 0x5334(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5330(%rsp)
cmpl $0x1, 0x5330(%rsp)
jne 0x132ce46
movq 0x4f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x132ce14
movq 0x4f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x132ce12
jmp 0x132ce44
movq 0x4f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5448(%rsp)
cmpq $0x0, 0x5448(%rsp)
je 0x132ce42
movq 0x5448(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132ce44
jmp 0x132ce46
movq 0x4f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132cea1
movq %rax, %rdi
callq 0x678a0
jmp 0x132cea3
leaq 0x1de0(%rsp), %rax
movq %rax, 0x2f88(%rsp)
movq 0x2f88(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4e8(%rsp)
leaq 0x1de0(%rsp), %rax
movq %rax, 0x3160(%rsp)
movq 0x3160(%rsp), %rax
movq %rax, 0x5128(%rsp)
movq 0x5128(%rsp), %rax
movq %rax, 0x4f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132cf94
movq 0x4f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5124(%rsp) # imm = 0xFFFFFFFF
movl 0x5124(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5120(%rsp)
cmpl $0x1, 0x5120(%rsp)
jne 0x132cf94
movq 0x4f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x132cf62
movq 0x4f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x132cf60
jmp 0x132cf92
movq 0x4f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5550(%rsp)
cmpq $0x0, 0x5550(%rsp)
je 0x132cf90
movq 0x5550(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132cf92
jmp 0x132cf94
movq 0x4f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132cfef
movq %rax, %rdi
callq 0x678a0
movq 0x4e8(%rsp), %rax
movq %rax, 0x1e28(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x1e3c(%rsp), %eax
leaq 0x1d90(%rsp), %rdx
movq %rdx, 0x3380(%rsp)
movq %rcx, 0x3378(%rsp)
movl %eax, 0x3374(%rsp)
movq 0x3378(%rsp), %rax
movq %rax, 0x4e0(%rsp)
movb $0x0, 0x3373(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3374(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1d90(%rsp), %r10
movq %r10, 0x43c8(%rsp)
movl %r9d, 0x43c4(%rsp)
movl %r8d, 0x43c0(%rsp)
movl %edi, 0x43bc(%rsp)
movq %rsi, 0x43b0(%rsp)
movq %rdx, 0x43a8(%rsp)
movl %ecx, 0x43a4(%rsp)
movq %rax, 0x4398(%rsp)
movq 0x43c8(%rsp), %rcx
movq %rcx, 0x4d8(%rsp)
movq 0x43b0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x43a8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x43a4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4398(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x43c4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x43c0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x43bc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4df8(%rsp)
movl $0x10, 0x4df4(%rsp)
movq 0x4df8(%rsp), %rax
movslq 0x4df4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4df4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4e0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1db8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x132d1bb
movq 0x4e0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1dd0(%rsp)
movb $0x1, 0x3373(%rsp)
testb $0x1, 0x3373(%rsp)
jne 0x132d2fc
leaq 0x1d90(%rsp), %rax
movq %rax, 0x3388(%rsp)
movq 0x3388(%rsp), %rax
movq %rax, 0x4ee8(%rsp)
movq 0x4ee8(%rsp), %rax
movq %rax, 0x4d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132d29f
movq 0x4d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4ee4(%rsp) # imm = 0xFFFFFFFF
movl 0x4ee4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4ee0(%rsp)
cmpl $0x1, 0x4ee0(%rsp)
jne 0x132d29f
movq 0x4d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x132d26d
movq 0x4d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x132d26b
jmp 0x132d29d
movq 0x4d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5670(%rsp)
cmpq $0x0, 0x5670(%rsp)
je 0x132d29b
movq 0x5670(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132d29d
jmp 0x132d29f
movq 0x4d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132d2fa
movq %rax, %rdi
callq 0x678a0
jmp 0x132d2fc
leaq 0x1d90(%rsp), %rax
movq %rax, 0x34d0(%rsp)
movq 0x34d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4c0(%rsp)
leaq 0x1d90(%rsp), %rax
movq %rax, 0x3168(%rsp)
movq 0x3168(%rsp), %rax
movq %rax, 0x5118(%rsp)
movq 0x5118(%rsp), %rax
movq %rax, 0x4c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132d3ed
movq 0x4c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5114(%rsp) # imm = 0xFFFFFFFF
movl 0x5114(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5110(%rsp)
cmpl $0x1, 0x5110(%rsp)
jne 0x132d3ed
movq 0x4c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x132d3bb
movq 0x4c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x132d3b9
jmp 0x132d3eb
movq 0x4c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5558(%rsp)
cmpq $0x0, 0x5558(%rsp)
je 0x132d3e9
movq 0x5558(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132d3eb
jmp 0x132d3ed
movq 0x4c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132d448
movq %rax, %rdi
callq 0x678a0
movq 0x4c0(%rsp), %rax
movq %rax, 0x1dd8(%rsp)
movl $0x0, 0x1d8c(%rsp)
movl 0x1d8c(%rsp), %eax
cmpl 0x2b78(%rsp), %eax
jge 0x132d58e
movq 0x1e30(%rsp), %rax
vmovss (%rax), %xmm0
vmovss %xmm0, 0x40fc(%rsp)
vbroadcastss 0x40fc(%rsp), %zmm0
vmovaps %zmm0, 0x4080(%rsp)
vmovaps 0x4080(%rsp), %zmm0
vmovaps %zmm0, 0x1d40(%rsp)
movq 0x1e28(%rsp), %rax
movq %rax, 0x35d0(%rsp)
movq 0x35d0(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1d00(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x1d40(%rsp), %rsi
leaq 0x1d00(%rsp), %rdx
callq 0x1453940
vmovaps %zmm0, 0x1cc0(%rsp)
movq 0x1dd8(%rsp), %rax
vmovaps 0x1cc0(%rsp), %zmm0
movq %rax, 0x3cb8(%rsp)
vmovaps %zmm0, 0x3c40(%rsp)
vmovaps 0x3c40(%rsp), %zmm0
movq 0x3cb8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x1e30(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x1e30(%rsp)
movq 0x1e28(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1e28(%rsp)
movq 0x1dd8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1dd8(%rsp)
movl 0x1d8c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1d8c(%rsp)
jmp 0x132d463
jmp 0x132d590
movl 0x1e3c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1e3c(%rsp)
jmp 0x132cb6f
movl $0x0, 0x2bd4(%rsp)
jmp 0x1335f50
cmpl $0x1, 0x2ba8(%rsp)
je 0x132e561
cmpl $0x1, 0x2b88(%rsp)
jne 0x132e561
movl 0x2b84(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jne 0x132e561
movl 0x2b7c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jne 0x132e561
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movl 0x2b9c(%rsp), %ecx
movq 0x2b90(%rsp), %r8
movl 0x2b8c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c38(%rsp)
movq 0x2c38(%rsp), %rcx
movq %rcx, 0x4b0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x4bf(%rsp)
je 0x132d69d
movq 0x4b0(%rsp), %rax
movq %rax, 0x41a8(%rsp)
movq 0x41a8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x4bf(%rsp)
movb 0x4bf(%rsp), %al
testb $0x1, %al
jne 0x132d6aa
jmp 0x132d6ba
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1335f50
movl $0x0, 0x1cbc(%rsp)
movl 0x1cbc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x132e551
movq 0x2bc8(%rsp), %rcx
movl 0x1cbc(%rsp), %eax
leaq 0x1c68(%rsp), %rdx
movq %rdx, 0x2db8(%rsp)
movq %rcx, 0x2db0(%rsp)
movl %eax, 0x2dac(%rsp)
movq 0x2db0(%rsp), %rax
movq %rax, 0x4a8(%rsp)
movb $0x0, 0x2dab(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2dac(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1c68(%rsp), %r10
movq %r10, 0x48d0(%rsp)
movl %r9d, 0x48cc(%rsp)
movl %r8d, 0x48c8(%rsp)
movl %edi, 0x48c4(%rsp)
movq %rsi, 0x48b8(%rsp)
movq %rdx, 0x48b0(%rsp)
movl %ecx, 0x48ac(%rsp)
movq %rax, 0x48a0(%rsp)
movq 0x48d0(%rsp), %rcx
movq %rcx, 0x4a0(%rsp)
movq 0x48b8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x48b0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x48ac(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x48a0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x48cc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x48c8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x48c4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c88(%rsp)
movl $0x10, 0x4c84(%rsp)
movq 0x4c88(%rsp), %rax
movslq 0x4c84(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c84(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4a8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1c90(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x132d895
movq 0x4a8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1ca8(%rsp)
movb $0x1, 0x2dab(%rsp)
testb $0x1, 0x2dab(%rsp)
jne 0x132d9d6
leaq 0x1c68(%rsp), %rax
movq %rax, 0x3060(%rsp)
movq 0x3060(%rsp), %rax
movq %rax, 0x5328(%rsp)
movq 0x5328(%rsp), %rax
movq %rax, 0x498(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132d979
movq 0x498(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5324(%rsp) # imm = 0xFFFFFFFF
movl 0x5324(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5320(%rsp)
cmpl $0x1, 0x5320(%rsp)
jne 0x132d979
movq 0x498(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x132d947
movq 0x498(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x132d945
jmp 0x132d977
movq 0x498(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5450(%rsp)
cmpq $0x0, 0x5450(%rsp)
je 0x132d975
movq 0x5450(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132d977
jmp 0x132d979
movq 0x498(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132d9d4
movq %rax, %rdi
callq 0x678a0
jmp 0x132d9d6
leaq 0x1c68(%rsp), %rax
movq %rax, 0x2f80(%rsp)
movq 0x2f80(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x488(%rsp)
leaq 0x1c68(%rsp), %rax
movq %rax, 0x3170(%rsp)
movq 0x3170(%rsp), %rax
movq %rax, 0x5108(%rsp)
movq 0x5108(%rsp), %rax
movq %rax, 0x490(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132dac7
movq 0x490(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5104(%rsp) # imm = 0xFFFFFFFF
movl 0x5104(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5100(%rsp)
cmpl $0x1, 0x5100(%rsp)
jne 0x132dac7
movq 0x490(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x132da95
movq 0x490(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x132da93
jmp 0x132dac5
movq 0x490(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5560(%rsp)
cmpq $0x0, 0x5560(%rsp)
je 0x132dac3
movq 0x5560(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132dac5
jmp 0x132dac7
movq 0x490(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132db22
movq %rax, %rdi
callq 0x678a0
movq 0x488(%rsp), %rax
movq %rax, 0x1cb0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x1cbc(%rsp), %eax
leaq 0x1c18(%rsp), %rdx
movq %rdx, 0x2da0(%rsp)
movq %rcx, 0x2d98(%rsp)
movl %eax, 0x2d94(%rsp)
movq 0x2d98(%rsp), %rax
movq %rax, 0x480(%rsp)
movb $0x0, 0x2d93(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d94(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1c18(%rsp), %r10
movq %r10, 0x4908(%rsp)
movl %r9d, 0x4904(%rsp)
movl %r8d, 0x4900(%rsp)
movl %edi, 0x48fc(%rsp)
movq %rsi, 0x48f0(%rsp)
movq %rdx, 0x48e8(%rsp)
movl %ecx, 0x48e4(%rsp)
movq %rax, 0x48d8(%rsp)
movq 0x4908(%rsp), %rcx
movq %rcx, 0x478(%rsp)
movq 0x48f0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x48e8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x48e4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x48d8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4904(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4900(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x48fc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c78(%rsp)
movl $0x10, 0x4c74(%rsp)
movq 0x4c78(%rsp), %rax
movslq 0x4c74(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c74(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x480(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1c40(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x132dcee
movq 0x480(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1c58(%rsp)
movb $0x1, 0x2d93(%rsp)
testb $0x1, 0x2d93(%rsp)
jne 0x132de2f
leaq 0x1c18(%rsp), %rax
movq %rax, 0x3068(%rsp)
movq 0x3068(%rsp), %rax
movq %rax, 0x5318(%rsp)
movq 0x5318(%rsp), %rax
movq %rax, 0x470(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132ddd2
movq 0x470(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5314(%rsp) # imm = 0xFFFFFFFF
movl 0x5314(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5310(%rsp)
cmpl $0x1, 0x5310(%rsp)
jne 0x132ddd2
movq 0x470(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x132dda0
movq 0x470(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x132dd9e
jmp 0x132ddd0
movq 0x470(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5458(%rsp)
cmpq $0x0, 0x5458(%rsp)
je 0x132ddce
movq 0x5458(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132ddd0
jmp 0x132ddd2
movq 0x470(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132de2d
movq %rax, %rdi
callq 0x678a0
jmp 0x132de2f
leaq 0x1c18(%rsp), %rax
movq %rax, 0x2f78(%rsp)
movq 0x2f78(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x460(%rsp)
leaq 0x1c18(%rsp), %rax
movq %rax, 0x3178(%rsp)
movq 0x3178(%rsp), %rax
movq %rax, 0x50f8(%rsp)
movq 0x50f8(%rsp), %rax
movq %rax, 0x468(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132df20
movq 0x468(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x50f4(%rsp) # imm = 0xFFFFFFFF
movl 0x50f4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x50f0(%rsp)
cmpl $0x1, 0x50f0(%rsp)
jne 0x132df20
movq 0x468(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x132deee
movq 0x468(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x132deec
jmp 0x132df1e
movq 0x468(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5568(%rsp)
cmpq $0x0, 0x5568(%rsp)
je 0x132df1c
movq 0x5568(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132df1e
jmp 0x132df20
movq 0x468(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132df7b
movq %rax, %rdi
callq 0x678a0
movq 0x460(%rsp), %rax
movq %rax, 0x1c60(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x1cbc(%rsp), %eax
leaq 0x1bc8(%rsp), %rdx
movq %rdx, 0x3360(%rsp)
movq %rcx, 0x3358(%rsp)
movl %eax, 0x3354(%rsp)
movq 0x3358(%rsp), %rax
movq %rax, 0x458(%rsp)
movb $0x0, 0x3353(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3354(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1bc8(%rsp), %r10
movq %r10, 0x4400(%rsp)
movl %r9d, 0x43fc(%rsp)
movl %r8d, 0x43f8(%rsp)
movl %edi, 0x43f4(%rsp)
movq %rsi, 0x43e8(%rsp)
movq %rdx, 0x43e0(%rsp)
movl %ecx, 0x43dc(%rsp)
movq %rax, 0x43d0(%rsp)
movq 0x4400(%rsp), %rcx
movq %rcx, 0x450(%rsp)
movq 0x43e8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x43e0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x43dc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x43d0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x43fc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x43f8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x43f4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4de8(%rsp)
movl $0x10, 0x4de4(%rsp)
movq 0x4de8(%rsp), %rax
movslq 0x4de4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4de4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x458(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1bf0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x132e147
movq 0x458(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1c08(%rsp)
movb $0x1, 0x3353(%rsp)
testb $0x1, 0x3353(%rsp)
jne 0x132e288
leaq 0x1bc8(%rsp), %rax
movq %rax, 0x3368(%rsp)
movq 0x3368(%rsp), %rax
movq %rax, 0x4ef8(%rsp)
movq 0x4ef8(%rsp), %rax
movq %rax, 0x448(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132e22b
movq 0x448(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4ef4(%rsp) # imm = 0xFFFFFFFF
movl 0x4ef4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4ef0(%rsp)
cmpl $0x1, 0x4ef0(%rsp)
jne 0x132e22b
movq 0x448(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x132e1f9
movq 0x448(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x132e1f7
jmp 0x132e229
movq 0x448(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5668(%rsp)
cmpq $0x0, 0x5668(%rsp)
je 0x132e227
movq 0x5668(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132e229
jmp 0x132e22b
movq 0x448(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132e286
movq %rax, %rdi
callq 0x678a0
jmp 0x132e288
leaq 0x1bc8(%rsp), %rax
movq %rax, 0x34c8(%rsp)
movq 0x34c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x438(%rsp)
leaq 0x1bc8(%rsp), %rax
movq %rax, 0x3180(%rsp)
movq 0x3180(%rsp), %rax
movq %rax, 0x50e8(%rsp)
movq 0x50e8(%rsp), %rax
movq %rax, 0x440(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132e379
movq 0x440(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x50e4(%rsp) # imm = 0xFFFFFFFF
movl 0x50e4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x50e0(%rsp)
cmpl $0x1, 0x50e0(%rsp)
jne 0x132e379
movq 0x440(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x132e347
movq 0x440(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x132e345
jmp 0x132e377
movq 0x440(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5570(%rsp)
cmpq $0x0, 0x5570(%rsp)
je 0x132e375
movq 0x5570(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132e377
jmp 0x132e379
movq 0x440(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132e3d4
movq %rax, %rdi
callq 0x678a0
movq 0x438(%rsp), %rax
movq %rax, 0x1c10(%rsp)
movl $0x0, 0x1bc4(%rsp)
movl 0x1bc4(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jge 0x132e539
movq 0x1c60(%rsp), %rax
movl 0x1bc4(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x35c8(%rsp)
movq 0x35c8(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1b80(%rsp)
movl $0x0, 0x1b7c(%rsp)
movl 0x1b7c(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jge 0x132e521
movq 0x1cb0(%rsp), %rax
movq %rax, 0x35c0(%rsp)
movq 0x35c0(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1b00(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x1b00(%rsp), %rsi
leaq 0x1b80(%rsp), %rdx
callq 0x1453940
vmovaps %zmm0, 0x1ac0(%rsp)
movq 0x1c10(%rsp), %rax
vmovaps 0x1ac0(%rsp), %zmm0
movq %rax, 0x3c38(%rsp)
vmovaps %zmm0, 0x3bc0(%rsp)
vmovaps 0x3bc0(%rsp), %zmm0
movq 0x3c38(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x1cb0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1cb0(%rsp)
movq 0x1c10(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1c10(%rsp)
movl 0x1b7c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b7c(%rsp)
jmp 0x132e448
jmp 0x132e523
movl 0x1bc4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1bc4(%rsp)
jmp 0x132e3ef
jmp 0x132e53b
movl 0x1cbc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1cbc(%rsp)
jmp 0x132d6c5
movl $0x0, 0x2bd4(%rsp)
jmp 0x1335f50
movl 0x2b88(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jne 0x132f50c
cmpl $0x1, 0x2ba4(%rsp)
je 0x132f50c
cmpl $0x1, 0x2b84(%rsp)
jne 0x132f50c
movl 0x2b7c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jne 0x132f50c
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movl 0x2b9c(%rsp), %ecx
movq 0x2b90(%rsp), %r8
movl 0x2b8c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c30(%rsp)
movq 0x2c30(%rsp), %rcx
movq %rcx, 0x428(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x437(%rsp)
je 0x132e648
movq 0x428(%rsp), %rax
movq %rax, 0x41b0(%rsp)
movq 0x41b0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x437(%rsp)
movb 0x437(%rsp), %al
testb $0x1, %al
jne 0x132e655
jmp 0x132e665
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1335f50
movl $0x0, 0x1abc(%rsp)
movl 0x1abc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x132f4fc
movq 0x2bc8(%rsp), %rcx
movl 0x1abc(%rsp), %eax
leaq 0x1a68(%rsp), %rdx
movq %rdx, 0x2d88(%rsp)
movq %rcx, 0x2d80(%rsp)
movl %eax, 0x2d7c(%rsp)
movq 0x2d80(%rsp), %rax
movq %rax, 0x420(%rsp)
movb $0x0, 0x2d7b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d7c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1a68(%rsp), %r10
movq %r10, 0x4940(%rsp)
movl %r9d, 0x493c(%rsp)
movl %r8d, 0x4938(%rsp)
movl %edi, 0x4934(%rsp)
movq %rsi, 0x4928(%rsp)
movq %rdx, 0x4920(%rsp)
movl %ecx, 0x491c(%rsp)
movq %rax, 0x4910(%rsp)
movq 0x4940(%rsp), %rcx
movq %rcx, 0x418(%rsp)
movq 0x4928(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4920(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x491c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4910(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x493c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4938(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4934(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c68(%rsp)
movl $0x10, 0x4c64(%rsp)
movq 0x4c68(%rsp), %rax
movslq 0x4c64(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c64(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x420(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1a90(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x132e840
movq 0x420(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1aa8(%rsp)
movb $0x1, 0x2d7b(%rsp)
testb $0x1, 0x2d7b(%rsp)
jne 0x132e981
leaq 0x1a68(%rsp), %rax
movq %rax, 0x3070(%rsp)
movq 0x3070(%rsp), %rax
movq %rax, 0x5308(%rsp)
movq 0x5308(%rsp), %rax
movq %rax, 0x410(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132e924
movq 0x410(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5304(%rsp) # imm = 0xFFFFFFFF
movl 0x5304(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5300(%rsp)
cmpl $0x1, 0x5300(%rsp)
jne 0x132e924
movq 0x410(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x132e8f2
movq 0x410(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x132e8f0
jmp 0x132e922
movq 0x410(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5460(%rsp)
cmpq $0x0, 0x5460(%rsp)
je 0x132e920
movq 0x5460(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132e922
jmp 0x132e924
movq 0x410(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132e97f
movq %rax, %rdi
callq 0x678a0
jmp 0x132e981
leaq 0x1a68(%rsp), %rax
movq %rax, 0x2f70(%rsp)
movq 0x2f70(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x400(%rsp)
leaq 0x1a68(%rsp), %rax
movq %rax, 0x3188(%rsp)
movq 0x3188(%rsp), %rax
movq %rax, 0x50d8(%rsp)
movq 0x50d8(%rsp), %rax
movq %rax, 0x408(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132ea72
movq 0x408(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x50d4(%rsp) # imm = 0xFFFFFFFF
movl 0x50d4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x50d0(%rsp)
cmpl $0x1, 0x50d0(%rsp)
jne 0x132ea72
movq 0x408(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x132ea40
movq 0x408(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x132ea3e
jmp 0x132ea70
movq 0x408(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5578(%rsp)
cmpq $0x0, 0x5578(%rsp)
je 0x132ea6e
movq 0x5578(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132ea70
jmp 0x132ea72
movq 0x408(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132eacd
movq %rax, %rdi
callq 0x678a0
movq 0x400(%rsp), %rax
movq %rax, 0x1ab0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x1abc(%rsp), %eax
leaq 0x1a18(%rsp), %rdx
movq %rdx, 0x2d70(%rsp)
movq %rcx, 0x2d68(%rsp)
movl %eax, 0x2d64(%rsp)
movq 0x2d68(%rsp), %rax
movq %rax, 0x3f8(%rsp)
movb $0x0, 0x2d63(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d64(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1a18(%rsp), %r10
movq %r10, 0x4978(%rsp)
movl %r9d, 0x4974(%rsp)
movl %r8d, 0x4970(%rsp)
movl %edi, 0x496c(%rsp)
movq %rsi, 0x4960(%rsp)
movq %rdx, 0x4958(%rsp)
movl %ecx, 0x4954(%rsp)
movq %rax, 0x4948(%rsp)
movq 0x4978(%rsp), %rcx
movq %rcx, 0x3f0(%rsp)
movq 0x4960(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4958(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4954(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4948(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4974(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4970(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x496c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c58(%rsp)
movl $0x10, 0x4c54(%rsp)
movq 0x4c58(%rsp), %rax
movslq 0x4c54(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c54(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3f8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1a40(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x132ec99
movq 0x3f8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1a58(%rsp)
movb $0x1, 0x2d63(%rsp)
testb $0x1, 0x2d63(%rsp)
jne 0x132edda
leaq 0x1a18(%rsp), %rax
movq %rax, 0x3078(%rsp)
movq 0x3078(%rsp), %rax
movq %rax, 0x52f8(%rsp)
movq 0x52f8(%rsp), %rax
movq %rax, 0x3e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132ed7d
movq 0x3e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x52f4(%rsp) # imm = 0xFFFFFFFF
movl 0x52f4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x52f0(%rsp)
cmpl $0x1, 0x52f0(%rsp)
jne 0x132ed7d
movq 0x3e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x132ed4b
movq 0x3e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x132ed49
jmp 0x132ed7b
movq 0x3e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5468(%rsp)
cmpq $0x0, 0x5468(%rsp)
je 0x132ed79
movq 0x5468(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132ed7b
jmp 0x132ed7d
movq 0x3e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132edd8
movq %rax, %rdi
callq 0x678a0
jmp 0x132edda
leaq 0x1a18(%rsp), %rax
movq %rax, 0x2f68(%rsp)
movq 0x2f68(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d8(%rsp)
leaq 0x1a18(%rsp), %rax
movq %rax, 0x3190(%rsp)
movq 0x3190(%rsp), %rax
movq %rax, 0x50c8(%rsp)
movq 0x50c8(%rsp), %rax
movq %rax, 0x3e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132eecb
movq 0x3e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x50c4(%rsp) # imm = 0xFFFFFFFF
movl 0x50c4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x50c0(%rsp)
cmpl $0x1, 0x50c0(%rsp)
jne 0x132eecb
movq 0x3e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x132ee99
movq 0x3e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x132ee97
jmp 0x132eec9
movq 0x3e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5580(%rsp)
cmpq $0x0, 0x5580(%rsp)
je 0x132eec7
movq 0x5580(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132eec9
jmp 0x132eecb
movq 0x3e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132ef26
movq %rax, %rdi
callq 0x678a0
movq 0x3d8(%rsp), %rax
movq %rax, 0x1a60(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x1abc(%rsp), %eax
leaq 0x19c8(%rsp), %rdx
movq %rdx, 0x3340(%rsp)
movq %rcx, 0x3338(%rsp)
movl %eax, 0x3334(%rsp)
movq 0x3338(%rsp), %rax
movq %rax, 0x3d0(%rsp)
movb $0x0, 0x3333(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3334(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x19c8(%rsp), %r10
movq %r10, 0x4438(%rsp)
movl %r9d, 0x4434(%rsp)
movl %r8d, 0x4430(%rsp)
movl %edi, 0x442c(%rsp)
movq %rsi, 0x4420(%rsp)
movq %rdx, 0x4418(%rsp)
movl %ecx, 0x4414(%rsp)
movq %rax, 0x4408(%rsp)
movq 0x4438(%rsp), %rcx
movq %rcx, 0x3c8(%rsp)
movq 0x4420(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4418(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4414(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4408(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4434(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4430(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x442c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4dd8(%rsp)
movl $0x10, 0x4dd4(%rsp)
movq 0x4dd8(%rsp), %rax
movslq 0x4dd4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4dd4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3d0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x19f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x132f0f2
movq 0x3d0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1a08(%rsp)
movb $0x1, 0x3333(%rsp)
testb $0x1, 0x3333(%rsp)
jne 0x132f233
leaq 0x19c8(%rsp), %rax
movq %rax, 0x3348(%rsp)
movq 0x3348(%rsp), %rax
movq %rax, 0x4f08(%rsp)
movq 0x4f08(%rsp), %rax
movq %rax, 0x3c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132f1d6
movq 0x3c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f04(%rsp) # imm = 0xFFFFFFFF
movl 0x4f04(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f00(%rsp)
cmpl $0x1, 0x4f00(%rsp)
jne 0x132f1d6
movq 0x3c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x132f1a4
movq 0x3c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x132f1a2
jmp 0x132f1d4
movq 0x3c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5660(%rsp)
cmpq $0x0, 0x5660(%rsp)
je 0x132f1d2
movq 0x5660(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132f1d4
jmp 0x132f1d6
movq 0x3c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132f231
movq %rax, %rdi
callq 0x678a0
jmp 0x132f233
leaq 0x19c8(%rsp), %rax
movq %rax, 0x34c0(%rsp)
movq 0x34c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3b0(%rsp)
leaq 0x19c8(%rsp), %rax
movq %rax, 0x3198(%rsp)
movq 0x3198(%rsp), %rax
movq %rax, 0x50b8(%rsp)
movq 0x50b8(%rsp), %rax
movq %rax, 0x3b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132f324
movq 0x3b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x50b4(%rsp) # imm = 0xFFFFFFFF
movl 0x50b4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x50b0(%rsp)
cmpl $0x1, 0x50b0(%rsp)
jne 0x132f324
movq 0x3b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x132f2f2
movq 0x3b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x132f2f0
jmp 0x132f322
movq 0x3b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5588(%rsp)
cmpq $0x0, 0x5588(%rsp)
je 0x132f320
movq 0x5588(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132f322
jmp 0x132f324
movq 0x3b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132f37f
movq %rax, %rdi
callq 0x678a0
movq 0x3b0(%rsp), %rax
movq %rax, 0x1a10(%rsp)
movl $0x0, 0x19c4(%rsp)
movl 0x19c4(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jge 0x132f4e4
movl $0x0, 0x19c0(%rsp)
movl 0x19c0(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jge 0x132f4cc
movq 0x1ab0(%rsp), %rax
movq %rax, 0x35b8(%rsp)
movq 0x35b8(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1980(%rsp)
movq 0x1a60(%rsp), %rax
movl 0x19c0(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x35b0(%rsp)
movq 0x35b0(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1940(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x1980(%rsp), %rsi
leaq 0x1940(%rsp), %rdx
callq 0x1453940
vmovaps %zmm0, 0x1900(%rsp)
movq 0x1a10(%rsp), %rax
vmovaps 0x1900(%rsp), %zmm0
movq %rax, 0x3bb8(%rsp)
vmovaps %zmm0, 0x3b40(%rsp)
vmovaps 0x3b40(%rsp), %zmm0
movq 0x3bb8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x1ab0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1ab0(%rsp)
movq 0x1a10(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1a10(%rsp)
movl 0x19c0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x19c0(%rsp)
jmp 0x132f3b9
jmp 0x132f4ce
movl 0x19c4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x19c4(%rsp)
jmp 0x132f39a
jmp 0x132f4e6
movl 0x1abc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1abc(%rsp)
jmp 0x132e670
movl $0x0, 0x2bd4(%rsp)
jmp 0x1335f50
cmpl $0x1, 0x2b88(%rsp)
je 0x13304b7
cmpl $0x1, 0x2ba8(%rsp)
jne 0x13304b7
movl 0x2b84(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jne 0x13304b7
movl 0x2b7c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jne 0x13304b7
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b7c(%rsp), %ecx
movq 0x2b70(%rsp), %r8
movl 0x2b6c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c28(%rsp)
movq 0x2c28(%rsp), %rcx
movq %rcx, 0x3a0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x3af(%rsp)
je 0x132f5f3
movq 0x3a0(%rsp), %rax
movq %rax, 0x41b8(%rsp)
movq 0x41b8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x3af(%rsp)
movb 0x3af(%rsp), %al
testb $0x1, %al
jne 0x132f600
jmp 0x132f610
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1335f50
movl $0x0, 0x18fc(%rsp)
movl 0x18fc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x13304a7
movq 0x2bc8(%rsp), %rcx
movl 0x18fc(%rsp), %eax
leaq 0x18a8(%rsp), %rdx
movq %rdx, 0x2d58(%rsp)
movq %rcx, 0x2d50(%rsp)
movl %eax, 0x2d4c(%rsp)
movq 0x2d50(%rsp), %rax
movq %rax, 0x398(%rsp)
movb $0x0, 0x2d4b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d4c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x18a8(%rsp), %r10
movq %r10, 0x49b0(%rsp)
movl %r9d, 0x49ac(%rsp)
movl %r8d, 0x49a8(%rsp)
movl %edi, 0x49a4(%rsp)
movq %rsi, 0x4998(%rsp)
movq %rdx, 0x4990(%rsp)
movl %ecx, 0x498c(%rsp)
movq %rax, 0x4980(%rsp)
movq 0x49b0(%rsp), %rcx
movq %rcx, 0x390(%rsp)
movq 0x4998(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4990(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x498c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4980(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x49ac(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x49a8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x49a4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c48(%rsp)
movl $0x10, 0x4c44(%rsp)
movq 0x4c48(%rsp), %rax
movslq 0x4c44(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c44(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x398(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x18d0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x132f7eb
movq 0x398(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x18e8(%rsp)
movb $0x1, 0x2d4b(%rsp)
testb $0x1, 0x2d4b(%rsp)
jne 0x132f92c
leaq 0x18a8(%rsp), %rax
movq %rax, 0x3080(%rsp)
movq 0x3080(%rsp), %rax
movq %rax, 0x52e8(%rsp)
movq 0x52e8(%rsp), %rax
movq %rax, 0x388(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132f8cf
movq 0x388(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x52e4(%rsp) # imm = 0xFFFFFFFF
movl 0x52e4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x52e0(%rsp)
cmpl $0x1, 0x52e0(%rsp)
jne 0x132f8cf
movq 0x388(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x132f89d
movq 0x388(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x132f89b
jmp 0x132f8cd
movq 0x388(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5470(%rsp)
cmpq $0x0, 0x5470(%rsp)
je 0x132f8cb
movq 0x5470(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132f8cd
jmp 0x132f8cf
movq 0x388(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132f92a
movq %rax, %rdi
callq 0x678a0
jmp 0x132f92c
leaq 0x18a8(%rsp), %rax
movq %rax, 0x2f60(%rsp)
movq 0x2f60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x378(%rsp)
leaq 0x18a8(%rsp), %rax
movq %rax, 0x31a0(%rsp)
movq 0x31a0(%rsp), %rax
movq %rax, 0x50a8(%rsp)
movq 0x50a8(%rsp), %rax
movq %rax, 0x380(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132fa1d
movq 0x380(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x50a4(%rsp) # imm = 0xFFFFFFFF
movl 0x50a4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x50a0(%rsp)
cmpl $0x1, 0x50a0(%rsp)
jne 0x132fa1d
movq 0x380(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x132f9eb
movq 0x380(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x132f9e9
jmp 0x132fa1b
movq 0x380(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5590(%rsp)
cmpq $0x0, 0x5590(%rsp)
je 0x132fa19
movq 0x5590(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132fa1b
jmp 0x132fa1d
movq 0x380(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132fa78
movq %rax, %rdi
callq 0x678a0
movq 0x378(%rsp), %rax
movq %rax, 0x18f0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x18fc(%rsp), %eax
leaq 0x1858(%rsp), %rdx
movq %rdx, 0x2d40(%rsp)
movq %rcx, 0x2d38(%rsp)
movl %eax, 0x2d34(%rsp)
movq 0x2d38(%rsp), %rax
movq %rax, 0x370(%rsp)
movb $0x0, 0x2d33(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d34(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1858(%rsp), %r10
movq %r10, 0x49e8(%rsp)
movl %r9d, 0x49e4(%rsp)
movl %r8d, 0x49e0(%rsp)
movl %edi, 0x49dc(%rsp)
movq %rsi, 0x49d0(%rsp)
movq %rdx, 0x49c8(%rsp)
movl %ecx, 0x49c4(%rsp)
movq %rax, 0x49b8(%rsp)
movq 0x49e8(%rsp), %rcx
movq %rcx, 0x368(%rsp)
movq 0x49d0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x49c8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x49c4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x49b8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x49e4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x49e0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x49dc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c38(%rsp)
movl $0x10, 0x4c34(%rsp)
movq 0x4c38(%rsp), %rax
movslq 0x4c34(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c34(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x370(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1880(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x132fc44
movq 0x370(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1898(%rsp)
movb $0x1, 0x2d33(%rsp)
testb $0x1, 0x2d33(%rsp)
jne 0x132fd85
leaq 0x1858(%rsp), %rax
movq %rax, 0x3088(%rsp)
movq 0x3088(%rsp), %rax
movq %rax, 0x52d8(%rsp)
movq 0x52d8(%rsp), %rax
movq %rax, 0x360(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132fd28
movq 0x360(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x52d4(%rsp) # imm = 0xFFFFFFFF
movl 0x52d4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x52d0(%rsp)
cmpl $0x1, 0x52d0(%rsp)
jne 0x132fd28
movq 0x360(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x132fcf6
movq 0x360(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x132fcf4
jmp 0x132fd26
movq 0x360(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5478(%rsp)
cmpq $0x0, 0x5478(%rsp)
je 0x132fd24
movq 0x5478(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132fd26
jmp 0x132fd28
movq 0x360(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132fd83
movq %rax, %rdi
callq 0x678a0
jmp 0x132fd85
leaq 0x1858(%rsp), %rax
movq %rax, 0x2f58(%rsp)
movq 0x2f58(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x350(%rsp)
leaq 0x1858(%rsp), %rax
movq %rax, 0x31a8(%rsp)
movq 0x31a8(%rsp), %rax
movq %rax, 0x5098(%rsp)
movq 0x5098(%rsp), %rax
movq %rax, 0x358(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x132fe76
movq 0x358(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5094(%rsp) # imm = 0xFFFFFFFF
movl 0x5094(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5090(%rsp)
cmpl $0x1, 0x5090(%rsp)
jne 0x132fe76
movq 0x358(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x132fe44
movq 0x358(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x132fe42
jmp 0x132fe74
movq 0x358(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5598(%rsp)
cmpq $0x0, 0x5598(%rsp)
je 0x132fe72
movq 0x5598(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x132fe74
jmp 0x132fe76
movq 0x358(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x132fed1
movq %rax, %rdi
callq 0x678a0
movq 0x350(%rsp), %rax
movq %rax, 0x18a0(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x18fc(%rsp), %eax
leaq 0x1808(%rsp), %rdx
movq %rdx, 0x3320(%rsp)
movq %rcx, 0x3318(%rsp)
movl %eax, 0x3314(%rsp)
movq 0x3318(%rsp), %rax
movq %rax, 0x348(%rsp)
movb $0x0, 0x3313(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3314(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1808(%rsp), %r10
movq %r10, 0x4470(%rsp)
movl %r9d, 0x446c(%rsp)
movl %r8d, 0x4468(%rsp)
movl %edi, 0x4464(%rsp)
movq %rsi, 0x4458(%rsp)
movq %rdx, 0x4450(%rsp)
movl %ecx, 0x444c(%rsp)
movq %rax, 0x4440(%rsp)
movq 0x4470(%rsp), %rcx
movq %rcx, 0x340(%rsp)
movq 0x4458(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4450(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x444c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4440(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x446c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4468(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4464(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4dc8(%rsp)
movl $0x10, 0x4dc4(%rsp)
movq 0x4dc8(%rsp), %rax
movslq 0x4dc4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4dc4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x348(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1830(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x133009d
movq 0x348(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1848(%rsp)
movb $0x1, 0x3313(%rsp)
testb $0x1, 0x3313(%rsp)
jne 0x13301de
leaq 0x1808(%rsp), %rax
movq %rax, 0x3328(%rsp)
movq 0x3328(%rsp), %rax
movq %rax, 0x4f18(%rsp)
movq 0x4f18(%rsp), %rax
movq %rax, 0x338(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1330181
movq 0x338(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f14(%rsp) # imm = 0xFFFFFFFF
movl 0x4f14(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f10(%rsp)
cmpl $0x1, 0x4f10(%rsp)
jne 0x1330181
movq 0x338(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x133014f
movq 0x338(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133014d
jmp 0x133017f
movq 0x338(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5658(%rsp)
cmpq $0x0, 0x5658(%rsp)
je 0x133017d
movq 0x5658(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x133017f
jmp 0x1330181
movq 0x338(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13301dc
movq %rax, %rdi
callq 0x678a0
jmp 0x13301de
leaq 0x1808(%rsp), %rax
movq %rax, 0x34b8(%rsp)
movq 0x34b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x328(%rsp)
leaq 0x1808(%rsp), %rax
movq %rax, 0x31b0(%rsp)
movq 0x31b0(%rsp), %rax
movq %rax, 0x5088(%rsp)
movq 0x5088(%rsp), %rax
movq %rax, 0x330(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13302cf
movq 0x330(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5084(%rsp) # imm = 0xFFFFFFFF
movl 0x5084(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5080(%rsp)
cmpl $0x1, 0x5080(%rsp)
jne 0x13302cf
movq 0x330(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x133029d
movq 0x330(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133029b
jmp 0x13302cd
movq 0x330(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55a0(%rsp)
cmpq $0x0, 0x55a0(%rsp)
je 0x13302cb
movq 0x55a0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13302cd
jmp 0x13302cf
movq 0x330(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133032a
movq %rax, %rdi
callq 0x678a0
movq 0x328(%rsp), %rax
movq %rax, 0x1850(%rsp)
movl $0x0, 0x1804(%rsp)
movl 0x1804(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jge 0x133048f
movq 0x18f0(%rsp), %rax
movl 0x1804(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x35a8(%rsp)
movq 0x35a8(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x17c0(%rsp)
movl $0x0, 0x17bc(%rsp)
movl 0x17bc(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jge 0x1330477
movq 0x18a0(%rsp), %rax
movq %rax, 0x35a0(%rsp)
movq 0x35a0(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1740(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x17c0(%rsp), %rsi
leaq 0x1740(%rsp), %rdx
callq 0x1453940
vmovaps %zmm0, 0x1700(%rsp)
movq 0x1850(%rsp), %rax
vmovaps 0x1700(%rsp), %zmm0
movq %rax, 0x3b38(%rsp)
vmovaps %zmm0, 0x3ac0(%rsp)
vmovaps 0x3ac0(%rsp), %zmm0
movq 0x3b38(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x18a0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x18a0(%rsp)
movq 0x1850(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1850(%rsp)
movl 0x17bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x17bc(%rsp)
jmp 0x133039e
jmp 0x1330479
movl 0x1804(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1804(%rsp)
jmp 0x1330345
jmp 0x1330491
movl 0x18fc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x18fc(%rsp)
jmp 0x132f61b
movl $0x0, 0x2bd4(%rsp)
jmp 0x1335f50
movl 0x2b88(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jne 0x1331462
cmpl $0x1, 0x2b84(%rsp)
je 0x1331462
cmpl $0x1, 0x2ba4(%rsp)
jne 0x1331462
movl 0x2b7c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jne 0x1331462
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b7c(%rsp), %ecx
movq 0x2b70(%rsp), %r8
movl 0x2b6c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c20(%rsp)
movq 0x2c20(%rsp), %rcx
movq %rcx, 0x318(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x327(%rsp)
je 0x133059e
movq 0x318(%rsp), %rax
movq %rax, 0x41c0(%rsp)
movq 0x41c0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x327(%rsp)
movb 0x327(%rsp), %al
testb $0x1, %al
jne 0x13305ab
jmp 0x13305bb
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1335f50
movl $0x0, 0x16fc(%rsp)
movl 0x16fc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x1331452
movq 0x2bc8(%rsp), %rcx
movl 0x16fc(%rsp), %eax
leaq 0x16a8(%rsp), %rdx
movq %rdx, 0x2d28(%rsp)
movq %rcx, 0x2d20(%rsp)
movl %eax, 0x2d1c(%rsp)
movq 0x2d20(%rsp), %rax
movq %rax, 0x310(%rsp)
movb $0x0, 0x2d1b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d1c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x16a8(%rsp), %r10
movq %r10, 0x4a20(%rsp)
movl %r9d, 0x4a1c(%rsp)
movl %r8d, 0x4a18(%rsp)
movl %edi, 0x4a14(%rsp)
movq %rsi, 0x4a08(%rsp)
movq %rdx, 0x4a00(%rsp)
movl %ecx, 0x49fc(%rsp)
movq %rax, 0x49f0(%rsp)
movq 0x4a20(%rsp), %rcx
movq %rcx, 0x308(%rsp)
movq 0x4a08(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4a00(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x49fc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x49f0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4a1c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4a18(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4a14(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c28(%rsp)
movl $0x10, 0x4c24(%rsp)
movq 0x4c28(%rsp), %rax
movslq 0x4c24(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c24(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x310(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x16d0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1330796
movq 0x310(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x16e8(%rsp)
movb $0x1, 0x2d1b(%rsp)
testb $0x1, 0x2d1b(%rsp)
jne 0x13308d7
leaq 0x16a8(%rsp), %rax
movq %rax, 0x3090(%rsp)
movq 0x3090(%rsp), %rax
movq %rax, 0x52c8(%rsp)
movq 0x52c8(%rsp), %rax
movq %rax, 0x300(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x133087a
movq 0x300(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x52c4(%rsp) # imm = 0xFFFFFFFF
movl 0x52c4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x52c0(%rsp)
cmpl $0x1, 0x52c0(%rsp)
jne 0x133087a
movq 0x300(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1330848
movq 0x300(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1330846
jmp 0x1330878
movq 0x300(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5480(%rsp)
cmpq $0x0, 0x5480(%rsp)
je 0x1330876
movq 0x5480(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1330878
jmp 0x133087a
movq 0x300(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13308d5
movq %rax, %rdi
callq 0x678a0
jmp 0x13308d7
leaq 0x16a8(%rsp), %rax
movq %rax, 0x2f50(%rsp)
movq 0x2f50(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2f0(%rsp)
leaq 0x16a8(%rsp), %rax
movq %rax, 0x31b8(%rsp)
movq 0x31b8(%rsp), %rax
movq %rax, 0x5078(%rsp)
movq 0x5078(%rsp), %rax
movq %rax, 0x2f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13309c8
movq 0x2f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5074(%rsp) # imm = 0xFFFFFFFF
movl 0x5074(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5070(%rsp)
cmpl $0x1, 0x5070(%rsp)
jne 0x13309c8
movq 0x2f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1330996
movq 0x2f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1330994
jmp 0x13309c6
movq 0x2f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55a8(%rsp)
cmpq $0x0, 0x55a8(%rsp)
je 0x13309c4
movq 0x55a8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13309c6
jmp 0x13309c8
movq 0x2f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1330a23
movq %rax, %rdi
callq 0x678a0
movq 0x2f0(%rsp), %rax
movq %rax, 0x16f0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x16fc(%rsp), %eax
leaq 0x1658(%rsp), %rdx
movq %rdx, 0x2d10(%rsp)
movq %rcx, 0x2d08(%rsp)
movl %eax, 0x2d04(%rsp)
movq 0x2d08(%rsp), %rax
movq %rax, 0x2e8(%rsp)
movb $0x0, 0x2d03(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d04(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1658(%rsp), %r10
movq %r10, 0x4a58(%rsp)
movl %r9d, 0x4a54(%rsp)
movl %r8d, 0x4a50(%rsp)
movl %edi, 0x4a4c(%rsp)
movq %rsi, 0x4a40(%rsp)
movq %rdx, 0x4a38(%rsp)
movl %ecx, 0x4a34(%rsp)
movq %rax, 0x4a28(%rsp)
movq 0x4a58(%rsp), %rcx
movq %rcx, 0x2e0(%rsp)
movq 0x4a40(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4a38(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4a34(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4a28(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4a54(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4a50(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4a4c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c18(%rsp)
movl $0x10, 0x4c14(%rsp)
movq 0x4c18(%rsp), %rax
movslq 0x4c14(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c14(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2e8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1680(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1330bef
movq 0x2e8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1698(%rsp)
movb $0x1, 0x2d03(%rsp)
testb $0x1, 0x2d03(%rsp)
jne 0x1330d30
leaq 0x1658(%rsp), %rax
movq %rax, 0x3098(%rsp)
movq 0x3098(%rsp), %rax
movq %rax, 0x52b8(%rsp)
movq 0x52b8(%rsp), %rax
movq %rax, 0x2d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1330cd3
movq 0x2d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x52b4(%rsp) # imm = 0xFFFFFFFF
movl 0x52b4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x52b0(%rsp)
cmpl $0x1, 0x52b0(%rsp)
jne 0x1330cd3
movq 0x2d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1330ca1
movq 0x2d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1330c9f
jmp 0x1330cd1
movq 0x2d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5488(%rsp)
cmpq $0x0, 0x5488(%rsp)
je 0x1330ccf
movq 0x5488(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1330cd1
jmp 0x1330cd3
movq 0x2d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1330d2e
movq %rax, %rdi
callq 0x678a0
jmp 0x1330d30
leaq 0x1658(%rsp), %rax
movq %rax, 0x2f48(%rsp)
movq 0x2f48(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2c8(%rsp)
leaq 0x1658(%rsp), %rax
movq %rax, 0x31c0(%rsp)
movq 0x31c0(%rsp), %rax
movq %rax, 0x5068(%rsp)
movq 0x5068(%rsp), %rax
movq %rax, 0x2d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1330e21
movq 0x2d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5064(%rsp) # imm = 0xFFFFFFFF
movl 0x5064(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5060(%rsp)
cmpl $0x1, 0x5060(%rsp)
jne 0x1330e21
movq 0x2d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1330def
movq 0x2d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1330ded
jmp 0x1330e1f
movq 0x2d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55b0(%rsp)
cmpq $0x0, 0x55b0(%rsp)
je 0x1330e1d
movq 0x55b0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1330e1f
jmp 0x1330e21
movq 0x2d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1330e7c
movq %rax, %rdi
callq 0x678a0
movq 0x2c8(%rsp), %rax
movq %rax, 0x16a0(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x16fc(%rsp), %eax
leaq 0x1608(%rsp), %rdx
movq %rdx, 0x3300(%rsp)
movq %rcx, 0x32f8(%rsp)
movl %eax, 0x32f4(%rsp)
movq 0x32f8(%rsp), %rax
movq %rax, 0x2c0(%rsp)
movb $0x0, 0x32f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x32f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1608(%rsp), %r10
movq %r10, 0x44a8(%rsp)
movl %r9d, 0x44a4(%rsp)
movl %r8d, 0x44a0(%rsp)
movl %edi, 0x449c(%rsp)
movq %rsi, 0x4490(%rsp)
movq %rdx, 0x4488(%rsp)
movl %ecx, 0x4484(%rsp)
movq %rax, 0x4478(%rsp)
movq 0x44a8(%rsp), %rcx
movq %rcx, 0x2b8(%rsp)
movq 0x4490(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4488(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4484(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4478(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x44a4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x44a0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x449c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4db8(%rsp)
movl $0x10, 0x4db4(%rsp)
movq 0x4db8(%rsp), %rax
movslq 0x4db4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4db4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2c0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1630(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1331048
movq 0x2c0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1648(%rsp)
movb $0x1, 0x32f3(%rsp)
testb $0x1, 0x32f3(%rsp)
jne 0x1331189
leaq 0x1608(%rsp), %rax
movq %rax, 0x3308(%rsp)
movq 0x3308(%rsp), %rax
movq %rax, 0x4f28(%rsp)
movq 0x4f28(%rsp), %rax
movq %rax, 0x2b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x133112c
movq 0x2b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f24(%rsp) # imm = 0xFFFFFFFF
movl 0x4f24(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f20(%rsp)
cmpl $0x1, 0x4f20(%rsp)
jne 0x133112c
movq 0x2b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13310fa
movq 0x2b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13310f8
jmp 0x133112a
movq 0x2b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5650(%rsp)
cmpq $0x0, 0x5650(%rsp)
je 0x1331128
movq 0x5650(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x133112a
jmp 0x133112c
movq 0x2b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1331187
movq %rax, %rdi
callq 0x678a0
jmp 0x1331189
leaq 0x1608(%rsp), %rax
movq %rax, 0x34b0(%rsp)
movq 0x34b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2a0(%rsp)
leaq 0x1608(%rsp), %rax
movq %rax, 0x31c8(%rsp)
movq 0x31c8(%rsp), %rax
movq %rax, 0x5058(%rsp)
movq 0x5058(%rsp), %rax
movq %rax, 0x2a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x133127a
movq 0x2a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5054(%rsp) # imm = 0xFFFFFFFF
movl 0x5054(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5050(%rsp)
cmpl $0x1, 0x5050(%rsp)
jne 0x133127a
movq 0x2a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1331248
movq 0x2a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1331246
jmp 0x1331278
movq 0x2a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55b8(%rsp)
cmpq $0x0, 0x55b8(%rsp)
je 0x1331276
movq 0x55b8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1331278
jmp 0x133127a
movq 0x2a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13312d5
movq %rax, %rdi
callq 0x678a0
movq 0x2a0(%rsp), %rax
movq %rax, 0x1650(%rsp)
movl $0x0, 0x1604(%rsp)
movl 0x1604(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jge 0x133143a
movl $0x0, 0x1600(%rsp)
movl 0x1600(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jge 0x1331422
movq 0x16f0(%rsp), %rax
movl 0x1600(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x3598(%rsp)
movq 0x3598(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x15c0(%rsp)
movq 0x16a0(%rsp), %rax
movq %rax, 0x3590(%rsp)
movq 0x3590(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1580(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x15c0(%rsp), %rsi
leaq 0x1580(%rsp), %rdx
callq 0x1453940
vmovaps %zmm0, 0x1540(%rsp)
movq 0x1650(%rsp), %rax
vmovaps 0x1540(%rsp), %zmm0
movq %rax, 0x3ab8(%rsp)
vmovaps %zmm0, 0x3a40(%rsp)
vmovaps 0x3a40(%rsp), %zmm0
movq 0x3ab8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x16a0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x16a0(%rsp)
movq 0x1650(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1650(%rsp)
movl 0x1600(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1600(%rsp)
jmp 0x133130f
jmp 0x1331424
movl 0x1604(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1604(%rsp)
jmp 0x13312f0
jmp 0x133143c
movl 0x16fc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x16fc(%rsp)
jmp 0x13305c6
movl $0x0, 0x2bd4(%rsp)
jmp 0x1335f50
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x14479a0
movl %eax, 0x2bd4(%rsp)
jmp 0x1335f50
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movl 0x2b9c(%rsp), %ecx
movq 0x2b90(%rsp), %r8
movl 0x2b8c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c18(%rsp)
movq 0x2c18(%rsp), %rcx
movq %rcx, 0x290(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x29f(%rsp)
je 0x1331536
movq 0x290(%rsp), %rax
movq %rax, 0x41c8(%rsp)
movq 0x41c8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x29f(%rsp)
movb 0x29f(%rsp), %al
testb $0x1, %al
jne 0x1331543
jmp 0x1331553
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1335f50
movq 0x2bc0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1331ffa
movl $0x0, 0x153c(%rsp)
movl 0x153c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jge 0x1331fea
movq 0x2bc8(%rsp), %rcx
movl 0x153c(%rsp), %eax
leaq 0x14e8(%rsp), %rdx
movq %rdx, 0x2cf8(%rsp)
movq %rcx, 0x2cf0(%rsp)
movl %eax, 0x2cec(%rsp)
movq 0x2cf0(%rsp), %rax
movq %rax, 0x288(%rsp)
movb $0x0, 0x2ceb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2cec(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x14e8(%rsp), %r10
movq %r10, 0x4a90(%rsp)
movl %r9d, 0x4a8c(%rsp)
movl %r8d, 0x4a88(%rsp)
movl %edi, 0x4a84(%rsp)
movq %rsi, 0x4a78(%rsp)
movq %rdx, 0x4a70(%rsp)
movl %ecx, 0x4a6c(%rsp)
movq %rax, 0x4a60(%rsp)
movq 0x4a90(%rsp), %rcx
movq %rcx, 0x280(%rsp)
movq 0x4a78(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4a70(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4a6c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4a60(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4a8c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4a88(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4a84(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c08(%rsp)
movl $0x10, 0x4c04(%rsp)
movq 0x4c08(%rsp), %rax
movslq 0x4c04(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c04(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x288(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1510(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1331740
movq 0x288(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1528(%rsp)
movb $0x1, 0x2ceb(%rsp)
testb $0x1, 0x2ceb(%rsp)
jne 0x1331881
leaq 0x14e8(%rsp), %rax
movq %rax, 0x30a0(%rsp)
movq 0x30a0(%rsp), %rax
movq %rax, 0x52a8(%rsp)
movq 0x52a8(%rsp), %rax
movq %rax, 0x278(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1331824
movq 0x278(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x52a4(%rsp) # imm = 0xFFFFFFFF
movl 0x52a4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x52a0(%rsp)
cmpl $0x1, 0x52a0(%rsp)
jne 0x1331824
movq 0x278(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13317f2
movq 0x278(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13317f0
jmp 0x1331822
movq 0x278(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5490(%rsp)
cmpq $0x0, 0x5490(%rsp)
je 0x1331820
movq 0x5490(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1331822
jmp 0x1331824
movq 0x278(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133187f
movq %rax, %rdi
callq 0x678a0
jmp 0x1331881
leaq 0x14e8(%rsp), %rax
movq %rax, 0x2f40(%rsp)
movq 0x2f40(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x268(%rsp)
leaq 0x14e8(%rsp), %rax
movq %rax, 0x31d0(%rsp)
movq 0x31d0(%rsp), %rax
movq %rax, 0x5048(%rsp)
movq 0x5048(%rsp), %rax
movq %rax, 0x270(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1331972
movq 0x270(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5044(%rsp) # imm = 0xFFFFFFFF
movl 0x5044(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5040(%rsp)
cmpl $0x1, 0x5040(%rsp)
jne 0x1331972
movq 0x270(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1331940
movq 0x270(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133193e
jmp 0x1331970
movq 0x270(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55c0(%rsp)
cmpq $0x0, 0x55c0(%rsp)
je 0x133196e
movq 0x55c0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1331970
jmp 0x1331972
movq 0x270(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13319cd
movq %rax, %rdi
callq 0x678a0
movq 0x268(%rsp), %rax
movq %rax, 0x1530(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x153c(%rsp), %eax
movq %rcx, 0x4068(%rsp)
movl %eax, 0x4064(%rsp)
movq 0x4068(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x4064(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x14e0(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x153c(%rsp), %eax
leaq 0x1490(%rsp), %rdx
movq %rdx, 0x32e0(%rsp)
movq %rcx, 0x32d8(%rsp)
movl %eax, 0x32d4(%rsp)
movq 0x32d8(%rsp), %rax
movq %rax, 0x260(%rsp)
movb $0x0, 0x32d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x32d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1490(%rsp), %r10
movq %r10, 0x44e0(%rsp)
movl %r9d, 0x44dc(%rsp)
movl %r8d, 0x44d8(%rsp)
movl %edi, 0x44d4(%rsp)
movq %rsi, 0x44c8(%rsp)
movq %rdx, 0x44c0(%rsp)
movl %ecx, 0x44bc(%rsp)
movq %rax, 0x44b0(%rsp)
movq 0x44e0(%rsp), %rcx
movq %rcx, 0x258(%rsp)
movq 0x44c8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x44c0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x44bc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x44b0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x44dc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x44d8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x44d4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4da8(%rsp)
movl $0x10, 0x4da4(%rsp)
movq 0x4da8(%rsp), %rax
movslq 0x4da4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4da4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x260(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x14b8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1331be2
movq 0x260(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x14d0(%rsp)
movb $0x1, 0x32d3(%rsp)
testb $0x1, 0x32d3(%rsp)
jne 0x1331d23
leaq 0x1490(%rsp), %rax
movq %rax, 0x32e8(%rsp)
movq 0x32e8(%rsp), %rax
movq %rax, 0x4f38(%rsp)
movq 0x4f38(%rsp), %rax
movq %rax, 0x250(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1331cc6
movq 0x250(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f34(%rsp) # imm = 0xFFFFFFFF
movl 0x4f34(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f30(%rsp)
cmpl $0x1, 0x4f30(%rsp)
jne 0x1331cc6
movq 0x250(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1331c94
movq 0x250(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1331c92
jmp 0x1331cc4
movq 0x250(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5648(%rsp)
cmpq $0x0, 0x5648(%rsp)
je 0x1331cc2
movq 0x5648(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1331cc4
jmp 0x1331cc6
movq 0x250(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1331d21
movq %rax, %rdi
callq 0x678a0
jmp 0x1331d23
leaq 0x1490(%rsp), %rax
movq %rax, 0x34a8(%rsp)
movq 0x34a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x240(%rsp)
leaq 0x1490(%rsp), %rax
movq %rax, 0x31d8(%rsp)
movq 0x31d8(%rsp), %rax
movq %rax, 0x5038(%rsp)
movq 0x5038(%rsp), %rax
movq %rax, 0x248(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1331e14
movq 0x248(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5034(%rsp) # imm = 0xFFFFFFFF
movl 0x5034(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5030(%rsp)
cmpl $0x1, 0x5030(%rsp)
jne 0x1331e14
movq 0x248(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1331de2
movq 0x248(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1331de0
jmp 0x1331e12
movq 0x248(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55c8(%rsp)
cmpq $0x0, 0x55c8(%rsp)
je 0x1331e10
movq 0x55c8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1331e12
jmp 0x1331e14
movq 0x248(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1331e6f
movq %rax, %rdi
callq 0x678a0
movq 0x240(%rsp), %rax
movq %rax, 0x14d8(%rsp)
movl $0x0, 0x148c(%rsp)
movl 0x148c(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jge 0x1331fd2
movq 0x14e0(%rsp), %rax
movq %rax, 0x3588(%rsp)
movq 0x3588(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1440(%rsp)
movl $0x0, 0x143c(%rsp)
movl 0x143c(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jge 0x1331fa8
movq 0x1530(%rsp), %rax
movq %rax, 0x3580(%rsp)
movq 0x3580(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x13c0(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x13c0(%rsp), %rsi
leaq 0x1440(%rsp), %rdx
callq 0x1453940
vmovaps %zmm0, 0x1380(%rsp)
movq 0x14d8(%rsp), %rax
vmovaps 0x1380(%rsp), %zmm0
movq %rax, 0x3a38(%rsp)
vmovaps %zmm0, 0x39c0(%rsp)
vmovaps 0x39c0(%rsp), %zmm0
movq 0x3a38(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x1530(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1530(%rsp)
movq 0x14d8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x14d8(%rsp)
movl 0x143c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x143c(%rsp)
jmp 0x1331ecf
movq 0x14e0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x14e0(%rsp)
movl 0x148c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x148c(%rsp)
jmp 0x1331e8a
jmp 0x1331fd4
movl 0x153c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x153c(%rsp)
jmp 0x1331570
movl $0x0, 0x2bd4(%rsp)
jmp 0x1335f50
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1332a7f
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1332055
cmpl $0x1, 0x2b6c(%rsp)
jne 0x1332055
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x1448bb0
movl %eax, 0x2bd4(%rsp)
jmp 0x1335f50
movl $0x0, 0x137c(%rsp)
movl 0x137c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jge 0x1332a6f
movq 0x2bc8(%rsp), %rcx
movl 0x137c(%rsp), %eax
leaq 0x1328(%rsp), %rdx
movq %rdx, 0x2ce0(%rsp)
movq %rcx, 0x2cd8(%rsp)
movl %eax, 0x2cd4(%rsp)
movq 0x2cd8(%rsp), %rax
movq %rax, 0x238(%rsp)
movb $0x0, 0x2cd3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2cd4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1328(%rsp), %r10
movq %r10, 0x4ac8(%rsp)
movl %r9d, 0x4ac4(%rsp)
movl %r8d, 0x4ac0(%rsp)
movl %edi, 0x4abc(%rsp)
movq %rsi, 0x4ab0(%rsp)
movq %rdx, 0x4aa8(%rsp)
movl %ecx, 0x4aa4(%rsp)
movq %rax, 0x4a98(%rsp)
movq 0x4ac8(%rsp), %rcx
movq %rcx, 0x230(%rsp)
movq 0x4ab0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4aa8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4aa4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4a98(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4ac4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4ac0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4abc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4bf8(%rsp)
movl $0x10, 0x4bf4(%rsp)
movq 0x4bf8(%rsp), %rax
movslq 0x4bf4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4bf4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x238(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1350(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1332230
movq 0x238(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1368(%rsp)
movb $0x1, 0x2cd3(%rsp)
testb $0x1, 0x2cd3(%rsp)
jne 0x1332371
leaq 0x1328(%rsp), %rax
movq %rax, 0x30a8(%rsp)
movq 0x30a8(%rsp), %rax
movq %rax, 0x5298(%rsp)
movq 0x5298(%rsp), %rax
movq %rax, 0x228(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1332314
movq 0x228(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5294(%rsp) # imm = 0xFFFFFFFF
movl 0x5294(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5290(%rsp)
cmpl $0x1, 0x5290(%rsp)
jne 0x1332314
movq 0x228(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13322e2
movq 0x228(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13322e0
jmp 0x1332312
movq 0x228(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5498(%rsp)
cmpq $0x0, 0x5498(%rsp)
je 0x1332310
movq 0x5498(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1332312
jmp 0x1332314
movq 0x228(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133236f
movq %rax, %rdi
callq 0x678a0
jmp 0x1332371
leaq 0x1328(%rsp), %rax
movq %rax, 0x2f38(%rsp)
movq 0x2f38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x218(%rsp)
leaq 0x1328(%rsp), %rax
movq %rax, 0x31e0(%rsp)
movq 0x31e0(%rsp), %rax
movq %rax, 0x5028(%rsp)
movq 0x5028(%rsp), %rax
movq %rax, 0x220(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1332462
movq 0x220(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5024(%rsp) # imm = 0xFFFFFFFF
movl 0x5024(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5020(%rsp)
cmpl $0x1, 0x5020(%rsp)
jne 0x1332462
movq 0x220(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1332430
movq 0x220(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133242e
jmp 0x1332460
movq 0x220(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55d0(%rsp)
cmpq $0x0, 0x55d0(%rsp)
je 0x133245e
movq 0x55d0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1332460
jmp 0x1332462
movq 0x220(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13324bd
movq %rax, %rdi
callq 0x678a0
movq 0x218(%rsp), %rax
movq %rax, 0x1370(%rsp)
movq 0x2bc0(%rsp), %rax
movq %rax, 0x2f30(%rsp)
movq 0x2f30(%rsp), %rax
movq (%rax), %rax
movl 0x137c(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x3578(%rsp)
movq 0x3578(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x12c0(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x137c(%rsp), %eax
leaq 0x1270(%rsp), %rdx
movq %rdx, 0x32c0(%rsp)
movq %rcx, 0x32b8(%rsp)
movl %eax, 0x32b4(%rsp)
movq 0x32b8(%rsp), %rax
movq %rax, 0x210(%rsp)
movb $0x0, 0x32b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x32b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1270(%rsp), %r10
movq %r10, 0x4518(%rsp)
movl %r9d, 0x4514(%rsp)
movl %r8d, 0x4510(%rsp)
movl %edi, 0x450c(%rsp)
movq %rsi, 0x4500(%rsp)
movq %rdx, 0x44f8(%rsp)
movl %ecx, 0x44f4(%rsp)
movq %rax, 0x44e8(%rsp)
movq 0x4518(%rsp), %rcx
movq %rcx, 0x208(%rsp)
movq 0x4500(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x44f8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x44f4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x44e8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4514(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4510(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x450c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d98(%rsp)
movl $0x10, 0x4d94(%rsp)
movq 0x4d98(%rsp), %rax
movslq 0x4d94(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d94(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x210(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1298(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13326d6
movq 0x210(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x12b0(%rsp)
movb $0x1, 0x32b3(%rsp)
testb $0x1, 0x32b3(%rsp)
jne 0x1332817
leaq 0x1270(%rsp), %rax
movq %rax, 0x32c8(%rsp)
movq 0x32c8(%rsp), %rax
movq %rax, 0x4f48(%rsp)
movq 0x4f48(%rsp), %rax
movq %rax, 0x200(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13327ba
movq 0x200(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f44(%rsp) # imm = 0xFFFFFFFF
movl 0x4f44(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f40(%rsp)
cmpl $0x1, 0x4f40(%rsp)
jne 0x13327ba
movq 0x200(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1332788
movq 0x200(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1332786
jmp 0x13327b8
movq 0x200(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5640(%rsp)
cmpq $0x0, 0x5640(%rsp)
je 0x13327b6
movq 0x5640(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13327b8
jmp 0x13327ba
movq 0x200(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1332815
movq %rax, %rdi
callq 0x678a0
jmp 0x1332817
leaq 0x1270(%rsp), %rax
movq %rax, 0x34a0(%rsp)
movq 0x34a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1f0(%rsp)
leaq 0x1270(%rsp), %rax
movq %rax, 0x31e8(%rsp)
movq 0x31e8(%rsp), %rax
movq %rax, 0x5018(%rsp)
movq 0x5018(%rsp), %rax
movq %rax, 0x1f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1332908
movq 0x1f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5014(%rsp) # imm = 0xFFFFFFFF
movl 0x5014(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5010(%rsp)
cmpl $0x1, 0x5010(%rsp)
jne 0x1332908
movq 0x1f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13328d6
movq 0x1f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13328d4
jmp 0x1332906
movq 0x1f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55d8(%rsp)
cmpq $0x0, 0x55d8(%rsp)
je 0x1332904
movq 0x55d8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1332906
jmp 0x1332908
movq 0x1f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1332963
movq %rax, %rdi
callq 0x678a0
movq 0x1f0(%rsp), %rax
movq %rax, 0x12b8(%rsp)
movl $0x0, 0x126c(%rsp)
movl 0x126c(%rsp), %eax
cmpl 0x2b98(%rsp), %eax
jge 0x1332a57
movq 0x1370(%rsp), %rax
movq %rax, 0x3570(%rsp)
movq 0x3570(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1200(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x1200(%rsp), %rsi
leaq 0x12c0(%rsp), %rdx
callq 0x1453940
vmovaps %zmm0, 0x11c0(%rsp)
movq 0x12b8(%rsp), %rax
vmovaps 0x11c0(%rsp), %zmm0
movq %rax, 0x39b8(%rsp)
vmovaps %zmm0, 0x3940(%rsp)
vmovaps 0x3940(%rsp), %zmm0
movq 0x39b8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x1370(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1370(%rsp)
movq 0x12b8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x12b8(%rsp)
movl 0x126c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x126c(%rsp)
jmp 0x133297e
jmp 0x1332a59
movl 0x137c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x137c(%rsp)
jmp 0x1332060
movl $0x0, 0x2bd4(%rsp)
jmp 0x1335f50
jmp 0x1335f43
movq 0x2bc8(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x133457d
movq 0x2bc0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1333641
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b80(%rsp), %ecx
movl 0x2b7c(%rsp), %r8d
movq 0x2b70(%rsp), %r9
movl 0x2b6c(%rsp), %r10d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c10(%rsp)
movq 0x2c10(%rsp), %rcx
movq %rcx, 0x1e0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1ef(%rsp)
je 0x1332b58
movq 0x1e0(%rsp), %rax
movq %rax, 0x41d0(%rsp)
movq 0x41d0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1ef(%rsp)
movb 0x1ef(%rsp), %al
testb $0x1, %al
jne 0x1332b65
jmp 0x1332b75
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1335f50
movl $0x0, 0x11bc(%rsp)
movl 0x11bc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x1333631
movq 0x2bc8(%rsp), %rcx
movl 0x11bc(%rsp), %eax
movq %rcx, 0x4058(%rsp)
movl %eax, 0x4054(%rsp)
movq 0x4058(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x4054(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x11b0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x11bc(%rsp), %eax
leaq 0x1160(%rsp), %rdx
movq %rdx, 0x2cc8(%rsp)
movq %rcx, 0x2cc0(%rsp)
movl %eax, 0x2cbc(%rsp)
movq 0x2cc0(%rsp), %rax
movq %rax, 0x1d8(%rsp)
movb $0x0, 0x2cbb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2cbc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1160(%rsp), %r10
movq %r10, 0x4b00(%rsp)
movl %r9d, 0x4afc(%rsp)
movl %r8d, 0x4af8(%rsp)
movl %edi, 0x4af4(%rsp)
movq %rsi, 0x4ae8(%rsp)
movq %rdx, 0x4ae0(%rsp)
movl %ecx, 0x4adc(%rsp)
movq %rax, 0x4ad0(%rsp)
movq 0x4b00(%rsp), %rcx
movq %rcx, 0x1d0(%rsp)
movq 0x4ae8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4ae0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4adc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4ad0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4afc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4af8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4af4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4be8(%rsp)
movl $0x10, 0x4be4(%rsp)
movq 0x4be8(%rsp), %rax
movslq 0x4be4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4be4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x1d8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1188(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1332d99
movq 0x1d8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x11a0(%rsp)
movb $0x1, 0x2cbb(%rsp)
testb $0x1, 0x2cbb(%rsp)
jne 0x1332eda
leaq 0x1160(%rsp), %rax
movq %rax, 0x30b0(%rsp)
movq 0x30b0(%rsp), %rax
movq %rax, 0x5288(%rsp)
movq 0x5288(%rsp), %rax
movq %rax, 0x1c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1332e7d
movq 0x1c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5284(%rsp) # imm = 0xFFFFFFFF
movl 0x5284(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5280(%rsp)
cmpl $0x1, 0x5280(%rsp)
jne 0x1332e7d
movq 0x1c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1332e4b
movq 0x1c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1332e49
jmp 0x1332e7b
movq 0x1c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54a0(%rsp)
cmpq $0x0, 0x54a0(%rsp)
je 0x1332e79
movq 0x54a0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1332e7b
jmp 0x1332e7d
movq 0x1c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1332ed8
movq %rax, %rdi
callq 0x678a0
jmp 0x1332eda
leaq 0x1160(%rsp), %rax
movq %rax, 0x2f28(%rsp)
movq 0x2f28(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1b8(%rsp)
leaq 0x1160(%rsp), %rax
movq %rax, 0x31f0(%rsp)
movq 0x31f0(%rsp), %rax
movq %rax, 0x5008(%rsp)
movq 0x5008(%rsp), %rax
movq %rax, 0x1c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1332fcb
movq 0x1c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5004(%rsp) # imm = 0xFFFFFFFF
movl 0x5004(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5000(%rsp)
cmpl $0x1, 0x5000(%rsp)
jne 0x1332fcb
movq 0x1c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1332f99
movq 0x1c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1332f97
jmp 0x1332fc9
movq 0x1c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55e0(%rsp)
cmpq $0x0, 0x55e0(%rsp)
je 0x1332fc7
movq 0x55e0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1332fc9
jmp 0x1332fcb
movq 0x1c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1333026
movq %rax, %rdi
callq 0x678a0
movq 0x1b8(%rsp), %rax
movq %rax, 0x11a8(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x11bc(%rsp), %eax
leaq 0x1110(%rsp), %rdx
movq %rdx, 0x32a0(%rsp)
movq %rcx, 0x3298(%rsp)
movl %eax, 0x3294(%rsp)
movq 0x3298(%rsp), %rax
movq %rax, 0x1b0(%rsp)
movb $0x0, 0x3293(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3294(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1110(%rsp), %r10
movq %r10, 0x4550(%rsp)
movl %r9d, 0x454c(%rsp)
movl %r8d, 0x4548(%rsp)
movl %edi, 0x4544(%rsp)
movq %rsi, 0x4538(%rsp)
movq %rdx, 0x4530(%rsp)
movl %ecx, 0x452c(%rsp)
movq %rax, 0x4520(%rsp)
movq 0x4550(%rsp), %rcx
movq %rcx, 0x1a8(%rsp)
movq 0x4538(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4530(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x452c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4520(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x454c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4548(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4544(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d88(%rsp)
movl $0x10, 0x4d84(%rsp)
movq 0x4d88(%rsp), %rax
movslq 0x4d84(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d84(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x1b0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1138(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13331f2
movq 0x1b0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1150(%rsp)
movb $0x1, 0x3293(%rsp)
testb $0x1, 0x3293(%rsp)
jne 0x1333333
leaq 0x1110(%rsp), %rax
movq %rax, 0x32a8(%rsp)
movq 0x32a8(%rsp), %rax
movq %rax, 0x4f58(%rsp)
movq 0x4f58(%rsp), %rax
movq %rax, 0x1a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13332d6
movq 0x1a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f54(%rsp) # imm = 0xFFFFFFFF
movl 0x4f54(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f50(%rsp)
cmpl $0x1, 0x4f50(%rsp)
jne 0x13332d6
movq 0x1a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13332a4
movq 0x1a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13332a2
jmp 0x13332d4
movq 0x1a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5638(%rsp)
cmpq $0x0, 0x5638(%rsp)
je 0x13332d2
movq 0x5638(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13332d4
jmp 0x13332d6
movq 0x1a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1333331
movq %rax, %rdi
callq 0x678a0
jmp 0x1333333
leaq 0x1110(%rsp), %rax
movq %rax, 0x3498(%rsp)
movq 0x3498(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x190(%rsp)
leaq 0x1110(%rsp), %rax
movq %rax, 0x31f8(%rsp)
movq 0x31f8(%rsp), %rax
movq %rax, 0x4ff8(%rsp)
movq 0x4ff8(%rsp), %rax
movq %rax, 0x198(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1333424
movq 0x198(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4ff4(%rsp) # imm = 0xFFFFFFFF
movl 0x4ff4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4ff0(%rsp)
cmpl $0x1, 0x4ff0(%rsp)
jne 0x1333424
movq 0x198(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13333f2
movq 0x198(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13333f0
jmp 0x1333422
movq 0x198(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55e8(%rsp)
cmpq $0x0, 0x55e8(%rsp)
je 0x1333420
movq 0x55e8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1333422
jmp 0x1333424
movq 0x198(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133347f
movq %rax, %rdi
callq 0x678a0
movq 0x190(%rsp), %rax
movq %rax, 0x1158(%rsp)
movl $0x0, 0x110c(%rsp)
movl 0x110c(%rsp), %eax
cmpl 0x2b80(%rsp), %eax
jge 0x1333619
movq 0x11b0(%rsp), %rax
movq %rax, 0x3568(%rsp)
movq 0x3568(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x10c0(%rsp)
movl $0x0, 0x10bc(%rsp)
movl 0x10bc(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jge 0x13335ef
movl $0x0, 0x10b8(%rsp)
movl 0x10b8(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jge 0x13335d7
movq 0x11a8(%rsp), %rax
movq %rax, 0x3560(%rsp)
movq 0x3560(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1040(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x10c0(%rsp), %rsi
leaq 0x1040(%rsp), %rdx
callq 0x1453940
vmovaps %zmm0, 0x1000(%rsp)
movq 0x1158(%rsp), %rax
vmovaps 0x1000(%rsp), %zmm0
movq %rax, 0x3938(%rsp)
vmovaps %zmm0, 0x38c0(%rsp)
vmovaps 0x38c0(%rsp), %zmm0
movq 0x3938(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x11a8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x11a8(%rsp)
movq 0x1158(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1158(%rsp)
movl 0x10b8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x10b8(%rsp)
jmp 0x13334fe
jmp 0x13335d9
movl 0x10bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x10bc(%rsp)
jmp 0x13334df
movq 0x11b0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x11b0(%rsp)
movl 0x110c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x110c(%rsp)
jmp 0x133349a
jmp 0x133361b
movl 0x11bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x11bc(%rsp)
jmp 0x1332b80
movl $0x0, 0x2bd4(%rsp)
jmp 0x1335f50
movq 0x2bc0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x13341a8
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b7c(%rsp), %ecx
movq 0x2b70(%rsp), %r8
movl 0x2b6c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c08(%rsp)
movq 0x2c08(%rsp), %rcx
movq %rcx, 0x180(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x18f(%rsp)
je 0x13336f6
movq 0x180(%rsp), %rax
movq %rax, 0x41d8(%rsp)
movq 0x41d8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x18f(%rsp)
movb 0x18f(%rsp), %al
testb $0x1, %al
jne 0x1333703
jmp 0x1333713
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1335f50
movl $0x0, 0xffc(%rsp)
movl 0xffc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x1334198
movq 0x2bc8(%rsp), %rcx
movl 0xffc(%rsp), %eax
movq %rcx, 0x4048(%rsp)
movl %eax, 0x4044(%rsp)
movq 0x4048(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x4044(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xff0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0xffc(%rsp), %eax
leaq 0xfa0(%rsp), %rdx
movq %rdx, 0x2cb0(%rsp)
movq %rcx, 0x2ca8(%rsp)
movl %eax, 0x2ca4(%rsp)
movq 0x2ca8(%rsp), %rax
movq %rax, 0x178(%rsp)
movb $0x0, 0x2ca3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2ca4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xfa0(%rsp), %r10
movq %r10, 0x4b38(%rsp)
movl %r9d, 0x4b34(%rsp)
movl %r8d, 0x4b30(%rsp)
movl %edi, 0x4b2c(%rsp)
movq %rsi, 0x4b20(%rsp)
movq %rdx, 0x4b18(%rsp)
movl %ecx, 0x4b14(%rsp)
movq %rax, 0x4b08(%rsp)
movq 0x4b38(%rsp), %rcx
movq %rcx, 0x170(%rsp)
movq 0x4b20(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4b18(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4b14(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4b08(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4b34(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4b30(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4b2c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4bd8(%rsp)
movl $0x10, 0x4bd4(%rsp)
movq 0x4bd8(%rsp), %rax
movslq 0x4bd4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4bd4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x178(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xfc8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1333937
movq 0x178(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xfe0(%rsp)
movb $0x1, 0x2ca3(%rsp)
testb $0x1, 0x2ca3(%rsp)
jne 0x1333a78
leaq 0xfa0(%rsp), %rax
movq %rax, 0x30b8(%rsp)
movq 0x30b8(%rsp), %rax
movq %rax, 0x5278(%rsp)
movq 0x5278(%rsp), %rax
movq %rax, 0x168(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1333a1b
movq 0x168(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5274(%rsp) # imm = 0xFFFFFFFF
movl 0x5274(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5270(%rsp)
cmpl $0x1, 0x5270(%rsp)
jne 0x1333a1b
movq 0x168(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13339e9
movq 0x168(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13339e7
jmp 0x1333a19
movq 0x168(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54a8(%rsp)
cmpq $0x0, 0x54a8(%rsp)
je 0x1333a17
movq 0x54a8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1333a19
jmp 0x1333a1b
movq 0x168(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1333a76
movq %rax, %rdi
callq 0x678a0
jmp 0x1333a78
leaq 0xfa0(%rsp), %rax
movq %rax, 0x2f20(%rsp)
movq 0x2f20(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x158(%rsp)
leaq 0xfa0(%rsp), %rax
movq %rax, 0x3200(%rsp)
movq 0x3200(%rsp), %rax
movq %rax, 0x4fe8(%rsp)
movq 0x4fe8(%rsp), %rax
movq %rax, 0x160(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1333b69
movq 0x160(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4fe4(%rsp) # imm = 0xFFFFFFFF
movl 0x4fe4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4fe0(%rsp)
cmpl $0x1, 0x4fe0(%rsp)
jne 0x1333b69
movq 0x160(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1333b37
movq 0x160(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1333b35
jmp 0x1333b67
movq 0x160(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55f0(%rsp)
cmpq $0x0, 0x55f0(%rsp)
je 0x1333b65
movq 0x55f0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1333b67
jmp 0x1333b69
movq 0x160(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1333bc4
movq %rax, %rdi
callq 0x678a0
movq 0x158(%rsp), %rax
movq %rax, 0xfe8(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0xffc(%rsp), %eax
leaq 0xf50(%rsp), %rdx
movq %rdx, 0x3280(%rsp)
movq %rcx, 0x3278(%rsp)
movl %eax, 0x3274(%rsp)
movq 0x3278(%rsp), %rax
movq %rax, 0x150(%rsp)
movb $0x0, 0x3273(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3274(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xf50(%rsp), %r10
movq %r10, 0x4588(%rsp)
movl %r9d, 0x4584(%rsp)
movl %r8d, 0x4580(%rsp)
movl %edi, 0x457c(%rsp)
movq %rsi, 0x4570(%rsp)
movq %rdx, 0x4568(%rsp)
movl %ecx, 0x4564(%rsp)
movq %rax, 0x4558(%rsp)
movq 0x4588(%rsp), %rcx
movq %rcx, 0x148(%rsp)
movq 0x4570(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4568(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4564(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4558(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4584(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4580(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x457c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d78(%rsp)
movl $0x10, 0x4d74(%rsp)
movq 0x4d78(%rsp), %rax
movslq 0x4d74(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d74(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x150(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf78(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1333d90
movq 0x150(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xf90(%rsp)
movb $0x1, 0x3273(%rsp)
testb $0x1, 0x3273(%rsp)
jne 0x1333ed1
leaq 0xf50(%rsp), %rax
movq %rax, 0x3288(%rsp)
movq 0x3288(%rsp), %rax
movq %rax, 0x4f68(%rsp)
movq 0x4f68(%rsp), %rax
movq %rax, 0x140(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1333e74
movq 0x140(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f64(%rsp) # imm = 0xFFFFFFFF
movl 0x4f64(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f60(%rsp)
cmpl $0x1, 0x4f60(%rsp)
jne 0x1333e74
movq 0x140(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1333e42
movq 0x140(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1333e40
jmp 0x1333e72
movq 0x140(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5630(%rsp)
cmpq $0x0, 0x5630(%rsp)
je 0x1333e70
movq 0x5630(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1333e72
jmp 0x1333e74
movq 0x140(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1333ecf
movq %rax, %rdi
callq 0x678a0
jmp 0x1333ed1
leaq 0xf50(%rsp), %rax
movq %rax, 0x3490(%rsp)
movq 0x3490(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x130(%rsp)
leaq 0xf50(%rsp), %rax
movq %rax, 0x3208(%rsp)
movq 0x3208(%rsp), %rax
movq %rax, 0x4fd8(%rsp)
movq 0x4fd8(%rsp), %rax
movq %rax, 0x138(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1333fc2
movq 0x138(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4fd4(%rsp) # imm = 0xFFFFFFFF
movl 0x4fd4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4fd0(%rsp)
cmpl $0x1, 0x4fd0(%rsp)
jne 0x1333fc2
movq 0x138(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1333f90
movq 0x138(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1333f8e
jmp 0x1333fc0
movq 0x138(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55f8(%rsp)
cmpq $0x0, 0x55f8(%rsp)
je 0x1333fbe
movq 0x55f8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1333fc0
jmp 0x1333fc2
movq 0x138(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133401d
movq %rax, %rdi
callq 0x678a0
movq 0x130(%rsp), %rax
movq %rax, 0xf98(%rsp)
movl $0x0, 0xf4c(%rsp)
movl 0xf4c(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jge 0x1334180
movq 0xff0(%rsp), %rax
movq %rax, 0x3558(%rsp)
movq 0x3558(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xf00(%rsp)
movl $0x0, 0xefc(%rsp)
movl 0xefc(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jge 0x1334156
movq 0xfe8(%rsp), %rax
movq %rax, 0x3550(%rsp)
movq 0x3550(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xe80(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0xf00(%rsp), %rsi
leaq 0xe80(%rsp), %rdx
callq 0x1453940
vmovaps %zmm0, 0xe40(%rsp)
movq 0xf98(%rsp), %rax
vmovaps 0xe40(%rsp), %zmm0
movq %rax, 0x38b8(%rsp)
vmovaps %zmm0, 0x3840(%rsp)
vmovaps 0x3840(%rsp), %zmm0
movq 0x38b8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0xfe8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xfe8(%rsp)
movq 0xf98(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xf98(%rsp)
movl 0xefc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xefc(%rsp)
jmp 0x133407d
movq 0xff0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xff0(%rsp)
movl 0xf4c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xf4c(%rsp)
jmp 0x1334038
jmp 0x1334182
movl 0xffc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xffc(%rsp)
jmp 0x133371e
movl $0x0, 0x2bd4(%rsp)
jmp 0x1335f50
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movq 0x2b90(%rsp), %rcx
movl 0x2b8c(%rsp), %r8d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c00(%rsp)
movq 0x2c00(%rsp), %rcx
movq %rcx, 0x120(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x12f(%rsp)
je 0x1334240
movq 0x120(%rsp), %rax
movq %rax, 0x41e0(%rsp)
movq 0x41e0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x12f(%rsp)
movb 0x12f(%rsp), %al
testb $0x1, %al
jne 0x133424d
jmp 0x133425d
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1335f50
movq 0x2bc0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x133429c
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x14479a0
movl %eax, 0x2bd4(%rsp)
jmp 0x1335f50
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1334578
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movq 0x2b90(%rsp), %rcx
movl 0x2b8c(%rsp), %r8d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2bf8(%rsp)
movq 0x2bf8(%rsp), %rcx
movq %rcx, 0x110(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x11f(%rsp)
je 0x1334346
movq 0x110(%rsp), %rax
movq %rax, 0x41e8(%rsp)
movq 0x41e8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x11f(%rsp)
movb 0x11f(%rsp), %al
testb $0x1, %al
jne 0x1334353
jmp 0x1334363
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1335f50
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x13343ac
cmpl $0x1, 0x2b6c(%rsp)
jne 0x13343ac
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x1448bb0
movl %eax, 0x2bd4(%rsp)
jmp 0x1335f50
movq 0x2bc8(%rsp), %rax
movq %rax, 0x2f18(%rsp)
movq 0x2f18(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xe38(%rsp)
movq 0x2bc0(%rsp), %rax
movq %rax, 0x2f10(%rsp)
movq 0x2f10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xe30(%rsp)
movq 0x2bb8(%rsp), %rax
movq %rax, 0x3488(%rsp)
movq 0x3488(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xe28(%rsp)
movl $0x0, 0xe24(%rsp)
movl 0xe24(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jge 0x1334568
movq 0xe30(%rsp), %rax
movq %rax, 0x3548(%rsp)
movq 0x3548(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xdc0(%rsp)
movl $0x0, 0xdbc(%rsp)
movl 0xdbc(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jge 0x133453e
movq 0xe38(%rsp), %rax
movq %rax, 0x3540(%rsp)
movq 0x3540(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xd40(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0xd40(%rsp), %rsi
leaq 0xdc0(%rsp), %rdx
callq 0x1453940
vmovaps %zmm0, 0xd00(%rsp)
movq 0xe28(%rsp), %rax
vmovaps 0xd00(%rsp), %zmm0
movq %rax, 0x3838(%rsp)
vmovaps %zmm0, 0x37c0(%rsp)
vmovaps 0x37c0(%rsp), %zmm0
movq 0x3838(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0xe38(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xe38(%rsp)
movq 0xe28(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xe28(%rsp)
movl 0xdbc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdbc(%rsp)
jmp 0x1334465
movq 0xe30(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xe30(%rsp)
movl 0xe24(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xe24(%rsp)
jmp 0x1334420
movl $0x0, 0x2bd4(%rsp)
jmp 0x1335f50
jmp 0x1335f41
movq 0x2bc8(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1335f3f
movq 0x2bc8(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x13345d8
cmpl $0x1, 0x2b8c(%rsp)
jne 0x13345d8
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x1449a30
movl %eax, 0x2bd4(%rsp)
jmp 0x1335f50
movq 0x2bc0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x13350e1
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b80(%rsp), %ecx
movl 0x2b7c(%rsp), %r8d
movq 0x2b70(%rsp), %r9
movl 0x2b6c(%rsp), %r10d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2bf0(%rsp)
movq 0x2bf0(%rsp), %rcx
movq %rcx, 0x100(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x10f(%rsp)
je 0x133469a
movq 0x100(%rsp), %rax
movq %rax, 0x41f0(%rsp)
movq 0x41f0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x10f(%rsp)
movb 0x10f(%rsp), %al
testb $0x1, %al
jne 0x13346a7
jmp 0x13346b7
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1335f50
movl $0x0, 0xcfc(%rsp)
movl 0xcfc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x13350d1
movq 0x2bc8(%rsp), %rax
movq %rax, 0x2f08(%rsp)
movq 0x2f08(%rsp), %rax
movq (%rax), %rax
movl 0xcfc(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x3538(%rsp)
movq 0x3538(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xc80(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0xcfc(%rsp), %eax
leaq 0xc30(%rsp), %rdx
movq %rdx, 0x2c98(%rsp)
movq %rcx, 0x2c90(%rsp)
movl %eax, 0x2c8c(%rsp)
movq 0x2c90(%rsp), %rax
movq %rax, 0xf8(%rsp)
movb $0x0, 0x2c8b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2c8c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xc30(%rsp), %r10
movq %r10, 0x4b70(%rsp)
movl %r9d, 0x4b6c(%rsp)
movl %r8d, 0x4b68(%rsp)
movl %edi, 0x4b64(%rsp)
movq %rsi, 0x4b58(%rsp)
movq %rdx, 0x4b50(%rsp)
movl %ecx, 0x4b4c(%rsp)
movq %rax, 0x4b40(%rsp)
movq 0x4b70(%rsp), %rcx
movq %rcx, 0xf0(%rsp)
movq 0x4b58(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4b50(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4b4c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4b40(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4b6c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4b68(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4b64(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4bc8(%rsp)
movl $0x10, 0x4bc4(%rsp)
movq 0x4bc8(%rsp), %rax
movslq 0x4bc4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4bc4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xf8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc58(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13348df
movq 0xf8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xc70(%rsp)
movb $0x1, 0x2c8b(%rsp)
testb $0x1, 0x2c8b(%rsp)
jne 0x1334a20
leaq 0xc30(%rsp), %rax
movq %rax, 0x30c0(%rsp)
movq 0x30c0(%rsp), %rax
movq %rax, 0x5268(%rsp)
movq 0x5268(%rsp), %rax
movq %rax, 0xe8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13349c3
movq 0xe8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5264(%rsp) # imm = 0xFFFFFFFF
movl 0x5264(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5260(%rsp)
cmpl $0x1, 0x5260(%rsp)
jne 0x13349c3
movq 0xe8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1334991
movq 0xe8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133498f
jmp 0x13349c1
movq 0xe8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54b0(%rsp)
cmpq $0x0, 0x54b0(%rsp)
je 0x13349bf
movq 0x54b0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13349c1
jmp 0x13349c3
movq 0xe8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1334a1e
movq %rax, %rdi
callq 0x678a0
jmp 0x1334a20
leaq 0xc30(%rsp), %rax
movq %rax, 0x2f00(%rsp)
movq 0x2f00(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xd8(%rsp)
leaq 0xc30(%rsp), %rax
movq %rax, 0x3210(%rsp)
movq 0x3210(%rsp), %rax
movq %rax, 0x4fc8(%rsp)
movq 0x4fc8(%rsp), %rax
movq %rax, 0xe0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1334b11
movq 0xe0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4fc4(%rsp) # imm = 0xFFFFFFFF
movl 0x4fc4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4fc0(%rsp)
cmpl $0x1, 0x4fc0(%rsp)
jne 0x1334b11
movq 0xe0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1334adf
movq 0xe0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1334add
jmp 0x1334b0f
movq 0xe0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5600(%rsp)
cmpq $0x0, 0x5600(%rsp)
je 0x1334b0d
movq 0x5600(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1334b0f
jmp 0x1334b11
movq 0xe0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1334b6c
movq %rax, %rdi
callq 0x678a0
movq 0xd8(%rsp), %rax
movq %rax, 0xc78(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0xcfc(%rsp), %eax
leaq 0xbe0(%rsp), %rdx
movq %rdx, 0x3260(%rsp)
movq %rcx, 0x3258(%rsp)
movl %eax, 0x3254(%rsp)
movq 0x3258(%rsp), %rax
movq %rax, 0xd0(%rsp)
movb $0x0, 0x3253(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3254(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xbe0(%rsp), %r10
movq %r10, 0x45c0(%rsp)
movl %r9d, 0x45bc(%rsp)
movl %r8d, 0x45b8(%rsp)
movl %edi, 0x45b4(%rsp)
movq %rsi, 0x45a8(%rsp)
movq %rdx, 0x45a0(%rsp)
movl %ecx, 0x459c(%rsp)
movq %rax, 0x4590(%rsp)
movq 0x45c0(%rsp), %rcx
movq %rcx, 0xc8(%rsp)
movq 0x45a8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x45a0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x459c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4590(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x45bc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x45b8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x45b4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d68(%rsp)
movl $0x10, 0x4d64(%rsp)
movq 0x4d68(%rsp), %rax
movslq 0x4d64(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d64(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xd0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc08(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1334d38
movq 0xd0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xc20(%rsp)
movb $0x1, 0x3253(%rsp)
testb $0x1, 0x3253(%rsp)
jne 0x1334e79
leaq 0xbe0(%rsp), %rax
movq %rax, 0x3268(%rsp)
movq 0x3268(%rsp), %rax
movq %rax, 0x4f78(%rsp)
movq 0x4f78(%rsp), %rax
movq %rax, 0xc0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1334e1c
movq 0xc0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f74(%rsp) # imm = 0xFFFFFFFF
movl 0x4f74(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f70(%rsp)
cmpl $0x1, 0x4f70(%rsp)
jne 0x1334e1c
movq 0xc0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1334dea
movq 0xc0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1334de8
jmp 0x1334e1a
movq 0xc0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5628(%rsp)
cmpq $0x0, 0x5628(%rsp)
je 0x1334e18
movq 0x5628(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1334e1a
jmp 0x1334e1c
movq 0xc0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1334e77
movq %rax, %rdi
callq 0x678a0
jmp 0x1334e79
leaq 0xbe0(%rsp), %rax
movq %rax, 0x3480(%rsp)
movq 0x3480(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xb0(%rsp)
leaq 0xbe0(%rsp), %rax
movq %rax, 0x3218(%rsp)
movq 0x3218(%rsp), %rax
movq %rax, 0x4fb8(%rsp)
movq 0x4fb8(%rsp), %rax
movq %rax, 0xb8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1334f6a
movq 0xb8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4fb4(%rsp) # imm = 0xFFFFFFFF
movl 0x4fb4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4fb0(%rsp)
cmpl $0x1, 0x4fb0(%rsp)
jne 0x1334f6a
movq 0xb8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1334f38
movq 0xb8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1334f36
jmp 0x1334f68
movq 0xb8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5608(%rsp)
cmpq $0x0, 0x5608(%rsp)
je 0x1334f66
movq 0x5608(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1334f68
jmp 0x1334f6a
movq 0xb8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1334fc5
movq %rax, %rdi
callq 0x678a0
movq 0xb0(%rsp), %rax
movq %rax, 0xc28(%rsp)
movl $0x0, 0xbdc(%rsp)
movl 0xbdc(%rsp), %eax
cmpl 0x2b78(%rsp), %eax
jge 0x13350b9
movq 0xc78(%rsp), %rax
movq %rax, 0x3530(%rsp)
movq 0x3530(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xb80(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0xc80(%rsp), %rsi
leaq 0xb80(%rsp), %rdx
callq 0x1453940
vmovaps %zmm0, 0xb40(%rsp)
movq 0xc28(%rsp), %rax
vmovaps 0xb40(%rsp), %zmm0
movq %rax, 0x37b8(%rsp)
vmovaps %zmm0, 0x3740(%rsp)
vmovaps 0x3740(%rsp), %zmm0
movq 0x37b8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0xc78(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xc78(%rsp)
movq 0xc28(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xc28(%rsp)
movl 0xbdc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xbdc(%rsp)
jmp 0x1334fe0
jmp 0x13350bb
movl 0xcfc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xcfc(%rsp)
jmp 0x13346c2
movl $0x0, 0x2bd4(%rsp)
jmp 0x1335f50
movq 0x2bc0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1335ba1
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b7c(%rsp), %ecx
movq 0x2b70(%rsp), %r8
movl 0x2b6c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2be8(%rsp)
movq 0x2be8(%rsp), %rcx
movq %rcx, 0xa0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xaf(%rsp)
je 0x1335196
movq 0xa0(%rsp), %rax
movq %rax, 0x41f8(%rsp)
movq 0x41f8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xaf(%rsp)
movb 0xaf(%rsp), %al
testb $0x1, %al
jne 0x13351a3
jmp 0x13351b3
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1335f50
movl $0x0, 0xb3c(%rsp)
movl 0xb3c(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x1335b91
movq 0x2bc8(%rsp), %rax
movq %rax, 0x2ef8(%rsp)
movq 0x2ef8(%rsp), %rax
movq (%rax), %rax
movl 0xb3c(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x3528(%rsp)
movq 0x3528(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xac0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0xb3c(%rsp), %eax
leaq 0xa70(%rsp), %rdx
movq %rdx, 0x2c80(%rsp)
movq %rcx, 0x2c78(%rsp)
movl %eax, 0x2c74(%rsp)
movq 0x2c78(%rsp), %rax
movq %rax, 0x98(%rsp)
movb $0x0, 0x2c73(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2c74(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xa70(%rsp), %r10
movq %r10, 0x4ba8(%rsp)
movl %r9d, 0x4ba4(%rsp)
movl %r8d, 0x4ba0(%rsp)
movl %edi, 0x4b9c(%rsp)
movq %rsi, 0x4b90(%rsp)
movq %rdx, 0x4b88(%rsp)
movl %ecx, 0x4b84(%rsp)
movq %rax, 0x4b78(%rsp)
movq 0x4ba8(%rsp), %rcx
movq %rcx, 0x90(%rsp)
movq 0x4b90(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4b88(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4b84(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4b78(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4ba4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4ba0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4b9c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4bb8(%rsp)
movl $0x10, 0x4bb4(%rsp)
movq 0x4bb8(%rsp), %rax
movslq 0x4bb4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4bb4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x98(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xa98(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13353db
movq 0x98(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xab0(%rsp)
movb $0x1, 0x2c73(%rsp)
testb $0x1, 0x2c73(%rsp)
jne 0x133551c
leaq 0xa70(%rsp), %rax
movq %rax, 0x30c8(%rsp)
movq 0x30c8(%rsp), %rax
movq %rax, 0x5258(%rsp)
movq 0x5258(%rsp), %rax
movq %rax, 0x88(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13354bf
movq 0x88(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5254(%rsp) # imm = 0xFFFFFFFF
movl 0x5254(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5250(%rsp)
cmpl $0x1, 0x5250(%rsp)
jne 0x13354bf
movq 0x88(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x133548d
movq 0x88(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133548b
jmp 0x13354bd
movq 0x88(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54b8(%rsp)
cmpq $0x0, 0x54b8(%rsp)
je 0x13354bb
movq 0x54b8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13354bd
jmp 0x13354bf
movq 0x88(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133551a
movq %rax, %rdi
callq 0x678a0
jmp 0x133551c
leaq 0xa70(%rsp), %rax
movq %rax, 0x2ef0(%rsp)
movq 0x2ef0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x78(%rsp)
leaq 0xa70(%rsp), %rax
movq %rax, 0x3220(%rsp)
movq 0x3220(%rsp), %rax
movq %rax, 0x4fa8(%rsp)
movq 0x4fa8(%rsp), %rax
movq %rax, 0x80(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x133560a
movq 0x80(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4fa4(%rsp) # imm = 0xFFFFFFFF
movl 0x4fa4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4fa0(%rsp)
cmpl $0x1, 0x4fa0(%rsp)
jne 0x133560a
movq 0x80(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13355d8
movq 0x80(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13355d6
jmp 0x1335608
movq 0x80(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5610(%rsp)
cmpq $0x0, 0x5610(%rsp)
je 0x1335606
movq 0x5610(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1335608
jmp 0x133560a
movq 0x80(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1335665
movq %rax, %rdi
callq 0x678a0
movq 0x78(%rsp), %rax
movq %rax, 0xab8(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0xb3c(%rsp), %eax
leaq 0xa20(%rsp), %rdx
movq %rdx, 0x3240(%rsp)
movq %rcx, 0x3238(%rsp)
movl %eax, 0x3234(%rsp)
movq 0x3238(%rsp), %rax
movq %rax, 0x70(%rsp)
movb $0x0, 0x3233(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3234(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xa20(%rsp), %r10
movq %r10, 0x45f8(%rsp)
movl %r9d, 0x45f4(%rsp)
movl %r8d, 0x45f0(%rsp)
movl %edi, 0x45ec(%rsp)
movq %rsi, 0x45e0(%rsp)
movq %rdx, 0x45d8(%rsp)
movl %ecx, 0x45d4(%rsp)
movq %rax, 0x45c8(%rsp)
movq 0x45f8(%rsp), %rcx
movq %rcx, 0x68(%rsp)
movq 0x45e0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x45d8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x45d4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x45c8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x45f4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x45f0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x45ec(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d58(%rsp)
movl $0x10, 0x4d54(%rsp)
movq 0x4d58(%rsp), %rax
movslq 0x4d54(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d54(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x70(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xa48(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1335822
movq 0x70(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xa60(%rsp)
movb $0x1, 0x3233(%rsp)
testb $0x1, 0x3233(%rsp)
jne 0x1335951
leaq 0xa20(%rsp), %rax
movq %rax, 0x3248(%rsp)
movq 0x3248(%rsp), %rax
movq %rax, 0x4f88(%rsp)
movq 0x4f88(%rsp), %rax
movq %rax, 0x60(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13358f7
movq 0x60(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f84(%rsp) # imm = 0xFFFFFFFF
movl 0x4f84(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f80(%rsp)
cmpl $0x1, 0x4f80(%rsp)
jne 0x13358f7
movq 0x60(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13358c8
movq 0x60(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13358c6
jmp 0x13358f5
movq 0x60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5620(%rsp)
cmpq $0x0, 0x5620(%rsp)
je 0x13358f3
movq 0x5620(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13358f5
jmp 0x13358f7
movq 0x60(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133594f
movq %rax, %rdi
callq 0x678a0
jmp 0x1335951
leaq 0xa20(%rsp), %rax
movq %rax, 0x3478(%rsp)
movq 0x3478(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x50(%rsp)
leaq 0xa20(%rsp), %rax
movq %rax, 0x3228(%rsp)
movq 0x3228(%rsp), %rax
movq %rax, 0x4f98(%rsp)
movq 0x4f98(%rsp), %rax
movq %rax, 0x58(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1335a30
movq 0x58(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f94(%rsp) # imm = 0xFFFFFFFF
movl 0x4f94(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f90(%rsp)
cmpl $0x1, 0x4f90(%rsp)
jne 0x1335a30
movq 0x58(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1335a01
movq 0x58(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13359ff
jmp 0x1335a2e
movq 0x58(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5618(%rsp)
cmpq $0x0, 0x5618(%rsp)
je 0x1335a2c
movq 0x5618(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1335a2e
jmp 0x1335a30
movq 0x58(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1335a88
movq %rax, %rdi
callq 0x678a0
movq 0x50(%rsp), %rax
movq %rax, 0xa68(%rsp)
movl $0x0, 0xa1c(%rsp)
movl 0xa1c(%rsp), %eax
cmpl 0x2b78(%rsp), %eax
jge 0x1335b79
movq 0xab8(%rsp), %rax
movq %rax, 0x3520(%rsp)
movq 0x3520(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x9c0(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0xac0(%rsp), %rsi
leaq 0x9c0(%rsp), %rdx
callq 0x1453940
vmovaps %zmm0, 0x980(%rsp)
movq 0xa68(%rsp), %rax
vmovaps 0x980(%rsp), %zmm0
movq %rax, 0x3738(%rsp)
vmovaps %zmm0, 0x36c0(%rsp)
vmovaps 0x36c0(%rsp), %zmm0
movq 0x3738(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0xab8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xab8(%rsp)
movq 0xa68(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xa68(%rsp)
movl 0xa1c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xa1c(%rsp)
jmp 0x1335aa0
jmp 0x1335b7b
movl 0xb3c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xb3c(%rsp)
jmp 0x13351be
movl $0x0, 0x2bd4(%rsp)
jmp 0x1335f50
movq 0x2bc0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1335e25
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movq 0x2b70(%rsp), %rcx
movl 0x2b6c(%rsp), %r8d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2be0(%rsp)
movq 0x2be0(%rsp), %rcx
movq %rcx, 0x40(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x4f(%rsp)
je 0x1335c3f
movq 0x40(%rsp), %rax
movq %rax, 0x4200(%rsp)
movq 0x4200(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x4f(%rsp)
movb 0x4f(%rsp), %al
testb $0x1, %al
jne 0x1335c49
jmp 0x1335c59
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1335f50
movq 0x2bc8(%rsp), %rax
movq %rax, 0x2ee8(%rsp)
movq 0x2ee8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x978(%rsp)
movq 0x2bc0(%rsp), %rax
movq %rax, 0x2ee0(%rsp)
movq 0x2ee0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x970(%rsp)
movq 0x2bb8(%rsp), %rax
movq %rax, 0x3470(%rsp)
movq 0x3470(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x968(%rsp)
movl $0x0, 0x964(%rsp)
movl 0x964(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jge 0x1335e15
movq 0x978(%rsp), %rax
movq %rax, 0x3518(%rsp)
movq 0x3518(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x900(%rsp)
movl $0x0, 0x8fc(%rsp)
movl 0x8fc(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jge 0x1335deb
movq 0x970(%rsp), %rax
movq %rax, 0x3510(%rsp)
movq 0x3510(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x880(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x900(%rsp), %rsi
leaq 0x880(%rsp), %rdx
callq 0x1453940
vmovaps %zmm0, 0x840(%rsp)
movq 0x968(%rsp), %rax
vmovaps 0x840(%rsp), %zmm0
movq %rax, 0x36b8(%rsp)
vmovaps %zmm0, 0x3640(%rsp)
vmovaps 0x3640(%rsp), %zmm0
movq 0x36b8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x970(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x970(%rsp)
movq 0x968(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x968(%rsp)
movl 0x8fc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x8fc(%rsp)
jmp 0x1335d12
movq 0x978(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x978(%rsp)
movl 0x964(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x964(%rsp)
jmp 0x1335ccd
movl $0x0, 0x2bd4(%rsp)
jmp 0x1335f50
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1335f3d
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movq 0x2b90(%rsp), %rdx
movl 0x2b8c(%rsp), %ecx
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6be00
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2bd8(%rsp)
movq 0x2bd8(%rsp), %rcx
movq %rcx, 0x30(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x3f(%rsp)
je 0x1335ebb
movq 0x30(%rsp), %rax
movq %rax, 0x4208(%rsp)
movq 0x4208(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x3f(%rsp)
movb 0x3f(%rsp), %al
testb $0x1, %al
jne 0x1335ec5
jmp 0x1335ed2
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1335f50
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1335f18
cmpl $0x1, 0x2b6c(%rsp)
jne 0x1335f18
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x1448bb0
movl %eax, 0x2bd4(%rsp)
jmp 0x1335f50
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x14479a0
jmp 0x1335f3f
jmp 0x1335f41
jmp 0x1335f43
jmp 0x1335f45
movl $0x0, 0x2bd4(%rsp)
movl 0x2bd4(%rsp), %eax
movq %rbp, %rsp
popq %rbp
vzeroupper
retq
nop
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/build_O0/src/layer/x86/binaryop_x86_avx512.cpp
|
2,112,894
|
int ncnn::binary_op_pack16<ncnn::BinaryOp_x86_avx512_functor::binary_op_max>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op_pack16(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int size = w * h * d;
size_t elemsize = a.elemsize;
int elempack = a.elempack;
int w1 = b.w;
int h1 = b.h;
int d1 = b.d;
int channels1 = b.c;
int size1 = w1 * h1 * d1;
size_t elemsize1 = b.elemsize;
int elempack1 = b.elempack;
if (a.dims == 4)
{
if (b.dims == 4)
{
// type 29
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
c.create(w, h, d, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 3)
{
// type 28
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
for (int y = 0; y < h; y++)
{
__m512 _b0 = _mm512_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
ptr1 += 16;
}
}
}
return 0;
}
if (b.dims == 2)
{
// type 27
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
__m512 _b0 = _mm512_loadu_ps(ptr1);
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
}
ptr1 += 16;
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1 && elempack1 == 1)
{
// type 25
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 26
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
__m512 _b0 = _mm512_loadu_ps((const float*)b + q * 16);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
}
return 0;
}
}
else if (a.dims == 3)
{
if (b.dims == 4)
{
// type 23
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
for (int y = 0; y < h1; y++)
{
__m512 _a0 = _mm512_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m512 _p = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
ptr += 16;
}
}
}
return 0;
}
if (b.dims == 3)
{
if (w1 == 1 && h1 == 1 && channels1 == channels)
{
// special type 1
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* b0 = b.channel(q);
float* outptr = c.channel(q);
__m512 _b0 = _mm512_loadu_ps(b0);
for (int i = 0; i < size; i++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
}
return 0;
}
if (w1 == w && h1 == h && channels1 == 1 && elempack1 == 1)
{
// special type 2
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b;
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _p1 = _mm512_set1_ps(*ptr1);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
ptr1 += 1;
outptr += 16;
}
}
return 0;
}
if (w == 1 && h == 1 && channels1 == channels)
{
// special type 3
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* a0 = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
__m512 _a0 = _mm512_loadu_ps(a0);
for (int i = 0; i < size1; i++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
}
return 0;
}
if (w1 == w && h1 == h && channels == 1 && elempack == 1)
{
// special type 4
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a;
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m512 _p = _mm512_set1_ps(*ptr);
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr += 1;
ptr1 += 16;
outptr += 16;
}
}
return 0;
}
if (w != 1 && w1 == 1 && h1 == h && channels1 == channels)
{
// special type 5
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1 + y * 16);
for (int x = 0; x < w; x++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
}
}
return 0;
}
if (w1 == w && h != 1 && h1 == 1 && channels1 == channels)
{
// special type 6
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _p1 = _mm512_loadu_ps(ptr1 + x * 16);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
}
}
return 0;
}
if (w1 != 1 && w == 1 && h1 == h && channels1 == channels)
{
// special type 7
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
__m512 _p = _mm512_loadu_ps(ptr + y * 16);
for (int x = 0; x < w1; x++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
}
}
return 0;
}
if (w1 == w && h1 != 1 && h == 1 && channels1 == channels)
{
// special type 8
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
__m512 _p = _mm512_loadu_ps(ptr + x * 16);
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
}
}
return 0;
}
// type 19
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 18
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
__m512 _b0 = _mm512_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
ptr1 += 16;
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1 && elempack1 == 1)
{
// type 16
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 17
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
__m512 _b0 = _mm512_loadu_ps((const float*)b + q * 16);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
}
return 0;
}
}
else if (a.dims == 2)
{
if (b.dims == 4)
{
// type 22
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
__m512 _a0 = _mm512_loadu_ps(ptr);
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
__m512 _p = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
}
ptr += 16;
}
}
return 0;
}
if (b.dims == 3)
{
// type 14
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
__m512 _a0 = _mm512_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
ptr += 16;
}
}
return 0;
}
c.create(w, h, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 13
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
if (b.dims == 1)
{
c.create(w, h, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1 && elempack1 == 1)
{
// type 11
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 12
const float* ptr = a;
const float* ptr1 = b;
float* outptr = c;
for (int y = 0; y < h; y++)
{
__m512 _b0 = _mm512_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
ptr1 += 16;
}
return 0;
}
}
else if (a.dims == 1)
{
if (a.w == 1 && elempack == 1)
{
// type 2 3 4 20
return binary_op_2_3_4_20<Op>(a, b, c, opt);
}
if (b.dims == 4)
{
// type 21
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
__m512 _a0 = _mm512_loadu_ps((const float*)a + q * 16);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
}
return 0;
}
if (b.dims == 3)
{
// type 9
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
__m512 _a0 = _mm512_loadu_ps((const float*)a + q * 16);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
}
return 0;
}
if (b.dims == 2)
{
// type 8
c.create(w1, h1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
const float* ptr = a;
const float* ptr1 = b;
float* outptr = c;
for (int y = 0; y < h1; y++)
{
__m512 _a0 = _mm512_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
ptr += 16;
}
return 0;
}
if (b.dims == 1)
{
c.create(w, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1 && elempack1 == 1)
{
// type 6
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 7
binary_op_7_13_19_29<Op>(a, b, c, opt);
}
}
return 0;
}
|
pushq %rbp
movq %rsp, %rbp
andq $-0x40, %rsp
subq $0x56c0, %rsp # imm = 0x56C0
movq %rdi, 0x2bc8(%rsp)
movq %rsi, 0x2bc0(%rsp)
movq %rdx, 0x2bb8(%rsp)
movq %rcx, 0x2bb0(%rsp)
movq 0x2bc8(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x2ba8(%rsp)
movq 0x2bc8(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x2ba4(%rsp)
movq 0x2bc8(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x2ba0(%rsp)
movq 0x2bc8(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x2b9c(%rsp)
movl 0x2ba8(%rsp), %eax
imull 0x2ba4(%rsp), %eax
imull 0x2ba0(%rsp), %eax
movl %eax, 0x2b98(%rsp)
movq 0x2bc8(%rsp), %rax
movq 0x10(%rax), %rax
movq %rax, 0x2b90(%rsp)
movq 0x2bc8(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x2b8c(%rsp)
movq 0x2bc0(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x2b88(%rsp)
movq 0x2bc0(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x2b84(%rsp)
movq 0x2bc0(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x2b80(%rsp)
movq 0x2bc0(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x2b7c(%rsp)
movl 0x2b88(%rsp), %eax
imull 0x2b84(%rsp), %eax
imull 0x2b80(%rsp), %eax
movl %eax, 0x2b78(%rsp)
movq 0x2bc0(%rsp), %rax
movq 0x10(%rax), %rax
movq %rax, 0x2b70(%rsp)
movq 0x2bc0(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x2b6c(%rsp)
movq 0x2bc8(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x133863f
movq 0x2bc0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x13360f8
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x144a8b0
movl %eax, 0x2bd4(%rsp)
jmp 0x1345520
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movl 0x2ba0(%rsp), %ecx
movl 0x2b9c(%rsp), %r8d
movq 0x2b90(%rsp), %r9
movl 0x2b8c(%rsp), %r10d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c68(%rsp)
movq 0x2c68(%rsp), %rcx
movq %rcx, 0x830(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x83f(%rsp)
je 0x13361a8
movq 0x830(%rsp), %rax
movq %rax, 0x4178(%rsp)
movq 0x4178(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x83f(%rsp)
movb 0x83f(%rsp), %al
testb $0x1, %al
jne 0x13361b5
jmp 0x13361c5
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1345520
movq 0x2bc0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x13370bf
movl $0x0, 0x2b68(%rsp)
movl 0x2b68(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jge 0x13370af
movq 0x2bc8(%rsp), %rcx
movl 0x2b68(%rsp), %eax
leaq 0x2b18(%rsp), %rdx
movq %rdx, 0x2ed8(%rsp)
movq %rcx, 0x2ed0(%rsp)
movl %eax, 0x2ecc(%rsp)
movq 0x2ed0(%rsp), %rax
movq %rax, 0x828(%rsp)
movb $0x0, 0x2ecb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2ecc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2b18(%rsp), %r10
movq %r10, 0x4630(%rsp)
movl %r9d, 0x462c(%rsp)
movl %r8d, 0x4628(%rsp)
movl %edi, 0x4624(%rsp)
movq %rsi, 0x4618(%rsp)
movq %rdx, 0x4610(%rsp)
movl %ecx, 0x460c(%rsp)
movq %rax, 0x4600(%rsp)
movq 0x4630(%rsp), %rcx
movq %rcx, 0x820(%rsp)
movq 0x4618(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4610(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x460c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4600(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x462c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4628(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4624(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d48(%rsp)
movl $0x10, 0x4d44(%rsp)
movq 0x4d48(%rsp), %rax
movslq 0x4d44(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d44(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x828(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2b40(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13363b2
movq 0x828(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2b58(%rsp)
movb $0x1, 0x2ecb(%rsp)
testb $0x1, 0x2ecb(%rsp)
jne 0x13364f3
leaq 0x2b18(%rsp), %rax
movq %rax, 0x3000(%rsp)
movq 0x3000(%rsp), %rax
movq %rax, 0x53e8(%rsp)
movq 0x53e8(%rsp), %rax
movq %rax, 0x818(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1336496
movq 0x818(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x53e4(%rsp) # imm = 0xFFFFFFFF
movl 0x53e4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x53e0(%rsp)
cmpl $0x1, 0x53e0(%rsp)
jne 0x1336496
movq 0x818(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1336464
movq 0x818(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1336462
jmp 0x1336494
movq 0x818(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x53f0(%rsp)
cmpq $0x0, 0x53f0(%rsp)
je 0x1336492
movq 0x53f0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1336494
jmp 0x1336496
movq 0x818(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13364f1
movq %rax, %rdi
callq 0x678a0
jmp 0x13364f3
leaq 0x2b18(%rsp), %rax
movq %rax, 0x2ff8(%rsp)
movq 0x2ff8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x808(%rsp)
leaq 0x2b18(%rsp), %rax
movq %rax, 0x30d0(%rsp)
movq 0x30d0(%rsp), %rax
movq %rax, 0x5248(%rsp)
movq 0x5248(%rsp), %rax
movq %rax, 0x810(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13365e4
movq 0x810(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5244(%rsp) # imm = 0xFFFFFFFF
movl 0x5244(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5240(%rsp)
cmpl $0x1, 0x5240(%rsp)
jne 0x13365e4
movq 0x810(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13365b2
movq 0x810(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13365b0
jmp 0x13365e2
movq 0x810(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54c0(%rsp)
cmpq $0x0, 0x54c0(%rsp)
je 0x13365e0
movq 0x54c0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13365e2
jmp 0x13365e4
movq 0x810(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133663f
movq %rax, %rdi
callq 0x678a0
movq 0x808(%rsp), %rax
movq %rax, 0x2b60(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x2b68(%rsp), %eax
leaq 0x2ac8(%rsp), %rdx
movq %rdx, 0x2ec0(%rsp)
movq %rcx, 0x2eb8(%rsp)
movl %eax, 0x2eb4(%rsp)
movq 0x2eb8(%rsp), %rax
movq %rax, 0x800(%rsp)
movb $0x0, 0x2eb3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2eb4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2ac8(%rsp), %r10
movq %r10, 0x4668(%rsp)
movl %r9d, 0x4664(%rsp)
movl %r8d, 0x4660(%rsp)
movl %edi, 0x465c(%rsp)
movq %rsi, 0x4650(%rsp)
movq %rdx, 0x4648(%rsp)
movl %ecx, 0x4644(%rsp)
movq %rax, 0x4638(%rsp)
movq 0x4668(%rsp), %rcx
movq %rcx, 0x7f8(%rsp)
movq 0x4650(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4648(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4644(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4638(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4664(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4660(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x465c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d38(%rsp)
movl $0x10, 0x4d34(%rsp)
movq 0x4d38(%rsp), %rax
movslq 0x4d34(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d34(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x800(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2af0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x133680b
movq 0x800(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2b08(%rsp)
movb $0x1, 0x2eb3(%rsp)
testb $0x1, 0x2eb3(%rsp)
jne 0x133694c
leaq 0x2ac8(%rsp), %rax
movq %rax, 0x3008(%rsp)
movq 0x3008(%rsp), %rax
movq %rax, 0x53d8(%rsp)
movq 0x53d8(%rsp), %rax
movq %rax, 0x7f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13368ef
movq 0x7f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x53d4(%rsp) # imm = 0xFFFFFFFF
movl 0x53d4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x53d0(%rsp)
cmpl $0x1, 0x53d0(%rsp)
jne 0x13368ef
movq 0x7f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13368bd
movq 0x7f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13368bb
jmp 0x13368ed
movq 0x7f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x53f8(%rsp)
cmpq $0x0, 0x53f8(%rsp)
je 0x13368eb
movq 0x53f8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13368ed
jmp 0x13368ef
movq 0x7f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133694a
movq %rax, %rdi
callq 0x678a0
jmp 0x133694c
leaq 0x2ac8(%rsp), %rax
movq %rax, 0x2ff0(%rsp)
movq 0x2ff0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7e0(%rsp)
leaq 0x2ac8(%rsp), %rax
movq %rax, 0x30d8(%rsp)
movq 0x30d8(%rsp), %rax
movq %rax, 0x5238(%rsp)
movq 0x5238(%rsp), %rax
movq %rax, 0x7e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1336a3d
movq 0x7e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5234(%rsp) # imm = 0xFFFFFFFF
movl 0x5234(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5230(%rsp)
cmpl $0x1, 0x5230(%rsp)
jne 0x1336a3d
movq 0x7e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1336a0b
movq 0x7e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1336a09
jmp 0x1336a3b
movq 0x7e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54c8(%rsp)
cmpq $0x0, 0x54c8(%rsp)
je 0x1336a39
movq 0x54c8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1336a3b
jmp 0x1336a3d
movq 0x7e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1336a98
movq %rax, %rdi
callq 0x678a0
movq 0x7e0(%rsp), %rax
movq %rax, 0x2b10(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x2b68(%rsp), %eax
leaq 0x2a78(%rsp), %rdx
movq %rdx, 0x3460(%rsp)
movq %rcx, 0x3458(%rsp)
movl %eax, 0x3454(%rsp)
movq 0x3458(%rsp), %rax
movq %rax, 0x7d8(%rsp)
movb $0x0, 0x3453(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3454(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2a78(%rsp), %r10
movq %r10, 0x4240(%rsp)
movl %r9d, 0x423c(%rsp)
movl %r8d, 0x4238(%rsp)
movl %edi, 0x4234(%rsp)
movq %rsi, 0x4228(%rsp)
movq %rdx, 0x4220(%rsp)
movl %ecx, 0x421c(%rsp)
movq %rax, 0x4210(%rsp)
movq 0x4240(%rsp), %rcx
movq %rcx, 0x7d0(%rsp)
movq 0x4228(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4220(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x421c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4210(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x423c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4238(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4234(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e68(%rsp)
movl $0x10, 0x4e64(%rsp)
movq 0x4e68(%rsp), %rax
movslq 0x4e64(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e64(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7d8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2aa0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1336c64
movq 0x7d8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2ab8(%rsp)
movb $0x1, 0x3453(%rsp)
testb $0x1, 0x3453(%rsp)
jne 0x1336da5
leaq 0x2a78(%rsp), %rax
movq %rax, 0x3468(%rsp)
movq 0x3468(%rsp), %rax
movq %rax, 0x4e78(%rsp)
movq 0x4e78(%rsp), %rax
movq %rax, 0x7c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1336d48
movq 0x7c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4e74(%rsp) # imm = 0xFFFFFFFF
movl 0x4e74(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4e70(%rsp)
cmpl $0x1, 0x4e70(%rsp)
jne 0x1336d48
movq 0x7c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1336d16
movq 0x7c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1336d14
jmp 0x1336d46
movq 0x7c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x56a8(%rsp)
cmpq $0x0, 0x56a8(%rsp)
je 0x1336d44
movq 0x56a8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1336d46
jmp 0x1336d48
movq 0x7c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1336da3
movq %rax, %rdi
callq 0x678a0
jmp 0x1336da5
leaq 0x2a78(%rsp), %rax
movq %rax, 0x3508(%rsp)
movq 0x3508(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7b8(%rsp)
leaq 0x2a78(%rsp), %rax
movq %rax, 0x30e0(%rsp)
movq 0x30e0(%rsp), %rax
movq %rax, 0x5228(%rsp)
movq 0x5228(%rsp), %rax
movq %rax, 0x7c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1336e96
movq 0x7c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5224(%rsp) # imm = 0xFFFFFFFF
movl 0x5224(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5220(%rsp)
cmpl $0x1, 0x5220(%rsp)
jne 0x1336e96
movq 0x7c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1336e64
movq 0x7c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1336e62
jmp 0x1336e94
movq 0x7c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54d0(%rsp)
cmpq $0x0, 0x54d0(%rsp)
je 0x1336e92
movq 0x54d0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1336e94
jmp 0x1336e96
movq 0x7c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1336ef1
movq %rax, %rdi
callq 0x678a0
movq 0x7b8(%rsp), %rax
movq %rax, 0x2ac0(%rsp)
movl $0x0, 0x2a74(%rsp)
movl 0x2a74(%rsp), %eax
cmpl 0x2ba0(%rsp), %eax
jge 0x1337097
movl $0x0, 0x2a70(%rsp)
movl 0x2a70(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jge 0x133707f
movq 0x2b10(%rsp), %rax
movq %rax, 0x3638(%rsp)
movq 0x3638(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2a00(%rsp)
movl $0x0, 0x29fc(%rsp)
movl 0x29fc(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jge 0x1337055
movq 0x2b60(%rsp), %rax
movq %rax, 0x3630(%rsp)
movq 0x3630(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2980(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x2980(%rsp), %rsi
leaq 0x2a00(%rsp), %rdx
callq 0x1453a60
vmovaps %zmm0, 0x2940(%rsp)
movq 0x2ac0(%rsp), %rax
vmovaps 0x2940(%rsp), %zmm0
movq %rax, 0x4038(%rsp)
vmovaps %zmm0, 0x3fc0(%rsp)
vmovaps 0x3fc0(%rsp), %zmm0
movq 0x4038(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x2b60(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2b60(%rsp)
movq 0x2ac0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2ac0(%rsp)
movl 0x29fc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x29fc(%rsp)
jmp 0x1336f73
movq 0x2b10(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2b10(%rsp)
movl 0x2a70(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x2a70(%rsp)
jmp 0x1336f2b
jmp 0x1337081
movl 0x2a74(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x2a74(%rsp)
jmp 0x1336f0c
jmp 0x1337099
movl 0x2b68(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x2b68(%rsp)
jmp 0x13361e2
movl $0x0, 0x2bd4(%rsp)
jmp 0x1345520
movq 0x2bc0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1337ba9
movl $0x0, 0x293c(%rsp)
movl 0x293c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jge 0x1337b99
movq 0x2bc8(%rsp), %rcx
movl 0x293c(%rsp), %eax
leaq 0x28e8(%rsp), %rdx
movq %rdx, 0x2ea8(%rsp)
movq %rcx, 0x2ea0(%rsp)
movl %eax, 0x2e9c(%rsp)
movq 0x2ea0(%rsp), %rax
movq %rax, 0x7b0(%rsp)
movb $0x0, 0x2e9b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e9c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x28e8(%rsp), %r10
movq %r10, 0x46a0(%rsp)
movl %r9d, 0x469c(%rsp)
movl %r8d, 0x4698(%rsp)
movl %edi, 0x4694(%rsp)
movq %rsi, 0x4688(%rsp)
movq %rdx, 0x4680(%rsp)
movl %ecx, 0x467c(%rsp)
movq %rax, 0x4670(%rsp)
movq 0x46a0(%rsp), %rcx
movq %rcx, 0x7a8(%rsp)
movq 0x4688(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4680(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x467c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4670(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x469c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4698(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4694(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d28(%rsp)
movl $0x10, 0x4d24(%rsp)
movq 0x4d28(%rsp), %rax
movslq 0x4d24(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d24(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7b0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2910(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13372ac
movq 0x7b0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2928(%rsp)
movb $0x1, 0x2e9b(%rsp)
testb $0x1, 0x2e9b(%rsp)
jne 0x13373ed
leaq 0x28e8(%rsp), %rax
movq %rax, 0x3010(%rsp)
movq 0x3010(%rsp), %rax
movq %rax, 0x53c8(%rsp)
movq 0x53c8(%rsp), %rax
movq %rax, 0x7a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1337390
movq 0x7a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x53c4(%rsp) # imm = 0xFFFFFFFF
movl 0x53c4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x53c0(%rsp)
cmpl $0x1, 0x53c0(%rsp)
jne 0x1337390
movq 0x7a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x133735e
movq 0x7a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133735c
jmp 0x133738e
movq 0x7a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5400(%rsp)
cmpq $0x0, 0x5400(%rsp)
je 0x133738c
movq 0x5400(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x133738e
jmp 0x1337390
movq 0x7a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13373eb
movq %rax, %rdi
callq 0x678a0
jmp 0x13373ed
leaq 0x28e8(%rsp), %rax
movq %rax, 0x2fe8(%rsp)
movq 0x2fe8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x790(%rsp)
leaq 0x28e8(%rsp), %rax
movq %rax, 0x30e8(%rsp)
movq 0x30e8(%rsp), %rax
movq %rax, 0x5218(%rsp)
movq 0x5218(%rsp), %rax
movq %rax, 0x798(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13374de
movq 0x798(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5214(%rsp) # imm = 0xFFFFFFFF
movl 0x5214(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5210(%rsp)
cmpl $0x1, 0x5210(%rsp)
jne 0x13374de
movq 0x798(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13374ac
movq 0x798(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13374aa
jmp 0x13374dc
movq 0x798(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54d8(%rsp)
cmpq $0x0, 0x54d8(%rsp)
je 0x13374da
movq 0x54d8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13374dc
jmp 0x13374de
movq 0x798(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1337539
movq %rax, %rdi
callq 0x678a0
movq 0x790(%rsp), %rax
movq %rax, 0x2930(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x293c(%rsp), %eax
movq %rcx, 0x4078(%rsp)
movl %eax, 0x4074(%rsp)
movq 0x4078(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x4074(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x28e0(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x293c(%rsp), %eax
leaq 0x2890(%rsp), %rdx
movq %rdx, 0x3440(%rsp)
movq %rcx, 0x3438(%rsp)
movl %eax, 0x3434(%rsp)
movq 0x3438(%rsp), %rax
movq %rax, 0x788(%rsp)
movb $0x0, 0x3433(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3434(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2890(%rsp), %r10
movq %r10, 0x4278(%rsp)
movl %r9d, 0x4274(%rsp)
movl %r8d, 0x4270(%rsp)
movl %edi, 0x426c(%rsp)
movq %rsi, 0x4260(%rsp)
movq %rdx, 0x4258(%rsp)
movl %ecx, 0x4254(%rsp)
movq %rax, 0x4248(%rsp)
movq 0x4278(%rsp), %rcx
movq %rcx, 0x780(%rsp)
movq 0x4260(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4258(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4254(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4248(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4274(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4270(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x426c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e58(%rsp)
movl $0x10, 0x4e54(%rsp)
movq 0x4e58(%rsp), %rax
movslq 0x4e54(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e54(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x788(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x28b8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x133774e
movq 0x788(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x28d0(%rsp)
movb $0x1, 0x3433(%rsp)
testb $0x1, 0x3433(%rsp)
jne 0x133788f
leaq 0x2890(%rsp), %rax
movq %rax, 0x3448(%rsp)
movq 0x3448(%rsp), %rax
movq %rax, 0x4e88(%rsp)
movq 0x4e88(%rsp), %rax
movq %rax, 0x778(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1337832
movq 0x778(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4e84(%rsp) # imm = 0xFFFFFFFF
movl 0x4e84(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4e80(%rsp)
cmpl $0x1, 0x4e80(%rsp)
jne 0x1337832
movq 0x778(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1337800
movq 0x778(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13377fe
jmp 0x1337830
movq 0x778(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x56a0(%rsp)
cmpq $0x0, 0x56a0(%rsp)
je 0x133782e
movq 0x56a0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1337830
jmp 0x1337832
movq 0x778(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133788d
movq %rax, %rdi
callq 0x678a0
jmp 0x133788f
leaq 0x2890(%rsp), %rax
movq %rax, 0x3500(%rsp)
movq 0x3500(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x768(%rsp)
leaq 0x2890(%rsp), %rax
movq %rax, 0x30f0(%rsp)
movq 0x30f0(%rsp), %rax
movq %rax, 0x5208(%rsp)
movq 0x5208(%rsp), %rax
movq %rax, 0x770(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1337980
movq 0x770(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5204(%rsp) # imm = 0xFFFFFFFF
movl 0x5204(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5200(%rsp)
cmpl $0x1, 0x5200(%rsp)
jne 0x1337980
movq 0x770(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x133794e
movq 0x770(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133794c
jmp 0x133797e
movq 0x770(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54e0(%rsp)
cmpq $0x0, 0x54e0(%rsp)
je 0x133797c
movq 0x54e0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x133797e
jmp 0x1337980
movq 0x770(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13379db
movq %rax, %rdi
callq 0x678a0
movq 0x768(%rsp), %rax
movq %rax, 0x28d8(%rsp)
movl $0x0, 0x288c(%rsp)
movl 0x288c(%rsp), %eax
cmpl 0x2ba0(%rsp), %eax
jge 0x1337b81
movq 0x28e0(%rsp), %rax
movq %rax, 0x3628(%rsp)
movq 0x3628(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2840(%rsp)
movl $0x0, 0x283c(%rsp)
movl 0x283c(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jge 0x1337b57
movl $0x0, 0x2838(%rsp)
movl 0x2838(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jge 0x1337b3f
movq 0x2930(%rsp), %rax
movq %rax, 0x3620(%rsp)
movq 0x3620(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x27c0(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x27c0(%rsp), %rsi
leaq 0x2840(%rsp), %rdx
callq 0x1453a60
vmovaps %zmm0, 0x2780(%rsp)
movq 0x28d8(%rsp), %rax
vmovaps 0x2780(%rsp), %zmm0
movq %rax, 0x3fb8(%rsp)
vmovaps %zmm0, 0x3f40(%rsp)
vmovaps 0x3f40(%rsp), %zmm0
movq 0x3fb8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x2930(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2930(%rsp)
movq 0x28d8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x28d8(%rsp)
movl 0x2838(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x2838(%rsp)
jmp 0x1337a5d
jmp 0x1337b41
movl 0x283c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x283c(%rsp)
jmp 0x1337a3e
movq 0x28e0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x28e0(%rsp)
movl 0x288c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x288c(%rsp)
jmp 0x13379f6
jmp 0x1337b83
movl 0x293c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x293c(%rsp)
jmp 0x13370dc
movl $0x0, 0x2bd4(%rsp)
jmp 0x1345520
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x133863a
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1337c04
cmpl $0x1, 0x2b6c(%rsp)
jne 0x1337c04
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x144bac0
movl %eax, 0x2bd4(%rsp)
jmp 0x1345520
movl $0x0, 0x277c(%rsp)
movl 0x277c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jge 0x133862a
movq 0x2bc8(%rsp), %rcx
movl 0x277c(%rsp), %eax
leaq 0x2728(%rsp), %rdx
movq %rdx, 0x2e90(%rsp)
movq %rcx, 0x2e88(%rsp)
movl %eax, 0x2e84(%rsp)
movq 0x2e88(%rsp), %rax
movq %rax, 0x760(%rsp)
movb $0x0, 0x2e83(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e84(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2728(%rsp), %r10
movq %r10, 0x46d8(%rsp)
movl %r9d, 0x46d4(%rsp)
movl %r8d, 0x46d0(%rsp)
movl %edi, 0x46cc(%rsp)
movq %rsi, 0x46c0(%rsp)
movq %rdx, 0x46b8(%rsp)
movl %ecx, 0x46b4(%rsp)
movq %rax, 0x46a8(%rsp)
movq 0x46d8(%rsp), %rcx
movq %rcx, 0x758(%rsp)
movq 0x46c0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x46b8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x46b4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x46a8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x46d4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x46d0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x46cc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d18(%rsp)
movl $0x10, 0x4d14(%rsp)
movq 0x4d18(%rsp), %rax
movslq 0x4d14(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d14(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x760(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2750(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1337ddf
movq 0x760(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2768(%rsp)
movb $0x1, 0x2e83(%rsp)
testb $0x1, 0x2e83(%rsp)
jne 0x1337f20
leaq 0x2728(%rsp), %rax
movq %rax, 0x3018(%rsp)
movq 0x3018(%rsp), %rax
movq %rax, 0x53b8(%rsp)
movq 0x53b8(%rsp), %rax
movq %rax, 0x750(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1337ec3
movq 0x750(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x53b4(%rsp) # imm = 0xFFFFFFFF
movl 0x53b4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x53b0(%rsp)
cmpl $0x1, 0x53b0(%rsp)
jne 0x1337ec3
movq 0x750(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1337e91
movq 0x750(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1337e8f
jmp 0x1337ec1
movq 0x750(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5408(%rsp)
cmpq $0x0, 0x5408(%rsp)
je 0x1337ebf
movq 0x5408(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1337ec1
jmp 0x1337ec3
movq 0x750(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1337f1e
movq %rax, %rdi
callq 0x678a0
jmp 0x1337f20
leaq 0x2728(%rsp), %rax
movq %rax, 0x2fe0(%rsp)
movq 0x2fe0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x740(%rsp)
leaq 0x2728(%rsp), %rax
movq %rax, 0x30f8(%rsp)
movq 0x30f8(%rsp), %rax
movq %rax, 0x51f8(%rsp)
movq 0x51f8(%rsp), %rax
movq %rax, 0x748(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1338011
movq 0x748(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x51f4(%rsp) # imm = 0xFFFFFFFF
movl 0x51f4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x51f0(%rsp)
cmpl $0x1, 0x51f0(%rsp)
jne 0x1338011
movq 0x748(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1337fdf
movq 0x748(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1337fdd
jmp 0x133800f
movq 0x748(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54e8(%rsp)
cmpq $0x0, 0x54e8(%rsp)
je 0x133800d
movq 0x54e8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x133800f
jmp 0x1338011
movq 0x748(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133806c
movq %rax, %rdi
callq 0x678a0
movq 0x740(%rsp), %rax
movq %rax, 0x2770(%rsp)
movq 0x2bc0(%rsp), %rax
movq %rax, 0x2fd8(%rsp)
movq 0x2fd8(%rsp), %rax
movq (%rax), %rax
movl 0x277c(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x3618(%rsp)
movq 0x3618(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x26c0(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x277c(%rsp), %eax
leaq 0x2670(%rsp), %rdx
movq %rdx, 0x3420(%rsp)
movq %rcx, 0x3418(%rsp)
movl %eax, 0x3414(%rsp)
movq 0x3418(%rsp), %rax
movq %rax, 0x738(%rsp)
movb $0x0, 0x3413(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3414(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2670(%rsp), %r10
movq %r10, 0x42b0(%rsp)
movl %r9d, 0x42ac(%rsp)
movl %r8d, 0x42a8(%rsp)
movl %edi, 0x42a4(%rsp)
movq %rsi, 0x4298(%rsp)
movq %rdx, 0x4290(%rsp)
movl %ecx, 0x428c(%rsp)
movq %rax, 0x4280(%rsp)
movq 0x42b0(%rsp), %rcx
movq %rcx, 0x730(%rsp)
movq 0x4298(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4290(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x428c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4280(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x42ac(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x42a8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x42a4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e48(%rsp)
movl $0x10, 0x4e44(%rsp)
movq 0x4e48(%rsp), %rax
movslq 0x4e44(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e44(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x738(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2698(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1338288
movq 0x738(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x26b0(%rsp)
movb $0x1, 0x3413(%rsp)
testb $0x1, 0x3413(%rsp)
jne 0x13383c9
leaq 0x2670(%rsp), %rax
movq %rax, 0x3428(%rsp)
movq 0x3428(%rsp), %rax
movq %rax, 0x4e98(%rsp)
movq 0x4e98(%rsp), %rax
movq %rax, 0x728(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x133836c
movq 0x728(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4e94(%rsp) # imm = 0xFFFFFFFF
movl 0x4e94(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4e90(%rsp)
cmpl $0x1, 0x4e90(%rsp)
jne 0x133836c
movq 0x728(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x133833a
movq 0x728(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1338338
jmp 0x133836a
movq 0x728(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5698(%rsp)
cmpq $0x0, 0x5698(%rsp)
je 0x1338368
movq 0x5698(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x133836a
jmp 0x133836c
movq 0x728(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13383c7
movq %rax, %rdi
callq 0x678a0
jmp 0x13383c9
leaq 0x2670(%rsp), %rax
movq %rax, 0x34f8(%rsp)
movq 0x34f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x718(%rsp)
leaq 0x2670(%rsp), %rax
movq %rax, 0x3100(%rsp)
movq 0x3100(%rsp), %rax
movq %rax, 0x51e8(%rsp)
movq 0x51e8(%rsp), %rax
movq %rax, 0x720(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13384ba
movq 0x720(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x51e4(%rsp) # imm = 0xFFFFFFFF
movl 0x51e4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x51e0(%rsp)
cmpl $0x1, 0x51e0(%rsp)
jne 0x13384ba
movq 0x720(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1338488
movq 0x720(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1338486
jmp 0x13384b8
movq 0x720(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54f0(%rsp)
cmpq $0x0, 0x54f0(%rsp)
je 0x13384b6
movq 0x54f0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13384b8
jmp 0x13384ba
movq 0x720(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1338515
movq %rax, %rdi
callq 0x678a0
movq 0x718(%rsp), %rax
movq %rax, 0x26b8(%rsp)
movl $0x0, 0x266c(%rsp)
movl 0x266c(%rsp), %eax
cmpl 0x2b98(%rsp), %eax
jge 0x1338612
movq 0x2770(%rsp), %rax
movq %rax, 0x3610(%rsp)
movq 0x3610(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2600(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x2600(%rsp), %rsi
leaq 0x26c0(%rsp), %rdx
callq 0x1453a60
vmovaps %zmm0, 0x25c0(%rsp)
movq 0x26b8(%rsp), %rax
vmovaps 0x25c0(%rsp), %zmm0
movq %rax, 0x3f38(%rsp)
vmovaps %zmm0, 0x3ec0(%rsp)
vmovaps 0x3ec0(%rsp), %zmm0
movq 0x3f38(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x2770(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2770(%rsp)
movq 0x26b8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x26b8(%rsp)
movl 0x266c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x266c(%rsp)
jmp 0x1338530
jmp 0x1338614
movl 0x277c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x277c(%rsp)
jmp 0x1337c0f
movl $0x0, 0x2bd4(%rsp)
jmp 0x1345520
jmp 0x1345515
movq 0x2bc8(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1342054
movq 0x2bc0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1339618
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b80(%rsp), %ecx
movl 0x2b7c(%rsp), %r8d
movq 0x2b70(%rsp), %r9
movl 0x2b6c(%rsp), %r10d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c60(%rsp)
movq 0x2c60(%rsp), %rcx
movq %rcx, 0x708(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x717(%rsp)
je 0x1338713
movq 0x708(%rsp), %rax
movq %rax, 0x4180(%rsp)
movq 0x4180(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x717(%rsp)
movb 0x717(%rsp), %al
testb $0x1, %al
jne 0x1338720
jmp 0x1338730
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1345520
movl $0x0, 0x25bc(%rsp)
movl 0x25bc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x1339608
movq 0x2bc8(%rsp), %rcx
movl 0x25bc(%rsp), %eax
leaq 0x2568(%rsp), %rdx
movq %rdx, 0x2e78(%rsp)
movq %rcx, 0x2e70(%rsp)
movl %eax, 0x2e6c(%rsp)
movq 0x2e70(%rsp), %rax
movq %rax, 0x700(%rsp)
movb $0x0, 0x2e6b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e6c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2568(%rsp), %r10
movq %r10, 0x4710(%rsp)
movl %r9d, 0x470c(%rsp)
movl %r8d, 0x4708(%rsp)
movl %edi, 0x4704(%rsp)
movq %rsi, 0x46f8(%rsp)
movq %rdx, 0x46f0(%rsp)
movl %ecx, 0x46ec(%rsp)
movq %rax, 0x46e0(%rsp)
movq 0x4710(%rsp), %rcx
movq %rcx, 0x6f8(%rsp)
movq 0x46f8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x46f0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x46ec(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x46e0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x470c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4708(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4704(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d08(%rsp)
movl $0x10, 0x4d04(%rsp)
movq 0x4d08(%rsp), %rax
movslq 0x4d04(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d04(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x700(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2590(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x133890b
movq 0x700(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x25a8(%rsp)
movb $0x1, 0x2e6b(%rsp)
testb $0x1, 0x2e6b(%rsp)
jne 0x1338a4c
leaq 0x2568(%rsp), %rax
movq %rax, 0x3020(%rsp)
movq 0x3020(%rsp), %rax
movq %rax, 0x53a8(%rsp)
movq 0x53a8(%rsp), %rax
movq %rax, 0x6f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13389ef
movq 0x6f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x53a4(%rsp) # imm = 0xFFFFFFFF
movl 0x53a4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x53a0(%rsp)
cmpl $0x1, 0x53a0(%rsp)
jne 0x13389ef
movq 0x6f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13389bd
movq 0x6f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13389bb
jmp 0x13389ed
movq 0x6f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5410(%rsp)
cmpq $0x0, 0x5410(%rsp)
je 0x13389eb
movq 0x5410(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13389ed
jmp 0x13389ef
movq 0x6f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1338a4a
movq %rax, %rdi
callq 0x678a0
jmp 0x1338a4c
leaq 0x2568(%rsp), %rax
movq %rax, 0x2fd0(%rsp)
movq 0x2fd0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6e0(%rsp)
leaq 0x2568(%rsp), %rax
movq %rax, 0x3108(%rsp)
movq 0x3108(%rsp), %rax
movq %rax, 0x51d8(%rsp)
movq 0x51d8(%rsp), %rax
movq %rax, 0x6e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1338b3d
movq 0x6e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x51d4(%rsp) # imm = 0xFFFFFFFF
movl 0x51d4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x51d0(%rsp)
cmpl $0x1, 0x51d0(%rsp)
jne 0x1338b3d
movq 0x6e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1338b0b
movq 0x6e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1338b09
jmp 0x1338b3b
movq 0x6e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54f8(%rsp)
cmpq $0x0, 0x54f8(%rsp)
je 0x1338b39
movq 0x54f8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1338b3b
jmp 0x1338b3d
movq 0x6e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1338b98
movq %rax, %rdi
callq 0x678a0
movq 0x6e0(%rsp), %rax
movq %rax, 0x25b0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x25bc(%rsp), %eax
leaq 0x2518(%rsp), %rdx
movq %rdx, 0x2e60(%rsp)
movq %rcx, 0x2e58(%rsp)
movl %eax, 0x2e54(%rsp)
movq 0x2e58(%rsp), %rax
movq %rax, 0x6d8(%rsp)
movb $0x0, 0x2e53(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e54(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2518(%rsp), %r10
movq %r10, 0x4748(%rsp)
movl %r9d, 0x4744(%rsp)
movl %r8d, 0x4740(%rsp)
movl %edi, 0x473c(%rsp)
movq %rsi, 0x4730(%rsp)
movq %rdx, 0x4728(%rsp)
movl %ecx, 0x4724(%rsp)
movq %rax, 0x4718(%rsp)
movq 0x4748(%rsp), %rcx
movq %rcx, 0x6d0(%rsp)
movq 0x4730(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4728(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4724(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4718(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4744(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4740(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x473c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4cf8(%rsp)
movl $0x10, 0x4cf4(%rsp)
movq 0x4cf8(%rsp), %rax
movslq 0x4cf4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4cf4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6d8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2540(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1338d64
movq 0x6d8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2558(%rsp)
movb $0x1, 0x2e53(%rsp)
testb $0x1, 0x2e53(%rsp)
jne 0x1338ea5
leaq 0x2518(%rsp), %rax
movq %rax, 0x3028(%rsp)
movq 0x3028(%rsp), %rax
movq %rax, 0x5398(%rsp)
movq 0x5398(%rsp), %rax
movq %rax, 0x6c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1338e48
movq 0x6c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5394(%rsp) # imm = 0xFFFFFFFF
movl 0x5394(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5390(%rsp)
cmpl $0x1, 0x5390(%rsp)
jne 0x1338e48
movq 0x6c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1338e16
movq 0x6c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1338e14
jmp 0x1338e46
movq 0x6c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5418(%rsp)
cmpq $0x0, 0x5418(%rsp)
je 0x1338e44
movq 0x5418(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1338e46
jmp 0x1338e48
movq 0x6c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1338ea3
movq %rax, %rdi
callq 0x678a0
jmp 0x1338ea5
leaq 0x2518(%rsp), %rax
movq %rax, 0x2fc8(%rsp)
movq 0x2fc8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6b8(%rsp)
leaq 0x2518(%rsp), %rax
movq %rax, 0x3110(%rsp)
movq 0x3110(%rsp), %rax
movq %rax, 0x51c8(%rsp)
movq 0x51c8(%rsp), %rax
movq %rax, 0x6c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1338f96
movq 0x6c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x51c4(%rsp) # imm = 0xFFFFFFFF
movl 0x51c4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x51c0(%rsp)
cmpl $0x1, 0x51c0(%rsp)
jne 0x1338f96
movq 0x6c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1338f64
movq 0x6c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1338f62
jmp 0x1338f94
movq 0x6c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5500(%rsp)
cmpq $0x0, 0x5500(%rsp)
je 0x1338f92
movq 0x5500(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1338f94
jmp 0x1338f96
movq 0x6c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1338ff1
movq %rax, %rdi
callq 0x678a0
movq 0x6b8(%rsp), %rax
movq %rax, 0x2560(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x25bc(%rsp), %eax
leaq 0x24c8(%rsp), %rdx
movq %rdx, 0x3400(%rsp)
movq %rcx, 0x33f8(%rsp)
movl %eax, 0x33f4(%rsp)
movq 0x33f8(%rsp), %rax
movq %rax, 0x6b0(%rsp)
movb $0x0, 0x33f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x33f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x24c8(%rsp), %r10
movq %r10, 0x42e8(%rsp)
movl %r9d, 0x42e4(%rsp)
movl %r8d, 0x42e0(%rsp)
movl %edi, 0x42dc(%rsp)
movq %rsi, 0x42d0(%rsp)
movq %rdx, 0x42c8(%rsp)
movl %ecx, 0x42c4(%rsp)
movq %rax, 0x42b8(%rsp)
movq 0x42e8(%rsp), %rcx
movq %rcx, 0x6a8(%rsp)
movq 0x42d0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x42c8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x42c4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x42b8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x42e4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x42e0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x42dc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e38(%rsp)
movl $0x10, 0x4e34(%rsp)
movq 0x4e38(%rsp), %rax
movslq 0x4e34(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e34(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6b0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x24f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13391bd
movq 0x6b0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2508(%rsp)
movb $0x1, 0x33f3(%rsp)
testb $0x1, 0x33f3(%rsp)
jne 0x13392fe
leaq 0x24c8(%rsp), %rax
movq %rax, 0x3408(%rsp)
movq 0x3408(%rsp), %rax
movq %rax, 0x4ea8(%rsp)
movq 0x4ea8(%rsp), %rax
movq %rax, 0x6a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13392a1
movq 0x6a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4ea4(%rsp) # imm = 0xFFFFFFFF
movl 0x4ea4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4ea0(%rsp)
cmpl $0x1, 0x4ea0(%rsp)
jne 0x13392a1
movq 0x6a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x133926f
movq 0x6a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133926d
jmp 0x133929f
movq 0x6a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5690(%rsp)
cmpq $0x0, 0x5690(%rsp)
je 0x133929d
movq 0x5690(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x133929f
jmp 0x13392a1
movq 0x6a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13392fc
movq %rax, %rdi
callq 0x678a0
jmp 0x13392fe
leaq 0x24c8(%rsp), %rax
movq %rax, 0x34f0(%rsp)
movq 0x34f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x690(%rsp)
leaq 0x24c8(%rsp), %rax
movq %rax, 0x3118(%rsp)
movq 0x3118(%rsp), %rax
movq %rax, 0x51b8(%rsp)
movq 0x51b8(%rsp), %rax
movq %rax, 0x698(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13393ef
movq 0x698(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x51b4(%rsp) # imm = 0xFFFFFFFF
movl 0x51b4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x51b0(%rsp)
cmpl $0x1, 0x51b0(%rsp)
jne 0x13393ef
movq 0x698(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13393bd
movq 0x698(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13393bb
jmp 0x13393ed
movq 0x698(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5508(%rsp)
cmpq $0x0, 0x5508(%rsp)
je 0x13393eb
movq 0x5508(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13393ed
jmp 0x13393ef
movq 0x698(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133944a
movq %rax, %rdi
callq 0x678a0
movq 0x690(%rsp), %rax
movq %rax, 0x2510(%rsp)
movl $0x0, 0x24c4(%rsp)
movl 0x24c4(%rsp), %eax
cmpl 0x2b80(%rsp), %eax
jge 0x13395f0
movl $0x0, 0x24c0(%rsp)
movl 0x24c0(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jge 0x13395d8
movq 0x25b0(%rsp), %rax
movq %rax, 0x3608(%rsp)
movq 0x3608(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2480(%rsp)
movl $0x0, 0x247c(%rsp)
movl 0x247c(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jge 0x13395ae
movq 0x2560(%rsp), %rax
movq %rax, 0x3600(%rsp)
movq 0x3600(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2400(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x2480(%rsp), %rsi
leaq 0x2400(%rsp), %rdx
callq 0x1453a60
vmovaps %zmm0, 0x23c0(%rsp)
movq 0x2510(%rsp), %rax
vmovaps 0x23c0(%rsp), %zmm0
movq %rax, 0x3eb8(%rsp)
vmovaps %zmm0, 0x3e40(%rsp)
vmovaps 0x3e40(%rsp), %zmm0
movq 0x3eb8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x2560(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2560(%rsp)
movq 0x2510(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2510(%rsp)
movl 0x247c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x247c(%rsp)
jmp 0x13394cc
movq 0x25b0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x25b0(%rsp)
movl 0x24c0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x24c0(%rsp)
jmp 0x1339484
jmp 0x13395da
movl 0x24c4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x24c4(%rsp)
jmp 0x1339465
jmp 0x13395f2
movl 0x25bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x25bc(%rsp)
jmp 0x133873b
movl $0x0, 0x2bd4(%rsp)
jmp 0x1345520
movq 0x2bc0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1340a63
cmpl $0x1, 0x2b88(%rsp)
jne 0x133a582
cmpl $0x1, 0x2b84(%rsp)
jne 0x133a582
movl 0x2b7c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jne 0x133a582
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movl 0x2b9c(%rsp), %ecx
movq 0x2b90(%rsp), %r8
movl 0x2b8c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c58(%rsp)
movq 0x2c58(%rsp), %rcx
movq %rcx, 0x680(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x68f(%rsp)
je 0x13396fd
movq 0x680(%rsp), %rax
movq %rax, 0x4188(%rsp)
movq 0x4188(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x68f(%rsp)
movb 0x68f(%rsp), %al
testb $0x1, %al
jne 0x133970a
jmp 0x133971a
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1345520
movl $0x0, 0x23bc(%rsp)
movl 0x23bc(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jge 0x133a572
movq 0x2bc8(%rsp), %rcx
movl 0x23bc(%rsp), %eax
leaq 0x2368(%rsp), %rdx
movq %rdx, 0x2e48(%rsp)
movq %rcx, 0x2e40(%rsp)
movl %eax, 0x2e3c(%rsp)
movq 0x2e40(%rsp), %rax
movq %rax, 0x678(%rsp)
movb $0x0, 0x2e3b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e3c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2368(%rsp), %r10
movq %r10, 0x4780(%rsp)
movl %r9d, 0x477c(%rsp)
movl %r8d, 0x4778(%rsp)
movl %edi, 0x4774(%rsp)
movq %rsi, 0x4768(%rsp)
movq %rdx, 0x4760(%rsp)
movl %ecx, 0x475c(%rsp)
movq %rax, 0x4750(%rsp)
movq 0x4780(%rsp), %rcx
movq %rcx, 0x670(%rsp)
movq 0x4768(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4760(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x475c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4750(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x477c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4778(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4774(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4ce8(%rsp)
movl $0x10, 0x4ce4(%rsp)
movq 0x4ce8(%rsp), %rax
movslq 0x4ce4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4ce4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x678(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2390(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13398f5
movq 0x678(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x23a8(%rsp)
movb $0x1, 0x2e3b(%rsp)
testb $0x1, 0x2e3b(%rsp)
jne 0x1339a36
leaq 0x2368(%rsp), %rax
movq %rax, 0x3030(%rsp)
movq 0x3030(%rsp), %rax
movq %rax, 0x5388(%rsp)
movq 0x5388(%rsp), %rax
movq %rax, 0x668(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13399d9
movq 0x668(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5384(%rsp) # imm = 0xFFFFFFFF
movl 0x5384(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5380(%rsp)
cmpl $0x1, 0x5380(%rsp)
jne 0x13399d9
movq 0x668(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13399a7
movq 0x668(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13399a5
jmp 0x13399d7
movq 0x668(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5420(%rsp)
cmpq $0x0, 0x5420(%rsp)
je 0x13399d5
movq 0x5420(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13399d7
jmp 0x13399d9
movq 0x668(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1339a34
movq %rax, %rdi
callq 0x678a0
jmp 0x1339a36
leaq 0x2368(%rsp), %rax
movq %rax, 0x2fc0(%rsp)
movq 0x2fc0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x658(%rsp)
leaq 0x2368(%rsp), %rax
movq %rax, 0x3120(%rsp)
movq 0x3120(%rsp), %rax
movq %rax, 0x51a8(%rsp)
movq 0x51a8(%rsp), %rax
movq %rax, 0x660(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1339b27
movq 0x660(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x51a4(%rsp) # imm = 0xFFFFFFFF
movl 0x51a4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x51a0(%rsp)
cmpl $0x1, 0x51a0(%rsp)
jne 0x1339b27
movq 0x660(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1339af5
movq 0x660(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1339af3
jmp 0x1339b25
movq 0x660(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5510(%rsp)
cmpq $0x0, 0x5510(%rsp)
je 0x1339b23
movq 0x5510(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1339b25
jmp 0x1339b27
movq 0x660(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1339b82
movq %rax, %rdi
callq 0x678a0
movq 0x658(%rsp), %rax
movq %rax, 0x23b0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x23bc(%rsp), %eax
leaq 0x2318(%rsp), %rdx
movq %rdx, 0x2e30(%rsp)
movq %rcx, 0x2e28(%rsp)
movl %eax, 0x2e24(%rsp)
movq 0x2e28(%rsp), %rax
movq %rax, 0x650(%rsp)
movb $0x0, 0x2e23(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e24(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2318(%rsp), %r10
movq %r10, 0x47b8(%rsp)
movl %r9d, 0x47b4(%rsp)
movl %r8d, 0x47b0(%rsp)
movl %edi, 0x47ac(%rsp)
movq %rsi, 0x47a0(%rsp)
movq %rdx, 0x4798(%rsp)
movl %ecx, 0x4794(%rsp)
movq %rax, 0x4788(%rsp)
movq 0x47b8(%rsp), %rcx
movq %rcx, 0x648(%rsp)
movq 0x47a0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4798(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4794(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4788(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x47b4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x47b0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x47ac(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4cd8(%rsp)
movl $0x10, 0x4cd4(%rsp)
movq 0x4cd8(%rsp), %rax
movslq 0x4cd4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4cd4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x650(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2340(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1339d4e
movq 0x650(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2358(%rsp)
movb $0x1, 0x2e23(%rsp)
testb $0x1, 0x2e23(%rsp)
jne 0x1339e8f
leaq 0x2318(%rsp), %rax
movq %rax, 0x3038(%rsp)
movq 0x3038(%rsp), %rax
movq %rax, 0x5378(%rsp)
movq 0x5378(%rsp), %rax
movq %rax, 0x640(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1339e32
movq 0x640(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5374(%rsp) # imm = 0xFFFFFFFF
movl 0x5374(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5370(%rsp)
cmpl $0x1, 0x5370(%rsp)
jne 0x1339e32
movq 0x640(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1339e00
movq 0x640(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1339dfe
jmp 0x1339e30
movq 0x640(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5428(%rsp)
cmpq $0x0, 0x5428(%rsp)
je 0x1339e2e
movq 0x5428(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1339e30
jmp 0x1339e32
movq 0x640(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1339e8d
movq %rax, %rdi
callq 0x678a0
jmp 0x1339e8f
leaq 0x2318(%rsp), %rax
movq %rax, 0x2fb8(%rsp)
movq 0x2fb8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x630(%rsp)
leaq 0x2318(%rsp), %rax
movq %rax, 0x3128(%rsp)
movq 0x3128(%rsp), %rax
movq %rax, 0x5198(%rsp)
movq 0x5198(%rsp), %rax
movq %rax, 0x638(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1339f80
movq 0x638(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5194(%rsp) # imm = 0xFFFFFFFF
movl 0x5194(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5190(%rsp)
cmpl $0x1, 0x5190(%rsp)
jne 0x1339f80
movq 0x638(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1339f4e
movq 0x638(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1339f4c
jmp 0x1339f7e
movq 0x638(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5518(%rsp)
cmpq $0x0, 0x5518(%rsp)
je 0x1339f7c
movq 0x5518(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1339f7e
jmp 0x1339f80
movq 0x638(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1339fdb
movq %rax, %rdi
callq 0x678a0
movq 0x630(%rsp), %rax
movq %rax, 0x2360(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x23bc(%rsp), %eax
leaq 0x22c8(%rsp), %rdx
movq %rdx, 0x33e0(%rsp)
movq %rcx, 0x33d8(%rsp)
movl %eax, 0x33d4(%rsp)
movq 0x33d8(%rsp), %rax
movq %rax, 0x628(%rsp)
movb $0x0, 0x33d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x33d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x22c8(%rsp), %r10
movq %r10, 0x4320(%rsp)
movl %r9d, 0x431c(%rsp)
movl %r8d, 0x4318(%rsp)
movl %edi, 0x4314(%rsp)
movq %rsi, 0x4308(%rsp)
movq %rdx, 0x4300(%rsp)
movl %ecx, 0x42fc(%rsp)
movq %rax, 0x42f0(%rsp)
movq 0x4320(%rsp), %rcx
movq %rcx, 0x620(%rsp)
movq 0x4308(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4300(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x42fc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x42f0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x431c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4318(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4314(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e28(%rsp)
movl $0x10, 0x4e24(%rsp)
movq 0x4e28(%rsp), %rax
movslq 0x4e24(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e24(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x628(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x22f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x133a1a7
movq 0x628(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2308(%rsp)
movb $0x1, 0x33d3(%rsp)
testb $0x1, 0x33d3(%rsp)
jne 0x133a2e8
leaq 0x22c8(%rsp), %rax
movq %rax, 0x33e8(%rsp)
movq 0x33e8(%rsp), %rax
movq %rax, 0x4eb8(%rsp)
movq 0x4eb8(%rsp), %rax
movq %rax, 0x618(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x133a28b
movq 0x618(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4eb4(%rsp) # imm = 0xFFFFFFFF
movl 0x4eb4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4eb0(%rsp)
cmpl $0x1, 0x4eb0(%rsp)
jne 0x133a28b
movq 0x618(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x133a259
movq 0x618(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133a257
jmp 0x133a289
movq 0x618(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5688(%rsp)
cmpq $0x0, 0x5688(%rsp)
je 0x133a287
movq 0x5688(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x133a289
jmp 0x133a28b
movq 0x618(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133a2e6
movq %rax, %rdi
callq 0x678a0
jmp 0x133a2e8
leaq 0x22c8(%rsp), %rax
movq %rax, 0x34e8(%rsp)
movq 0x34e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x608(%rsp)
leaq 0x22c8(%rsp), %rax
movq %rax, 0x3130(%rsp)
movq 0x3130(%rsp), %rax
movq %rax, 0x5188(%rsp)
movq 0x5188(%rsp), %rax
movq %rax, 0x610(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x133a3d9
movq 0x610(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5184(%rsp) # imm = 0xFFFFFFFF
movl 0x5184(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5180(%rsp)
cmpl $0x1, 0x5180(%rsp)
jne 0x133a3d9
movq 0x610(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x133a3a7
movq 0x610(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133a3a5
jmp 0x133a3d7
movq 0x610(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5520(%rsp)
cmpq $0x0, 0x5520(%rsp)
je 0x133a3d5
movq 0x5520(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x133a3d7
jmp 0x133a3d9
movq 0x610(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133a434
movq %rax, %rdi
callq 0x678a0
movq 0x608(%rsp), %rax
movq %rax, 0x2310(%rsp)
movq 0x2360(%rsp), %rax
movq %rax, 0x35f8(%rsp)
movq 0x35f8(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2280(%rsp)
movl $0x0, 0x227c(%rsp)
movl 0x227c(%rsp), %eax
cmpl 0x2b98(%rsp), %eax
jge 0x133a55a
movq 0x23b0(%rsp), %rax
movq %rax, 0x35f0(%rsp)
movq 0x35f0(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2200(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x2200(%rsp), %rsi
leaq 0x2280(%rsp), %rdx
callq 0x1453a60
vmovaps %zmm0, 0x21c0(%rsp)
movq 0x2310(%rsp), %rax
vmovaps 0x21c0(%rsp), %zmm0
movq %rax, 0x3e38(%rsp)
vmovaps %zmm0, 0x3dc0(%rsp)
vmovaps 0x3dc0(%rsp), %zmm0
movq 0x3e38(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x23b0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x23b0(%rsp)
movq 0x2310(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2310(%rsp)
movl 0x227c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x227c(%rsp)
jmp 0x133a478
jmp 0x133a55c
movl 0x23bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x23bc(%rsp)
jmp 0x1339725
movl $0x0, 0x2bd4(%rsp)
jmp 0x1345520
movl 0x2b88(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jne 0x133b0e4
movl 0x2b84(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jne 0x133b0e4
cmpl $0x1, 0x2b7c(%rsp)
jne 0x133b0e4
cmpl $0x1, 0x2b6c(%rsp)
jne 0x133b0e4
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movl 0x2b9c(%rsp), %ecx
movq 0x2b90(%rsp), %r8
movl 0x2b8c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c50(%rsp)
movq 0x2c50(%rsp), %rcx
movq %rcx, 0x5f8(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x607(%rsp)
je 0x133a669
movq 0x5f8(%rsp), %rax
movq %rax, 0x4190(%rsp)
movq 0x4190(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x607(%rsp)
movb 0x607(%rsp), %al
testb $0x1, %al
jne 0x133a676
jmp 0x133a686
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1345520
movl $0x0, 0x21bc(%rsp)
movl 0x21bc(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jge 0x133b0d4
movq 0x2bc8(%rsp), %rcx
movl 0x21bc(%rsp), %eax
leaq 0x2168(%rsp), %rdx
movq %rdx, 0x2e18(%rsp)
movq %rcx, 0x2e10(%rsp)
movl %eax, 0x2e0c(%rsp)
movq 0x2e10(%rsp), %rax
movq %rax, 0x5f0(%rsp)
movb $0x0, 0x2e0b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e0c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2168(%rsp), %r10
movq %r10, 0x47f0(%rsp)
movl %r9d, 0x47ec(%rsp)
movl %r8d, 0x47e8(%rsp)
movl %edi, 0x47e4(%rsp)
movq %rsi, 0x47d8(%rsp)
movq %rdx, 0x47d0(%rsp)
movl %ecx, 0x47cc(%rsp)
movq %rax, 0x47c0(%rsp)
movq 0x47f0(%rsp), %rcx
movq %rcx, 0x5e8(%rsp)
movq 0x47d8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x47d0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x47cc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x47c0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x47ec(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x47e8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x47e4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4cc8(%rsp)
movl $0x10, 0x4cc4(%rsp)
movq 0x4cc8(%rsp), %rax
movslq 0x4cc4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4cc4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5f0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2190(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x133a861
movq 0x5f0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x21a8(%rsp)
movb $0x1, 0x2e0b(%rsp)
testb $0x1, 0x2e0b(%rsp)
jne 0x133a9a2
leaq 0x2168(%rsp), %rax
movq %rax, 0x3040(%rsp)
movq 0x3040(%rsp), %rax
movq %rax, 0x5368(%rsp)
movq 0x5368(%rsp), %rax
movq %rax, 0x5e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x133a945
movq 0x5e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5364(%rsp) # imm = 0xFFFFFFFF
movl 0x5364(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5360(%rsp)
cmpl $0x1, 0x5360(%rsp)
jne 0x133a945
movq 0x5e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x133a913
movq 0x5e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133a911
jmp 0x133a943
movq 0x5e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5430(%rsp)
cmpq $0x0, 0x5430(%rsp)
je 0x133a941
movq 0x5430(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x133a943
jmp 0x133a945
movq 0x5e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133a9a0
movq %rax, %rdi
callq 0x678a0
jmp 0x133a9a2
leaq 0x2168(%rsp), %rax
movq %rax, 0x2fb0(%rsp)
movq 0x2fb0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5d0(%rsp)
leaq 0x2168(%rsp), %rax
movq %rax, 0x3138(%rsp)
movq 0x3138(%rsp), %rax
movq %rax, 0x5178(%rsp)
movq 0x5178(%rsp), %rax
movq %rax, 0x5d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x133aa93
movq 0x5d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5174(%rsp) # imm = 0xFFFFFFFF
movl 0x5174(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5170(%rsp)
cmpl $0x1, 0x5170(%rsp)
jne 0x133aa93
movq 0x5d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x133aa61
movq 0x5d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133aa5f
jmp 0x133aa91
movq 0x5d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5528(%rsp)
cmpq $0x0, 0x5528(%rsp)
je 0x133aa8f
movq 0x5528(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x133aa91
jmp 0x133aa93
movq 0x5d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133aaee
movq %rax, %rdi
callq 0x678a0
movq 0x5d0(%rsp), %rax
movq %rax, 0x21b0(%rsp)
movq 0x2bc0(%rsp), %rax
movq %rax, 0x2fa8(%rsp)
movq 0x2fa8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2160(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x21bc(%rsp), %eax
leaq 0x2110(%rsp), %rdx
movq %rdx, 0x33c0(%rsp)
movq %rcx, 0x33b8(%rsp)
movl %eax, 0x33b4(%rsp)
movq 0x33b8(%rsp), %rax
movq %rax, 0x5c8(%rsp)
movb $0x0, 0x33b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x33b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2110(%rsp), %r10
movq %r10, 0x4358(%rsp)
movl %r9d, 0x4354(%rsp)
movl %r8d, 0x4350(%rsp)
movl %edi, 0x434c(%rsp)
movq %rsi, 0x4340(%rsp)
movq %rdx, 0x4338(%rsp)
movl %ecx, 0x4334(%rsp)
movq %rax, 0x4328(%rsp)
movq 0x4358(%rsp), %rcx
movq %rcx, 0x5c0(%rsp)
movq 0x4340(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4338(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4334(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4328(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4354(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4350(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x434c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e18(%rsp)
movl $0x10, 0x4e14(%rsp)
movq 0x4e18(%rsp), %rax
movslq 0x4e14(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e14(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5c8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2138(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x133acdd
movq 0x5c8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2150(%rsp)
movb $0x1, 0x33b3(%rsp)
testb $0x1, 0x33b3(%rsp)
jne 0x133ae1e
leaq 0x2110(%rsp), %rax
movq %rax, 0x33c8(%rsp)
movq 0x33c8(%rsp), %rax
movq %rax, 0x4ec8(%rsp)
movq 0x4ec8(%rsp), %rax
movq %rax, 0x5b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x133adc1
movq 0x5b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4ec4(%rsp) # imm = 0xFFFFFFFF
movl 0x4ec4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4ec0(%rsp)
cmpl $0x1, 0x4ec0(%rsp)
jne 0x133adc1
movq 0x5b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x133ad8f
movq 0x5b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133ad8d
jmp 0x133adbf
movq 0x5b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5680(%rsp)
cmpq $0x0, 0x5680(%rsp)
je 0x133adbd
movq 0x5680(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x133adbf
jmp 0x133adc1
movq 0x5b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133ae1c
movq %rax, %rdi
callq 0x678a0
jmp 0x133ae1e
leaq 0x2110(%rsp), %rax
movq %rax, 0x34e0(%rsp)
movq 0x34e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5a8(%rsp)
leaq 0x2110(%rsp), %rax
movq %rax, 0x3140(%rsp)
movq 0x3140(%rsp), %rax
movq %rax, 0x5168(%rsp)
movq 0x5168(%rsp), %rax
movq %rax, 0x5b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x133af0f
movq 0x5b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5164(%rsp) # imm = 0xFFFFFFFF
movl 0x5164(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5160(%rsp)
cmpl $0x1, 0x5160(%rsp)
jne 0x133af0f
movq 0x5b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x133aedd
movq 0x5b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133aedb
jmp 0x133af0d
movq 0x5b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5530(%rsp)
cmpq $0x0, 0x5530(%rsp)
je 0x133af0b
movq 0x5530(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x133af0d
jmp 0x133af0f
movq 0x5b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133af6a
movq %rax, %rdi
callq 0x678a0
movq 0x5a8(%rsp), %rax
movq %rax, 0x2158(%rsp)
movl $0x0, 0x210c(%rsp)
movl 0x210c(%rsp), %eax
cmpl 0x2b98(%rsp), %eax
jge 0x133b0bc
movq 0x21b0(%rsp), %rax
movq %rax, 0x35e8(%rsp)
movq 0x35e8(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x20c0(%rsp)
movq 0x2160(%rsp), %rax
vmovss (%rax), %xmm0
vmovss %xmm0, 0x4174(%rsp)
vbroadcastss 0x4174(%rsp), %zmm0
vmovaps %zmm0, 0x4100(%rsp)
vmovaps 0x4100(%rsp), %zmm0
vmovaps %zmm0, 0x2080(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x20c0(%rsp), %rsi
leaq 0x2080(%rsp), %rdx
callq 0x1453a60
vmovaps %zmm0, 0x2040(%rsp)
movq 0x2158(%rsp), %rax
vmovaps 0x2040(%rsp), %zmm0
movq %rax, 0x3db8(%rsp)
vmovaps %zmm0, 0x3d40(%rsp)
vmovaps 0x3d40(%rsp), %zmm0
movq 0x3db8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x21b0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x21b0(%rsp)
movq 0x2160(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x2160(%rsp)
movq 0x2158(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2158(%rsp)
movl 0x210c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x210c(%rsp)
jmp 0x133af85
jmp 0x133b0be
movl 0x21bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x21bc(%rsp)
jmp 0x133a691
movl $0x0, 0x2bd4(%rsp)
jmp 0x1345520
cmpl $0x1, 0x2ba8(%rsp)
jne 0x133c030
cmpl $0x1, 0x2ba4(%rsp)
jne 0x133c030
movl 0x2b7c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jne 0x133c030
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b7c(%rsp), %ecx
movq 0x2b70(%rsp), %r8
movl 0x2b6c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c48(%rsp)
movq 0x2c48(%rsp), %rcx
movq %rcx, 0x598(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x5a7(%rsp)
je 0x133b1b7
movq 0x598(%rsp), %rax
movq %rax, 0x4198(%rsp)
movq 0x4198(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x5a7(%rsp)
movb 0x5a7(%rsp), %al
testb $0x1, %al
jne 0x133b1c4
jmp 0x133b1d4
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1345520
movl $0x0, 0x203c(%rsp)
movl 0x203c(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x133c020
movq 0x2bc8(%rsp), %rcx
movl 0x203c(%rsp), %eax
leaq 0x1fe8(%rsp), %rdx
movq %rdx, 0x2e00(%rsp)
movq %rcx, 0x2df8(%rsp)
movl %eax, 0x2df4(%rsp)
movq 0x2df8(%rsp), %rax
movq %rax, 0x590(%rsp)
movb $0x0, 0x2df3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2df4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1fe8(%rsp), %r10
movq %r10, 0x4828(%rsp)
movl %r9d, 0x4824(%rsp)
movl %r8d, 0x4820(%rsp)
movl %edi, 0x481c(%rsp)
movq %rsi, 0x4810(%rsp)
movq %rdx, 0x4808(%rsp)
movl %ecx, 0x4804(%rsp)
movq %rax, 0x47f8(%rsp)
movq 0x4828(%rsp), %rcx
movq %rcx, 0x588(%rsp)
movq 0x4810(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4808(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4804(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x47f8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4824(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4820(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x481c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4cb8(%rsp)
movl $0x10, 0x4cb4(%rsp)
movq 0x4cb8(%rsp), %rax
movslq 0x4cb4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4cb4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x590(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2010(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x133b3af
movq 0x590(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2028(%rsp)
movb $0x1, 0x2df3(%rsp)
testb $0x1, 0x2df3(%rsp)
jne 0x133b4f0
leaq 0x1fe8(%rsp), %rax
movq %rax, 0x3048(%rsp)
movq 0x3048(%rsp), %rax
movq %rax, 0x5358(%rsp)
movq 0x5358(%rsp), %rax
movq %rax, 0x580(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x133b493
movq 0x580(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5354(%rsp) # imm = 0xFFFFFFFF
movl 0x5354(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5350(%rsp)
cmpl $0x1, 0x5350(%rsp)
jne 0x133b493
movq 0x580(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x133b461
movq 0x580(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133b45f
jmp 0x133b491
movq 0x580(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5438(%rsp)
cmpq $0x0, 0x5438(%rsp)
je 0x133b48f
movq 0x5438(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x133b491
jmp 0x133b493
movq 0x580(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133b4ee
movq %rax, %rdi
callq 0x678a0
jmp 0x133b4f0
leaq 0x1fe8(%rsp), %rax
movq %rax, 0x2fa0(%rsp)
movq 0x2fa0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x570(%rsp)
leaq 0x1fe8(%rsp), %rax
movq %rax, 0x3148(%rsp)
movq 0x3148(%rsp), %rax
movq %rax, 0x5158(%rsp)
movq 0x5158(%rsp), %rax
movq %rax, 0x578(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x133b5e1
movq 0x578(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5154(%rsp) # imm = 0xFFFFFFFF
movl 0x5154(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5150(%rsp)
cmpl $0x1, 0x5150(%rsp)
jne 0x133b5e1
movq 0x578(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x133b5af
movq 0x578(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133b5ad
jmp 0x133b5df
movq 0x578(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5538(%rsp)
cmpq $0x0, 0x5538(%rsp)
je 0x133b5dd
movq 0x5538(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x133b5df
jmp 0x133b5e1
movq 0x578(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133b63c
movq %rax, %rdi
callq 0x678a0
movq 0x570(%rsp), %rax
movq %rax, 0x2030(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x203c(%rsp), %eax
leaq 0x1f98(%rsp), %rdx
movq %rdx, 0x2de8(%rsp)
movq %rcx, 0x2de0(%rsp)
movl %eax, 0x2ddc(%rsp)
movq 0x2de0(%rsp), %rax
movq %rax, 0x568(%rsp)
movb $0x0, 0x2ddb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2ddc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1f98(%rsp), %r10
movq %r10, 0x4860(%rsp)
movl %r9d, 0x485c(%rsp)
movl %r8d, 0x4858(%rsp)
movl %edi, 0x4854(%rsp)
movq %rsi, 0x4848(%rsp)
movq %rdx, 0x4840(%rsp)
movl %ecx, 0x483c(%rsp)
movq %rax, 0x4830(%rsp)
movq 0x4860(%rsp), %rcx
movq %rcx, 0x560(%rsp)
movq 0x4848(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4840(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x483c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4830(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x485c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4858(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4854(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4ca8(%rsp)
movl $0x10, 0x4ca4(%rsp)
movq 0x4ca8(%rsp), %rax
movslq 0x4ca4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4ca4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x568(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1fc0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x133b808
movq 0x568(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1fd8(%rsp)
movb $0x1, 0x2ddb(%rsp)
testb $0x1, 0x2ddb(%rsp)
jne 0x133b949
leaq 0x1f98(%rsp), %rax
movq %rax, 0x3050(%rsp)
movq 0x3050(%rsp), %rax
movq %rax, 0x5348(%rsp)
movq 0x5348(%rsp), %rax
movq %rax, 0x558(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x133b8ec
movq 0x558(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5344(%rsp) # imm = 0xFFFFFFFF
movl 0x5344(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5340(%rsp)
cmpl $0x1, 0x5340(%rsp)
jne 0x133b8ec
movq 0x558(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x133b8ba
movq 0x558(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133b8b8
jmp 0x133b8ea
movq 0x558(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5440(%rsp)
cmpq $0x0, 0x5440(%rsp)
je 0x133b8e8
movq 0x5440(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x133b8ea
jmp 0x133b8ec
movq 0x558(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133b947
movq %rax, %rdi
callq 0x678a0
jmp 0x133b949
leaq 0x1f98(%rsp), %rax
movq %rax, 0x2f98(%rsp)
movq 0x2f98(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x548(%rsp)
leaq 0x1f98(%rsp), %rax
movq %rax, 0x3150(%rsp)
movq 0x3150(%rsp), %rax
movq %rax, 0x5148(%rsp)
movq 0x5148(%rsp), %rax
movq %rax, 0x550(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x133ba3a
movq 0x550(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5144(%rsp) # imm = 0xFFFFFFFF
movl 0x5144(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5140(%rsp)
cmpl $0x1, 0x5140(%rsp)
jne 0x133ba3a
movq 0x550(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x133ba08
movq 0x550(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133ba06
jmp 0x133ba38
movq 0x550(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5540(%rsp)
cmpq $0x0, 0x5540(%rsp)
je 0x133ba36
movq 0x5540(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x133ba38
jmp 0x133ba3a
movq 0x550(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133ba95
movq %rax, %rdi
callq 0x678a0
movq 0x548(%rsp), %rax
movq %rax, 0x1fe0(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x203c(%rsp), %eax
leaq 0x1f48(%rsp), %rdx
movq %rdx, 0x33a0(%rsp)
movq %rcx, 0x3398(%rsp)
movl %eax, 0x3394(%rsp)
movq 0x3398(%rsp), %rax
movq %rax, 0x540(%rsp)
movb $0x0, 0x3393(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3394(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1f48(%rsp), %r10
movq %r10, 0x4390(%rsp)
movl %r9d, 0x438c(%rsp)
movl %r8d, 0x4388(%rsp)
movl %edi, 0x4384(%rsp)
movq %rsi, 0x4378(%rsp)
movq %rdx, 0x4370(%rsp)
movl %ecx, 0x436c(%rsp)
movq %rax, 0x4360(%rsp)
movq 0x4390(%rsp), %rcx
movq %rcx, 0x538(%rsp)
movq 0x4378(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4370(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x436c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4360(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x438c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4388(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4384(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e08(%rsp)
movl $0x10, 0x4e04(%rsp)
movq 0x4e08(%rsp), %rax
movslq 0x4e04(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e04(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x540(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1f70(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x133bc61
movq 0x540(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1f88(%rsp)
movb $0x1, 0x3393(%rsp)
testb $0x1, 0x3393(%rsp)
jne 0x133bda2
leaq 0x1f48(%rsp), %rax
movq %rax, 0x33a8(%rsp)
movq 0x33a8(%rsp), %rax
movq %rax, 0x4ed8(%rsp)
movq 0x4ed8(%rsp), %rax
movq %rax, 0x530(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x133bd45
movq 0x530(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4ed4(%rsp) # imm = 0xFFFFFFFF
movl 0x4ed4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4ed0(%rsp)
cmpl $0x1, 0x4ed0(%rsp)
jne 0x133bd45
movq 0x530(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x133bd13
movq 0x530(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133bd11
jmp 0x133bd43
movq 0x530(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5678(%rsp)
cmpq $0x0, 0x5678(%rsp)
je 0x133bd41
movq 0x5678(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x133bd43
jmp 0x133bd45
movq 0x530(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133bda0
movq %rax, %rdi
callq 0x678a0
jmp 0x133bda2
leaq 0x1f48(%rsp), %rax
movq %rax, 0x34d8(%rsp)
movq 0x34d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x520(%rsp)
leaq 0x1f48(%rsp), %rax
movq %rax, 0x3158(%rsp)
movq 0x3158(%rsp), %rax
movq %rax, 0x5138(%rsp)
movq 0x5138(%rsp), %rax
movq %rax, 0x528(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x133be93
movq 0x528(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5134(%rsp) # imm = 0xFFFFFFFF
movl 0x5134(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5130(%rsp)
cmpl $0x1, 0x5130(%rsp)
jne 0x133be93
movq 0x528(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x133be61
movq 0x528(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133be5f
jmp 0x133be91
movq 0x528(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5548(%rsp)
cmpq $0x0, 0x5548(%rsp)
je 0x133be8f
movq 0x5548(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x133be91
jmp 0x133be93
movq 0x528(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133beee
movq %rax, %rdi
callq 0x678a0
movq 0x520(%rsp), %rax
movq %rax, 0x1f90(%rsp)
movq 0x2030(%rsp), %rax
movq %rax, 0x35e0(%rsp)
movq 0x35e0(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1f00(%rsp)
movl $0x0, 0x1efc(%rsp)
movl 0x1efc(%rsp), %eax
cmpl 0x2b78(%rsp), %eax
jge 0x133c008
movq 0x1fe0(%rsp), %rax
movq %rax, 0x35d8(%rsp)
movq 0x35d8(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1e80(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x1f00(%rsp), %rsi
leaq 0x1e80(%rsp), %rdx
callq 0x1453a60
vmovaps %zmm0, 0x1e40(%rsp)
movq 0x1f90(%rsp), %rax
vmovaps 0x1e40(%rsp), %zmm0
movq %rax, 0x3d38(%rsp)
vmovaps %zmm0, 0x3cc0(%rsp)
vmovaps 0x3cc0(%rsp), %zmm0
movq 0x3d38(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x1fe0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1fe0(%rsp)
movq 0x1f90(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1f90(%rsp)
movl 0x1efc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1efc(%rsp)
jmp 0x133bf2f
jmp 0x133c00a
movl 0x203c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x203c(%rsp)
jmp 0x133b1df
movl $0x0, 0x2bd4(%rsp)
jmp 0x1345520
movl 0x2b88(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jne 0x133cb86
movl 0x2b84(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jne 0x133cb86
cmpl $0x1, 0x2b9c(%rsp)
jne 0x133cb86
cmpl $0x1, 0x2b8c(%rsp)
jne 0x133cb86
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b7c(%rsp), %ecx
movq 0x2b70(%rsp), %r8
movl 0x2b6c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c40(%rsp)
movq 0x2c40(%rsp), %rcx
movq %rcx, 0x510(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x51f(%rsp)
je 0x133c117
movq 0x510(%rsp), %rax
movq %rax, 0x41a0(%rsp)
movq 0x41a0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x51f(%rsp)
movb 0x51f(%rsp), %al
testb $0x1, %al
jne 0x133c124
jmp 0x133c134
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1345520
movl $0x0, 0x1e3c(%rsp)
movl 0x1e3c(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x133cb76
movq 0x2bc8(%rsp), %rax
movq %rax, 0x2f90(%rsp)
movq 0x2f90(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1e30(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x1e3c(%rsp), %eax
leaq 0x1de0(%rsp), %rdx
movq %rdx, 0x2dd0(%rsp)
movq %rcx, 0x2dc8(%rsp)
movl %eax, 0x2dc4(%rsp)
movq 0x2dc8(%rsp), %rax
movq %rax, 0x508(%rsp)
movb $0x0, 0x2dc3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2dc4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1de0(%rsp), %r10
movq %r10, 0x4898(%rsp)
movl %r9d, 0x4894(%rsp)
movl %r8d, 0x4890(%rsp)
movl %edi, 0x488c(%rsp)
movq %rsi, 0x4880(%rsp)
movq %rdx, 0x4878(%rsp)
movl %ecx, 0x4874(%rsp)
movq %rax, 0x4868(%rsp)
movq 0x4898(%rsp), %rcx
movq %rcx, 0x500(%rsp)
movq 0x4880(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4878(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4874(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4868(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4894(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4890(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x488c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c98(%rsp)
movl $0x10, 0x4c94(%rsp)
movq 0x4c98(%rsp), %rax
movslq 0x4c94(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c94(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x508(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1e08(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x133c332
movq 0x508(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1e20(%rsp)
movb $0x1, 0x2dc3(%rsp)
testb $0x1, 0x2dc3(%rsp)
jne 0x133c473
leaq 0x1de0(%rsp), %rax
movq %rax, 0x3058(%rsp)
movq 0x3058(%rsp), %rax
movq %rax, 0x5338(%rsp)
movq 0x5338(%rsp), %rax
movq %rax, 0x4f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x133c416
movq 0x4f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5334(%rsp) # imm = 0xFFFFFFFF
movl 0x5334(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5330(%rsp)
cmpl $0x1, 0x5330(%rsp)
jne 0x133c416
movq 0x4f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x133c3e4
movq 0x4f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133c3e2
jmp 0x133c414
movq 0x4f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5448(%rsp)
cmpq $0x0, 0x5448(%rsp)
je 0x133c412
movq 0x5448(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x133c414
jmp 0x133c416
movq 0x4f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133c471
movq %rax, %rdi
callq 0x678a0
jmp 0x133c473
leaq 0x1de0(%rsp), %rax
movq %rax, 0x2f88(%rsp)
movq 0x2f88(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4e8(%rsp)
leaq 0x1de0(%rsp), %rax
movq %rax, 0x3160(%rsp)
movq 0x3160(%rsp), %rax
movq %rax, 0x5128(%rsp)
movq 0x5128(%rsp), %rax
movq %rax, 0x4f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x133c564
movq 0x4f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5124(%rsp) # imm = 0xFFFFFFFF
movl 0x5124(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5120(%rsp)
cmpl $0x1, 0x5120(%rsp)
jne 0x133c564
movq 0x4f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x133c532
movq 0x4f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133c530
jmp 0x133c562
movq 0x4f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5550(%rsp)
cmpq $0x0, 0x5550(%rsp)
je 0x133c560
movq 0x5550(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x133c562
jmp 0x133c564
movq 0x4f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133c5bf
movq %rax, %rdi
callq 0x678a0
movq 0x4e8(%rsp), %rax
movq %rax, 0x1e28(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x1e3c(%rsp), %eax
leaq 0x1d90(%rsp), %rdx
movq %rdx, 0x3380(%rsp)
movq %rcx, 0x3378(%rsp)
movl %eax, 0x3374(%rsp)
movq 0x3378(%rsp), %rax
movq %rax, 0x4e0(%rsp)
movb $0x0, 0x3373(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3374(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1d90(%rsp), %r10
movq %r10, 0x43c8(%rsp)
movl %r9d, 0x43c4(%rsp)
movl %r8d, 0x43c0(%rsp)
movl %edi, 0x43bc(%rsp)
movq %rsi, 0x43b0(%rsp)
movq %rdx, 0x43a8(%rsp)
movl %ecx, 0x43a4(%rsp)
movq %rax, 0x4398(%rsp)
movq 0x43c8(%rsp), %rcx
movq %rcx, 0x4d8(%rsp)
movq 0x43b0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x43a8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x43a4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4398(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x43c4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x43c0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x43bc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4df8(%rsp)
movl $0x10, 0x4df4(%rsp)
movq 0x4df8(%rsp), %rax
movslq 0x4df4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4df4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4e0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1db8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x133c78b
movq 0x4e0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1dd0(%rsp)
movb $0x1, 0x3373(%rsp)
testb $0x1, 0x3373(%rsp)
jne 0x133c8cc
leaq 0x1d90(%rsp), %rax
movq %rax, 0x3388(%rsp)
movq 0x3388(%rsp), %rax
movq %rax, 0x4ee8(%rsp)
movq 0x4ee8(%rsp), %rax
movq %rax, 0x4d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x133c86f
movq 0x4d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4ee4(%rsp) # imm = 0xFFFFFFFF
movl 0x4ee4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4ee0(%rsp)
cmpl $0x1, 0x4ee0(%rsp)
jne 0x133c86f
movq 0x4d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x133c83d
movq 0x4d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133c83b
jmp 0x133c86d
movq 0x4d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5670(%rsp)
cmpq $0x0, 0x5670(%rsp)
je 0x133c86b
movq 0x5670(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x133c86d
jmp 0x133c86f
movq 0x4d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133c8ca
movq %rax, %rdi
callq 0x678a0
jmp 0x133c8cc
leaq 0x1d90(%rsp), %rax
movq %rax, 0x34d0(%rsp)
movq 0x34d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4c0(%rsp)
leaq 0x1d90(%rsp), %rax
movq %rax, 0x3168(%rsp)
movq 0x3168(%rsp), %rax
movq %rax, 0x5118(%rsp)
movq 0x5118(%rsp), %rax
movq %rax, 0x4c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x133c9bd
movq 0x4c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5114(%rsp) # imm = 0xFFFFFFFF
movl 0x5114(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5110(%rsp)
cmpl $0x1, 0x5110(%rsp)
jne 0x133c9bd
movq 0x4c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x133c98b
movq 0x4c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133c989
jmp 0x133c9bb
movq 0x4c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5558(%rsp)
cmpq $0x0, 0x5558(%rsp)
je 0x133c9b9
movq 0x5558(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x133c9bb
jmp 0x133c9bd
movq 0x4c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133ca18
movq %rax, %rdi
callq 0x678a0
movq 0x4c0(%rsp), %rax
movq %rax, 0x1dd8(%rsp)
movl $0x0, 0x1d8c(%rsp)
movl 0x1d8c(%rsp), %eax
cmpl 0x2b78(%rsp), %eax
jge 0x133cb5e
movq 0x1e30(%rsp), %rax
vmovss (%rax), %xmm0
vmovss %xmm0, 0x40fc(%rsp)
vbroadcastss 0x40fc(%rsp), %zmm0
vmovaps %zmm0, 0x4080(%rsp)
vmovaps 0x4080(%rsp), %zmm0
vmovaps %zmm0, 0x1d40(%rsp)
movq 0x1e28(%rsp), %rax
movq %rax, 0x35d0(%rsp)
movq 0x35d0(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1d00(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x1d40(%rsp), %rsi
leaq 0x1d00(%rsp), %rdx
callq 0x1453a60
vmovaps %zmm0, 0x1cc0(%rsp)
movq 0x1dd8(%rsp), %rax
vmovaps 0x1cc0(%rsp), %zmm0
movq %rax, 0x3cb8(%rsp)
vmovaps %zmm0, 0x3c40(%rsp)
vmovaps 0x3c40(%rsp), %zmm0
movq 0x3cb8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x1e30(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x1e30(%rsp)
movq 0x1e28(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1e28(%rsp)
movq 0x1dd8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1dd8(%rsp)
movl 0x1d8c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1d8c(%rsp)
jmp 0x133ca33
jmp 0x133cb60
movl 0x1e3c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1e3c(%rsp)
jmp 0x133c13f
movl $0x0, 0x2bd4(%rsp)
jmp 0x1345520
cmpl $0x1, 0x2ba8(%rsp)
je 0x133db31
cmpl $0x1, 0x2b88(%rsp)
jne 0x133db31
movl 0x2b84(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jne 0x133db31
movl 0x2b7c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jne 0x133db31
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movl 0x2b9c(%rsp), %ecx
movq 0x2b90(%rsp), %r8
movl 0x2b8c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c38(%rsp)
movq 0x2c38(%rsp), %rcx
movq %rcx, 0x4b0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x4bf(%rsp)
je 0x133cc6d
movq 0x4b0(%rsp), %rax
movq %rax, 0x41a8(%rsp)
movq 0x41a8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x4bf(%rsp)
movb 0x4bf(%rsp), %al
testb $0x1, %al
jne 0x133cc7a
jmp 0x133cc8a
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1345520
movl $0x0, 0x1cbc(%rsp)
movl 0x1cbc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x133db21
movq 0x2bc8(%rsp), %rcx
movl 0x1cbc(%rsp), %eax
leaq 0x1c68(%rsp), %rdx
movq %rdx, 0x2db8(%rsp)
movq %rcx, 0x2db0(%rsp)
movl %eax, 0x2dac(%rsp)
movq 0x2db0(%rsp), %rax
movq %rax, 0x4a8(%rsp)
movb $0x0, 0x2dab(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2dac(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1c68(%rsp), %r10
movq %r10, 0x48d0(%rsp)
movl %r9d, 0x48cc(%rsp)
movl %r8d, 0x48c8(%rsp)
movl %edi, 0x48c4(%rsp)
movq %rsi, 0x48b8(%rsp)
movq %rdx, 0x48b0(%rsp)
movl %ecx, 0x48ac(%rsp)
movq %rax, 0x48a0(%rsp)
movq 0x48d0(%rsp), %rcx
movq %rcx, 0x4a0(%rsp)
movq 0x48b8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x48b0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x48ac(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x48a0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x48cc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x48c8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x48c4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c88(%rsp)
movl $0x10, 0x4c84(%rsp)
movq 0x4c88(%rsp), %rax
movslq 0x4c84(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c84(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4a8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1c90(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x133ce65
movq 0x4a8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1ca8(%rsp)
movb $0x1, 0x2dab(%rsp)
testb $0x1, 0x2dab(%rsp)
jne 0x133cfa6
leaq 0x1c68(%rsp), %rax
movq %rax, 0x3060(%rsp)
movq 0x3060(%rsp), %rax
movq %rax, 0x5328(%rsp)
movq 0x5328(%rsp), %rax
movq %rax, 0x498(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x133cf49
movq 0x498(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5324(%rsp) # imm = 0xFFFFFFFF
movl 0x5324(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5320(%rsp)
cmpl $0x1, 0x5320(%rsp)
jne 0x133cf49
movq 0x498(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x133cf17
movq 0x498(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133cf15
jmp 0x133cf47
movq 0x498(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5450(%rsp)
cmpq $0x0, 0x5450(%rsp)
je 0x133cf45
movq 0x5450(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x133cf47
jmp 0x133cf49
movq 0x498(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133cfa4
movq %rax, %rdi
callq 0x678a0
jmp 0x133cfa6
leaq 0x1c68(%rsp), %rax
movq %rax, 0x2f80(%rsp)
movq 0x2f80(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x488(%rsp)
leaq 0x1c68(%rsp), %rax
movq %rax, 0x3170(%rsp)
movq 0x3170(%rsp), %rax
movq %rax, 0x5108(%rsp)
movq 0x5108(%rsp), %rax
movq %rax, 0x490(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x133d097
movq 0x490(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5104(%rsp) # imm = 0xFFFFFFFF
movl 0x5104(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5100(%rsp)
cmpl $0x1, 0x5100(%rsp)
jne 0x133d097
movq 0x490(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x133d065
movq 0x490(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133d063
jmp 0x133d095
movq 0x490(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5560(%rsp)
cmpq $0x0, 0x5560(%rsp)
je 0x133d093
movq 0x5560(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x133d095
jmp 0x133d097
movq 0x490(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133d0f2
movq %rax, %rdi
callq 0x678a0
movq 0x488(%rsp), %rax
movq %rax, 0x1cb0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x1cbc(%rsp), %eax
leaq 0x1c18(%rsp), %rdx
movq %rdx, 0x2da0(%rsp)
movq %rcx, 0x2d98(%rsp)
movl %eax, 0x2d94(%rsp)
movq 0x2d98(%rsp), %rax
movq %rax, 0x480(%rsp)
movb $0x0, 0x2d93(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d94(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1c18(%rsp), %r10
movq %r10, 0x4908(%rsp)
movl %r9d, 0x4904(%rsp)
movl %r8d, 0x4900(%rsp)
movl %edi, 0x48fc(%rsp)
movq %rsi, 0x48f0(%rsp)
movq %rdx, 0x48e8(%rsp)
movl %ecx, 0x48e4(%rsp)
movq %rax, 0x48d8(%rsp)
movq 0x4908(%rsp), %rcx
movq %rcx, 0x478(%rsp)
movq 0x48f0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x48e8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x48e4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x48d8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4904(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4900(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x48fc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c78(%rsp)
movl $0x10, 0x4c74(%rsp)
movq 0x4c78(%rsp), %rax
movslq 0x4c74(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c74(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x480(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1c40(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x133d2be
movq 0x480(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1c58(%rsp)
movb $0x1, 0x2d93(%rsp)
testb $0x1, 0x2d93(%rsp)
jne 0x133d3ff
leaq 0x1c18(%rsp), %rax
movq %rax, 0x3068(%rsp)
movq 0x3068(%rsp), %rax
movq %rax, 0x5318(%rsp)
movq 0x5318(%rsp), %rax
movq %rax, 0x470(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x133d3a2
movq 0x470(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5314(%rsp) # imm = 0xFFFFFFFF
movl 0x5314(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5310(%rsp)
cmpl $0x1, 0x5310(%rsp)
jne 0x133d3a2
movq 0x470(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x133d370
movq 0x470(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133d36e
jmp 0x133d3a0
movq 0x470(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5458(%rsp)
cmpq $0x0, 0x5458(%rsp)
je 0x133d39e
movq 0x5458(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x133d3a0
jmp 0x133d3a2
movq 0x470(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133d3fd
movq %rax, %rdi
callq 0x678a0
jmp 0x133d3ff
leaq 0x1c18(%rsp), %rax
movq %rax, 0x2f78(%rsp)
movq 0x2f78(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x460(%rsp)
leaq 0x1c18(%rsp), %rax
movq %rax, 0x3178(%rsp)
movq 0x3178(%rsp), %rax
movq %rax, 0x50f8(%rsp)
movq 0x50f8(%rsp), %rax
movq %rax, 0x468(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x133d4f0
movq 0x468(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x50f4(%rsp) # imm = 0xFFFFFFFF
movl 0x50f4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x50f0(%rsp)
cmpl $0x1, 0x50f0(%rsp)
jne 0x133d4f0
movq 0x468(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x133d4be
movq 0x468(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133d4bc
jmp 0x133d4ee
movq 0x468(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5568(%rsp)
cmpq $0x0, 0x5568(%rsp)
je 0x133d4ec
movq 0x5568(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x133d4ee
jmp 0x133d4f0
movq 0x468(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133d54b
movq %rax, %rdi
callq 0x678a0
movq 0x460(%rsp), %rax
movq %rax, 0x1c60(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x1cbc(%rsp), %eax
leaq 0x1bc8(%rsp), %rdx
movq %rdx, 0x3360(%rsp)
movq %rcx, 0x3358(%rsp)
movl %eax, 0x3354(%rsp)
movq 0x3358(%rsp), %rax
movq %rax, 0x458(%rsp)
movb $0x0, 0x3353(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3354(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1bc8(%rsp), %r10
movq %r10, 0x4400(%rsp)
movl %r9d, 0x43fc(%rsp)
movl %r8d, 0x43f8(%rsp)
movl %edi, 0x43f4(%rsp)
movq %rsi, 0x43e8(%rsp)
movq %rdx, 0x43e0(%rsp)
movl %ecx, 0x43dc(%rsp)
movq %rax, 0x43d0(%rsp)
movq 0x4400(%rsp), %rcx
movq %rcx, 0x450(%rsp)
movq 0x43e8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x43e0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x43dc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x43d0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x43fc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x43f8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x43f4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4de8(%rsp)
movl $0x10, 0x4de4(%rsp)
movq 0x4de8(%rsp), %rax
movslq 0x4de4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4de4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x458(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1bf0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x133d717
movq 0x458(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1c08(%rsp)
movb $0x1, 0x3353(%rsp)
testb $0x1, 0x3353(%rsp)
jne 0x133d858
leaq 0x1bc8(%rsp), %rax
movq %rax, 0x3368(%rsp)
movq 0x3368(%rsp), %rax
movq %rax, 0x4ef8(%rsp)
movq 0x4ef8(%rsp), %rax
movq %rax, 0x448(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x133d7fb
movq 0x448(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4ef4(%rsp) # imm = 0xFFFFFFFF
movl 0x4ef4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4ef0(%rsp)
cmpl $0x1, 0x4ef0(%rsp)
jne 0x133d7fb
movq 0x448(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x133d7c9
movq 0x448(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133d7c7
jmp 0x133d7f9
movq 0x448(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5668(%rsp)
cmpq $0x0, 0x5668(%rsp)
je 0x133d7f7
movq 0x5668(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x133d7f9
jmp 0x133d7fb
movq 0x448(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133d856
movq %rax, %rdi
callq 0x678a0
jmp 0x133d858
leaq 0x1bc8(%rsp), %rax
movq %rax, 0x34c8(%rsp)
movq 0x34c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x438(%rsp)
leaq 0x1bc8(%rsp), %rax
movq %rax, 0x3180(%rsp)
movq 0x3180(%rsp), %rax
movq %rax, 0x50e8(%rsp)
movq 0x50e8(%rsp), %rax
movq %rax, 0x440(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x133d949
movq 0x440(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x50e4(%rsp) # imm = 0xFFFFFFFF
movl 0x50e4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x50e0(%rsp)
cmpl $0x1, 0x50e0(%rsp)
jne 0x133d949
movq 0x440(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x133d917
movq 0x440(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133d915
jmp 0x133d947
movq 0x440(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5570(%rsp)
cmpq $0x0, 0x5570(%rsp)
je 0x133d945
movq 0x5570(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x133d947
jmp 0x133d949
movq 0x440(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133d9a4
movq %rax, %rdi
callq 0x678a0
movq 0x438(%rsp), %rax
movq %rax, 0x1c10(%rsp)
movl $0x0, 0x1bc4(%rsp)
movl 0x1bc4(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jge 0x133db09
movq 0x1c60(%rsp), %rax
movl 0x1bc4(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x35c8(%rsp)
movq 0x35c8(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1b80(%rsp)
movl $0x0, 0x1b7c(%rsp)
movl 0x1b7c(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jge 0x133daf1
movq 0x1cb0(%rsp), %rax
movq %rax, 0x35c0(%rsp)
movq 0x35c0(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1b00(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x1b00(%rsp), %rsi
leaq 0x1b80(%rsp), %rdx
callq 0x1453a60
vmovaps %zmm0, 0x1ac0(%rsp)
movq 0x1c10(%rsp), %rax
vmovaps 0x1ac0(%rsp), %zmm0
movq %rax, 0x3c38(%rsp)
vmovaps %zmm0, 0x3bc0(%rsp)
vmovaps 0x3bc0(%rsp), %zmm0
movq 0x3c38(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x1cb0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1cb0(%rsp)
movq 0x1c10(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1c10(%rsp)
movl 0x1b7c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b7c(%rsp)
jmp 0x133da18
jmp 0x133daf3
movl 0x1bc4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1bc4(%rsp)
jmp 0x133d9bf
jmp 0x133db0b
movl 0x1cbc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1cbc(%rsp)
jmp 0x133cc95
movl $0x0, 0x2bd4(%rsp)
jmp 0x1345520
movl 0x2b88(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jne 0x133eadc
cmpl $0x1, 0x2ba4(%rsp)
je 0x133eadc
cmpl $0x1, 0x2b84(%rsp)
jne 0x133eadc
movl 0x2b7c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jne 0x133eadc
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movl 0x2b9c(%rsp), %ecx
movq 0x2b90(%rsp), %r8
movl 0x2b8c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c30(%rsp)
movq 0x2c30(%rsp), %rcx
movq %rcx, 0x428(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x437(%rsp)
je 0x133dc18
movq 0x428(%rsp), %rax
movq %rax, 0x41b0(%rsp)
movq 0x41b0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x437(%rsp)
movb 0x437(%rsp), %al
testb $0x1, %al
jne 0x133dc25
jmp 0x133dc35
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1345520
movl $0x0, 0x1abc(%rsp)
movl 0x1abc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x133eacc
movq 0x2bc8(%rsp), %rcx
movl 0x1abc(%rsp), %eax
leaq 0x1a68(%rsp), %rdx
movq %rdx, 0x2d88(%rsp)
movq %rcx, 0x2d80(%rsp)
movl %eax, 0x2d7c(%rsp)
movq 0x2d80(%rsp), %rax
movq %rax, 0x420(%rsp)
movb $0x0, 0x2d7b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d7c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1a68(%rsp), %r10
movq %r10, 0x4940(%rsp)
movl %r9d, 0x493c(%rsp)
movl %r8d, 0x4938(%rsp)
movl %edi, 0x4934(%rsp)
movq %rsi, 0x4928(%rsp)
movq %rdx, 0x4920(%rsp)
movl %ecx, 0x491c(%rsp)
movq %rax, 0x4910(%rsp)
movq 0x4940(%rsp), %rcx
movq %rcx, 0x418(%rsp)
movq 0x4928(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4920(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x491c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4910(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x493c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4938(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4934(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c68(%rsp)
movl $0x10, 0x4c64(%rsp)
movq 0x4c68(%rsp), %rax
movslq 0x4c64(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c64(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x420(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1a90(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x133de10
movq 0x420(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1aa8(%rsp)
movb $0x1, 0x2d7b(%rsp)
testb $0x1, 0x2d7b(%rsp)
jne 0x133df51
leaq 0x1a68(%rsp), %rax
movq %rax, 0x3070(%rsp)
movq 0x3070(%rsp), %rax
movq %rax, 0x5308(%rsp)
movq 0x5308(%rsp), %rax
movq %rax, 0x410(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x133def4
movq 0x410(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5304(%rsp) # imm = 0xFFFFFFFF
movl 0x5304(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5300(%rsp)
cmpl $0x1, 0x5300(%rsp)
jne 0x133def4
movq 0x410(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x133dec2
movq 0x410(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133dec0
jmp 0x133def2
movq 0x410(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5460(%rsp)
cmpq $0x0, 0x5460(%rsp)
je 0x133def0
movq 0x5460(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x133def2
jmp 0x133def4
movq 0x410(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133df4f
movq %rax, %rdi
callq 0x678a0
jmp 0x133df51
leaq 0x1a68(%rsp), %rax
movq %rax, 0x2f70(%rsp)
movq 0x2f70(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x400(%rsp)
leaq 0x1a68(%rsp), %rax
movq %rax, 0x3188(%rsp)
movq 0x3188(%rsp), %rax
movq %rax, 0x50d8(%rsp)
movq 0x50d8(%rsp), %rax
movq %rax, 0x408(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x133e042
movq 0x408(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x50d4(%rsp) # imm = 0xFFFFFFFF
movl 0x50d4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x50d0(%rsp)
cmpl $0x1, 0x50d0(%rsp)
jne 0x133e042
movq 0x408(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x133e010
movq 0x408(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133e00e
jmp 0x133e040
movq 0x408(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5578(%rsp)
cmpq $0x0, 0x5578(%rsp)
je 0x133e03e
movq 0x5578(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x133e040
jmp 0x133e042
movq 0x408(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133e09d
movq %rax, %rdi
callq 0x678a0
movq 0x400(%rsp), %rax
movq %rax, 0x1ab0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x1abc(%rsp), %eax
leaq 0x1a18(%rsp), %rdx
movq %rdx, 0x2d70(%rsp)
movq %rcx, 0x2d68(%rsp)
movl %eax, 0x2d64(%rsp)
movq 0x2d68(%rsp), %rax
movq %rax, 0x3f8(%rsp)
movb $0x0, 0x2d63(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d64(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1a18(%rsp), %r10
movq %r10, 0x4978(%rsp)
movl %r9d, 0x4974(%rsp)
movl %r8d, 0x4970(%rsp)
movl %edi, 0x496c(%rsp)
movq %rsi, 0x4960(%rsp)
movq %rdx, 0x4958(%rsp)
movl %ecx, 0x4954(%rsp)
movq %rax, 0x4948(%rsp)
movq 0x4978(%rsp), %rcx
movq %rcx, 0x3f0(%rsp)
movq 0x4960(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4958(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4954(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4948(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4974(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4970(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x496c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c58(%rsp)
movl $0x10, 0x4c54(%rsp)
movq 0x4c58(%rsp), %rax
movslq 0x4c54(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c54(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3f8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1a40(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x133e269
movq 0x3f8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1a58(%rsp)
movb $0x1, 0x2d63(%rsp)
testb $0x1, 0x2d63(%rsp)
jne 0x133e3aa
leaq 0x1a18(%rsp), %rax
movq %rax, 0x3078(%rsp)
movq 0x3078(%rsp), %rax
movq %rax, 0x52f8(%rsp)
movq 0x52f8(%rsp), %rax
movq %rax, 0x3e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x133e34d
movq 0x3e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x52f4(%rsp) # imm = 0xFFFFFFFF
movl 0x52f4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x52f0(%rsp)
cmpl $0x1, 0x52f0(%rsp)
jne 0x133e34d
movq 0x3e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x133e31b
movq 0x3e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133e319
jmp 0x133e34b
movq 0x3e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5468(%rsp)
cmpq $0x0, 0x5468(%rsp)
je 0x133e349
movq 0x5468(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x133e34b
jmp 0x133e34d
movq 0x3e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133e3a8
movq %rax, %rdi
callq 0x678a0
jmp 0x133e3aa
leaq 0x1a18(%rsp), %rax
movq %rax, 0x2f68(%rsp)
movq 0x2f68(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d8(%rsp)
leaq 0x1a18(%rsp), %rax
movq %rax, 0x3190(%rsp)
movq 0x3190(%rsp), %rax
movq %rax, 0x50c8(%rsp)
movq 0x50c8(%rsp), %rax
movq %rax, 0x3e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x133e49b
movq 0x3e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x50c4(%rsp) # imm = 0xFFFFFFFF
movl 0x50c4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x50c0(%rsp)
cmpl $0x1, 0x50c0(%rsp)
jne 0x133e49b
movq 0x3e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x133e469
movq 0x3e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133e467
jmp 0x133e499
movq 0x3e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5580(%rsp)
cmpq $0x0, 0x5580(%rsp)
je 0x133e497
movq 0x5580(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x133e499
jmp 0x133e49b
movq 0x3e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133e4f6
movq %rax, %rdi
callq 0x678a0
movq 0x3d8(%rsp), %rax
movq %rax, 0x1a60(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x1abc(%rsp), %eax
leaq 0x19c8(%rsp), %rdx
movq %rdx, 0x3340(%rsp)
movq %rcx, 0x3338(%rsp)
movl %eax, 0x3334(%rsp)
movq 0x3338(%rsp), %rax
movq %rax, 0x3d0(%rsp)
movb $0x0, 0x3333(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3334(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x19c8(%rsp), %r10
movq %r10, 0x4438(%rsp)
movl %r9d, 0x4434(%rsp)
movl %r8d, 0x4430(%rsp)
movl %edi, 0x442c(%rsp)
movq %rsi, 0x4420(%rsp)
movq %rdx, 0x4418(%rsp)
movl %ecx, 0x4414(%rsp)
movq %rax, 0x4408(%rsp)
movq 0x4438(%rsp), %rcx
movq %rcx, 0x3c8(%rsp)
movq 0x4420(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4418(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4414(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4408(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4434(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4430(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x442c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4dd8(%rsp)
movl $0x10, 0x4dd4(%rsp)
movq 0x4dd8(%rsp), %rax
movslq 0x4dd4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4dd4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3d0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x19f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x133e6c2
movq 0x3d0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1a08(%rsp)
movb $0x1, 0x3333(%rsp)
testb $0x1, 0x3333(%rsp)
jne 0x133e803
leaq 0x19c8(%rsp), %rax
movq %rax, 0x3348(%rsp)
movq 0x3348(%rsp), %rax
movq %rax, 0x4f08(%rsp)
movq 0x4f08(%rsp), %rax
movq %rax, 0x3c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x133e7a6
movq 0x3c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f04(%rsp) # imm = 0xFFFFFFFF
movl 0x4f04(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f00(%rsp)
cmpl $0x1, 0x4f00(%rsp)
jne 0x133e7a6
movq 0x3c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x133e774
movq 0x3c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133e772
jmp 0x133e7a4
movq 0x3c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5660(%rsp)
cmpq $0x0, 0x5660(%rsp)
je 0x133e7a2
movq 0x5660(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x133e7a4
jmp 0x133e7a6
movq 0x3c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133e801
movq %rax, %rdi
callq 0x678a0
jmp 0x133e803
leaq 0x19c8(%rsp), %rax
movq %rax, 0x34c0(%rsp)
movq 0x34c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3b0(%rsp)
leaq 0x19c8(%rsp), %rax
movq %rax, 0x3198(%rsp)
movq 0x3198(%rsp), %rax
movq %rax, 0x50b8(%rsp)
movq 0x50b8(%rsp), %rax
movq %rax, 0x3b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x133e8f4
movq 0x3b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x50b4(%rsp) # imm = 0xFFFFFFFF
movl 0x50b4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x50b0(%rsp)
cmpl $0x1, 0x50b0(%rsp)
jne 0x133e8f4
movq 0x3b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x133e8c2
movq 0x3b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133e8c0
jmp 0x133e8f2
movq 0x3b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5588(%rsp)
cmpq $0x0, 0x5588(%rsp)
je 0x133e8f0
movq 0x5588(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x133e8f2
jmp 0x133e8f4
movq 0x3b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133e94f
movq %rax, %rdi
callq 0x678a0
movq 0x3b0(%rsp), %rax
movq %rax, 0x1a10(%rsp)
movl $0x0, 0x19c4(%rsp)
movl 0x19c4(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jge 0x133eab4
movl $0x0, 0x19c0(%rsp)
movl 0x19c0(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jge 0x133ea9c
movq 0x1ab0(%rsp), %rax
movq %rax, 0x35b8(%rsp)
movq 0x35b8(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1980(%rsp)
movq 0x1a60(%rsp), %rax
movl 0x19c0(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x35b0(%rsp)
movq 0x35b0(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1940(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x1980(%rsp), %rsi
leaq 0x1940(%rsp), %rdx
callq 0x1453a60
vmovaps %zmm0, 0x1900(%rsp)
movq 0x1a10(%rsp), %rax
vmovaps 0x1900(%rsp), %zmm0
movq %rax, 0x3bb8(%rsp)
vmovaps %zmm0, 0x3b40(%rsp)
vmovaps 0x3b40(%rsp), %zmm0
movq 0x3bb8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x1ab0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1ab0(%rsp)
movq 0x1a10(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1a10(%rsp)
movl 0x19c0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x19c0(%rsp)
jmp 0x133e989
jmp 0x133ea9e
movl 0x19c4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x19c4(%rsp)
jmp 0x133e96a
jmp 0x133eab6
movl 0x1abc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1abc(%rsp)
jmp 0x133dc40
movl $0x0, 0x2bd4(%rsp)
jmp 0x1345520
cmpl $0x1, 0x2b88(%rsp)
je 0x133fa87
cmpl $0x1, 0x2ba8(%rsp)
jne 0x133fa87
movl 0x2b84(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jne 0x133fa87
movl 0x2b7c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jne 0x133fa87
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b7c(%rsp), %ecx
movq 0x2b70(%rsp), %r8
movl 0x2b6c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c28(%rsp)
movq 0x2c28(%rsp), %rcx
movq %rcx, 0x3a0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x3af(%rsp)
je 0x133ebc3
movq 0x3a0(%rsp), %rax
movq %rax, 0x41b8(%rsp)
movq 0x41b8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x3af(%rsp)
movb 0x3af(%rsp), %al
testb $0x1, %al
jne 0x133ebd0
jmp 0x133ebe0
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1345520
movl $0x0, 0x18fc(%rsp)
movl 0x18fc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x133fa77
movq 0x2bc8(%rsp), %rcx
movl 0x18fc(%rsp), %eax
leaq 0x18a8(%rsp), %rdx
movq %rdx, 0x2d58(%rsp)
movq %rcx, 0x2d50(%rsp)
movl %eax, 0x2d4c(%rsp)
movq 0x2d50(%rsp), %rax
movq %rax, 0x398(%rsp)
movb $0x0, 0x2d4b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d4c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x18a8(%rsp), %r10
movq %r10, 0x49b0(%rsp)
movl %r9d, 0x49ac(%rsp)
movl %r8d, 0x49a8(%rsp)
movl %edi, 0x49a4(%rsp)
movq %rsi, 0x4998(%rsp)
movq %rdx, 0x4990(%rsp)
movl %ecx, 0x498c(%rsp)
movq %rax, 0x4980(%rsp)
movq 0x49b0(%rsp), %rcx
movq %rcx, 0x390(%rsp)
movq 0x4998(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4990(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x498c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4980(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x49ac(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x49a8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x49a4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c48(%rsp)
movl $0x10, 0x4c44(%rsp)
movq 0x4c48(%rsp), %rax
movslq 0x4c44(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c44(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x398(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x18d0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x133edbb
movq 0x398(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x18e8(%rsp)
movb $0x1, 0x2d4b(%rsp)
testb $0x1, 0x2d4b(%rsp)
jne 0x133eefc
leaq 0x18a8(%rsp), %rax
movq %rax, 0x3080(%rsp)
movq 0x3080(%rsp), %rax
movq %rax, 0x52e8(%rsp)
movq 0x52e8(%rsp), %rax
movq %rax, 0x388(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x133ee9f
movq 0x388(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x52e4(%rsp) # imm = 0xFFFFFFFF
movl 0x52e4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x52e0(%rsp)
cmpl $0x1, 0x52e0(%rsp)
jne 0x133ee9f
movq 0x388(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x133ee6d
movq 0x388(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133ee6b
jmp 0x133ee9d
movq 0x388(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5470(%rsp)
cmpq $0x0, 0x5470(%rsp)
je 0x133ee9b
movq 0x5470(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x133ee9d
jmp 0x133ee9f
movq 0x388(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133eefa
movq %rax, %rdi
callq 0x678a0
jmp 0x133eefc
leaq 0x18a8(%rsp), %rax
movq %rax, 0x2f60(%rsp)
movq 0x2f60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x378(%rsp)
leaq 0x18a8(%rsp), %rax
movq %rax, 0x31a0(%rsp)
movq 0x31a0(%rsp), %rax
movq %rax, 0x50a8(%rsp)
movq 0x50a8(%rsp), %rax
movq %rax, 0x380(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x133efed
movq 0x380(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x50a4(%rsp) # imm = 0xFFFFFFFF
movl 0x50a4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x50a0(%rsp)
cmpl $0x1, 0x50a0(%rsp)
jne 0x133efed
movq 0x380(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x133efbb
movq 0x380(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133efb9
jmp 0x133efeb
movq 0x380(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5590(%rsp)
cmpq $0x0, 0x5590(%rsp)
je 0x133efe9
movq 0x5590(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x133efeb
jmp 0x133efed
movq 0x380(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133f048
movq %rax, %rdi
callq 0x678a0
movq 0x378(%rsp), %rax
movq %rax, 0x18f0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x18fc(%rsp), %eax
leaq 0x1858(%rsp), %rdx
movq %rdx, 0x2d40(%rsp)
movq %rcx, 0x2d38(%rsp)
movl %eax, 0x2d34(%rsp)
movq 0x2d38(%rsp), %rax
movq %rax, 0x370(%rsp)
movb $0x0, 0x2d33(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d34(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1858(%rsp), %r10
movq %r10, 0x49e8(%rsp)
movl %r9d, 0x49e4(%rsp)
movl %r8d, 0x49e0(%rsp)
movl %edi, 0x49dc(%rsp)
movq %rsi, 0x49d0(%rsp)
movq %rdx, 0x49c8(%rsp)
movl %ecx, 0x49c4(%rsp)
movq %rax, 0x49b8(%rsp)
movq 0x49e8(%rsp), %rcx
movq %rcx, 0x368(%rsp)
movq 0x49d0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x49c8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x49c4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x49b8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x49e4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x49e0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x49dc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c38(%rsp)
movl $0x10, 0x4c34(%rsp)
movq 0x4c38(%rsp), %rax
movslq 0x4c34(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c34(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x370(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1880(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x133f214
movq 0x370(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1898(%rsp)
movb $0x1, 0x2d33(%rsp)
testb $0x1, 0x2d33(%rsp)
jne 0x133f355
leaq 0x1858(%rsp), %rax
movq %rax, 0x3088(%rsp)
movq 0x3088(%rsp), %rax
movq %rax, 0x52d8(%rsp)
movq 0x52d8(%rsp), %rax
movq %rax, 0x360(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x133f2f8
movq 0x360(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x52d4(%rsp) # imm = 0xFFFFFFFF
movl 0x52d4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x52d0(%rsp)
cmpl $0x1, 0x52d0(%rsp)
jne 0x133f2f8
movq 0x360(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x133f2c6
movq 0x360(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133f2c4
jmp 0x133f2f6
movq 0x360(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5478(%rsp)
cmpq $0x0, 0x5478(%rsp)
je 0x133f2f4
movq 0x5478(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x133f2f6
jmp 0x133f2f8
movq 0x360(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133f353
movq %rax, %rdi
callq 0x678a0
jmp 0x133f355
leaq 0x1858(%rsp), %rax
movq %rax, 0x2f58(%rsp)
movq 0x2f58(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x350(%rsp)
leaq 0x1858(%rsp), %rax
movq %rax, 0x31a8(%rsp)
movq 0x31a8(%rsp), %rax
movq %rax, 0x5098(%rsp)
movq 0x5098(%rsp), %rax
movq %rax, 0x358(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x133f446
movq 0x358(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5094(%rsp) # imm = 0xFFFFFFFF
movl 0x5094(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5090(%rsp)
cmpl $0x1, 0x5090(%rsp)
jne 0x133f446
movq 0x358(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x133f414
movq 0x358(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133f412
jmp 0x133f444
movq 0x358(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5598(%rsp)
cmpq $0x0, 0x5598(%rsp)
je 0x133f442
movq 0x5598(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x133f444
jmp 0x133f446
movq 0x358(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133f4a1
movq %rax, %rdi
callq 0x678a0
movq 0x350(%rsp), %rax
movq %rax, 0x18a0(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x18fc(%rsp), %eax
leaq 0x1808(%rsp), %rdx
movq %rdx, 0x3320(%rsp)
movq %rcx, 0x3318(%rsp)
movl %eax, 0x3314(%rsp)
movq 0x3318(%rsp), %rax
movq %rax, 0x348(%rsp)
movb $0x0, 0x3313(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3314(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1808(%rsp), %r10
movq %r10, 0x4470(%rsp)
movl %r9d, 0x446c(%rsp)
movl %r8d, 0x4468(%rsp)
movl %edi, 0x4464(%rsp)
movq %rsi, 0x4458(%rsp)
movq %rdx, 0x4450(%rsp)
movl %ecx, 0x444c(%rsp)
movq %rax, 0x4440(%rsp)
movq 0x4470(%rsp), %rcx
movq %rcx, 0x340(%rsp)
movq 0x4458(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4450(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x444c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4440(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x446c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4468(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4464(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4dc8(%rsp)
movl $0x10, 0x4dc4(%rsp)
movq 0x4dc8(%rsp), %rax
movslq 0x4dc4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4dc4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x348(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1830(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x133f66d
movq 0x348(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1848(%rsp)
movb $0x1, 0x3313(%rsp)
testb $0x1, 0x3313(%rsp)
jne 0x133f7ae
leaq 0x1808(%rsp), %rax
movq %rax, 0x3328(%rsp)
movq 0x3328(%rsp), %rax
movq %rax, 0x4f18(%rsp)
movq 0x4f18(%rsp), %rax
movq %rax, 0x338(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x133f751
movq 0x338(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f14(%rsp) # imm = 0xFFFFFFFF
movl 0x4f14(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f10(%rsp)
cmpl $0x1, 0x4f10(%rsp)
jne 0x133f751
movq 0x338(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x133f71f
movq 0x338(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133f71d
jmp 0x133f74f
movq 0x338(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5658(%rsp)
cmpq $0x0, 0x5658(%rsp)
je 0x133f74d
movq 0x5658(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x133f74f
jmp 0x133f751
movq 0x338(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133f7ac
movq %rax, %rdi
callq 0x678a0
jmp 0x133f7ae
leaq 0x1808(%rsp), %rax
movq %rax, 0x34b8(%rsp)
movq 0x34b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x328(%rsp)
leaq 0x1808(%rsp), %rax
movq %rax, 0x31b0(%rsp)
movq 0x31b0(%rsp), %rax
movq %rax, 0x5088(%rsp)
movq 0x5088(%rsp), %rax
movq %rax, 0x330(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x133f89f
movq 0x330(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5084(%rsp) # imm = 0xFFFFFFFF
movl 0x5084(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5080(%rsp)
cmpl $0x1, 0x5080(%rsp)
jne 0x133f89f
movq 0x330(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x133f86d
movq 0x330(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133f86b
jmp 0x133f89d
movq 0x330(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55a0(%rsp)
cmpq $0x0, 0x55a0(%rsp)
je 0x133f89b
movq 0x55a0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x133f89d
jmp 0x133f89f
movq 0x330(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133f8fa
movq %rax, %rdi
callq 0x678a0
movq 0x328(%rsp), %rax
movq %rax, 0x1850(%rsp)
movl $0x0, 0x1804(%rsp)
movl 0x1804(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jge 0x133fa5f
movq 0x18f0(%rsp), %rax
movl 0x1804(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x35a8(%rsp)
movq 0x35a8(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x17c0(%rsp)
movl $0x0, 0x17bc(%rsp)
movl 0x17bc(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jge 0x133fa47
movq 0x18a0(%rsp), %rax
movq %rax, 0x35a0(%rsp)
movq 0x35a0(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1740(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x17c0(%rsp), %rsi
leaq 0x1740(%rsp), %rdx
callq 0x1453a60
vmovaps %zmm0, 0x1700(%rsp)
movq 0x1850(%rsp), %rax
vmovaps 0x1700(%rsp), %zmm0
movq %rax, 0x3b38(%rsp)
vmovaps %zmm0, 0x3ac0(%rsp)
vmovaps 0x3ac0(%rsp), %zmm0
movq 0x3b38(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x18a0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x18a0(%rsp)
movq 0x1850(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1850(%rsp)
movl 0x17bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x17bc(%rsp)
jmp 0x133f96e
jmp 0x133fa49
movl 0x1804(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1804(%rsp)
jmp 0x133f915
jmp 0x133fa61
movl 0x18fc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x18fc(%rsp)
jmp 0x133ebeb
movl $0x0, 0x2bd4(%rsp)
jmp 0x1345520
movl 0x2b88(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jne 0x1340a32
cmpl $0x1, 0x2b84(%rsp)
je 0x1340a32
cmpl $0x1, 0x2ba4(%rsp)
jne 0x1340a32
movl 0x2b7c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jne 0x1340a32
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b7c(%rsp), %ecx
movq 0x2b70(%rsp), %r8
movl 0x2b6c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c20(%rsp)
movq 0x2c20(%rsp), %rcx
movq %rcx, 0x318(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x327(%rsp)
je 0x133fb6e
movq 0x318(%rsp), %rax
movq %rax, 0x41c0(%rsp)
movq 0x41c0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x327(%rsp)
movb 0x327(%rsp), %al
testb $0x1, %al
jne 0x133fb7b
jmp 0x133fb8b
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1345520
movl $0x0, 0x16fc(%rsp)
movl 0x16fc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x1340a22
movq 0x2bc8(%rsp), %rcx
movl 0x16fc(%rsp), %eax
leaq 0x16a8(%rsp), %rdx
movq %rdx, 0x2d28(%rsp)
movq %rcx, 0x2d20(%rsp)
movl %eax, 0x2d1c(%rsp)
movq 0x2d20(%rsp), %rax
movq %rax, 0x310(%rsp)
movb $0x0, 0x2d1b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d1c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x16a8(%rsp), %r10
movq %r10, 0x4a20(%rsp)
movl %r9d, 0x4a1c(%rsp)
movl %r8d, 0x4a18(%rsp)
movl %edi, 0x4a14(%rsp)
movq %rsi, 0x4a08(%rsp)
movq %rdx, 0x4a00(%rsp)
movl %ecx, 0x49fc(%rsp)
movq %rax, 0x49f0(%rsp)
movq 0x4a20(%rsp), %rcx
movq %rcx, 0x308(%rsp)
movq 0x4a08(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4a00(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x49fc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x49f0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4a1c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4a18(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4a14(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c28(%rsp)
movl $0x10, 0x4c24(%rsp)
movq 0x4c28(%rsp), %rax
movslq 0x4c24(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c24(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x310(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x16d0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x133fd66
movq 0x310(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x16e8(%rsp)
movb $0x1, 0x2d1b(%rsp)
testb $0x1, 0x2d1b(%rsp)
jne 0x133fea7
leaq 0x16a8(%rsp), %rax
movq %rax, 0x3090(%rsp)
movq 0x3090(%rsp), %rax
movq %rax, 0x52c8(%rsp)
movq 0x52c8(%rsp), %rax
movq %rax, 0x300(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x133fe4a
movq 0x300(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x52c4(%rsp) # imm = 0xFFFFFFFF
movl 0x52c4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x52c0(%rsp)
cmpl $0x1, 0x52c0(%rsp)
jne 0x133fe4a
movq 0x300(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x133fe18
movq 0x300(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133fe16
jmp 0x133fe48
movq 0x300(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5480(%rsp)
cmpq $0x0, 0x5480(%rsp)
je 0x133fe46
movq 0x5480(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x133fe48
jmp 0x133fe4a
movq 0x300(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133fea5
movq %rax, %rdi
callq 0x678a0
jmp 0x133fea7
leaq 0x16a8(%rsp), %rax
movq %rax, 0x2f50(%rsp)
movq 0x2f50(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2f0(%rsp)
leaq 0x16a8(%rsp), %rax
movq %rax, 0x31b8(%rsp)
movq 0x31b8(%rsp), %rax
movq %rax, 0x5078(%rsp)
movq 0x5078(%rsp), %rax
movq %rax, 0x2f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x133ff98
movq 0x2f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5074(%rsp) # imm = 0xFFFFFFFF
movl 0x5074(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5070(%rsp)
cmpl $0x1, 0x5070(%rsp)
jne 0x133ff98
movq 0x2f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x133ff66
movq 0x2f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x133ff64
jmp 0x133ff96
movq 0x2f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55a8(%rsp)
cmpq $0x0, 0x55a8(%rsp)
je 0x133ff94
movq 0x55a8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x133ff96
jmp 0x133ff98
movq 0x2f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x133fff3
movq %rax, %rdi
callq 0x678a0
movq 0x2f0(%rsp), %rax
movq %rax, 0x16f0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x16fc(%rsp), %eax
leaq 0x1658(%rsp), %rdx
movq %rdx, 0x2d10(%rsp)
movq %rcx, 0x2d08(%rsp)
movl %eax, 0x2d04(%rsp)
movq 0x2d08(%rsp), %rax
movq %rax, 0x2e8(%rsp)
movb $0x0, 0x2d03(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d04(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1658(%rsp), %r10
movq %r10, 0x4a58(%rsp)
movl %r9d, 0x4a54(%rsp)
movl %r8d, 0x4a50(%rsp)
movl %edi, 0x4a4c(%rsp)
movq %rsi, 0x4a40(%rsp)
movq %rdx, 0x4a38(%rsp)
movl %ecx, 0x4a34(%rsp)
movq %rax, 0x4a28(%rsp)
movq 0x4a58(%rsp), %rcx
movq %rcx, 0x2e0(%rsp)
movq 0x4a40(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4a38(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4a34(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4a28(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4a54(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4a50(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4a4c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c18(%rsp)
movl $0x10, 0x4c14(%rsp)
movq 0x4c18(%rsp), %rax
movslq 0x4c14(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c14(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2e8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1680(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13401bf
movq 0x2e8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1698(%rsp)
movb $0x1, 0x2d03(%rsp)
testb $0x1, 0x2d03(%rsp)
jne 0x1340300
leaq 0x1658(%rsp), %rax
movq %rax, 0x3098(%rsp)
movq 0x3098(%rsp), %rax
movq %rax, 0x52b8(%rsp)
movq 0x52b8(%rsp), %rax
movq %rax, 0x2d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13402a3
movq 0x2d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x52b4(%rsp) # imm = 0xFFFFFFFF
movl 0x52b4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x52b0(%rsp)
cmpl $0x1, 0x52b0(%rsp)
jne 0x13402a3
movq 0x2d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1340271
movq 0x2d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x134026f
jmp 0x13402a1
movq 0x2d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5488(%rsp)
cmpq $0x0, 0x5488(%rsp)
je 0x134029f
movq 0x5488(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13402a1
jmp 0x13402a3
movq 0x2d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13402fe
movq %rax, %rdi
callq 0x678a0
jmp 0x1340300
leaq 0x1658(%rsp), %rax
movq %rax, 0x2f48(%rsp)
movq 0x2f48(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2c8(%rsp)
leaq 0x1658(%rsp), %rax
movq %rax, 0x31c0(%rsp)
movq 0x31c0(%rsp), %rax
movq %rax, 0x5068(%rsp)
movq 0x5068(%rsp), %rax
movq %rax, 0x2d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13403f1
movq 0x2d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5064(%rsp) # imm = 0xFFFFFFFF
movl 0x5064(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5060(%rsp)
cmpl $0x1, 0x5060(%rsp)
jne 0x13403f1
movq 0x2d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13403bf
movq 0x2d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13403bd
jmp 0x13403ef
movq 0x2d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55b0(%rsp)
cmpq $0x0, 0x55b0(%rsp)
je 0x13403ed
movq 0x55b0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13403ef
jmp 0x13403f1
movq 0x2d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134044c
movq %rax, %rdi
callq 0x678a0
movq 0x2c8(%rsp), %rax
movq %rax, 0x16a0(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x16fc(%rsp), %eax
leaq 0x1608(%rsp), %rdx
movq %rdx, 0x3300(%rsp)
movq %rcx, 0x32f8(%rsp)
movl %eax, 0x32f4(%rsp)
movq 0x32f8(%rsp), %rax
movq %rax, 0x2c0(%rsp)
movb $0x0, 0x32f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x32f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1608(%rsp), %r10
movq %r10, 0x44a8(%rsp)
movl %r9d, 0x44a4(%rsp)
movl %r8d, 0x44a0(%rsp)
movl %edi, 0x449c(%rsp)
movq %rsi, 0x4490(%rsp)
movq %rdx, 0x4488(%rsp)
movl %ecx, 0x4484(%rsp)
movq %rax, 0x4478(%rsp)
movq 0x44a8(%rsp), %rcx
movq %rcx, 0x2b8(%rsp)
movq 0x4490(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4488(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4484(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4478(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x44a4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x44a0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x449c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4db8(%rsp)
movl $0x10, 0x4db4(%rsp)
movq 0x4db8(%rsp), %rax
movslq 0x4db4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4db4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2c0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1630(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1340618
movq 0x2c0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1648(%rsp)
movb $0x1, 0x32f3(%rsp)
testb $0x1, 0x32f3(%rsp)
jne 0x1340759
leaq 0x1608(%rsp), %rax
movq %rax, 0x3308(%rsp)
movq 0x3308(%rsp), %rax
movq %rax, 0x4f28(%rsp)
movq 0x4f28(%rsp), %rax
movq %rax, 0x2b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13406fc
movq 0x2b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f24(%rsp) # imm = 0xFFFFFFFF
movl 0x4f24(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f20(%rsp)
cmpl $0x1, 0x4f20(%rsp)
jne 0x13406fc
movq 0x2b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13406ca
movq 0x2b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13406c8
jmp 0x13406fa
movq 0x2b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5650(%rsp)
cmpq $0x0, 0x5650(%rsp)
je 0x13406f8
movq 0x5650(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13406fa
jmp 0x13406fc
movq 0x2b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1340757
movq %rax, %rdi
callq 0x678a0
jmp 0x1340759
leaq 0x1608(%rsp), %rax
movq %rax, 0x34b0(%rsp)
movq 0x34b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2a0(%rsp)
leaq 0x1608(%rsp), %rax
movq %rax, 0x31c8(%rsp)
movq 0x31c8(%rsp), %rax
movq %rax, 0x5058(%rsp)
movq 0x5058(%rsp), %rax
movq %rax, 0x2a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134084a
movq 0x2a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5054(%rsp) # imm = 0xFFFFFFFF
movl 0x5054(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5050(%rsp)
cmpl $0x1, 0x5050(%rsp)
jne 0x134084a
movq 0x2a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1340818
movq 0x2a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1340816
jmp 0x1340848
movq 0x2a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55b8(%rsp)
cmpq $0x0, 0x55b8(%rsp)
je 0x1340846
movq 0x55b8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1340848
jmp 0x134084a
movq 0x2a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13408a5
movq %rax, %rdi
callq 0x678a0
movq 0x2a0(%rsp), %rax
movq %rax, 0x1650(%rsp)
movl $0x0, 0x1604(%rsp)
movl 0x1604(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jge 0x1340a0a
movl $0x0, 0x1600(%rsp)
movl 0x1600(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jge 0x13409f2
movq 0x16f0(%rsp), %rax
movl 0x1600(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x3598(%rsp)
movq 0x3598(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x15c0(%rsp)
movq 0x16a0(%rsp), %rax
movq %rax, 0x3590(%rsp)
movq 0x3590(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1580(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x15c0(%rsp), %rsi
leaq 0x1580(%rsp), %rdx
callq 0x1453a60
vmovaps %zmm0, 0x1540(%rsp)
movq 0x1650(%rsp), %rax
vmovaps 0x1540(%rsp), %zmm0
movq %rax, 0x3ab8(%rsp)
vmovaps %zmm0, 0x3a40(%rsp)
vmovaps 0x3a40(%rsp), %zmm0
movq 0x3ab8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x16a0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x16a0(%rsp)
movq 0x1650(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1650(%rsp)
movl 0x1600(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1600(%rsp)
jmp 0x13408df
jmp 0x13409f4
movl 0x1604(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1604(%rsp)
jmp 0x13408c0
jmp 0x1340a0c
movl 0x16fc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x16fc(%rsp)
jmp 0x133fb96
movl $0x0, 0x2bd4(%rsp)
jmp 0x1345520
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x144a8b0
movl %eax, 0x2bd4(%rsp)
jmp 0x1345520
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movl 0x2b9c(%rsp), %ecx
movq 0x2b90(%rsp), %r8
movl 0x2b8c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c18(%rsp)
movq 0x2c18(%rsp), %rcx
movq %rcx, 0x290(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x29f(%rsp)
je 0x1340b06
movq 0x290(%rsp), %rax
movq %rax, 0x41c8(%rsp)
movq 0x41c8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x29f(%rsp)
movb 0x29f(%rsp), %al
testb $0x1, %al
jne 0x1340b13
jmp 0x1340b23
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1345520
movq 0x2bc0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x13415ca
movl $0x0, 0x153c(%rsp)
movl 0x153c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jge 0x13415ba
movq 0x2bc8(%rsp), %rcx
movl 0x153c(%rsp), %eax
leaq 0x14e8(%rsp), %rdx
movq %rdx, 0x2cf8(%rsp)
movq %rcx, 0x2cf0(%rsp)
movl %eax, 0x2cec(%rsp)
movq 0x2cf0(%rsp), %rax
movq %rax, 0x288(%rsp)
movb $0x0, 0x2ceb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2cec(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x14e8(%rsp), %r10
movq %r10, 0x4a90(%rsp)
movl %r9d, 0x4a8c(%rsp)
movl %r8d, 0x4a88(%rsp)
movl %edi, 0x4a84(%rsp)
movq %rsi, 0x4a78(%rsp)
movq %rdx, 0x4a70(%rsp)
movl %ecx, 0x4a6c(%rsp)
movq %rax, 0x4a60(%rsp)
movq 0x4a90(%rsp), %rcx
movq %rcx, 0x280(%rsp)
movq 0x4a78(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4a70(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4a6c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4a60(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4a8c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4a88(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4a84(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c08(%rsp)
movl $0x10, 0x4c04(%rsp)
movq 0x4c08(%rsp), %rax
movslq 0x4c04(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c04(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x288(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1510(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1340d10
movq 0x288(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1528(%rsp)
movb $0x1, 0x2ceb(%rsp)
testb $0x1, 0x2ceb(%rsp)
jne 0x1340e51
leaq 0x14e8(%rsp), %rax
movq %rax, 0x30a0(%rsp)
movq 0x30a0(%rsp), %rax
movq %rax, 0x52a8(%rsp)
movq 0x52a8(%rsp), %rax
movq %rax, 0x278(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1340df4
movq 0x278(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x52a4(%rsp) # imm = 0xFFFFFFFF
movl 0x52a4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x52a0(%rsp)
cmpl $0x1, 0x52a0(%rsp)
jne 0x1340df4
movq 0x278(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1340dc2
movq 0x278(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1340dc0
jmp 0x1340df2
movq 0x278(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5490(%rsp)
cmpq $0x0, 0x5490(%rsp)
je 0x1340df0
movq 0x5490(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1340df2
jmp 0x1340df4
movq 0x278(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1340e4f
movq %rax, %rdi
callq 0x678a0
jmp 0x1340e51
leaq 0x14e8(%rsp), %rax
movq %rax, 0x2f40(%rsp)
movq 0x2f40(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x268(%rsp)
leaq 0x14e8(%rsp), %rax
movq %rax, 0x31d0(%rsp)
movq 0x31d0(%rsp), %rax
movq %rax, 0x5048(%rsp)
movq 0x5048(%rsp), %rax
movq %rax, 0x270(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1340f42
movq 0x270(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5044(%rsp) # imm = 0xFFFFFFFF
movl 0x5044(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5040(%rsp)
cmpl $0x1, 0x5040(%rsp)
jne 0x1340f42
movq 0x270(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1340f10
movq 0x270(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1340f0e
jmp 0x1340f40
movq 0x270(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55c0(%rsp)
cmpq $0x0, 0x55c0(%rsp)
je 0x1340f3e
movq 0x55c0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1340f40
jmp 0x1340f42
movq 0x270(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1340f9d
movq %rax, %rdi
callq 0x678a0
movq 0x268(%rsp), %rax
movq %rax, 0x1530(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x153c(%rsp), %eax
movq %rcx, 0x4068(%rsp)
movl %eax, 0x4064(%rsp)
movq 0x4068(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x4064(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x14e0(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x153c(%rsp), %eax
leaq 0x1490(%rsp), %rdx
movq %rdx, 0x32e0(%rsp)
movq %rcx, 0x32d8(%rsp)
movl %eax, 0x32d4(%rsp)
movq 0x32d8(%rsp), %rax
movq %rax, 0x260(%rsp)
movb $0x0, 0x32d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x32d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1490(%rsp), %r10
movq %r10, 0x44e0(%rsp)
movl %r9d, 0x44dc(%rsp)
movl %r8d, 0x44d8(%rsp)
movl %edi, 0x44d4(%rsp)
movq %rsi, 0x44c8(%rsp)
movq %rdx, 0x44c0(%rsp)
movl %ecx, 0x44bc(%rsp)
movq %rax, 0x44b0(%rsp)
movq 0x44e0(%rsp), %rcx
movq %rcx, 0x258(%rsp)
movq 0x44c8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x44c0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x44bc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x44b0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x44dc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x44d8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x44d4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4da8(%rsp)
movl $0x10, 0x4da4(%rsp)
movq 0x4da8(%rsp), %rax
movslq 0x4da4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4da4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x260(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x14b8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13411b2
movq 0x260(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x14d0(%rsp)
movb $0x1, 0x32d3(%rsp)
testb $0x1, 0x32d3(%rsp)
jne 0x13412f3
leaq 0x1490(%rsp), %rax
movq %rax, 0x32e8(%rsp)
movq 0x32e8(%rsp), %rax
movq %rax, 0x4f38(%rsp)
movq 0x4f38(%rsp), %rax
movq %rax, 0x250(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1341296
movq 0x250(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f34(%rsp) # imm = 0xFFFFFFFF
movl 0x4f34(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f30(%rsp)
cmpl $0x1, 0x4f30(%rsp)
jne 0x1341296
movq 0x250(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1341264
movq 0x250(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1341262
jmp 0x1341294
movq 0x250(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5648(%rsp)
cmpq $0x0, 0x5648(%rsp)
je 0x1341292
movq 0x5648(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1341294
jmp 0x1341296
movq 0x250(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13412f1
movq %rax, %rdi
callq 0x678a0
jmp 0x13412f3
leaq 0x1490(%rsp), %rax
movq %rax, 0x34a8(%rsp)
movq 0x34a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x240(%rsp)
leaq 0x1490(%rsp), %rax
movq %rax, 0x31d8(%rsp)
movq 0x31d8(%rsp), %rax
movq %rax, 0x5038(%rsp)
movq 0x5038(%rsp), %rax
movq %rax, 0x248(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13413e4
movq 0x248(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5034(%rsp) # imm = 0xFFFFFFFF
movl 0x5034(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5030(%rsp)
cmpl $0x1, 0x5030(%rsp)
jne 0x13413e4
movq 0x248(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13413b2
movq 0x248(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13413b0
jmp 0x13413e2
movq 0x248(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55c8(%rsp)
cmpq $0x0, 0x55c8(%rsp)
je 0x13413e0
movq 0x55c8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13413e2
jmp 0x13413e4
movq 0x248(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134143f
movq %rax, %rdi
callq 0x678a0
movq 0x240(%rsp), %rax
movq %rax, 0x14d8(%rsp)
movl $0x0, 0x148c(%rsp)
movl 0x148c(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jge 0x13415a2
movq 0x14e0(%rsp), %rax
movq %rax, 0x3588(%rsp)
movq 0x3588(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1440(%rsp)
movl $0x0, 0x143c(%rsp)
movl 0x143c(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jge 0x1341578
movq 0x1530(%rsp), %rax
movq %rax, 0x3580(%rsp)
movq 0x3580(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x13c0(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x13c0(%rsp), %rsi
leaq 0x1440(%rsp), %rdx
callq 0x1453a60
vmovaps %zmm0, 0x1380(%rsp)
movq 0x14d8(%rsp), %rax
vmovaps 0x1380(%rsp), %zmm0
movq %rax, 0x3a38(%rsp)
vmovaps %zmm0, 0x39c0(%rsp)
vmovaps 0x39c0(%rsp), %zmm0
movq 0x3a38(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x1530(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1530(%rsp)
movq 0x14d8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x14d8(%rsp)
movl 0x143c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x143c(%rsp)
jmp 0x134149f
movq 0x14e0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x14e0(%rsp)
movl 0x148c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x148c(%rsp)
jmp 0x134145a
jmp 0x13415a4
movl 0x153c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x153c(%rsp)
jmp 0x1340b40
movl $0x0, 0x2bd4(%rsp)
jmp 0x1345520
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x134204f
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1341625
cmpl $0x1, 0x2b6c(%rsp)
jne 0x1341625
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x144bac0
movl %eax, 0x2bd4(%rsp)
jmp 0x1345520
movl $0x0, 0x137c(%rsp)
movl 0x137c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jge 0x134203f
movq 0x2bc8(%rsp), %rcx
movl 0x137c(%rsp), %eax
leaq 0x1328(%rsp), %rdx
movq %rdx, 0x2ce0(%rsp)
movq %rcx, 0x2cd8(%rsp)
movl %eax, 0x2cd4(%rsp)
movq 0x2cd8(%rsp), %rax
movq %rax, 0x238(%rsp)
movb $0x0, 0x2cd3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2cd4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1328(%rsp), %r10
movq %r10, 0x4ac8(%rsp)
movl %r9d, 0x4ac4(%rsp)
movl %r8d, 0x4ac0(%rsp)
movl %edi, 0x4abc(%rsp)
movq %rsi, 0x4ab0(%rsp)
movq %rdx, 0x4aa8(%rsp)
movl %ecx, 0x4aa4(%rsp)
movq %rax, 0x4a98(%rsp)
movq 0x4ac8(%rsp), %rcx
movq %rcx, 0x230(%rsp)
movq 0x4ab0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4aa8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4aa4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4a98(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4ac4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4ac0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4abc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4bf8(%rsp)
movl $0x10, 0x4bf4(%rsp)
movq 0x4bf8(%rsp), %rax
movslq 0x4bf4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4bf4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x238(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1350(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1341800
movq 0x238(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1368(%rsp)
movb $0x1, 0x2cd3(%rsp)
testb $0x1, 0x2cd3(%rsp)
jne 0x1341941
leaq 0x1328(%rsp), %rax
movq %rax, 0x30a8(%rsp)
movq 0x30a8(%rsp), %rax
movq %rax, 0x5298(%rsp)
movq 0x5298(%rsp), %rax
movq %rax, 0x228(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13418e4
movq 0x228(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5294(%rsp) # imm = 0xFFFFFFFF
movl 0x5294(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5290(%rsp)
cmpl $0x1, 0x5290(%rsp)
jne 0x13418e4
movq 0x228(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13418b2
movq 0x228(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13418b0
jmp 0x13418e2
movq 0x228(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5498(%rsp)
cmpq $0x0, 0x5498(%rsp)
je 0x13418e0
movq 0x5498(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13418e2
jmp 0x13418e4
movq 0x228(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134193f
movq %rax, %rdi
callq 0x678a0
jmp 0x1341941
leaq 0x1328(%rsp), %rax
movq %rax, 0x2f38(%rsp)
movq 0x2f38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x218(%rsp)
leaq 0x1328(%rsp), %rax
movq %rax, 0x31e0(%rsp)
movq 0x31e0(%rsp), %rax
movq %rax, 0x5028(%rsp)
movq 0x5028(%rsp), %rax
movq %rax, 0x220(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1341a32
movq 0x220(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5024(%rsp) # imm = 0xFFFFFFFF
movl 0x5024(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5020(%rsp)
cmpl $0x1, 0x5020(%rsp)
jne 0x1341a32
movq 0x220(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1341a00
movq 0x220(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13419fe
jmp 0x1341a30
movq 0x220(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55d0(%rsp)
cmpq $0x0, 0x55d0(%rsp)
je 0x1341a2e
movq 0x55d0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1341a30
jmp 0x1341a32
movq 0x220(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1341a8d
movq %rax, %rdi
callq 0x678a0
movq 0x218(%rsp), %rax
movq %rax, 0x1370(%rsp)
movq 0x2bc0(%rsp), %rax
movq %rax, 0x2f30(%rsp)
movq 0x2f30(%rsp), %rax
movq (%rax), %rax
movl 0x137c(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x3578(%rsp)
movq 0x3578(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x12c0(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x137c(%rsp), %eax
leaq 0x1270(%rsp), %rdx
movq %rdx, 0x32c0(%rsp)
movq %rcx, 0x32b8(%rsp)
movl %eax, 0x32b4(%rsp)
movq 0x32b8(%rsp), %rax
movq %rax, 0x210(%rsp)
movb $0x0, 0x32b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x32b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1270(%rsp), %r10
movq %r10, 0x4518(%rsp)
movl %r9d, 0x4514(%rsp)
movl %r8d, 0x4510(%rsp)
movl %edi, 0x450c(%rsp)
movq %rsi, 0x4500(%rsp)
movq %rdx, 0x44f8(%rsp)
movl %ecx, 0x44f4(%rsp)
movq %rax, 0x44e8(%rsp)
movq 0x4518(%rsp), %rcx
movq %rcx, 0x208(%rsp)
movq 0x4500(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x44f8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x44f4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x44e8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4514(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4510(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x450c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d98(%rsp)
movl $0x10, 0x4d94(%rsp)
movq 0x4d98(%rsp), %rax
movslq 0x4d94(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d94(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x210(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1298(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1341ca6
movq 0x210(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x12b0(%rsp)
movb $0x1, 0x32b3(%rsp)
testb $0x1, 0x32b3(%rsp)
jne 0x1341de7
leaq 0x1270(%rsp), %rax
movq %rax, 0x32c8(%rsp)
movq 0x32c8(%rsp), %rax
movq %rax, 0x4f48(%rsp)
movq 0x4f48(%rsp), %rax
movq %rax, 0x200(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1341d8a
movq 0x200(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f44(%rsp) # imm = 0xFFFFFFFF
movl 0x4f44(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f40(%rsp)
cmpl $0x1, 0x4f40(%rsp)
jne 0x1341d8a
movq 0x200(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1341d58
movq 0x200(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1341d56
jmp 0x1341d88
movq 0x200(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5640(%rsp)
cmpq $0x0, 0x5640(%rsp)
je 0x1341d86
movq 0x5640(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1341d88
jmp 0x1341d8a
movq 0x200(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1341de5
movq %rax, %rdi
callq 0x678a0
jmp 0x1341de7
leaq 0x1270(%rsp), %rax
movq %rax, 0x34a0(%rsp)
movq 0x34a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1f0(%rsp)
leaq 0x1270(%rsp), %rax
movq %rax, 0x31e8(%rsp)
movq 0x31e8(%rsp), %rax
movq %rax, 0x5018(%rsp)
movq 0x5018(%rsp), %rax
movq %rax, 0x1f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1341ed8
movq 0x1f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5014(%rsp) # imm = 0xFFFFFFFF
movl 0x5014(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5010(%rsp)
cmpl $0x1, 0x5010(%rsp)
jne 0x1341ed8
movq 0x1f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1341ea6
movq 0x1f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1341ea4
jmp 0x1341ed6
movq 0x1f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55d8(%rsp)
cmpq $0x0, 0x55d8(%rsp)
je 0x1341ed4
movq 0x55d8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1341ed6
jmp 0x1341ed8
movq 0x1f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1341f33
movq %rax, %rdi
callq 0x678a0
movq 0x1f0(%rsp), %rax
movq %rax, 0x12b8(%rsp)
movl $0x0, 0x126c(%rsp)
movl 0x126c(%rsp), %eax
cmpl 0x2b98(%rsp), %eax
jge 0x1342027
movq 0x1370(%rsp), %rax
movq %rax, 0x3570(%rsp)
movq 0x3570(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1200(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x1200(%rsp), %rsi
leaq 0x12c0(%rsp), %rdx
callq 0x1453a60
vmovaps %zmm0, 0x11c0(%rsp)
movq 0x12b8(%rsp), %rax
vmovaps 0x11c0(%rsp), %zmm0
movq %rax, 0x39b8(%rsp)
vmovaps %zmm0, 0x3940(%rsp)
vmovaps 0x3940(%rsp), %zmm0
movq 0x39b8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x1370(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1370(%rsp)
movq 0x12b8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x12b8(%rsp)
movl 0x126c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x126c(%rsp)
jmp 0x1341f4e
jmp 0x1342029
movl 0x137c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x137c(%rsp)
jmp 0x1341630
movl $0x0, 0x2bd4(%rsp)
jmp 0x1345520
jmp 0x1345513
movq 0x2bc8(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1343b4d
movq 0x2bc0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1342c11
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b80(%rsp), %ecx
movl 0x2b7c(%rsp), %r8d
movq 0x2b70(%rsp), %r9
movl 0x2b6c(%rsp), %r10d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c10(%rsp)
movq 0x2c10(%rsp), %rcx
movq %rcx, 0x1e0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1ef(%rsp)
je 0x1342128
movq 0x1e0(%rsp), %rax
movq %rax, 0x41d0(%rsp)
movq 0x41d0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1ef(%rsp)
movb 0x1ef(%rsp), %al
testb $0x1, %al
jne 0x1342135
jmp 0x1342145
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1345520
movl $0x0, 0x11bc(%rsp)
movl 0x11bc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x1342c01
movq 0x2bc8(%rsp), %rcx
movl 0x11bc(%rsp), %eax
movq %rcx, 0x4058(%rsp)
movl %eax, 0x4054(%rsp)
movq 0x4058(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x4054(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x11b0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x11bc(%rsp), %eax
leaq 0x1160(%rsp), %rdx
movq %rdx, 0x2cc8(%rsp)
movq %rcx, 0x2cc0(%rsp)
movl %eax, 0x2cbc(%rsp)
movq 0x2cc0(%rsp), %rax
movq %rax, 0x1d8(%rsp)
movb $0x0, 0x2cbb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2cbc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1160(%rsp), %r10
movq %r10, 0x4b00(%rsp)
movl %r9d, 0x4afc(%rsp)
movl %r8d, 0x4af8(%rsp)
movl %edi, 0x4af4(%rsp)
movq %rsi, 0x4ae8(%rsp)
movq %rdx, 0x4ae0(%rsp)
movl %ecx, 0x4adc(%rsp)
movq %rax, 0x4ad0(%rsp)
movq 0x4b00(%rsp), %rcx
movq %rcx, 0x1d0(%rsp)
movq 0x4ae8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4ae0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4adc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4ad0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4afc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4af8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4af4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4be8(%rsp)
movl $0x10, 0x4be4(%rsp)
movq 0x4be8(%rsp), %rax
movslq 0x4be4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4be4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x1d8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1188(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1342369
movq 0x1d8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x11a0(%rsp)
movb $0x1, 0x2cbb(%rsp)
testb $0x1, 0x2cbb(%rsp)
jne 0x13424aa
leaq 0x1160(%rsp), %rax
movq %rax, 0x30b0(%rsp)
movq 0x30b0(%rsp), %rax
movq %rax, 0x5288(%rsp)
movq 0x5288(%rsp), %rax
movq %rax, 0x1c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134244d
movq 0x1c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5284(%rsp) # imm = 0xFFFFFFFF
movl 0x5284(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5280(%rsp)
cmpl $0x1, 0x5280(%rsp)
jne 0x134244d
movq 0x1c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x134241b
movq 0x1c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1342419
jmp 0x134244b
movq 0x1c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54a0(%rsp)
cmpq $0x0, 0x54a0(%rsp)
je 0x1342449
movq 0x54a0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x134244b
jmp 0x134244d
movq 0x1c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13424a8
movq %rax, %rdi
callq 0x678a0
jmp 0x13424aa
leaq 0x1160(%rsp), %rax
movq %rax, 0x2f28(%rsp)
movq 0x2f28(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1b8(%rsp)
leaq 0x1160(%rsp), %rax
movq %rax, 0x31f0(%rsp)
movq 0x31f0(%rsp), %rax
movq %rax, 0x5008(%rsp)
movq 0x5008(%rsp), %rax
movq %rax, 0x1c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134259b
movq 0x1c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5004(%rsp) # imm = 0xFFFFFFFF
movl 0x5004(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5000(%rsp)
cmpl $0x1, 0x5000(%rsp)
jne 0x134259b
movq 0x1c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1342569
movq 0x1c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1342567
jmp 0x1342599
movq 0x1c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55e0(%rsp)
cmpq $0x0, 0x55e0(%rsp)
je 0x1342597
movq 0x55e0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1342599
jmp 0x134259b
movq 0x1c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13425f6
movq %rax, %rdi
callq 0x678a0
movq 0x1b8(%rsp), %rax
movq %rax, 0x11a8(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x11bc(%rsp), %eax
leaq 0x1110(%rsp), %rdx
movq %rdx, 0x32a0(%rsp)
movq %rcx, 0x3298(%rsp)
movl %eax, 0x3294(%rsp)
movq 0x3298(%rsp), %rax
movq %rax, 0x1b0(%rsp)
movb $0x0, 0x3293(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3294(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1110(%rsp), %r10
movq %r10, 0x4550(%rsp)
movl %r9d, 0x454c(%rsp)
movl %r8d, 0x4548(%rsp)
movl %edi, 0x4544(%rsp)
movq %rsi, 0x4538(%rsp)
movq %rdx, 0x4530(%rsp)
movl %ecx, 0x452c(%rsp)
movq %rax, 0x4520(%rsp)
movq 0x4550(%rsp), %rcx
movq %rcx, 0x1a8(%rsp)
movq 0x4538(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4530(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x452c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4520(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x454c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4548(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4544(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d88(%rsp)
movl $0x10, 0x4d84(%rsp)
movq 0x4d88(%rsp), %rax
movslq 0x4d84(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d84(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x1b0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1138(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13427c2
movq 0x1b0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1150(%rsp)
movb $0x1, 0x3293(%rsp)
testb $0x1, 0x3293(%rsp)
jne 0x1342903
leaq 0x1110(%rsp), %rax
movq %rax, 0x32a8(%rsp)
movq 0x32a8(%rsp), %rax
movq %rax, 0x4f58(%rsp)
movq 0x4f58(%rsp), %rax
movq %rax, 0x1a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13428a6
movq 0x1a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f54(%rsp) # imm = 0xFFFFFFFF
movl 0x4f54(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f50(%rsp)
cmpl $0x1, 0x4f50(%rsp)
jne 0x13428a6
movq 0x1a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1342874
movq 0x1a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1342872
jmp 0x13428a4
movq 0x1a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5638(%rsp)
cmpq $0x0, 0x5638(%rsp)
je 0x13428a2
movq 0x5638(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13428a4
jmp 0x13428a6
movq 0x1a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1342901
movq %rax, %rdi
callq 0x678a0
jmp 0x1342903
leaq 0x1110(%rsp), %rax
movq %rax, 0x3498(%rsp)
movq 0x3498(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x190(%rsp)
leaq 0x1110(%rsp), %rax
movq %rax, 0x31f8(%rsp)
movq 0x31f8(%rsp), %rax
movq %rax, 0x4ff8(%rsp)
movq 0x4ff8(%rsp), %rax
movq %rax, 0x198(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13429f4
movq 0x198(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4ff4(%rsp) # imm = 0xFFFFFFFF
movl 0x4ff4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4ff0(%rsp)
cmpl $0x1, 0x4ff0(%rsp)
jne 0x13429f4
movq 0x198(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13429c2
movq 0x198(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13429c0
jmp 0x13429f2
movq 0x198(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55e8(%rsp)
cmpq $0x0, 0x55e8(%rsp)
je 0x13429f0
movq 0x55e8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13429f2
jmp 0x13429f4
movq 0x198(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1342a4f
movq %rax, %rdi
callq 0x678a0
movq 0x190(%rsp), %rax
movq %rax, 0x1158(%rsp)
movl $0x0, 0x110c(%rsp)
movl 0x110c(%rsp), %eax
cmpl 0x2b80(%rsp), %eax
jge 0x1342be9
movq 0x11b0(%rsp), %rax
movq %rax, 0x3568(%rsp)
movq 0x3568(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x10c0(%rsp)
movl $0x0, 0x10bc(%rsp)
movl 0x10bc(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jge 0x1342bbf
movl $0x0, 0x10b8(%rsp)
movl 0x10b8(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jge 0x1342ba7
movq 0x11a8(%rsp), %rax
movq %rax, 0x3560(%rsp)
movq 0x3560(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1040(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x10c0(%rsp), %rsi
leaq 0x1040(%rsp), %rdx
callq 0x1453a60
vmovaps %zmm0, 0x1000(%rsp)
movq 0x1158(%rsp), %rax
vmovaps 0x1000(%rsp), %zmm0
movq %rax, 0x3938(%rsp)
vmovaps %zmm0, 0x38c0(%rsp)
vmovaps 0x38c0(%rsp), %zmm0
movq 0x3938(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x11a8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x11a8(%rsp)
movq 0x1158(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1158(%rsp)
movl 0x10b8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x10b8(%rsp)
jmp 0x1342ace
jmp 0x1342ba9
movl 0x10bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x10bc(%rsp)
jmp 0x1342aaf
movq 0x11b0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x11b0(%rsp)
movl 0x110c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x110c(%rsp)
jmp 0x1342a6a
jmp 0x1342beb
movl 0x11bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x11bc(%rsp)
jmp 0x1342150
movl $0x0, 0x2bd4(%rsp)
jmp 0x1345520
movq 0x2bc0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1343778
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b7c(%rsp), %ecx
movq 0x2b70(%rsp), %r8
movl 0x2b6c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c08(%rsp)
movq 0x2c08(%rsp), %rcx
movq %rcx, 0x180(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x18f(%rsp)
je 0x1342cc6
movq 0x180(%rsp), %rax
movq %rax, 0x41d8(%rsp)
movq 0x41d8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x18f(%rsp)
movb 0x18f(%rsp), %al
testb $0x1, %al
jne 0x1342cd3
jmp 0x1342ce3
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1345520
movl $0x0, 0xffc(%rsp)
movl 0xffc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x1343768
movq 0x2bc8(%rsp), %rcx
movl 0xffc(%rsp), %eax
movq %rcx, 0x4048(%rsp)
movl %eax, 0x4044(%rsp)
movq 0x4048(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x4044(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xff0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0xffc(%rsp), %eax
leaq 0xfa0(%rsp), %rdx
movq %rdx, 0x2cb0(%rsp)
movq %rcx, 0x2ca8(%rsp)
movl %eax, 0x2ca4(%rsp)
movq 0x2ca8(%rsp), %rax
movq %rax, 0x178(%rsp)
movb $0x0, 0x2ca3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2ca4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xfa0(%rsp), %r10
movq %r10, 0x4b38(%rsp)
movl %r9d, 0x4b34(%rsp)
movl %r8d, 0x4b30(%rsp)
movl %edi, 0x4b2c(%rsp)
movq %rsi, 0x4b20(%rsp)
movq %rdx, 0x4b18(%rsp)
movl %ecx, 0x4b14(%rsp)
movq %rax, 0x4b08(%rsp)
movq 0x4b38(%rsp), %rcx
movq %rcx, 0x170(%rsp)
movq 0x4b20(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4b18(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4b14(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4b08(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4b34(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4b30(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4b2c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4bd8(%rsp)
movl $0x10, 0x4bd4(%rsp)
movq 0x4bd8(%rsp), %rax
movslq 0x4bd4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4bd4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x178(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xfc8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1342f07
movq 0x178(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xfe0(%rsp)
movb $0x1, 0x2ca3(%rsp)
testb $0x1, 0x2ca3(%rsp)
jne 0x1343048
leaq 0xfa0(%rsp), %rax
movq %rax, 0x30b8(%rsp)
movq 0x30b8(%rsp), %rax
movq %rax, 0x5278(%rsp)
movq 0x5278(%rsp), %rax
movq %rax, 0x168(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1342feb
movq 0x168(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5274(%rsp) # imm = 0xFFFFFFFF
movl 0x5274(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5270(%rsp)
cmpl $0x1, 0x5270(%rsp)
jne 0x1342feb
movq 0x168(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1342fb9
movq 0x168(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1342fb7
jmp 0x1342fe9
movq 0x168(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54a8(%rsp)
cmpq $0x0, 0x54a8(%rsp)
je 0x1342fe7
movq 0x54a8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1342fe9
jmp 0x1342feb
movq 0x168(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1343046
movq %rax, %rdi
callq 0x678a0
jmp 0x1343048
leaq 0xfa0(%rsp), %rax
movq %rax, 0x2f20(%rsp)
movq 0x2f20(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x158(%rsp)
leaq 0xfa0(%rsp), %rax
movq %rax, 0x3200(%rsp)
movq 0x3200(%rsp), %rax
movq %rax, 0x4fe8(%rsp)
movq 0x4fe8(%rsp), %rax
movq %rax, 0x160(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1343139
movq 0x160(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4fe4(%rsp) # imm = 0xFFFFFFFF
movl 0x4fe4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4fe0(%rsp)
cmpl $0x1, 0x4fe0(%rsp)
jne 0x1343139
movq 0x160(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1343107
movq 0x160(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1343105
jmp 0x1343137
movq 0x160(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55f0(%rsp)
cmpq $0x0, 0x55f0(%rsp)
je 0x1343135
movq 0x55f0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1343137
jmp 0x1343139
movq 0x160(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1343194
movq %rax, %rdi
callq 0x678a0
movq 0x158(%rsp), %rax
movq %rax, 0xfe8(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0xffc(%rsp), %eax
leaq 0xf50(%rsp), %rdx
movq %rdx, 0x3280(%rsp)
movq %rcx, 0x3278(%rsp)
movl %eax, 0x3274(%rsp)
movq 0x3278(%rsp), %rax
movq %rax, 0x150(%rsp)
movb $0x0, 0x3273(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3274(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xf50(%rsp), %r10
movq %r10, 0x4588(%rsp)
movl %r9d, 0x4584(%rsp)
movl %r8d, 0x4580(%rsp)
movl %edi, 0x457c(%rsp)
movq %rsi, 0x4570(%rsp)
movq %rdx, 0x4568(%rsp)
movl %ecx, 0x4564(%rsp)
movq %rax, 0x4558(%rsp)
movq 0x4588(%rsp), %rcx
movq %rcx, 0x148(%rsp)
movq 0x4570(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4568(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4564(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4558(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4584(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4580(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x457c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d78(%rsp)
movl $0x10, 0x4d74(%rsp)
movq 0x4d78(%rsp), %rax
movslq 0x4d74(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d74(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x150(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf78(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1343360
movq 0x150(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xf90(%rsp)
movb $0x1, 0x3273(%rsp)
testb $0x1, 0x3273(%rsp)
jne 0x13434a1
leaq 0xf50(%rsp), %rax
movq %rax, 0x3288(%rsp)
movq 0x3288(%rsp), %rax
movq %rax, 0x4f68(%rsp)
movq 0x4f68(%rsp), %rax
movq %rax, 0x140(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1343444
movq 0x140(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f64(%rsp) # imm = 0xFFFFFFFF
movl 0x4f64(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f60(%rsp)
cmpl $0x1, 0x4f60(%rsp)
jne 0x1343444
movq 0x140(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1343412
movq 0x140(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1343410
jmp 0x1343442
movq 0x140(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5630(%rsp)
cmpq $0x0, 0x5630(%rsp)
je 0x1343440
movq 0x5630(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1343442
jmp 0x1343444
movq 0x140(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134349f
movq %rax, %rdi
callq 0x678a0
jmp 0x13434a1
leaq 0xf50(%rsp), %rax
movq %rax, 0x3490(%rsp)
movq 0x3490(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x130(%rsp)
leaq 0xf50(%rsp), %rax
movq %rax, 0x3208(%rsp)
movq 0x3208(%rsp), %rax
movq %rax, 0x4fd8(%rsp)
movq 0x4fd8(%rsp), %rax
movq %rax, 0x138(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1343592
movq 0x138(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4fd4(%rsp) # imm = 0xFFFFFFFF
movl 0x4fd4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4fd0(%rsp)
cmpl $0x1, 0x4fd0(%rsp)
jne 0x1343592
movq 0x138(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1343560
movq 0x138(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x134355e
jmp 0x1343590
movq 0x138(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55f8(%rsp)
cmpq $0x0, 0x55f8(%rsp)
je 0x134358e
movq 0x55f8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1343590
jmp 0x1343592
movq 0x138(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13435ed
movq %rax, %rdi
callq 0x678a0
movq 0x130(%rsp), %rax
movq %rax, 0xf98(%rsp)
movl $0x0, 0xf4c(%rsp)
movl 0xf4c(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jge 0x1343750
movq 0xff0(%rsp), %rax
movq %rax, 0x3558(%rsp)
movq 0x3558(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xf00(%rsp)
movl $0x0, 0xefc(%rsp)
movl 0xefc(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jge 0x1343726
movq 0xfe8(%rsp), %rax
movq %rax, 0x3550(%rsp)
movq 0x3550(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xe80(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0xf00(%rsp), %rsi
leaq 0xe80(%rsp), %rdx
callq 0x1453a60
vmovaps %zmm0, 0xe40(%rsp)
movq 0xf98(%rsp), %rax
vmovaps 0xe40(%rsp), %zmm0
movq %rax, 0x38b8(%rsp)
vmovaps %zmm0, 0x3840(%rsp)
vmovaps 0x3840(%rsp), %zmm0
movq 0x38b8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0xfe8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xfe8(%rsp)
movq 0xf98(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xf98(%rsp)
movl 0xefc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xefc(%rsp)
jmp 0x134364d
movq 0xff0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xff0(%rsp)
movl 0xf4c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xf4c(%rsp)
jmp 0x1343608
jmp 0x1343752
movl 0xffc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xffc(%rsp)
jmp 0x1342cee
movl $0x0, 0x2bd4(%rsp)
jmp 0x1345520
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movq 0x2b90(%rsp), %rcx
movl 0x2b8c(%rsp), %r8d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c00(%rsp)
movq 0x2c00(%rsp), %rcx
movq %rcx, 0x120(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x12f(%rsp)
je 0x1343810
movq 0x120(%rsp), %rax
movq %rax, 0x41e0(%rsp)
movq 0x41e0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x12f(%rsp)
movb 0x12f(%rsp), %al
testb $0x1, %al
jne 0x134381d
jmp 0x134382d
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1345520
movq 0x2bc0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x134386c
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x144a8b0
movl %eax, 0x2bd4(%rsp)
jmp 0x1345520
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1343b48
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movq 0x2b90(%rsp), %rcx
movl 0x2b8c(%rsp), %r8d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2bf8(%rsp)
movq 0x2bf8(%rsp), %rcx
movq %rcx, 0x110(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x11f(%rsp)
je 0x1343916
movq 0x110(%rsp), %rax
movq %rax, 0x41e8(%rsp)
movq 0x41e8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x11f(%rsp)
movb 0x11f(%rsp), %al
testb $0x1, %al
jne 0x1343923
jmp 0x1343933
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1345520
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x134397c
cmpl $0x1, 0x2b6c(%rsp)
jne 0x134397c
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x144bac0
movl %eax, 0x2bd4(%rsp)
jmp 0x1345520
movq 0x2bc8(%rsp), %rax
movq %rax, 0x2f18(%rsp)
movq 0x2f18(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xe38(%rsp)
movq 0x2bc0(%rsp), %rax
movq %rax, 0x2f10(%rsp)
movq 0x2f10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xe30(%rsp)
movq 0x2bb8(%rsp), %rax
movq %rax, 0x3488(%rsp)
movq 0x3488(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xe28(%rsp)
movl $0x0, 0xe24(%rsp)
movl 0xe24(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jge 0x1343b38
movq 0xe30(%rsp), %rax
movq %rax, 0x3548(%rsp)
movq 0x3548(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xdc0(%rsp)
movl $0x0, 0xdbc(%rsp)
movl 0xdbc(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jge 0x1343b0e
movq 0xe38(%rsp), %rax
movq %rax, 0x3540(%rsp)
movq 0x3540(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xd40(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0xd40(%rsp), %rsi
leaq 0xdc0(%rsp), %rdx
callq 0x1453a60
vmovaps %zmm0, 0xd00(%rsp)
movq 0xe28(%rsp), %rax
vmovaps 0xd00(%rsp), %zmm0
movq %rax, 0x3838(%rsp)
vmovaps %zmm0, 0x37c0(%rsp)
vmovaps 0x37c0(%rsp), %zmm0
movq 0x3838(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0xe38(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xe38(%rsp)
movq 0xe28(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xe28(%rsp)
movl 0xdbc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdbc(%rsp)
jmp 0x1343a35
movq 0xe30(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xe30(%rsp)
movl 0xe24(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xe24(%rsp)
jmp 0x13439f0
movl $0x0, 0x2bd4(%rsp)
jmp 0x1345520
jmp 0x1345511
movq 0x2bc8(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x134550f
movq 0x2bc8(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1343ba8
cmpl $0x1, 0x2b8c(%rsp)
jne 0x1343ba8
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x144c940
movl %eax, 0x2bd4(%rsp)
jmp 0x1345520
movq 0x2bc0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x13446b1
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b80(%rsp), %ecx
movl 0x2b7c(%rsp), %r8d
movq 0x2b70(%rsp), %r9
movl 0x2b6c(%rsp), %r10d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2bf0(%rsp)
movq 0x2bf0(%rsp), %rcx
movq %rcx, 0x100(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x10f(%rsp)
je 0x1343c6a
movq 0x100(%rsp), %rax
movq %rax, 0x41f0(%rsp)
movq 0x41f0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x10f(%rsp)
movb 0x10f(%rsp), %al
testb $0x1, %al
jne 0x1343c77
jmp 0x1343c87
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1345520
movl $0x0, 0xcfc(%rsp)
movl 0xcfc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x13446a1
movq 0x2bc8(%rsp), %rax
movq %rax, 0x2f08(%rsp)
movq 0x2f08(%rsp), %rax
movq (%rax), %rax
movl 0xcfc(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x3538(%rsp)
movq 0x3538(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xc80(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0xcfc(%rsp), %eax
leaq 0xc30(%rsp), %rdx
movq %rdx, 0x2c98(%rsp)
movq %rcx, 0x2c90(%rsp)
movl %eax, 0x2c8c(%rsp)
movq 0x2c90(%rsp), %rax
movq %rax, 0xf8(%rsp)
movb $0x0, 0x2c8b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2c8c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xc30(%rsp), %r10
movq %r10, 0x4b70(%rsp)
movl %r9d, 0x4b6c(%rsp)
movl %r8d, 0x4b68(%rsp)
movl %edi, 0x4b64(%rsp)
movq %rsi, 0x4b58(%rsp)
movq %rdx, 0x4b50(%rsp)
movl %ecx, 0x4b4c(%rsp)
movq %rax, 0x4b40(%rsp)
movq 0x4b70(%rsp), %rcx
movq %rcx, 0xf0(%rsp)
movq 0x4b58(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4b50(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4b4c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4b40(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4b6c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4b68(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4b64(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4bc8(%rsp)
movl $0x10, 0x4bc4(%rsp)
movq 0x4bc8(%rsp), %rax
movslq 0x4bc4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4bc4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xf8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc58(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1343eaf
movq 0xf8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xc70(%rsp)
movb $0x1, 0x2c8b(%rsp)
testb $0x1, 0x2c8b(%rsp)
jne 0x1343ff0
leaq 0xc30(%rsp), %rax
movq %rax, 0x30c0(%rsp)
movq 0x30c0(%rsp), %rax
movq %rax, 0x5268(%rsp)
movq 0x5268(%rsp), %rax
movq %rax, 0xe8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1343f93
movq 0xe8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5264(%rsp) # imm = 0xFFFFFFFF
movl 0x5264(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5260(%rsp)
cmpl $0x1, 0x5260(%rsp)
jne 0x1343f93
movq 0xe8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1343f61
movq 0xe8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1343f5f
jmp 0x1343f91
movq 0xe8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54b0(%rsp)
cmpq $0x0, 0x54b0(%rsp)
je 0x1343f8f
movq 0x54b0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1343f91
jmp 0x1343f93
movq 0xe8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1343fee
movq %rax, %rdi
callq 0x678a0
jmp 0x1343ff0
leaq 0xc30(%rsp), %rax
movq %rax, 0x2f00(%rsp)
movq 0x2f00(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xd8(%rsp)
leaq 0xc30(%rsp), %rax
movq %rax, 0x3210(%rsp)
movq 0x3210(%rsp), %rax
movq %rax, 0x4fc8(%rsp)
movq 0x4fc8(%rsp), %rax
movq %rax, 0xe0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13440e1
movq 0xe0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4fc4(%rsp) # imm = 0xFFFFFFFF
movl 0x4fc4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4fc0(%rsp)
cmpl $0x1, 0x4fc0(%rsp)
jne 0x13440e1
movq 0xe0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13440af
movq 0xe0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13440ad
jmp 0x13440df
movq 0xe0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5600(%rsp)
cmpq $0x0, 0x5600(%rsp)
je 0x13440dd
movq 0x5600(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13440df
jmp 0x13440e1
movq 0xe0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134413c
movq %rax, %rdi
callq 0x678a0
movq 0xd8(%rsp), %rax
movq %rax, 0xc78(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0xcfc(%rsp), %eax
leaq 0xbe0(%rsp), %rdx
movq %rdx, 0x3260(%rsp)
movq %rcx, 0x3258(%rsp)
movl %eax, 0x3254(%rsp)
movq 0x3258(%rsp), %rax
movq %rax, 0xd0(%rsp)
movb $0x0, 0x3253(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3254(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xbe0(%rsp), %r10
movq %r10, 0x45c0(%rsp)
movl %r9d, 0x45bc(%rsp)
movl %r8d, 0x45b8(%rsp)
movl %edi, 0x45b4(%rsp)
movq %rsi, 0x45a8(%rsp)
movq %rdx, 0x45a0(%rsp)
movl %ecx, 0x459c(%rsp)
movq %rax, 0x4590(%rsp)
movq 0x45c0(%rsp), %rcx
movq %rcx, 0xc8(%rsp)
movq 0x45a8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x45a0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x459c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4590(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x45bc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x45b8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x45b4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d68(%rsp)
movl $0x10, 0x4d64(%rsp)
movq 0x4d68(%rsp), %rax
movslq 0x4d64(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d64(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xd0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc08(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1344308
movq 0xd0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xc20(%rsp)
movb $0x1, 0x3253(%rsp)
testb $0x1, 0x3253(%rsp)
jne 0x1344449
leaq 0xbe0(%rsp), %rax
movq %rax, 0x3268(%rsp)
movq 0x3268(%rsp), %rax
movq %rax, 0x4f78(%rsp)
movq 0x4f78(%rsp), %rax
movq %rax, 0xc0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13443ec
movq 0xc0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f74(%rsp) # imm = 0xFFFFFFFF
movl 0x4f74(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f70(%rsp)
cmpl $0x1, 0x4f70(%rsp)
jne 0x13443ec
movq 0xc0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13443ba
movq 0xc0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13443b8
jmp 0x13443ea
movq 0xc0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5628(%rsp)
cmpq $0x0, 0x5628(%rsp)
je 0x13443e8
movq 0x5628(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13443ea
jmp 0x13443ec
movq 0xc0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1344447
movq %rax, %rdi
callq 0x678a0
jmp 0x1344449
leaq 0xbe0(%rsp), %rax
movq %rax, 0x3480(%rsp)
movq 0x3480(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xb0(%rsp)
leaq 0xbe0(%rsp), %rax
movq %rax, 0x3218(%rsp)
movq 0x3218(%rsp), %rax
movq %rax, 0x4fb8(%rsp)
movq 0x4fb8(%rsp), %rax
movq %rax, 0xb8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134453a
movq 0xb8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4fb4(%rsp) # imm = 0xFFFFFFFF
movl 0x4fb4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4fb0(%rsp)
cmpl $0x1, 0x4fb0(%rsp)
jne 0x134453a
movq 0xb8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1344508
movq 0xb8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1344506
jmp 0x1344538
movq 0xb8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5608(%rsp)
cmpq $0x0, 0x5608(%rsp)
je 0x1344536
movq 0x5608(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1344538
jmp 0x134453a
movq 0xb8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1344595
movq %rax, %rdi
callq 0x678a0
movq 0xb0(%rsp), %rax
movq %rax, 0xc28(%rsp)
movl $0x0, 0xbdc(%rsp)
movl 0xbdc(%rsp), %eax
cmpl 0x2b78(%rsp), %eax
jge 0x1344689
movq 0xc78(%rsp), %rax
movq %rax, 0x3530(%rsp)
movq 0x3530(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xb80(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0xc80(%rsp), %rsi
leaq 0xb80(%rsp), %rdx
callq 0x1453a60
vmovaps %zmm0, 0xb40(%rsp)
movq 0xc28(%rsp), %rax
vmovaps 0xb40(%rsp), %zmm0
movq %rax, 0x37b8(%rsp)
vmovaps %zmm0, 0x3740(%rsp)
vmovaps 0x3740(%rsp), %zmm0
movq 0x37b8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0xc78(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xc78(%rsp)
movq 0xc28(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xc28(%rsp)
movl 0xbdc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xbdc(%rsp)
jmp 0x13445b0
jmp 0x134468b
movl 0xcfc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xcfc(%rsp)
jmp 0x1343c92
movl $0x0, 0x2bd4(%rsp)
jmp 0x1345520
movq 0x2bc0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1345171
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b7c(%rsp), %ecx
movq 0x2b70(%rsp), %r8
movl 0x2b6c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2be8(%rsp)
movq 0x2be8(%rsp), %rcx
movq %rcx, 0xa0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xaf(%rsp)
je 0x1344766
movq 0xa0(%rsp), %rax
movq %rax, 0x41f8(%rsp)
movq 0x41f8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xaf(%rsp)
movb 0xaf(%rsp), %al
testb $0x1, %al
jne 0x1344773
jmp 0x1344783
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1345520
movl $0x0, 0xb3c(%rsp)
movl 0xb3c(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x1345161
movq 0x2bc8(%rsp), %rax
movq %rax, 0x2ef8(%rsp)
movq 0x2ef8(%rsp), %rax
movq (%rax), %rax
movl 0xb3c(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x3528(%rsp)
movq 0x3528(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xac0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0xb3c(%rsp), %eax
leaq 0xa70(%rsp), %rdx
movq %rdx, 0x2c80(%rsp)
movq %rcx, 0x2c78(%rsp)
movl %eax, 0x2c74(%rsp)
movq 0x2c78(%rsp), %rax
movq %rax, 0x98(%rsp)
movb $0x0, 0x2c73(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2c74(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xa70(%rsp), %r10
movq %r10, 0x4ba8(%rsp)
movl %r9d, 0x4ba4(%rsp)
movl %r8d, 0x4ba0(%rsp)
movl %edi, 0x4b9c(%rsp)
movq %rsi, 0x4b90(%rsp)
movq %rdx, 0x4b88(%rsp)
movl %ecx, 0x4b84(%rsp)
movq %rax, 0x4b78(%rsp)
movq 0x4ba8(%rsp), %rcx
movq %rcx, 0x90(%rsp)
movq 0x4b90(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4b88(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4b84(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4b78(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4ba4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4ba0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4b9c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4bb8(%rsp)
movl $0x10, 0x4bb4(%rsp)
movq 0x4bb8(%rsp), %rax
movslq 0x4bb4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4bb4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x98(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xa98(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13449ab
movq 0x98(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xab0(%rsp)
movb $0x1, 0x2c73(%rsp)
testb $0x1, 0x2c73(%rsp)
jne 0x1344aec
leaq 0xa70(%rsp), %rax
movq %rax, 0x30c8(%rsp)
movq 0x30c8(%rsp), %rax
movq %rax, 0x5258(%rsp)
movq 0x5258(%rsp), %rax
movq %rax, 0x88(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1344a8f
movq 0x88(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5254(%rsp) # imm = 0xFFFFFFFF
movl 0x5254(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5250(%rsp)
cmpl $0x1, 0x5250(%rsp)
jne 0x1344a8f
movq 0x88(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1344a5d
movq 0x88(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1344a5b
jmp 0x1344a8d
movq 0x88(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54b8(%rsp)
cmpq $0x0, 0x54b8(%rsp)
je 0x1344a8b
movq 0x54b8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1344a8d
jmp 0x1344a8f
movq 0x88(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1344aea
movq %rax, %rdi
callq 0x678a0
jmp 0x1344aec
leaq 0xa70(%rsp), %rax
movq %rax, 0x2ef0(%rsp)
movq 0x2ef0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x78(%rsp)
leaq 0xa70(%rsp), %rax
movq %rax, 0x3220(%rsp)
movq 0x3220(%rsp), %rax
movq %rax, 0x4fa8(%rsp)
movq 0x4fa8(%rsp), %rax
movq %rax, 0x80(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1344bda
movq 0x80(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4fa4(%rsp) # imm = 0xFFFFFFFF
movl 0x4fa4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4fa0(%rsp)
cmpl $0x1, 0x4fa0(%rsp)
jne 0x1344bda
movq 0x80(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1344ba8
movq 0x80(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1344ba6
jmp 0x1344bd8
movq 0x80(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5610(%rsp)
cmpq $0x0, 0x5610(%rsp)
je 0x1344bd6
movq 0x5610(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1344bd8
jmp 0x1344bda
movq 0x80(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1344c35
movq %rax, %rdi
callq 0x678a0
movq 0x78(%rsp), %rax
movq %rax, 0xab8(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0xb3c(%rsp), %eax
leaq 0xa20(%rsp), %rdx
movq %rdx, 0x3240(%rsp)
movq %rcx, 0x3238(%rsp)
movl %eax, 0x3234(%rsp)
movq 0x3238(%rsp), %rax
movq %rax, 0x70(%rsp)
movb $0x0, 0x3233(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3234(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xa20(%rsp), %r10
movq %r10, 0x45f8(%rsp)
movl %r9d, 0x45f4(%rsp)
movl %r8d, 0x45f0(%rsp)
movl %edi, 0x45ec(%rsp)
movq %rsi, 0x45e0(%rsp)
movq %rdx, 0x45d8(%rsp)
movl %ecx, 0x45d4(%rsp)
movq %rax, 0x45c8(%rsp)
movq 0x45f8(%rsp), %rcx
movq %rcx, 0x68(%rsp)
movq 0x45e0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x45d8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x45d4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x45c8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x45f4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x45f0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x45ec(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d58(%rsp)
movl $0x10, 0x4d54(%rsp)
movq 0x4d58(%rsp), %rax
movslq 0x4d54(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d54(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x70(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xa48(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1344df2
movq 0x70(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xa60(%rsp)
movb $0x1, 0x3233(%rsp)
testb $0x1, 0x3233(%rsp)
jne 0x1344f21
leaq 0xa20(%rsp), %rax
movq %rax, 0x3248(%rsp)
movq 0x3248(%rsp), %rax
movq %rax, 0x4f88(%rsp)
movq 0x4f88(%rsp), %rax
movq %rax, 0x60(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1344ec7
movq 0x60(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f84(%rsp) # imm = 0xFFFFFFFF
movl 0x4f84(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f80(%rsp)
cmpl $0x1, 0x4f80(%rsp)
jne 0x1344ec7
movq 0x60(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1344e98
movq 0x60(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1344e96
jmp 0x1344ec5
movq 0x60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5620(%rsp)
cmpq $0x0, 0x5620(%rsp)
je 0x1344ec3
movq 0x5620(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1344ec5
jmp 0x1344ec7
movq 0x60(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1344f1f
movq %rax, %rdi
callq 0x678a0
jmp 0x1344f21
leaq 0xa20(%rsp), %rax
movq %rax, 0x3478(%rsp)
movq 0x3478(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x50(%rsp)
leaq 0xa20(%rsp), %rax
movq %rax, 0x3228(%rsp)
movq 0x3228(%rsp), %rax
movq %rax, 0x4f98(%rsp)
movq 0x4f98(%rsp), %rax
movq %rax, 0x58(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1345000
movq 0x58(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f94(%rsp) # imm = 0xFFFFFFFF
movl 0x4f94(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f90(%rsp)
cmpl $0x1, 0x4f90(%rsp)
jne 0x1345000
movq 0x58(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1344fd1
movq 0x58(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1344fcf
jmp 0x1344ffe
movq 0x58(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5618(%rsp)
cmpq $0x0, 0x5618(%rsp)
je 0x1344ffc
movq 0x5618(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1344ffe
jmp 0x1345000
movq 0x58(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1345058
movq %rax, %rdi
callq 0x678a0
movq 0x50(%rsp), %rax
movq %rax, 0xa68(%rsp)
movl $0x0, 0xa1c(%rsp)
movl 0xa1c(%rsp), %eax
cmpl 0x2b78(%rsp), %eax
jge 0x1345149
movq 0xab8(%rsp), %rax
movq %rax, 0x3520(%rsp)
movq 0x3520(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x9c0(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0xac0(%rsp), %rsi
leaq 0x9c0(%rsp), %rdx
callq 0x1453a60
vmovaps %zmm0, 0x980(%rsp)
movq 0xa68(%rsp), %rax
vmovaps 0x980(%rsp), %zmm0
movq %rax, 0x3738(%rsp)
vmovaps %zmm0, 0x36c0(%rsp)
vmovaps 0x36c0(%rsp), %zmm0
movq 0x3738(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0xab8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xab8(%rsp)
movq 0xa68(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xa68(%rsp)
movl 0xa1c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xa1c(%rsp)
jmp 0x1345070
jmp 0x134514b
movl 0xb3c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xb3c(%rsp)
jmp 0x134478e
movl $0x0, 0x2bd4(%rsp)
jmp 0x1345520
movq 0x2bc0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x13453f5
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movq 0x2b70(%rsp), %rcx
movl 0x2b6c(%rsp), %r8d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2be0(%rsp)
movq 0x2be0(%rsp), %rcx
movq %rcx, 0x40(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x4f(%rsp)
je 0x134520f
movq 0x40(%rsp), %rax
movq %rax, 0x4200(%rsp)
movq 0x4200(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x4f(%rsp)
movb 0x4f(%rsp), %al
testb $0x1, %al
jne 0x1345219
jmp 0x1345229
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1345520
movq 0x2bc8(%rsp), %rax
movq %rax, 0x2ee8(%rsp)
movq 0x2ee8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x978(%rsp)
movq 0x2bc0(%rsp), %rax
movq %rax, 0x2ee0(%rsp)
movq 0x2ee0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x970(%rsp)
movq 0x2bb8(%rsp), %rax
movq %rax, 0x3470(%rsp)
movq 0x3470(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x968(%rsp)
movl $0x0, 0x964(%rsp)
movl 0x964(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jge 0x13453e5
movq 0x978(%rsp), %rax
movq %rax, 0x3518(%rsp)
movq 0x3518(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x900(%rsp)
movl $0x0, 0x8fc(%rsp)
movl 0x8fc(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jge 0x13453bb
movq 0x970(%rsp), %rax
movq %rax, 0x3510(%rsp)
movq 0x3510(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x880(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x900(%rsp), %rsi
leaq 0x880(%rsp), %rdx
callq 0x1453a60
vmovaps %zmm0, 0x840(%rsp)
movq 0x968(%rsp), %rax
vmovaps 0x840(%rsp), %zmm0
movq %rax, 0x36b8(%rsp)
vmovaps %zmm0, 0x3640(%rsp)
vmovaps 0x3640(%rsp), %zmm0
movq 0x36b8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x970(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x970(%rsp)
movq 0x968(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x968(%rsp)
movl 0x8fc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x8fc(%rsp)
jmp 0x13452e2
movq 0x978(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x978(%rsp)
movl 0x964(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x964(%rsp)
jmp 0x134529d
movl $0x0, 0x2bd4(%rsp)
jmp 0x1345520
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x134550d
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movq 0x2b90(%rsp), %rdx
movl 0x2b8c(%rsp), %ecx
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6be00
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2bd8(%rsp)
movq 0x2bd8(%rsp), %rcx
movq %rcx, 0x30(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x3f(%rsp)
je 0x134548b
movq 0x30(%rsp), %rax
movq %rax, 0x4208(%rsp)
movq 0x4208(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x3f(%rsp)
movb 0x3f(%rsp), %al
testb $0x1, %al
jne 0x1345495
jmp 0x13454a2
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1345520
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x13454e8
cmpl $0x1, 0x2b6c(%rsp)
jne 0x13454e8
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x144bac0
movl %eax, 0x2bd4(%rsp)
jmp 0x1345520
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x144a8b0
jmp 0x134550f
jmp 0x1345511
jmp 0x1345513
jmp 0x1345515
movl $0x0, 0x2bd4(%rsp)
movl 0x2bd4(%rsp), %eax
movq %rbp, %rsp
popq %rbp
vzeroupper
retq
nop
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/build_O0/src/layer/x86/binaryop_x86_avx512.cpp
|
2,112,895
|
int ncnn::binary_op_pack16<ncnn::BinaryOp_x86_avx512_functor::binary_op_min>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op_pack16(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int size = w * h * d;
size_t elemsize = a.elemsize;
int elempack = a.elempack;
int w1 = b.w;
int h1 = b.h;
int d1 = b.d;
int channels1 = b.c;
int size1 = w1 * h1 * d1;
size_t elemsize1 = b.elemsize;
int elempack1 = b.elempack;
if (a.dims == 4)
{
if (b.dims == 4)
{
// type 29
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
c.create(w, h, d, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 3)
{
// type 28
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
for (int y = 0; y < h; y++)
{
__m512 _b0 = _mm512_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
ptr1 += 16;
}
}
}
return 0;
}
if (b.dims == 2)
{
// type 27
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
__m512 _b0 = _mm512_loadu_ps(ptr1);
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
}
ptr1 += 16;
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1 && elempack1 == 1)
{
// type 25
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 26
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
__m512 _b0 = _mm512_loadu_ps((const float*)b + q * 16);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
}
return 0;
}
}
else if (a.dims == 3)
{
if (b.dims == 4)
{
// type 23
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
for (int y = 0; y < h1; y++)
{
__m512 _a0 = _mm512_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m512 _p = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
ptr += 16;
}
}
}
return 0;
}
if (b.dims == 3)
{
if (w1 == 1 && h1 == 1 && channels1 == channels)
{
// special type 1
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* b0 = b.channel(q);
float* outptr = c.channel(q);
__m512 _b0 = _mm512_loadu_ps(b0);
for (int i = 0; i < size; i++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
}
return 0;
}
if (w1 == w && h1 == h && channels1 == 1 && elempack1 == 1)
{
// special type 2
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b;
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _p1 = _mm512_set1_ps(*ptr1);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
ptr1 += 1;
outptr += 16;
}
}
return 0;
}
if (w == 1 && h == 1 && channels1 == channels)
{
// special type 3
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* a0 = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
__m512 _a0 = _mm512_loadu_ps(a0);
for (int i = 0; i < size1; i++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
}
return 0;
}
if (w1 == w && h1 == h && channels == 1 && elempack == 1)
{
// special type 4
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a;
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m512 _p = _mm512_set1_ps(*ptr);
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr += 1;
ptr1 += 16;
outptr += 16;
}
}
return 0;
}
if (w != 1 && w1 == 1 && h1 == h && channels1 == channels)
{
// special type 5
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1 + y * 16);
for (int x = 0; x < w; x++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
}
}
return 0;
}
if (w1 == w && h != 1 && h1 == 1 && channels1 == channels)
{
// special type 6
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _p1 = _mm512_loadu_ps(ptr1 + x * 16);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
}
}
return 0;
}
if (w1 != 1 && w == 1 && h1 == h && channels1 == channels)
{
// special type 7
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
__m512 _p = _mm512_loadu_ps(ptr + y * 16);
for (int x = 0; x < w1; x++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
}
}
return 0;
}
if (w1 == w && h1 != 1 && h == 1 && channels1 == channels)
{
// special type 8
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
__m512 _p = _mm512_loadu_ps(ptr + x * 16);
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
}
}
return 0;
}
// type 19
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 18
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
__m512 _b0 = _mm512_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
ptr1 += 16;
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1 && elempack1 == 1)
{
// type 16
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 17
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
__m512 _b0 = _mm512_loadu_ps((const float*)b + q * 16);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
}
return 0;
}
}
else if (a.dims == 2)
{
if (b.dims == 4)
{
// type 22
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
__m512 _a0 = _mm512_loadu_ps(ptr);
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
__m512 _p = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
}
ptr += 16;
}
}
return 0;
}
if (b.dims == 3)
{
// type 14
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
__m512 _a0 = _mm512_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
ptr += 16;
}
}
return 0;
}
c.create(w, h, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 13
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
if (b.dims == 1)
{
c.create(w, h, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1 && elempack1 == 1)
{
// type 11
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 12
const float* ptr = a;
const float* ptr1 = b;
float* outptr = c;
for (int y = 0; y < h; y++)
{
__m512 _b0 = _mm512_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
ptr1 += 16;
}
return 0;
}
}
else if (a.dims == 1)
{
if (a.w == 1 && elempack == 1)
{
// type 2 3 4 20
return binary_op_2_3_4_20<Op>(a, b, c, opt);
}
if (b.dims == 4)
{
// type 21
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
__m512 _a0 = _mm512_loadu_ps((const float*)a + q * 16);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
}
return 0;
}
if (b.dims == 3)
{
// type 9
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
__m512 _a0 = _mm512_loadu_ps((const float*)a + q * 16);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
}
return 0;
}
if (b.dims == 2)
{
// type 8
c.create(w1, h1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
const float* ptr = a;
const float* ptr1 = b;
float* outptr = c;
for (int y = 0; y < h1; y++)
{
__m512 _a0 = _mm512_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
ptr += 16;
}
return 0;
}
if (b.dims == 1)
{
c.create(w, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1 && elempack1 == 1)
{
// type 6
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 7
binary_op_7_13_19_29<Op>(a, b, c, opt);
}
}
return 0;
}
|
pushq %rbp
movq %rsp, %rbp
andq $-0x40, %rsp
subq $0x56c0, %rsp # imm = 0x56C0
movq %rdi, 0x2bc8(%rsp)
movq %rsi, 0x2bc0(%rsp)
movq %rdx, 0x2bb8(%rsp)
movq %rcx, 0x2bb0(%rsp)
movq 0x2bc8(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x2ba8(%rsp)
movq 0x2bc8(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x2ba4(%rsp)
movq 0x2bc8(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x2ba0(%rsp)
movq 0x2bc8(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x2b9c(%rsp)
movl 0x2ba8(%rsp), %eax
imull 0x2ba4(%rsp), %eax
imull 0x2ba0(%rsp), %eax
movl %eax, 0x2b98(%rsp)
movq 0x2bc8(%rsp), %rax
movq 0x10(%rax), %rax
movq %rax, 0x2b90(%rsp)
movq 0x2bc8(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x2b8c(%rsp)
movq 0x2bc0(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x2b88(%rsp)
movq 0x2bc0(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x2b84(%rsp)
movq 0x2bc0(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x2b80(%rsp)
movq 0x2bc0(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x2b7c(%rsp)
movl 0x2b88(%rsp), %eax
imull 0x2b84(%rsp), %eax
imull 0x2b80(%rsp), %eax
movl %eax, 0x2b78(%rsp)
movq 0x2bc0(%rsp), %rax
movq 0x10(%rax), %rax
movq %rax, 0x2b70(%rsp)
movq 0x2bc0(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x2b6c(%rsp)
movq 0x2bc8(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1347c0f
movq 0x2bc0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x13456c8
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x144d7c0
movl %eax, 0x2bd4(%rsp)
jmp 0x1354af0
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movl 0x2ba0(%rsp), %ecx
movl 0x2b9c(%rsp), %r8d
movq 0x2b90(%rsp), %r9
movl 0x2b8c(%rsp), %r10d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c68(%rsp)
movq 0x2c68(%rsp), %rcx
movq %rcx, 0x830(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x83f(%rsp)
je 0x1345778
movq 0x830(%rsp), %rax
movq %rax, 0x4178(%rsp)
movq 0x4178(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x83f(%rsp)
movb 0x83f(%rsp), %al
testb $0x1, %al
jne 0x1345785
jmp 0x1345795
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1354af0
movq 0x2bc0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x134668f
movl $0x0, 0x2b68(%rsp)
movl 0x2b68(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jge 0x134667f
movq 0x2bc8(%rsp), %rcx
movl 0x2b68(%rsp), %eax
leaq 0x2b18(%rsp), %rdx
movq %rdx, 0x2ed8(%rsp)
movq %rcx, 0x2ed0(%rsp)
movl %eax, 0x2ecc(%rsp)
movq 0x2ed0(%rsp), %rax
movq %rax, 0x828(%rsp)
movb $0x0, 0x2ecb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2ecc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2b18(%rsp), %r10
movq %r10, 0x4630(%rsp)
movl %r9d, 0x462c(%rsp)
movl %r8d, 0x4628(%rsp)
movl %edi, 0x4624(%rsp)
movq %rsi, 0x4618(%rsp)
movq %rdx, 0x4610(%rsp)
movl %ecx, 0x460c(%rsp)
movq %rax, 0x4600(%rsp)
movq 0x4630(%rsp), %rcx
movq %rcx, 0x820(%rsp)
movq 0x4618(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4610(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x460c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4600(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x462c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4628(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4624(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d48(%rsp)
movl $0x10, 0x4d44(%rsp)
movq 0x4d48(%rsp), %rax
movslq 0x4d44(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d44(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x828(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2b40(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1345982
movq 0x828(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2b58(%rsp)
movb $0x1, 0x2ecb(%rsp)
testb $0x1, 0x2ecb(%rsp)
jne 0x1345ac3
leaq 0x2b18(%rsp), %rax
movq %rax, 0x3000(%rsp)
movq 0x3000(%rsp), %rax
movq %rax, 0x53e8(%rsp)
movq 0x53e8(%rsp), %rax
movq %rax, 0x818(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1345a66
movq 0x818(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x53e4(%rsp) # imm = 0xFFFFFFFF
movl 0x53e4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x53e0(%rsp)
cmpl $0x1, 0x53e0(%rsp)
jne 0x1345a66
movq 0x818(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1345a34
movq 0x818(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1345a32
jmp 0x1345a64
movq 0x818(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x53f0(%rsp)
cmpq $0x0, 0x53f0(%rsp)
je 0x1345a62
movq 0x53f0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1345a64
jmp 0x1345a66
movq 0x818(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1345ac1
movq %rax, %rdi
callq 0x678a0
jmp 0x1345ac3
leaq 0x2b18(%rsp), %rax
movq %rax, 0x2ff8(%rsp)
movq 0x2ff8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x808(%rsp)
leaq 0x2b18(%rsp), %rax
movq %rax, 0x30d0(%rsp)
movq 0x30d0(%rsp), %rax
movq %rax, 0x5248(%rsp)
movq 0x5248(%rsp), %rax
movq %rax, 0x810(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1345bb4
movq 0x810(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5244(%rsp) # imm = 0xFFFFFFFF
movl 0x5244(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5240(%rsp)
cmpl $0x1, 0x5240(%rsp)
jne 0x1345bb4
movq 0x810(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1345b82
movq 0x810(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1345b80
jmp 0x1345bb2
movq 0x810(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54c0(%rsp)
cmpq $0x0, 0x54c0(%rsp)
je 0x1345bb0
movq 0x54c0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1345bb2
jmp 0x1345bb4
movq 0x810(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1345c0f
movq %rax, %rdi
callq 0x678a0
movq 0x808(%rsp), %rax
movq %rax, 0x2b60(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x2b68(%rsp), %eax
leaq 0x2ac8(%rsp), %rdx
movq %rdx, 0x2ec0(%rsp)
movq %rcx, 0x2eb8(%rsp)
movl %eax, 0x2eb4(%rsp)
movq 0x2eb8(%rsp), %rax
movq %rax, 0x800(%rsp)
movb $0x0, 0x2eb3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2eb4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2ac8(%rsp), %r10
movq %r10, 0x4668(%rsp)
movl %r9d, 0x4664(%rsp)
movl %r8d, 0x4660(%rsp)
movl %edi, 0x465c(%rsp)
movq %rsi, 0x4650(%rsp)
movq %rdx, 0x4648(%rsp)
movl %ecx, 0x4644(%rsp)
movq %rax, 0x4638(%rsp)
movq 0x4668(%rsp), %rcx
movq %rcx, 0x7f8(%rsp)
movq 0x4650(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4648(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4644(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4638(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4664(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4660(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x465c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d38(%rsp)
movl $0x10, 0x4d34(%rsp)
movq 0x4d38(%rsp), %rax
movslq 0x4d34(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d34(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x800(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2af0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1345ddb
movq 0x800(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2b08(%rsp)
movb $0x1, 0x2eb3(%rsp)
testb $0x1, 0x2eb3(%rsp)
jne 0x1345f1c
leaq 0x2ac8(%rsp), %rax
movq %rax, 0x3008(%rsp)
movq 0x3008(%rsp), %rax
movq %rax, 0x53d8(%rsp)
movq 0x53d8(%rsp), %rax
movq %rax, 0x7f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1345ebf
movq 0x7f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x53d4(%rsp) # imm = 0xFFFFFFFF
movl 0x53d4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x53d0(%rsp)
cmpl $0x1, 0x53d0(%rsp)
jne 0x1345ebf
movq 0x7f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1345e8d
movq 0x7f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1345e8b
jmp 0x1345ebd
movq 0x7f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x53f8(%rsp)
cmpq $0x0, 0x53f8(%rsp)
je 0x1345ebb
movq 0x53f8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1345ebd
jmp 0x1345ebf
movq 0x7f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1345f1a
movq %rax, %rdi
callq 0x678a0
jmp 0x1345f1c
leaq 0x2ac8(%rsp), %rax
movq %rax, 0x2ff0(%rsp)
movq 0x2ff0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7e0(%rsp)
leaq 0x2ac8(%rsp), %rax
movq %rax, 0x30d8(%rsp)
movq 0x30d8(%rsp), %rax
movq %rax, 0x5238(%rsp)
movq 0x5238(%rsp), %rax
movq %rax, 0x7e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134600d
movq 0x7e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5234(%rsp) # imm = 0xFFFFFFFF
movl 0x5234(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5230(%rsp)
cmpl $0x1, 0x5230(%rsp)
jne 0x134600d
movq 0x7e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1345fdb
movq 0x7e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1345fd9
jmp 0x134600b
movq 0x7e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54c8(%rsp)
cmpq $0x0, 0x54c8(%rsp)
je 0x1346009
movq 0x54c8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x134600b
jmp 0x134600d
movq 0x7e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1346068
movq %rax, %rdi
callq 0x678a0
movq 0x7e0(%rsp), %rax
movq %rax, 0x2b10(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x2b68(%rsp), %eax
leaq 0x2a78(%rsp), %rdx
movq %rdx, 0x3460(%rsp)
movq %rcx, 0x3458(%rsp)
movl %eax, 0x3454(%rsp)
movq 0x3458(%rsp), %rax
movq %rax, 0x7d8(%rsp)
movb $0x0, 0x3453(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3454(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2a78(%rsp), %r10
movq %r10, 0x4240(%rsp)
movl %r9d, 0x423c(%rsp)
movl %r8d, 0x4238(%rsp)
movl %edi, 0x4234(%rsp)
movq %rsi, 0x4228(%rsp)
movq %rdx, 0x4220(%rsp)
movl %ecx, 0x421c(%rsp)
movq %rax, 0x4210(%rsp)
movq 0x4240(%rsp), %rcx
movq %rcx, 0x7d0(%rsp)
movq 0x4228(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4220(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x421c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4210(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x423c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4238(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4234(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e68(%rsp)
movl $0x10, 0x4e64(%rsp)
movq 0x4e68(%rsp), %rax
movslq 0x4e64(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e64(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7d8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2aa0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1346234
movq 0x7d8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2ab8(%rsp)
movb $0x1, 0x3453(%rsp)
testb $0x1, 0x3453(%rsp)
jne 0x1346375
leaq 0x2a78(%rsp), %rax
movq %rax, 0x3468(%rsp)
movq 0x3468(%rsp), %rax
movq %rax, 0x4e78(%rsp)
movq 0x4e78(%rsp), %rax
movq %rax, 0x7c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1346318
movq 0x7c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4e74(%rsp) # imm = 0xFFFFFFFF
movl 0x4e74(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4e70(%rsp)
cmpl $0x1, 0x4e70(%rsp)
jne 0x1346318
movq 0x7c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13462e6
movq 0x7c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13462e4
jmp 0x1346316
movq 0x7c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x56a8(%rsp)
cmpq $0x0, 0x56a8(%rsp)
je 0x1346314
movq 0x56a8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1346316
jmp 0x1346318
movq 0x7c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1346373
movq %rax, %rdi
callq 0x678a0
jmp 0x1346375
leaq 0x2a78(%rsp), %rax
movq %rax, 0x3508(%rsp)
movq 0x3508(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7b8(%rsp)
leaq 0x2a78(%rsp), %rax
movq %rax, 0x30e0(%rsp)
movq 0x30e0(%rsp), %rax
movq %rax, 0x5228(%rsp)
movq 0x5228(%rsp), %rax
movq %rax, 0x7c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1346466
movq 0x7c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5224(%rsp) # imm = 0xFFFFFFFF
movl 0x5224(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5220(%rsp)
cmpl $0x1, 0x5220(%rsp)
jne 0x1346466
movq 0x7c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1346434
movq 0x7c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1346432
jmp 0x1346464
movq 0x7c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54d0(%rsp)
cmpq $0x0, 0x54d0(%rsp)
je 0x1346462
movq 0x54d0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1346464
jmp 0x1346466
movq 0x7c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13464c1
movq %rax, %rdi
callq 0x678a0
movq 0x7b8(%rsp), %rax
movq %rax, 0x2ac0(%rsp)
movl $0x0, 0x2a74(%rsp)
movl 0x2a74(%rsp), %eax
cmpl 0x2ba0(%rsp), %eax
jge 0x1346667
movl $0x0, 0x2a70(%rsp)
movl 0x2a70(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jge 0x134664f
movq 0x2b10(%rsp), %rax
movq %rax, 0x3638(%rsp)
movq 0x3638(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2a00(%rsp)
movl $0x0, 0x29fc(%rsp)
movl 0x29fc(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jge 0x1346625
movq 0x2b60(%rsp), %rax
movq %rax, 0x3630(%rsp)
movq 0x3630(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2980(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x2980(%rsp), %rsi
leaq 0x2a00(%rsp), %rdx
callq 0x1453b90
vmovaps %zmm0, 0x2940(%rsp)
movq 0x2ac0(%rsp), %rax
vmovaps 0x2940(%rsp), %zmm0
movq %rax, 0x4038(%rsp)
vmovaps %zmm0, 0x3fc0(%rsp)
vmovaps 0x3fc0(%rsp), %zmm0
movq 0x4038(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x2b60(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2b60(%rsp)
movq 0x2ac0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2ac0(%rsp)
movl 0x29fc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x29fc(%rsp)
jmp 0x1346543
movq 0x2b10(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2b10(%rsp)
movl 0x2a70(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x2a70(%rsp)
jmp 0x13464fb
jmp 0x1346651
movl 0x2a74(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x2a74(%rsp)
jmp 0x13464dc
jmp 0x1346669
movl 0x2b68(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x2b68(%rsp)
jmp 0x13457b2
movl $0x0, 0x2bd4(%rsp)
jmp 0x1354af0
movq 0x2bc0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1347179
movl $0x0, 0x293c(%rsp)
movl 0x293c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jge 0x1347169
movq 0x2bc8(%rsp), %rcx
movl 0x293c(%rsp), %eax
leaq 0x28e8(%rsp), %rdx
movq %rdx, 0x2ea8(%rsp)
movq %rcx, 0x2ea0(%rsp)
movl %eax, 0x2e9c(%rsp)
movq 0x2ea0(%rsp), %rax
movq %rax, 0x7b0(%rsp)
movb $0x0, 0x2e9b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e9c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x28e8(%rsp), %r10
movq %r10, 0x46a0(%rsp)
movl %r9d, 0x469c(%rsp)
movl %r8d, 0x4698(%rsp)
movl %edi, 0x4694(%rsp)
movq %rsi, 0x4688(%rsp)
movq %rdx, 0x4680(%rsp)
movl %ecx, 0x467c(%rsp)
movq %rax, 0x4670(%rsp)
movq 0x46a0(%rsp), %rcx
movq %rcx, 0x7a8(%rsp)
movq 0x4688(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4680(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x467c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4670(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x469c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4698(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4694(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d28(%rsp)
movl $0x10, 0x4d24(%rsp)
movq 0x4d28(%rsp), %rax
movslq 0x4d24(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d24(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7b0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2910(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x134687c
movq 0x7b0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2928(%rsp)
movb $0x1, 0x2e9b(%rsp)
testb $0x1, 0x2e9b(%rsp)
jne 0x13469bd
leaq 0x28e8(%rsp), %rax
movq %rax, 0x3010(%rsp)
movq 0x3010(%rsp), %rax
movq %rax, 0x53c8(%rsp)
movq 0x53c8(%rsp), %rax
movq %rax, 0x7a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1346960
movq 0x7a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x53c4(%rsp) # imm = 0xFFFFFFFF
movl 0x53c4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x53c0(%rsp)
cmpl $0x1, 0x53c0(%rsp)
jne 0x1346960
movq 0x7a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x134692e
movq 0x7a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x134692c
jmp 0x134695e
movq 0x7a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5400(%rsp)
cmpq $0x0, 0x5400(%rsp)
je 0x134695c
movq 0x5400(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x134695e
jmp 0x1346960
movq 0x7a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13469bb
movq %rax, %rdi
callq 0x678a0
jmp 0x13469bd
leaq 0x28e8(%rsp), %rax
movq %rax, 0x2fe8(%rsp)
movq 0x2fe8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x790(%rsp)
leaq 0x28e8(%rsp), %rax
movq %rax, 0x30e8(%rsp)
movq 0x30e8(%rsp), %rax
movq %rax, 0x5218(%rsp)
movq 0x5218(%rsp), %rax
movq %rax, 0x798(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1346aae
movq 0x798(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5214(%rsp) # imm = 0xFFFFFFFF
movl 0x5214(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5210(%rsp)
cmpl $0x1, 0x5210(%rsp)
jne 0x1346aae
movq 0x798(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1346a7c
movq 0x798(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1346a7a
jmp 0x1346aac
movq 0x798(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54d8(%rsp)
cmpq $0x0, 0x54d8(%rsp)
je 0x1346aaa
movq 0x54d8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1346aac
jmp 0x1346aae
movq 0x798(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1346b09
movq %rax, %rdi
callq 0x678a0
movq 0x790(%rsp), %rax
movq %rax, 0x2930(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x293c(%rsp), %eax
movq %rcx, 0x4078(%rsp)
movl %eax, 0x4074(%rsp)
movq 0x4078(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x4074(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x28e0(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x293c(%rsp), %eax
leaq 0x2890(%rsp), %rdx
movq %rdx, 0x3440(%rsp)
movq %rcx, 0x3438(%rsp)
movl %eax, 0x3434(%rsp)
movq 0x3438(%rsp), %rax
movq %rax, 0x788(%rsp)
movb $0x0, 0x3433(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3434(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2890(%rsp), %r10
movq %r10, 0x4278(%rsp)
movl %r9d, 0x4274(%rsp)
movl %r8d, 0x4270(%rsp)
movl %edi, 0x426c(%rsp)
movq %rsi, 0x4260(%rsp)
movq %rdx, 0x4258(%rsp)
movl %ecx, 0x4254(%rsp)
movq %rax, 0x4248(%rsp)
movq 0x4278(%rsp), %rcx
movq %rcx, 0x780(%rsp)
movq 0x4260(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4258(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4254(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4248(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4274(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4270(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x426c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e58(%rsp)
movl $0x10, 0x4e54(%rsp)
movq 0x4e58(%rsp), %rax
movslq 0x4e54(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e54(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x788(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x28b8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1346d1e
movq 0x788(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x28d0(%rsp)
movb $0x1, 0x3433(%rsp)
testb $0x1, 0x3433(%rsp)
jne 0x1346e5f
leaq 0x2890(%rsp), %rax
movq %rax, 0x3448(%rsp)
movq 0x3448(%rsp), %rax
movq %rax, 0x4e88(%rsp)
movq 0x4e88(%rsp), %rax
movq %rax, 0x778(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1346e02
movq 0x778(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4e84(%rsp) # imm = 0xFFFFFFFF
movl 0x4e84(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4e80(%rsp)
cmpl $0x1, 0x4e80(%rsp)
jne 0x1346e02
movq 0x778(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1346dd0
movq 0x778(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1346dce
jmp 0x1346e00
movq 0x778(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x56a0(%rsp)
cmpq $0x0, 0x56a0(%rsp)
je 0x1346dfe
movq 0x56a0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1346e00
jmp 0x1346e02
movq 0x778(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1346e5d
movq %rax, %rdi
callq 0x678a0
jmp 0x1346e5f
leaq 0x2890(%rsp), %rax
movq %rax, 0x3500(%rsp)
movq 0x3500(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x768(%rsp)
leaq 0x2890(%rsp), %rax
movq %rax, 0x30f0(%rsp)
movq 0x30f0(%rsp), %rax
movq %rax, 0x5208(%rsp)
movq 0x5208(%rsp), %rax
movq %rax, 0x770(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1346f50
movq 0x770(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5204(%rsp) # imm = 0xFFFFFFFF
movl 0x5204(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5200(%rsp)
cmpl $0x1, 0x5200(%rsp)
jne 0x1346f50
movq 0x770(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1346f1e
movq 0x770(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1346f1c
jmp 0x1346f4e
movq 0x770(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54e0(%rsp)
cmpq $0x0, 0x54e0(%rsp)
je 0x1346f4c
movq 0x54e0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1346f4e
jmp 0x1346f50
movq 0x770(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1346fab
movq %rax, %rdi
callq 0x678a0
movq 0x768(%rsp), %rax
movq %rax, 0x28d8(%rsp)
movl $0x0, 0x288c(%rsp)
movl 0x288c(%rsp), %eax
cmpl 0x2ba0(%rsp), %eax
jge 0x1347151
movq 0x28e0(%rsp), %rax
movq %rax, 0x3628(%rsp)
movq 0x3628(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2840(%rsp)
movl $0x0, 0x283c(%rsp)
movl 0x283c(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jge 0x1347127
movl $0x0, 0x2838(%rsp)
movl 0x2838(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jge 0x134710f
movq 0x2930(%rsp), %rax
movq %rax, 0x3620(%rsp)
movq 0x3620(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x27c0(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x27c0(%rsp), %rsi
leaq 0x2840(%rsp), %rdx
callq 0x1453b90
vmovaps %zmm0, 0x2780(%rsp)
movq 0x28d8(%rsp), %rax
vmovaps 0x2780(%rsp), %zmm0
movq %rax, 0x3fb8(%rsp)
vmovaps %zmm0, 0x3f40(%rsp)
vmovaps 0x3f40(%rsp), %zmm0
movq 0x3fb8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x2930(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2930(%rsp)
movq 0x28d8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x28d8(%rsp)
movl 0x2838(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x2838(%rsp)
jmp 0x134702d
jmp 0x1347111
movl 0x283c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x283c(%rsp)
jmp 0x134700e
movq 0x28e0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x28e0(%rsp)
movl 0x288c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x288c(%rsp)
jmp 0x1346fc6
jmp 0x1347153
movl 0x293c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x293c(%rsp)
jmp 0x13466ac
movl $0x0, 0x2bd4(%rsp)
jmp 0x1354af0
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1347c0a
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x13471d4
cmpl $0x1, 0x2b6c(%rsp)
jne 0x13471d4
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x144e9d0
movl %eax, 0x2bd4(%rsp)
jmp 0x1354af0
movl $0x0, 0x277c(%rsp)
movl 0x277c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jge 0x1347bfa
movq 0x2bc8(%rsp), %rcx
movl 0x277c(%rsp), %eax
leaq 0x2728(%rsp), %rdx
movq %rdx, 0x2e90(%rsp)
movq %rcx, 0x2e88(%rsp)
movl %eax, 0x2e84(%rsp)
movq 0x2e88(%rsp), %rax
movq %rax, 0x760(%rsp)
movb $0x0, 0x2e83(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e84(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2728(%rsp), %r10
movq %r10, 0x46d8(%rsp)
movl %r9d, 0x46d4(%rsp)
movl %r8d, 0x46d0(%rsp)
movl %edi, 0x46cc(%rsp)
movq %rsi, 0x46c0(%rsp)
movq %rdx, 0x46b8(%rsp)
movl %ecx, 0x46b4(%rsp)
movq %rax, 0x46a8(%rsp)
movq 0x46d8(%rsp), %rcx
movq %rcx, 0x758(%rsp)
movq 0x46c0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x46b8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x46b4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x46a8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x46d4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x46d0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x46cc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d18(%rsp)
movl $0x10, 0x4d14(%rsp)
movq 0x4d18(%rsp), %rax
movslq 0x4d14(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d14(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x760(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2750(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13473af
movq 0x760(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2768(%rsp)
movb $0x1, 0x2e83(%rsp)
testb $0x1, 0x2e83(%rsp)
jne 0x13474f0
leaq 0x2728(%rsp), %rax
movq %rax, 0x3018(%rsp)
movq 0x3018(%rsp), %rax
movq %rax, 0x53b8(%rsp)
movq 0x53b8(%rsp), %rax
movq %rax, 0x750(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1347493
movq 0x750(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x53b4(%rsp) # imm = 0xFFFFFFFF
movl 0x53b4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x53b0(%rsp)
cmpl $0x1, 0x53b0(%rsp)
jne 0x1347493
movq 0x750(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1347461
movq 0x750(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x134745f
jmp 0x1347491
movq 0x750(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5408(%rsp)
cmpq $0x0, 0x5408(%rsp)
je 0x134748f
movq 0x5408(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1347491
jmp 0x1347493
movq 0x750(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13474ee
movq %rax, %rdi
callq 0x678a0
jmp 0x13474f0
leaq 0x2728(%rsp), %rax
movq %rax, 0x2fe0(%rsp)
movq 0x2fe0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x740(%rsp)
leaq 0x2728(%rsp), %rax
movq %rax, 0x30f8(%rsp)
movq 0x30f8(%rsp), %rax
movq %rax, 0x51f8(%rsp)
movq 0x51f8(%rsp), %rax
movq %rax, 0x748(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13475e1
movq 0x748(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x51f4(%rsp) # imm = 0xFFFFFFFF
movl 0x51f4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x51f0(%rsp)
cmpl $0x1, 0x51f0(%rsp)
jne 0x13475e1
movq 0x748(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13475af
movq 0x748(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13475ad
jmp 0x13475df
movq 0x748(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54e8(%rsp)
cmpq $0x0, 0x54e8(%rsp)
je 0x13475dd
movq 0x54e8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13475df
jmp 0x13475e1
movq 0x748(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134763c
movq %rax, %rdi
callq 0x678a0
movq 0x740(%rsp), %rax
movq %rax, 0x2770(%rsp)
movq 0x2bc0(%rsp), %rax
movq %rax, 0x2fd8(%rsp)
movq 0x2fd8(%rsp), %rax
movq (%rax), %rax
movl 0x277c(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x3618(%rsp)
movq 0x3618(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x26c0(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x277c(%rsp), %eax
leaq 0x2670(%rsp), %rdx
movq %rdx, 0x3420(%rsp)
movq %rcx, 0x3418(%rsp)
movl %eax, 0x3414(%rsp)
movq 0x3418(%rsp), %rax
movq %rax, 0x738(%rsp)
movb $0x0, 0x3413(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3414(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2670(%rsp), %r10
movq %r10, 0x42b0(%rsp)
movl %r9d, 0x42ac(%rsp)
movl %r8d, 0x42a8(%rsp)
movl %edi, 0x42a4(%rsp)
movq %rsi, 0x4298(%rsp)
movq %rdx, 0x4290(%rsp)
movl %ecx, 0x428c(%rsp)
movq %rax, 0x4280(%rsp)
movq 0x42b0(%rsp), %rcx
movq %rcx, 0x730(%rsp)
movq 0x4298(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4290(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x428c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4280(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x42ac(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x42a8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x42a4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e48(%rsp)
movl $0x10, 0x4e44(%rsp)
movq 0x4e48(%rsp), %rax
movslq 0x4e44(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e44(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x738(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2698(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1347858
movq 0x738(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x26b0(%rsp)
movb $0x1, 0x3413(%rsp)
testb $0x1, 0x3413(%rsp)
jne 0x1347999
leaq 0x2670(%rsp), %rax
movq %rax, 0x3428(%rsp)
movq 0x3428(%rsp), %rax
movq %rax, 0x4e98(%rsp)
movq 0x4e98(%rsp), %rax
movq %rax, 0x728(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134793c
movq 0x728(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4e94(%rsp) # imm = 0xFFFFFFFF
movl 0x4e94(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4e90(%rsp)
cmpl $0x1, 0x4e90(%rsp)
jne 0x134793c
movq 0x728(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x134790a
movq 0x728(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1347908
jmp 0x134793a
movq 0x728(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5698(%rsp)
cmpq $0x0, 0x5698(%rsp)
je 0x1347938
movq 0x5698(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x134793a
jmp 0x134793c
movq 0x728(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1347997
movq %rax, %rdi
callq 0x678a0
jmp 0x1347999
leaq 0x2670(%rsp), %rax
movq %rax, 0x34f8(%rsp)
movq 0x34f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x718(%rsp)
leaq 0x2670(%rsp), %rax
movq %rax, 0x3100(%rsp)
movq 0x3100(%rsp), %rax
movq %rax, 0x51e8(%rsp)
movq 0x51e8(%rsp), %rax
movq %rax, 0x720(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1347a8a
movq 0x720(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x51e4(%rsp) # imm = 0xFFFFFFFF
movl 0x51e4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x51e0(%rsp)
cmpl $0x1, 0x51e0(%rsp)
jne 0x1347a8a
movq 0x720(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1347a58
movq 0x720(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1347a56
jmp 0x1347a88
movq 0x720(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54f0(%rsp)
cmpq $0x0, 0x54f0(%rsp)
je 0x1347a86
movq 0x54f0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1347a88
jmp 0x1347a8a
movq 0x720(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1347ae5
movq %rax, %rdi
callq 0x678a0
movq 0x718(%rsp), %rax
movq %rax, 0x26b8(%rsp)
movl $0x0, 0x266c(%rsp)
movl 0x266c(%rsp), %eax
cmpl 0x2b98(%rsp), %eax
jge 0x1347be2
movq 0x2770(%rsp), %rax
movq %rax, 0x3610(%rsp)
movq 0x3610(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2600(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x2600(%rsp), %rsi
leaq 0x26c0(%rsp), %rdx
callq 0x1453b90
vmovaps %zmm0, 0x25c0(%rsp)
movq 0x26b8(%rsp), %rax
vmovaps 0x25c0(%rsp), %zmm0
movq %rax, 0x3f38(%rsp)
vmovaps %zmm0, 0x3ec0(%rsp)
vmovaps 0x3ec0(%rsp), %zmm0
movq 0x3f38(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x2770(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2770(%rsp)
movq 0x26b8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x26b8(%rsp)
movl 0x266c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x266c(%rsp)
jmp 0x1347b00
jmp 0x1347be4
movl 0x277c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x277c(%rsp)
jmp 0x13471df
movl $0x0, 0x2bd4(%rsp)
jmp 0x1354af0
jmp 0x1354ae5
movq 0x2bc8(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1351624
movq 0x2bc0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1348be8
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b80(%rsp), %ecx
movl 0x2b7c(%rsp), %r8d
movq 0x2b70(%rsp), %r9
movl 0x2b6c(%rsp), %r10d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c60(%rsp)
movq 0x2c60(%rsp), %rcx
movq %rcx, 0x708(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x717(%rsp)
je 0x1347ce3
movq 0x708(%rsp), %rax
movq %rax, 0x4180(%rsp)
movq 0x4180(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x717(%rsp)
movb 0x717(%rsp), %al
testb $0x1, %al
jne 0x1347cf0
jmp 0x1347d00
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1354af0
movl $0x0, 0x25bc(%rsp)
movl 0x25bc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x1348bd8
movq 0x2bc8(%rsp), %rcx
movl 0x25bc(%rsp), %eax
leaq 0x2568(%rsp), %rdx
movq %rdx, 0x2e78(%rsp)
movq %rcx, 0x2e70(%rsp)
movl %eax, 0x2e6c(%rsp)
movq 0x2e70(%rsp), %rax
movq %rax, 0x700(%rsp)
movb $0x0, 0x2e6b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e6c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2568(%rsp), %r10
movq %r10, 0x4710(%rsp)
movl %r9d, 0x470c(%rsp)
movl %r8d, 0x4708(%rsp)
movl %edi, 0x4704(%rsp)
movq %rsi, 0x46f8(%rsp)
movq %rdx, 0x46f0(%rsp)
movl %ecx, 0x46ec(%rsp)
movq %rax, 0x46e0(%rsp)
movq 0x4710(%rsp), %rcx
movq %rcx, 0x6f8(%rsp)
movq 0x46f8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x46f0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x46ec(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x46e0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x470c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4708(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4704(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d08(%rsp)
movl $0x10, 0x4d04(%rsp)
movq 0x4d08(%rsp), %rax
movslq 0x4d04(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d04(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x700(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2590(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1347edb
movq 0x700(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x25a8(%rsp)
movb $0x1, 0x2e6b(%rsp)
testb $0x1, 0x2e6b(%rsp)
jne 0x134801c
leaq 0x2568(%rsp), %rax
movq %rax, 0x3020(%rsp)
movq 0x3020(%rsp), %rax
movq %rax, 0x53a8(%rsp)
movq 0x53a8(%rsp), %rax
movq %rax, 0x6f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1347fbf
movq 0x6f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x53a4(%rsp) # imm = 0xFFFFFFFF
movl 0x53a4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x53a0(%rsp)
cmpl $0x1, 0x53a0(%rsp)
jne 0x1347fbf
movq 0x6f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1347f8d
movq 0x6f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1347f8b
jmp 0x1347fbd
movq 0x6f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5410(%rsp)
cmpq $0x0, 0x5410(%rsp)
je 0x1347fbb
movq 0x5410(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1347fbd
jmp 0x1347fbf
movq 0x6f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134801a
movq %rax, %rdi
callq 0x678a0
jmp 0x134801c
leaq 0x2568(%rsp), %rax
movq %rax, 0x2fd0(%rsp)
movq 0x2fd0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6e0(%rsp)
leaq 0x2568(%rsp), %rax
movq %rax, 0x3108(%rsp)
movq 0x3108(%rsp), %rax
movq %rax, 0x51d8(%rsp)
movq 0x51d8(%rsp), %rax
movq %rax, 0x6e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134810d
movq 0x6e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x51d4(%rsp) # imm = 0xFFFFFFFF
movl 0x51d4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x51d0(%rsp)
cmpl $0x1, 0x51d0(%rsp)
jne 0x134810d
movq 0x6e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13480db
movq 0x6e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13480d9
jmp 0x134810b
movq 0x6e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54f8(%rsp)
cmpq $0x0, 0x54f8(%rsp)
je 0x1348109
movq 0x54f8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x134810b
jmp 0x134810d
movq 0x6e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1348168
movq %rax, %rdi
callq 0x678a0
movq 0x6e0(%rsp), %rax
movq %rax, 0x25b0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x25bc(%rsp), %eax
leaq 0x2518(%rsp), %rdx
movq %rdx, 0x2e60(%rsp)
movq %rcx, 0x2e58(%rsp)
movl %eax, 0x2e54(%rsp)
movq 0x2e58(%rsp), %rax
movq %rax, 0x6d8(%rsp)
movb $0x0, 0x2e53(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e54(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2518(%rsp), %r10
movq %r10, 0x4748(%rsp)
movl %r9d, 0x4744(%rsp)
movl %r8d, 0x4740(%rsp)
movl %edi, 0x473c(%rsp)
movq %rsi, 0x4730(%rsp)
movq %rdx, 0x4728(%rsp)
movl %ecx, 0x4724(%rsp)
movq %rax, 0x4718(%rsp)
movq 0x4748(%rsp), %rcx
movq %rcx, 0x6d0(%rsp)
movq 0x4730(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4728(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4724(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4718(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4744(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4740(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x473c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4cf8(%rsp)
movl $0x10, 0x4cf4(%rsp)
movq 0x4cf8(%rsp), %rax
movslq 0x4cf4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4cf4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6d8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2540(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1348334
movq 0x6d8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2558(%rsp)
movb $0x1, 0x2e53(%rsp)
testb $0x1, 0x2e53(%rsp)
jne 0x1348475
leaq 0x2518(%rsp), %rax
movq %rax, 0x3028(%rsp)
movq 0x3028(%rsp), %rax
movq %rax, 0x5398(%rsp)
movq 0x5398(%rsp), %rax
movq %rax, 0x6c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1348418
movq 0x6c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5394(%rsp) # imm = 0xFFFFFFFF
movl 0x5394(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5390(%rsp)
cmpl $0x1, 0x5390(%rsp)
jne 0x1348418
movq 0x6c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13483e6
movq 0x6c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13483e4
jmp 0x1348416
movq 0x6c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5418(%rsp)
cmpq $0x0, 0x5418(%rsp)
je 0x1348414
movq 0x5418(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1348416
jmp 0x1348418
movq 0x6c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1348473
movq %rax, %rdi
callq 0x678a0
jmp 0x1348475
leaq 0x2518(%rsp), %rax
movq %rax, 0x2fc8(%rsp)
movq 0x2fc8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6b8(%rsp)
leaq 0x2518(%rsp), %rax
movq %rax, 0x3110(%rsp)
movq 0x3110(%rsp), %rax
movq %rax, 0x51c8(%rsp)
movq 0x51c8(%rsp), %rax
movq %rax, 0x6c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1348566
movq 0x6c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x51c4(%rsp) # imm = 0xFFFFFFFF
movl 0x51c4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x51c0(%rsp)
cmpl $0x1, 0x51c0(%rsp)
jne 0x1348566
movq 0x6c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1348534
movq 0x6c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1348532
jmp 0x1348564
movq 0x6c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5500(%rsp)
cmpq $0x0, 0x5500(%rsp)
je 0x1348562
movq 0x5500(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1348564
jmp 0x1348566
movq 0x6c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13485c1
movq %rax, %rdi
callq 0x678a0
movq 0x6b8(%rsp), %rax
movq %rax, 0x2560(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x25bc(%rsp), %eax
leaq 0x24c8(%rsp), %rdx
movq %rdx, 0x3400(%rsp)
movq %rcx, 0x33f8(%rsp)
movl %eax, 0x33f4(%rsp)
movq 0x33f8(%rsp), %rax
movq %rax, 0x6b0(%rsp)
movb $0x0, 0x33f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x33f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x24c8(%rsp), %r10
movq %r10, 0x42e8(%rsp)
movl %r9d, 0x42e4(%rsp)
movl %r8d, 0x42e0(%rsp)
movl %edi, 0x42dc(%rsp)
movq %rsi, 0x42d0(%rsp)
movq %rdx, 0x42c8(%rsp)
movl %ecx, 0x42c4(%rsp)
movq %rax, 0x42b8(%rsp)
movq 0x42e8(%rsp), %rcx
movq %rcx, 0x6a8(%rsp)
movq 0x42d0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x42c8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x42c4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x42b8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x42e4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x42e0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x42dc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e38(%rsp)
movl $0x10, 0x4e34(%rsp)
movq 0x4e38(%rsp), %rax
movslq 0x4e34(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e34(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6b0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x24f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x134878d
movq 0x6b0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2508(%rsp)
movb $0x1, 0x33f3(%rsp)
testb $0x1, 0x33f3(%rsp)
jne 0x13488ce
leaq 0x24c8(%rsp), %rax
movq %rax, 0x3408(%rsp)
movq 0x3408(%rsp), %rax
movq %rax, 0x4ea8(%rsp)
movq 0x4ea8(%rsp), %rax
movq %rax, 0x6a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1348871
movq 0x6a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4ea4(%rsp) # imm = 0xFFFFFFFF
movl 0x4ea4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4ea0(%rsp)
cmpl $0x1, 0x4ea0(%rsp)
jne 0x1348871
movq 0x6a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x134883f
movq 0x6a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x134883d
jmp 0x134886f
movq 0x6a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5690(%rsp)
cmpq $0x0, 0x5690(%rsp)
je 0x134886d
movq 0x5690(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x134886f
jmp 0x1348871
movq 0x6a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13488cc
movq %rax, %rdi
callq 0x678a0
jmp 0x13488ce
leaq 0x24c8(%rsp), %rax
movq %rax, 0x34f0(%rsp)
movq 0x34f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x690(%rsp)
leaq 0x24c8(%rsp), %rax
movq %rax, 0x3118(%rsp)
movq 0x3118(%rsp), %rax
movq %rax, 0x51b8(%rsp)
movq 0x51b8(%rsp), %rax
movq %rax, 0x698(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13489bf
movq 0x698(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x51b4(%rsp) # imm = 0xFFFFFFFF
movl 0x51b4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x51b0(%rsp)
cmpl $0x1, 0x51b0(%rsp)
jne 0x13489bf
movq 0x698(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x134898d
movq 0x698(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x134898b
jmp 0x13489bd
movq 0x698(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5508(%rsp)
cmpq $0x0, 0x5508(%rsp)
je 0x13489bb
movq 0x5508(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13489bd
jmp 0x13489bf
movq 0x698(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1348a1a
movq %rax, %rdi
callq 0x678a0
movq 0x690(%rsp), %rax
movq %rax, 0x2510(%rsp)
movl $0x0, 0x24c4(%rsp)
movl 0x24c4(%rsp), %eax
cmpl 0x2b80(%rsp), %eax
jge 0x1348bc0
movl $0x0, 0x24c0(%rsp)
movl 0x24c0(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jge 0x1348ba8
movq 0x25b0(%rsp), %rax
movq %rax, 0x3608(%rsp)
movq 0x3608(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2480(%rsp)
movl $0x0, 0x247c(%rsp)
movl 0x247c(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jge 0x1348b7e
movq 0x2560(%rsp), %rax
movq %rax, 0x3600(%rsp)
movq 0x3600(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2400(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x2480(%rsp), %rsi
leaq 0x2400(%rsp), %rdx
callq 0x1453b90
vmovaps %zmm0, 0x23c0(%rsp)
movq 0x2510(%rsp), %rax
vmovaps 0x23c0(%rsp), %zmm0
movq %rax, 0x3eb8(%rsp)
vmovaps %zmm0, 0x3e40(%rsp)
vmovaps 0x3e40(%rsp), %zmm0
movq 0x3eb8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x2560(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2560(%rsp)
movq 0x2510(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2510(%rsp)
movl 0x247c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x247c(%rsp)
jmp 0x1348a9c
movq 0x25b0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x25b0(%rsp)
movl 0x24c0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x24c0(%rsp)
jmp 0x1348a54
jmp 0x1348baa
movl 0x24c4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x24c4(%rsp)
jmp 0x1348a35
jmp 0x1348bc2
movl 0x25bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x25bc(%rsp)
jmp 0x1347d0b
movl $0x0, 0x2bd4(%rsp)
jmp 0x1354af0
movq 0x2bc0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1350033
cmpl $0x1, 0x2b88(%rsp)
jne 0x1349b52
cmpl $0x1, 0x2b84(%rsp)
jne 0x1349b52
movl 0x2b7c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jne 0x1349b52
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movl 0x2b9c(%rsp), %ecx
movq 0x2b90(%rsp), %r8
movl 0x2b8c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c58(%rsp)
movq 0x2c58(%rsp), %rcx
movq %rcx, 0x680(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x68f(%rsp)
je 0x1348ccd
movq 0x680(%rsp), %rax
movq %rax, 0x4188(%rsp)
movq 0x4188(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x68f(%rsp)
movb 0x68f(%rsp), %al
testb $0x1, %al
jne 0x1348cda
jmp 0x1348cea
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1354af0
movl $0x0, 0x23bc(%rsp)
movl 0x23bc(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jge 0x1349b42
movq 0x2bc8(%rsp), %rcx
movl 0x23bc(%rsp), %eax
leaq 0x2368(%rsp), %rdx
movq %rdx, 0x2e48(%rsp)
movq %rcx, 0x2e40(%rsp)
movl %eax, 0x2e3c(%rsp)
movq 0x2e40(%rsp), %rax
movq %rax, 0x678(%rsp)
movb $0x0, 0x2e3b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e3c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2368(%rsp), %r10
movq %r10, 0x4780(%rsp)
movl %r9d, 0x477c(%rsp)
movl %r8d, 0x4778(%rsp)
movl %edi, 0x4774(%rsp)
movq %rsi, 0x4768(%rsp)
movq %rdx, 0x4760(%rsp)
movl %ecx, 0x475c(%rsp)
movq %rax, 0x4750(%rsp)
movq 0x4780(%rsp), %rcx
movq %rcx, 0x670(%rsp)
movq 0x4768(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4760(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x475c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4750(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x477c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4778(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4774(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4ce8(%rsp)
movl $0x10, 0x4ce4(%rsp)
movq 0x4ce8(%rsp), %rax
movslq 0x4ce4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4ce4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x678(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2390(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1348ec5
movq 0x678(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x23a8(%rsp)
movb $0x1, 0x2e3b(%rsp)
testb $0x1, 0x2e3b(%rsp)
jne 0x1349006
leaq 0x2368(%rsp), %rax
movq %rax, 0x3030(%rsp)
movq 0x3030(%rsp), %rax
movq %rax, 0x5388(%rsp)
movq 0x5388(%rsp), %rax
movq %rax, 0x668(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1348fa9
movq 0x668(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5384(%rsp) # imm = 0xFFFFFFFF
movl 0x5384(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5380(%rsp)
cmpl $0x1, 0x5380(%rsp)
jne 0x1348fa9
movq 0x668(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1348f77
movq 0x668(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1348f75
jmp 0x1348fa7
movq 0x668(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5420(%rsp)
cmpq $0x0, 0x5420(%rsp)
je 0x1348fa5
movq 0x5420(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1348fa7
jmp 0x1348fa9
movq 0x668(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1349004
movq %rax, %rdi
callq 0x678a0
jmp 0x1349006
leaq 0x2368(%rsp), %rax
movq %rax, 0x2fc0(%rsp)
movq 0x2fc0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x658(%rsp)
leaq 0x2368(%rsp), %rax
movq %rax, 0x3120(%rsp)
movq 0x3120(%rsp), %rax
movq %rax, 0x51a8(%rsp)
movq 0x51a8(%rsp), %rax
movq %rax, 0x660(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13490f7
movq 0x660(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x51a4(%rsp) # imm = 0xFFFFFFFF
movl 0x51a4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x51a0(%rsp)
cmpl $0x1, 0x51a0(%rsp)
jne 0x13490f7
movq 0x660(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13490c5
movq 0x660(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13490c3
jmp 0x13490f5
movq 0x660(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5510(%rsp)
cmpq $0x0, 0x5510(%rsp)
je 0x13490f3
movq 0x5510(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13490f5
jmp 0x13490f7
movq 0x660(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1349152
movq %rax, %rdi
callq 0x678a0
movq 0x658(%rsp), %rax
movq %rax, 0x23b0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x23bc(%rsp), %eax
leaq 0x2318(%rsp), %rdx
movq %rdx, 0x2e30(%rsp)
movq %rcx, 0x2e28(%rsp)
movl %eax, 0x2e24(%rsp)
movq 0x2e28(%rsp), %rax
movq %rax, 0x650(%rsp)
movb $0x0, 0x2e23(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e24(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2318(%rsp), %r10
movq %r10, 0x47b8(%rsp)
movl %r9d, 0x47b4(%rsp)
movl %r8d, 0x47b0(%rsp)
movl %edi, 0x47ac(%rsp)
movq %rsi, 0x47a0(%rsp)
movq %rdx, 0x4798(%rsp)
movl %ecx, 0x4794(%rsp)
movq %rax, 0x4788(%rsp)
movq 0x47b8(%rsp), %rcx
movq %rcx, 0x648(%rsp)
movq 0x47a0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4798(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4794(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4788(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x47b4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x47b0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x47ac(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4cd8(%rsp)
movl $0x10, 0x4cd4(%rsp)
movq 0x4cd8(%rsp), %rax
movslq 0x4cd4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4cd4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x650(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2340(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x134931e
movq 0x650(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2358(%rsp)
movb $0x1, 0x2e23(%rsp)
testb $0x1, 0x2e23(%rsp)
jne 0x134945f
leaq 0x2318(%rsp), %rax
movq %rax, 0x3038(%rsp)
movq 0x3038(%rsp), %rax
movq %rax, 0x5378(%rsp)
movq 0x5378(%rsp), %rax
movq %rax, 0x640(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1349402
movq 0x640(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5374(%rsp) # imm = 0xFFFFFFFF
movl 0x5374(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5370(%rsp)
cmpl $0x1, 0x5370(%rsp)
jne 0x1349402
movq 0x640(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13493d0
movq 0x640(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13493ce
jmp 0x1349400
movq 0x640(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5428(%rsp)
cmpq $0x0, 0x5428(%rsp)
je 0x13493fe
movq 0x5428(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1349400
jmp 0x1349402
movq 0x640(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134945d
movq %rax, %rdi
callq 0x678a0
jmp 0x134945f
leaq 0x2318(%rsp), %rax
movq %rax, 0x2fb8(%rsp)
movq 0x2fb8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x630(%rsp)
leaq 0x2318(%rsp), %rax
movq %rax, 0x3128(%rsp)
movq 0x3128(%rsp), %rax
movq %rax, 0x5198(%rsp)
movq 0x5198(%rsp), %rax
movq %rax, 0x638(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1349550
movq 0x638(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5194(%rsp) # imm = 0xFFFFFFFF
movl 0x5194(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5190(%rsp)
cmpl $0x1, 0x5190(%rsp)
jne 0x1349550
movq 0x638(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x134951e
movq 0x638(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x134951c
jmp 0x134954e
movq 0x638(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5518(%rsp)
cmpq $0x0, 0x5518(%rsp)
je 0x134954c
movq 0x5518(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x134954e
jmp 0x1349550
movq 0x638(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13495ab
movq %rax, %rdi
callq 0x678a0
movq 0x630(%rsp), %rax
movq %rax, 0x2360(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x23bc(%rsp), %eax
leaq 0x22c8(%rsp), %rdx
movq %rdx, 0x33e0(%rsp)
movq %rcx, 0x33d8(%rsp)
movl %eax, 0x33d4(%rsp)
movq 0x33d8(%rsp), %rax
movq %rax, 0x628(%rsp)
movb $0x0, 0x33d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x33d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x22c8(%rsp), %r10
movq %r10, 0x4320(%rsp)
movl %r9d, 0x431c(%rsp)
movl %r8d, 0x4318(%rsp)
movl %edi, 0x4314(%rsp)
movq %rsi, 0x4308(%rsp)
movq %rdx, 0x4300(%rsp)
movl %ecx, 0x42fc(%rsp)
movq %rax, 0x42f0(%rsp)
movq 0x4320(%rsp), %rcx
movq %rcx, 0x620(%rsp)
movq 0x4308(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4300(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x42fc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x42f0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x431c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4318(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4314(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e28(%rsp)
movl $0x10, 0x4e24(%rsp)
movq 0x4e28(%rsp), %rax
movslq 0x4e24(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e24(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x628(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x22f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1349777
movq 0x628(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2308(%rsp)
movb $0x1, 0x33d3(%rsp)
testb $0x1, 0x33d3(%rsp)
jne 0x13498b8
leaq 0x22c8(%rsp), %rax
movq %rax, 0x33e8(%rsp)
movq 0x33e8(%rsp), %rax
movq %rax, 0x4eb8(%rsp)
movq 0x4eb8(%rsp), %rax
movq %rax, 0x618(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134985b
movq 0x618(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4eb4(%rsp) # imm = 0xFFFFFFFF
movl 0x4eb4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4eb0(%rsp)
cmpl $0x1, 0x4eb0(%rsp)
jne 0x134985b
movq 0x618(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1349829
movq 0x618(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1349827
jmp 0x1349859
movq 0x618(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5688(%rsp)
cmpq $0x0, 0x5688(%rsp)
je 0x1349857
movq 0x5688(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1349859
jmp 0x134985b
movq 0x618(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13498b6
movq %rax, %rdi
callq 0x678a0
jmp 0x13498b8
leaq 0x22c8(%rsp), %rax
movq %rax, 0x34e8(%rsp)
movq 0x34e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x608(%rsp)
leaq 0x22c8(%rsp), %rax
movq %rax, 0x3130(%rsp)
movq 0x3130(%rsp), %rax
movq %rax, 0x5188(%rsp)
movq 0x5188(%rsp), %rax
movq %rax, 0x610(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13499a9
movq 0x610(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5184(%rsp) # imm = 0xFFFFFFFF
movl 0x5184(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5180(%rsp)
cmpl $0x1, 0x5180(%rsp)
jne 0x13499a9
movq 0x610(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1349977
movq 0x610(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1349975
jmp 0x13499a7
movq 0x610(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5520(%rsp)
cmpq $0x0, 0x5520(%rsp)
je 0x13499a5
movq 0x5520(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13499a7
jmp 0x13499a9
movq 0x610(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1349a04
movq %rax, %rdi
callq 0x678a0
movq 0x608(%rsp), %rax
movq %rax, 0x2310(%rsp)
movq 0x2360(%rsp), %rax
movq %rax, 0x35f8(%rsp)
movq 0x35f8(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2280(%rsp)
movl $0x0, 0x227c(%rsp)
movl 0x227c(%rsp), %eax
cmpl 0x2b98(%rsp), %eax
jge 0x1349b2a
movq 0x23b0(%rsp), %rax
movq %rax, 0x35f0(%rsp)
movq 0x35f0(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2200(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x2200(%rsp), %rsi
leaq 0x2280(%rsp), %rdx
callq 0x1453b90
vmovaps %zmm0, 0x21c0(%rsp)
movq 0x2310(%rsp), %rax
vmovaps 0x21c0(%rsp), %zmm0
movq %rax, 0x3e38(%rsp)
vmovaps %zmm0, 0x3dc0(%rsp)
vmovaps 0x3dc0(%rsp), %zmm0
movq 0x3e38(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x23b0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x23b0(%rsp)
movq 0x2310(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2310(%rsp)
movl 0x227c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x227c(%rsp)
jmp 0x1349a48
jmp 0x1349b2c
movl 0x23bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x23bc(%rsp)
jmp 0x1348cf5
movl $0x0, 0x2bd4(%rsp)
jmp 0x1354af0
movl 0x2b88(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jne 0x134a6b4
movl 0x2b84(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jne 0x134a6b4
cmpl $0x1, 0x2b7c(%rsp)
jne 0x134a6b4
cmpl $0x1, 0x2b6c(%rsp)
jne 0x134a6b4
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movl 0x2b9c(%rsp), %ecx
movq 0x2b90(%rsp), %r8
movl 0x2b8c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c50(%rsp)
movq 0x2c50(%rsp), %rcx
movq %rcx, 0x5f8(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x607(%rsp)
je 0x1349c39
movq 0x5f8(%rsp), %rax
movq %rax, 0x4190(%rsp)
movq 0x4190(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x607(%rsp)
movb 0x607(%rsp), %al
testb $0x1, %al
jne 0x1349c46
jmp 0x1349c56
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1354af0
movl $0x0, 0x21bc(%rsp)
movl 0x21bc(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jge 0x134a6a4
movq 0x2bc8(%rsp), %rcx
movl 0x21bc(%rsp), %eax
leaq 0x2168(%rsp), %rdx
movq %rdx, 0x2e18(%rsp)
movq %rcx, 0x2e10(%rsp)
movl %eax, 0x2e0c(%rsp)
movq 0x2e10(%rsp), %rax
movq %rax, 0x5f0(%rsp)
movb $0x0, 0x2e0b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e0c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2168(%rsp), %r10
movq %r10, 0x47f0(%rsp)
movl %r9d, 0x47ec(%rsp)
movl %r8d, 0x47e8(%rsp)
movl %edi, 0x47e4(%rsp)
movq %rsi, 0x47d8(%rsp)
movq %rdx, 0x47d0(%rsp)
movl %ecx, 0x47cc(%rsp)
movq %rax, 0x47c0(%rsp)
movq 0x47f0(%rsp), %rcx
movq %rcx, 0x5e8(%rsp)
movq 0x47d8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x47d0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x47cc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x47c0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x47ec(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x47e8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x47e4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4cc8(%rsp)
movl $0x10, 0x4cc4(%rsp)
movq 0x4cc8(%rsp), %rax
movslq 0x4cc4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4cc4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5f0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2190(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1349e31
movq 0x5f0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x21a8(%rsp)
movb $0x1, 0x2e0b(%rsp)
testb $0x1, 0x2e0b(%rsp)
jne 0x1349f72
leaq 0x2168(%rsp), %rax
movq %rax, 0x3040(%rsp)
movq 0x3040(%rsp), %rax
movq %rax, 0x5368(%rsp)
movq 0x5368(%rsp), %rax
movq %rax, 0x5e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1349f15
movq 0x5e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5364(%rsp) # imm = 0xFFFFFFFF
movl 0x5364(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5360(%rsp)
cmpl $0x1, 0x5360(%rsp)
jne 0x1349f15
movq 0x5e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1349ee3
movq 0x5e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1349ee1
jmp 0x1349f13
movq 0x5e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5430(%rsp)
cmpq $0x0, 0x5430(%rsp)
je 0x1349f11
movq 0x5430(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1349f13
jmp 0x1349f15
movq 0x5e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1349f70
movq %rax, %rdi
callq 0x678a0
jmp 0x1349f72
leaq 0x2168(%rsp), %rax
movq %rax, 0x2fb0(%rsp)
movq 0x2fb0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5d0(%rsp)
leaq 0x2168(%rsp), %rax
movq %rax, 0x3138(%rsp)
movq 0x3138(%rsp), %rax
movq %rax, 0x5178(%rsp)
movq 0x5178(%rsp), %rax
movq %rax, 0x5d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134a063
movq 0x5d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5174(%rsp) # imm = 0xFFFFFFFF
movl 0x5174(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5170(%rsp)
cmpl $0x1, 0x5170(%rsp)
jne 0x134a063
movq 0x5d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x134a031
movq 0x5d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x134a02f
jmp 0x134a061
movq 0x5d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5528(%rsp)
cmpq $0x0, 0x5528(%rsp)
je 0x134a05f
movq 0x5528(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x134a061
jmp 0x134a063
movq 0x5d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134a0be
movq %rax, %rdi
callq 0x678a0
movq 0x5d0(%rsp), %rax
movq %rax, 0x21b0(%rsp)
movq 0x2bc0(%rsp), %rax
movq %rax, 0x2fa8(%rsp)
movq 0x2fa8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2160(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x21bc(%rsp), %eax
leaq 0x2110(%rsp), %rdx
movq %rdx, 0x33c0(%rsp)
movq %rcx, 0x33b8(%rsp)
movl %eax, 0x33b4(%rsp)
movq 0x33b8(%rsp), %rax
movq %rax, 0x5c8(%rsp)
movb $0x0, 0x33b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x33b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2110(%rsp), %r10
movq %r10, 0x4358(%rsp)
movl %r9d, 0x4354(%rsp)
movl %r8d, 0x4350(%rsp)
movl %edi, 0x434c(%rsp)
movq %rsi, 0x4340(%rsp)
movq %rdx, 0x4338(%rsp)
movl %ecx, 0x4334(%rsp)
movq %rax, 0x4328(%rsp)
movq 0x4358(%rsp), %rcx
movq %rcx, 0x5c0(%rsp)
movq 0x4340(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4338(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4334(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4328(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4354(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4350(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x434c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e18(%rsp)
movl $0x10, 0x4e14(%rsp)
movq 0x4e18(%rsp), %rax
movslq 0x4e14(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e14(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5c8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2138(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x134a2ad
movq 0x5c8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2150(%rsp)
movb $0x1, 0x33b3(%rsp)
testb $0x1, 0x33b3(%rsp)
jne 0x134a3ee
leaq 0x2110(%rsp), %rax
movq %rax, 0x33c8(%rsp)
movq 0x33c8(%rsp), %rax
movq %rax, 0x4ec8(%rsp)
movq 0x4ec8(%rsp), %rax
movq %rax, 0x5b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134a391
movq 0x5b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4ec4(%rsp) # imm = 0xFFFFFFFF
movl 0x4ec4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4ec0(%rsp)
cmpl $0x1, 0x4ec0(%rsp)
jne 0x134a391
movq 0x5b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x134a35f
movq 0x5b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x134a35d
jmp 0x134a38f
movq 0x5b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5680(%rsp)
cmpq $0x0, 0x5680(%rsp)
je 0x134a38d
movq 0x5680(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x134a38f
jmp 0x134a391
movq 0x5b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134a3ec
movq %rax, %rdi
callq 0x678a0
jmp 0x134a3ee
leaq 0x2110(%rsp), %rax
movq %rax, 0x34e0(%rsp)
movq 0x34e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5a8(%rsp)
leaq 0x2110(%rsp), %rax
movq %rax, 0x3140(%rsp)
movq 0x3140(%rsp), %rax
movq %rax, 0x5168(%rsp)
movq 0x5168(%rsp), %rax
movq %rax, 0x5b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134a4df
movq 0x5b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5164(%rsp) # imm = 0xFFFFFFFF
movl 0x5164(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5160(%rsp)
cmpl $0x1, 0x5160(%rsp)
jne 0x134a4df
movq 0x5b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x134a4ad
movq 0x5b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x134a4ab
jmp 0x134a4dd
movq 0x5b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5530(%rsp)
cmpq $0x0, 0x5530(%rsp)
je 0x134a4db
movq 0x5530(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x134a4dd
jmp 0x134a4df
movq 0x5b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134a53a
movq %rax, %rdi
callq 0x678a0
movq 0x5a8(%rsp), %rax
movq %rax, 0x2158(%rsp)
movl $0x0, 0x210c(%rsp)
movl 0x210c(%rsp), %eax
cmpl 0x2b98(%rsp), %eax
jge 0x134a68c
movq 0x21b0(%rsp), %rax
movq %rax, 0x35e8(%rsp)
movq 0x35e8(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x20c0(%rsp)
movq 0x2160(%rsp), %rax
vmovss (%rax), %xmm0
vmovss %xmm0, 0x4174(%rsp)
vbroadcastss 0x4174(%rsp), %zmm0
vmovaps %zmm0, 0x4100(%rsp)
vmovaps 0x4100(%rsp), %zmm0
vmovaps %zmm0, 0x2080(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x20c0(%rsp), %rsi
leaq 0x2080(%rsp), %rdx
callq 0x1453b90
vmovaps %zmm0, 0x2040(%rsp)
movq 0x2158(%rsp), %rax
vmovaps 0x2040(%rsp), %zmm0
movq %rax, 0x3db8(%rsp)
vmovaps %zmm0, 0x3d40(%rsp)
vmovaps 0x3d40(%rsp), %zmm0
movq 0x3db8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x21b0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x21b0(%rsp)
movq 0x2160(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x2160(%rsp)
movq 0x2158(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2158(%rsp)
movl 0x210c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x210c(%rsp)
jmp 0x134a555
jmp 0x134a68e
movl 0x21bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x21bc(%rsp)
jmp 0x1349c61
movl $0x0, 0x2bd4(%rsp)
jmp 0x1354af0
cmpl $0x1, 0x2ba8(%rsp)
jne 0x134b600
cmpl $0x1, 0x2ba4(%rsp)
jne 0x134b600
movl 0x2b7c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jne 0x134b600
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b7c(%rsp), %ecx
movq 0x2b70(%rsp), %r8
movl 0x2b6c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c48(%rsp)
movq 0x2c48(%rsp), %rcx
movq %rcx, 0x598(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x5a7(%rsp)
je 0x134a787
movq 0x598(%rsp), %rax
movq %rax, 0x4198(%rsp)
movq 0x4198(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x5a7(%rsp)
movb 0x5a7(%rsp), %al
testb $0x1, %al
jne 0x134a794
jmp 0x134a7a4
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1354af0
movl $0x0, 0x203c(%rsp)
movl 0x203c(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x134b5f0
movq 0x2bc8(%rsp), %rcx
movl 0x203c(%rsp), %eax
leaq 0x1fe8(%rsp), %rdx
movq %rdx, 0x2e00(%rsp)
movq %rcx, 0x2df8(%rsp)
movl %eax, 0x2df4(%rsp)
movq 0x2df8(%rsp), %rax
movq %rax, 0x590(%rsp)
movb $0x0, 0x2df3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2df4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1fe8(%rsp), %r10
movq %r10, 0x4828(%rsp)
movl %r9d, 0x4824(%rsp)
movl %r8d, 0x4820(%rsp)
movl %edi, 0x481c(%rsp)
movq %rsi, 0x4810(%rsp)
movq %rdx, 0x4808(%rsp)
movl %ecx, 0x4804(%rsp)
movq %rax, 0x47f8(%rsp)
movq 0x4828(%rsp), %rcx
movq %rcx, 0x588(%rsp)
movq 0x4810(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4808(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4804(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x47f8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4824(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4820(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x481c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4cb8(%rsp)
movl $0x10, 0x4cb4(%rsp)
movq 0x4cb8(%rsp), %rax
movslq 0x4cb4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4cb4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x590(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2010(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x134a97f
movq 0x590(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2028(%rsp)
movb $0x1, 0x2df3(%rsp)
testb $0x1, 0x2df3(%rsp)
jne 0x134aac0
leaq 0x1fe8(%rsp), %rax
movq %rax, 0x3048(%rsp)
movq 0x3048(%rsp), %rax
movq %rax, 0x5358(%rsp)
movq 0x5358(%rsp), %rax
movq %rax, 0x580(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134aa63
movq 0x580(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5354(%rsp) # imm = 0xFFFFFFFF
movl 0x5354(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5350(%rsp)
cmpl $0x1, 0x5350(%rsp)
jne 0x134aa63
movq 0x580(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x134aa31
movq 0x580(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x134aa2f
jmp 0x134aa61
movq 0x580(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5438(%rsp)
cmpq $0x0, 0x5438(%rsp)
je 0x134aa5f
movq 0x5438(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x134aa61
jmp 0x134aa63
movq 0x580(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134aabe
movq %rax, %rdi
callq 0x678a0
jmp 0x134aac0
leaq 0x1fe8(%rsp), %rax
movq %rax, 0x2fa0(%rsp)
movq 0x2fa0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x570(%rsp)
leaq 0x1fe8(%rsp), %rax
movq %rax, 0x3148(%rsp)
movq 0x3148(%rsp), %rax
movq %rax, 0x5158(%rsp)
movq 0x5158(%rsp), %rax
movq %rax, 0x578(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134abb1
movq 0x578(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5154(%rsp) # imm = 0xFFFFFFFF
movl 0x5154(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5150(%rsp)
cmpl $0x1, 0x5150(%rsp)
jne 0x134abb1
movq 0x578(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x134ab7f
movq 0x578(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x134ab7d
jmp 0x134abaf
movq 0x578(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5538(%rsp)
cmpq $0x0, 0x5538(%rsp)
je 0x134abad
movq 0x5538(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x134abaf
jmp 0x134abb1
movq 0x578(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134ac0c
movq %rax, %rdi
callq 0x678a0
movq 0x570(%rsp), %rax
movq %rax, 0x2030(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x203c(%rsp), %eax
leaq 0x1f98(%rsp), %rdx
movq %rdx, 0x2de8(%rsp)
movq %rcx, 0x2de0(%rsp)
movl %eax, 0x2ddc(%rsp)
movq 0x2de0(%rsp), %rax
movq %rax, 0x568(%rsp)
movb $0x0, 0x2ddb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2ddc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1f98(%rsp), %r10
movq %r10, 0x4860(%rsp)
movl %r9d, 0x485c(%rsp)
movl %r8d, 0x4858(%rsp)
movl %edi, 0x4854(%rsp)
movq %rsi, 0x4848(%rsp)
movq %rdx, 0x4840(%rsp)
movl %ecx, 0x483c(%rsp)
movq %rax, 0x4830(%rsp)
movq 0x4860(%rsp), %rcx
movq %rcx, 0x560(%rsp)
movq 0x4848(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4840(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x483c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4830(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x485c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4858(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4854(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4ca8(%rsp)
movl $0x10, 0x4ca4(%rsp)
movq 0x4ca8(%rsp), %rax
movslq 0x4ca4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4ca4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x568(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1fc0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x134add8
movq 0x568(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1fd8(%rsp)
movb $0x1, 0x2ddb(%rsp)
testb $0x1, 0x2ddb(%rsp)
jne 0x134af19
leaq 0x1f98(%rsp), %rax
movq %rax, 0x3050(%rsp)
movq 0x3050(%rsp), %rax
movq %rax, 0x5348(%rsp)
movq 0x5348(%rsp), %rax
movq %rax, 0x558(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134aebc
movq 0x558(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5344(%rsp) # imm = 0xFFFFFFFF
movl 0x5344(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5340(%rsp)
cmpl $0x1, 0x5340(%rsp)
jne 0x134aebc
movq 0x558(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x134ae8a
movq 0x558(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x134ae88
jmp 0x134aeba
movq 0x558(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5440(%rsp)
cmpq $0x0, 0x5440(%rsp)
je 0x134aeb8
movq 0x5440(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x134aeba
jmp 0x134aebc
movq 0x558(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134af17
movq %rax, %rdi
callq 0x678a0
jmp 0x134af19
leaq 0x1f98(%rsp), %rax
movq %rax, 0x2f98(%rsp)
movq 0x2f98(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x548(%rsp)
leaq 0x1f98(%rsp), %rax
movq %rax, 0x3150(%rsp)
movq 0x3150(%rsp), %rax
movq %rax, 0x5148(%rsp)
movq 0x5148(%rsp), %rax
movq %rax, 0x550(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134b00a
movq 0x550(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5144(%rsp) # imm = 0xFFFFFFFF
movl 0x5144(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5140(%rsp)
cmpl $0x1, 0x5140(%rsp)
jne 0x134b00a
movq 0x550(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x134afd8
movq 0x550(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x134afd6
jmp 0x134b008
movq 0x550(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5540(%rsp)
cmpq $0x0, 0x5540(%rsp)
je 0x134b006
movq 0x5540(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x134b008
jmp 0x134b00a
movq 0x550(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134b065
movq %rax, %rdi
callq 0x678a0
movq 0x548(%rsp), %rax
movq %rax, 0x1fe0(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x203c(%rsp), %eax
leaq 0x1f48(%rsp), %rdx
movq %rdx, 0x33a0(%rsp)
movq %rcx, 0x3398(%rsp)
movl %eax, 0x3394(%rsp)
movq 0x3398(%rsp), %rax
movq %rax, 0x540(%rsp)
movb $0x0, 0x3393(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3394(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1f48(%rsp), %r10
movq %r10, 0x4390(%rsp)
movl %r9d, 0x438c(%rsp)
movl %r8d, 0x4388(%rsp)
movl %edi, 0x4384(%rsp)
movq %rsi, 0x4378(%rsp)
movq %rdx, 0x4370(%rsp)
movl %ecx, 0x436c(%rsp)
movq %rax, 0x4360(%rsp)
movq 0x4390(%rsp), %rcx
movq %rcx, 0x538(%rsp)
movq 0x4378(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4370(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x436c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4360(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x438c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4388(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4384(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e08(%rsp)
movl $0x10, 0x4e04(%rsp)
movq 0x4e08(%rsp), %rax
movslq 0x4e04(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e04(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x540(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1f70(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x134b231
movq 0x540(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1f88(%rsp)
movb $0x1, 0x3393(%rsp)
testb $0x1, 0x3393(%rsp)
jne 0x134b372
leaq 0x1f48(%rsp), %rax
movq %rax, 0x33a8(%rsp)
movq 0x33a8(%rsp), %rax
movq %rax, 0x4ed8(%rsp)
movq 0x4ed8(%rsp), %rax
movq %rax, 0x530(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134b315
movq 0x530(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4ed4(%rsp) # imm = 0xFFFFFFFF
movl 0x4ed4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4ed0(%rsp)
cmpl $0x1, 0x4ed0(%rsp)
jne 0x134b315
movq 0x530(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x134b2e3
movq 0x530(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x134b2e1
jmp 0x134b313
movq 0x530(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5678(%rsp)
cmpq $0x0, 0x5678(%rsp)
je 0x134b311
movq 0x5678(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x134b313
jmp 0x134b315
movq 0x530(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134b370
movq %rax, %rdi
callq 0x678a0
jmp 0x134b372
leaq 0x1f48(%rsp), %rax
movq %rax, 0x34d8(%rsp)
movq 0x34d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x520(%rsp)
leaq 0x1f48(%rsp), %rax
movq %rax, 0x3158(%rsp)
movq 0x3158(%rsp), %rax
movq %rax, 0x5138(%rsp)
movq 0x5138(%rsp), %rax
movq %rax, 0x528(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134b463
movq 0x528(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5134(%rsp) # imm = 0xFFFFFFFF
movl 0x5134(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5130(%rsp)
cmpl $0x1, 0x5130(%rsp)
jne 0x134b463
movq 0x528(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x134b431
movq 0x528(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x134b42f
jmp 0x134b461
movq 0x528(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5548(%rsp)
cmpq $0x0, 0x5548(%rsp)
je 0x134b45f
movq 0x5548(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x134b461
jmp 0x134b463
movq 0x528(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134b4be
movq %rax, %rdi
callq 0x678a0
movq 0x520(%rsp), %rax
movq %rax, 0x1f90(%rsp)
movq 0x2030(%rsp), %rax
movq %rax, 0x35e0(%rsp)
movq 0x35e0(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1f00(%rsp)
movl $0x0, 0x1efc(%rsp)
movl 0x1efc(%rsp), %eax
cmpl 0x2b78(%rsp), %eax
jge 0x134b5d8
movq 0x1fe0(%rsp), %rax
movq %rax, 0x35d8(%rsp)
movq 0x35d8(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1e80(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x1f00(%rsp), %rsi
leaq 0x1e80(%rsp), %rdx
callq 0x1453b90
vmovaps %zmm0, 0x1e40(%rsp)
movq 0x1f90(%rsp), %rax
vmovaps 0x1e40(%rsp), %zmm0
movq %rax, 0x3d38(%rsp)
vmovaps %zmm0, 0x3cc0(%rsp)
vmovaps 0x3cc0(%rsp), %zmm0
movq 0x3d38(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x1fe0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1fe0(%rsp)
movq 0x1f90(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1f90(%rsp)
movl 0x1efc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1efc(%rsp)
jmp 0x134b4ff
jmp 0x134b5da
movl 0x203c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x203c(%rsp)
jmp 0x134a7af
movl $0x0, 0x2bd4(%rsp)
jmp 0x1354af0
movl 0x2b88(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jne 0x134c156
movl 0x2b84(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jne 0x134c156
cmpl $0x1, 0x2b9c(%rsp)
jne 0x134c156
cmpl $0x1, 0x2b8c(%rsp)
jne 0x134c156
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b7c(%rsp), %ecx
movq 0x2b70(%rsp), %r8
movl 0x2b6c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c40(%rsp)
movq 0x2c40(%rsp), %rcx
movq %rcx, 0x510(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x51f(%rsp)
je 0x134b6e7
movq 0x510(%rsp), %rax
movq %rax, 0x41a0(%rsp)
movq 0x41a0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x51f(%rsp)
movb 0x51f(%rsp), %al
testb $0x1, %al
jne 0x134b6f4
jmp 0x134b704
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1354af0
movl $0x0, 0x1e3c(%rsp)
movl 0x1e3c(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x134c146
movq 0x2bc8(%rsp), %rax
movq %rax, 0x2f90(%rsp)
movq 0x2f90(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1e30(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x1e3c(%rsp), %eax
leaq 0x1de0(%rsp), %rdx
movq %rdx, 0x2dd0(%rsp)
movq %rcx, 0x2dc8(%rsp)
movl %eax, 0x2dc4(%rsp)
movq 0x2dc8(%rsp), %rax
movq %rax, 0x508(%rsp)
movb $0x0, 0x2dc3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2dc4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1de0(%rsp), %r10
movq %r10, 0x4898(%rsp)
movl %r9d, 0x4894(%rsp)
movl %r8d, 0x4890(%rsp)
movl %edi, 0x488c(%rsp)
movq %rsi, 0x4880(%rsp)
movq %rdx, 0x4878(%rsp)
movl %ecx, 0x4874(%rsp)
movq %rax, 0x4868(%rsp)
movq 0x4898(%rsp), %rcx
movq %rcx, 0x500(%rsp)
movq 0x4880(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4878(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4874(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4868(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4894(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4890(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x488c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c98(%rsp)
movl $0x10, 0x4c94(%rsp)
movq 0x4c98(%rsp), %rax
movslq 0x4c94(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c94(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x508(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1e08(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x134b902
movq 0x508(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1e20(%rsp)
movb $0x1, 0x2dc3(%rsp)
testb $0x1, 0x2dc3(%rsp)
jne 0x134ba43
leaq 0x1de0(%rsp), %rax
movq %rax, 0x3058(%rsp)
movq 0x3058(%rsp), %rax
movq %rax, 0x5338(%rsp)
movq 0x5338(%rsp), %rax
movq %rax, 0x4f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134b9e6
movq 0x4f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5334(%rsp) # imm = 0xFFFFFFFF
movl 0x5334(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5330(%rsp)
cmpl $0x1, 0x5330(%rsp)
jne 0x134b9e6
movq 0x4f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x134b9b4
movq 0x4f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x134b9b2
jmp 0x134b9e4
movq 0x4f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5448(%rsp)
cmpq $0x0, 0x5448(%rsp)
je 0x134b9e2
movq 0x5448(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x134b9e4
jmp 0x134b9e6
movq 0x4f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134ba41
movq %rax, %rdi
callq 0x678a0
jmp 0x134ba43
leaq 0x1de0(%rsp), %rax
movq %rax, 0x2f88(%rsp)
movq 0x2f88(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4e8(%rsp)
leaq 0x1de0(%rsp), %rax
movq %rax, 0x3160(%rsp)
movq 0x3160(%rsp), %rax
movq %rax, 0x5128(%rsp)
movq 0x5128(%rsp), %rax
movq %rax, 0x4f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134bb34
movq 0x4f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5124(%rsp) # imm = 0xFFFFFFFF
movl 0x5124(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5120(%rsp)
cmpl $0x1, 0x5120(%rsp)
jne 0x134bb34
movq 0x4f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x134bb02
movq 0x4f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x134bb00
jmp 0x134bb32
movq 0x4f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5550(%rsp)
cmpq $0x0, 0x5550(%rsp)
je 0x134bb30
movq 0x5550(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x134bb32
jmp 0x134bb34
movq 0x4f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134bb8f
movq %rax, %rdi
callq 0x678a0
movq 0x4e8(%rsp), %rax
movq %rax, 0x1e28(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x1e3c(%rsp), %eax
leaq 0x1d90(%rsp), %rdx
movq %rdx, 0x3380(%rsp)
movq %rcx, 0x3378(%rsp)
movl %eax, 0x3374(%rsp)
movq 0x3378(%rsp), %rax
movq %rax, 0x4e0(%rsp)
movb $0x0, 0x3373(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3374(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1d90(%rsp), %r10
movq %r10, 0x43c8(%rsp)
movl %r9d, 0x43c4(%rsp)
movl %r8d, 0x43c0(%rsp)
movl %edi, 0x43bc(%rsp)
movq %rsi, 0x43b0(%rsp)
movq %rdx, 0x43a8(%rsp)
movl %ecx, 0x43a4(%rsp)
movq %rax, 0x4398(%rsp)
movq 0x43c8(%rsp), %rcx
movq %rcx, 0x4d8(%rsp)
movq 0x43b0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x43a8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x43a4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4398(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x43c4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x43c0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x43bc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4df8(%rsp)
movl $0x10, 0x4df4(%rsp)
movq 0x4df8(%rsp), %rax
movslq 0x4df4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4df4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4e0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1db8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x134bd5b
movq 0x4e0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1dd0(%rsp)
movb $0x1, 0x3373(%rsp)
testb $0x1, 0x3373(%rsp)
jne 0x134be9c
leaq 0x1d90(%rsp), %rax
movq %rax, 0x3388(%rsp)
movq 0x3388(%rsp), %rax
movq %rax, 0x4ee8(%rsp)
movq 0x4ee8(%rsp), %rax
movq %rax, 0x4d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134be3f
movq 0x4d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4ee4(%rsp) # imm = 0xFFFFFFFF
movl 0x4ee4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4ee0(%rsp)
cmpl $0x1, 0x4ee0(%rsp)
jne 0x134be3f
movq 0x4d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x134be0d
movq 0x4d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x134be0b
jmp 0x134be3d
movq 0x4d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5670(%rsp)
cmpq $0x0, 0x5670(%rsp)
je 0x134be3b
movq 0x5670(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x134be3d
jmp 0x134be3f
movq 0x4d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134be9a
movq %rax, %rdi
callq 0x678a0
jmp 0x134be9c
leaq 0x1d90(%rsp), %rax
movq %rax, 0x34d0(%rsp)
movq 0x34d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4c0(%rsp)
leaq 0x1d90(%rsp), %rax
movq %rax, 0x3168(%rsp)
movq 0x3168(%rsp), %rax
movq %rax, 0x5118(%rsp)
movq 0x5118(%rsp), %rax
movq %rax, 0x4c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134bf8d
movq 0x4c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5114(%rsp) # imm = 0xFFFFFFFF
movl 0x5114(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5110(%rsp)
cmpl $0x1, 0x5110(%rsp)
jne 0x134bf8d
movq 0x4c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x134bf5b
movq 0x4c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x134bf59
jmp 0x134bf8b
movq 0x4c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5558(%rsp)
cmpq $0x0, 0x5558(%rsp)
je 0x134bf89
movq 0x5558(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x134bf8b
jmp 0x134bf8d
movq 0x4c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134bfe8
movq %rax, %rdi
callq 0x678a0
movq 0x4c0(%rsp), %rax
movq %rax, 0x1dd8(%rsp)
movl $0x0, 0x1d8c(%rsp)
movl 0x1d8c(%rsp), %eax
cmpl 0x2b78(%rsp), %eax
jge 0x134c12e
movq 0x1e30(%rsp), %rax
vmovss (%rax), %xmm0
vmovss %xmm0, 0x40fc(%rsp)
vbroadcastss 0x40fc(%rsp), %zmm0
vmovaps %zmm0, 0x4080(%rsp)
vmovaps 0x4080(%rsp), %zmm0
vmovaps %zmm0, 0x1d40(%rsp)
movq 0x1e28(%rsp), %rax
movq %rax, 0x35d0(%rsp)
movq 0x35d0(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1d00(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x1d40(%rsp), %rsi
leaq 0x1d00(%rsp), %rdx
callq 0x1453b90
vmovaps %zmm0, 0x1cc0(%rsp)
movq 0x1dd8(%rsp), %rax
vmovaps 0x1cc0(%rsp), %zmm0
movq %rax, 0x3cb8(%rsp)
vmovaps %zmm0, 0x3c40(%rsp)
vmovaps 0x3c40(%rsp), %zmm0
movq 0x3cb8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x1e30(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x1e30(%rsp)
movq 0x1e28(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1e28(%rsp)
movq 0x1dd8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1dd8(%rsp)
movl 0x1d8c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1d8c(%rsp)
jmp 0x134c003
jmp 0x134c130
movl 0x1e3c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1e3c(%rsp)
jmp 0x134b70f
movl $0x0, 0x2bd4(%rsp)
jmp 0x1354af0
cmpl $0x1, 0x2ba8(%rsp)
je 0x134d101
cmpl $0x1, 0x2b88(%rsp)
jne 0x134d101
movl 0x2b84(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jne 0x134d101
movl 0x2b7c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jne 0x134d101
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movl 0x2b9c(%rsp), %ecx
movq 0x2b90(%rsp), %r8
movl 0x2b8c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c38(%rsp)
movq 0x2c38(%rsp), %rcx
movq %rcx, 0x4b0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x4bf(%rsp)
je 0x134c23d
movq 0x4b0(%rsp), %rax
movq %rax, 0x41a8(%rsp)
movq 0x41a8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x4bf(%rsp)
movb 0x4bf(%rsp), %al
testb $0x1, %al
jne 0x134c24a
jmp 0x134c25a
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1354af0
movl $0x0, 0x1cbc(%rsp)
movl 0x1cbc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x134d0f1
movq 0x2bc8(%rsp), %rcx
movl 0x1cbc(%rsp), %eax
leaq 0x1c68(%rsp), %rdx
movq %rdx, 0x2db8(%rsp)
movq %rcx, 0x2db0(%rsp)
movl %eax, 0x2dac(%rsp)
movq 0x2db0(%rsp), %rax
movq %rax, 0x4a8(%rsp)
movb $0x0, 0x2dab(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2dac(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1c68(%rsp), %r10
movq %r10, 0x48d0(%rsp)
movl %r9d, 0x48cc(%rsp)
movl %r8d, 0x48c8(%rsp)
movl %edi, 0x48c4(%rsp)
movq %rsi, 0x48b8(%rsp)
movq %rdx, 0x48b0(%rsp)
movl %ecx, 0x48ac(%rsp)
movq %rax, 0x48a0(%rsp)
movq 0x48d0(%rsp), %rcx
movq %rcx, 0x4a0(%rsp)
movq 0x48b8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x48b0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x48ac(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x48a0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x48cc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x48c8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x48c4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c88(%rsp)
movl $0x10, 0x4c84(%rsp)
movq 0x4c88(%rsp), %rax
movslq 0x4c84(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c84(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4a8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1c90(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x134c435
movq 0x4a8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1ca8(%rsp)
movb $0x1, 0x2dab(%rsp)
testb $0x1, 0x2dab(%rsp)
jne 0x134c576
leaq 0x1c68(%rsp), %rax
movq %rax, 0x3060(%rsp)
movq 0x3060(%rsp), %rax
movq %rax, 0x5328(%rsp)
movq 0x5328(%rsp), %rax
movq %rax, 0x498(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134c519
movq 0x498(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5324(%rsp) # imm = 0xFFFFFFFF
movl 0x5324(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5320(%rsp)
cmpl $0x1, 0x5320(%rsp)
jne 0x134c519
movq 0x498(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x134c4e7
movq 0x498(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x134c4e5
jmp 0x134c517
movq 0x498(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5450(%rsp)
cmpq $0x0, 0x5450(%rsp)
je 0x134c515
movq 0x5450(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x134c517
jmp 0x134c519
movq 0x498(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134c574
movq %rax, %rdi
callq 0x678a0
jmp 0x134c576
leaq 0x1c68(%rsp), %rax
movq %rax, 0x2f80(%rsp)
movq 0x2f80(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x488(%rsp)
leaq 0x1c68(%rsp), %rax
movq %rax, 0x3170(%rsp)
movq 0x3170(%rsp), %rax
movq %rax, 0x5108(%rsp)
movq 0x5108(%rsp), %rax
movq %rax, 0x490(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134c667
movq 0x490(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5104(%rsp) # imm = 0xFFFFFFFF
movl 0x5104(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5100(%rsp)
cmpl $0x1, 0x5100(%rsp)
jne 0x134c667
movq 0x490(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x134c635
movq 0x490(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x134c633
jmp 0x134c665
movq 0x490(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5560(%rsp)
cmpq $0x0, 0x5560(%rsp)
je 0x134c663
movq 0x5560(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x134c665
jmp 0x134c667
movq 0x490(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134c6c2
movq %rax, %rdi
callq 0x678a0
movq 0x488(%rsp), %rax
movq %rax, 0x1cb0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x1cbc(%rsp), %eax
leaq 0x1c18(%rsp), %rdx
movq %rdx, 0x2da0(%rsp)
movq %rcx, 0x2d98(%rsp)
movl %eax, 0x2d94(%rsp)
movq 0x2d98(%rsp), %rax
movq %rax, 0x480(%rsp)
movb $0x0, 0x2d93(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d94(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1c18(%rsp), %r10
movq %r10, 0x4908(%rsp)
movl %r9d, 0x4904(%rsp)
movl %r8d, 0x4900(%rsp)
movl %edi, 0x48fc(%rsp)
movq %rsi, 0x48f0(%rsp)
movq %rdx, 0x48e8(%rsp)
movl %ecx, 0x48e4(%rsp)
movq %rax, 0x48d8(%rsp)
movq 0x4908(%rsp), %rcx
movq %rcx, 0x478(%rsp)
movq 0x48f0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x48e8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x48e4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x48d8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4904(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4900(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x48fc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c78(%rsp)
movl $0x10, 0x4c74(%rsp)
movq 0x4c78(%rsp), %rax
movslq 0x4c74(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c74(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x480(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1c40(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x134c88e
movq 0x480(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1c58(%rsp)
movb $0x1, 0x2d93(%rsp)
testb $0x1, 0x2d93(%rsp)
jne 0x134c9cf
leaq 0x1c18(%rsp), %rax
movq %rax, 0x3068(%rsp)
movq 0x3068(%rsp), %rax
movq %rax, 0x5318(%rsp)
movq 0x5318(%rsp), %rax
movq %rax, 0x470(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134c972
movq 0x470(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5314(%rsp) # imm = 0xFFFFFFFF
movl 0x5314(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5310(%rsp)
cmpl $0x1, 0x5310(%rsp)
jne 0x134c972
movq 0x470(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x134c940
movq 0x470(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x134c93e
jmp 0x134c970
movq 0x470(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5458(%rsp)
cmpq $0x0, 0x5458(%rsp)
je 0x134c96e
movq 0x5458(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x134c970
jmp 0x134c972
movq 0x470(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134c9cd
movq %rax, %rdi
callq 0x678a0
jmp 0x134c9cf
leaq 0x1c18(%rsp), %rax
movq %rax, 0x2f78(%rsp)
movq 0x2f78(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x460(%rsp)
leaq 0x1c18(%rsp), %rax
movq %rax, 0x3178(%rsp)
movq 0x3178(%rsp), %rax
movq %rax, 0x50f8(%rsp)
movq 0x50f8(%rsp), %rax
movq %rax, 0x468(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134cac0
movq 0x468(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x50f4(%rsp) # imm = 0xFFFFFFFF
movl 0x50f4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x50f0(%rsp)
cmpl $0x1, 0x50f0(%rsp)
jne 0x134cac0
movq 0x468(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x134ca8e
movq 0x468(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x134ca8c
jmp 0x134cabe
movq 0x468(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5568(%rsp)
cmpq $0x0, 0x5568(%rsp)
je 0x134cabc
movq 0x5568(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x134cabe
jmp 0x134cac0
movq 0x468(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134cb1b
movq %rax, %rdi
callq 0x678a0
movq 0x460(%rsp), %rax
movq %rax, 0x1c60(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x1cbc(%rsp), %eax
leaq 0x1bc8(%rsp), %rdx
movq %rdx, 0x3360(%rsp)
movq %rcx, 0x3358(%rsp)
movl %eax, 0x3354(%rsp)
movq 0x3358(%rsp), %rax
movq %rax, 0x458(%rsp)
movb $0x0, 0x3353(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3354(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1bc8(%rsp), %r10
movq %r10, 0x4400(%rsp)
movl %r9d, 0x43fc(%rsp)
movl %r8d, 0x43f8(%rsp)
movl %edi, 0x43f4(%rsp)
movq %rsi, 0x43e8(%rsp)
movq %rdx, 0x43e0(%rsp)
movl %ecx, 0x43dc(%rsp)
movq %rax, 0x43d0(%rsp)
movq 0x4400(%rsp), %rcx
movq %rcx, 0x450(%rsp)
movq 0x43e8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x43e0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x43dc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x43d0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x43fc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x43f8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x43f4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4de8(%rsp)
movl $0x10, 0x4de4(%rsp)
movq 0x4de8(%rsp), %rax
movslq 0x4de4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4de4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x458(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1bf0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x134cce7
movq 0x458(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1c08(%rsp)
movb $0x1, 0x3353(%rsp)
testb $0x1, 0x3353(%rsp)
jne 0x134ce28
leaq 0x1bc8(%rsp), %rax
movq %rax, 0x3368(%rsp)
movq 0x3368(%rsp), %rax
movq %rax, 0x4ef8(%rsp)
movq 0x4ef8(%rsp), %rax
movq %rax, 0x448(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134cdcb
movq 0x448(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4ef4(%rsp) # imm = 0xFFFFFFFF
movl 0x4ef4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4ef0(%rsp)
cmpl $0x1, 0x4ef0(%rsp)
jne 0x134cdcb
movq 0x448(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x134cd99
movq 0x448(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x134cd97
jmp 0x134cdc9
movq 0x448(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5668(%rsp)
cmpq $0x0, 0x5668(%rsp)
je 0x134cdc7
movq 0x5668(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x134cdc9
jmp 0x134cdcb
movq 0x448(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134ce26
movq %rax, %rdi
callq 0x678a0
jmp 0x134ce28
leaq 0x1bc8(%rsp), %rax
movq %rax, 0x34c8(%rsp)
movq 0x34c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x438(%rsp)
leaq 0x1bc8(%rsp), %rax
movq %rax, 0x3180(%rsp)
movq 0x3180(%rsp), %rax
movq %rax, 0x50e8(%rsp)
movq 0x50e8(%rsp), %rax
movq %rax, 0x440(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134cf19
movq 0x440(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x50e4(%rsp) # imm = 0xFFFFFFFF
movl 0x50e4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x50e0(%rsp)
cmpl $0x1, 0x50e0(%rsp)
jne 0x134cf19
movq 0x440(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x134cee7
movq 0x440(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x134cee5
jmp 0x134cf17
movq 0x440(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5570(%rsp)
cmpq $0x0, 0x5570(%rsp)
je 0x134cf15
movq 0x5570(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x134cf17
jmp 0x134cf19
movq 0x440(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134cf74
movq %rax, %rdi
callq 0x678a0
movq 0x438(%rsp), %rax
movq %rax, 0x1c10(%rsp)
movl $0x0, 0x1bc4(%rsp)
movl 0x1bc4(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jge 0x134d0d9
movq 0x1c60(%rsp), %rax
movl 0x1bc4(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x35c8(%rsp)
movq 0x35c8(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1b80(%rsp)
movl $0x0, 0x1b7c(%rsp)
movl 0x1b7c(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jge 0x134d0c1
movq 0x1cb0(%rsp), %rax
movq %rax, 0x35c0(%rsp)
movq 0x35c0(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1b00(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x1b00(%rsp), %rsi
leaq 0x1b80(%rsp), %rdx
callq 0x1453b90
vmovaps %zmm0, 0x1ac0(%rsp)
movq 0x1c10(%rsp), %rax
vmovaps 0x1ac0(%rsp), %zmm0
movq %rax, 0x3c38(%rsp)
vmovaps %zmm0, 0x3bc0(%rsp)
vmovaps 0x3bc0(%rsp), %zmm0
movq 0x3c38(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x1cb0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1cb0(%rsp)
movq 0x1c10(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1c10(%rsp)
movl 0x1b7c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b7c(%rsp)
jmp 0x134cfe8
jmp 0x134d0c3
movl 0x1bc4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1bc4(%rsp)
jmp 0x134cf8f
jmp 0x134d0db
movl 0x1cbc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1cbc(%rsp)
jmp 0x134c265
movl $0x0, 0x2bd4(%rsp)
jmp 0x1354af0
movl 0x2b88(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jne 0x134e0ac
cmpl $0x1, 0x2ba4(%rsp)
je 0x134e0ac
cmpl $0x1, 0x2b84(%rsp)
jne 0x134e0ac
movl 0x2b7c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jne 0x134e0ac
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movl 0x2b9c(%rsp), %ecx
movq 0x2b90(%rsp), %r8
movl 0x2b8c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c30(%rsp)
movq 0x2c30(%rsp), %rcx
movq %rcx, 0x428(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x437(%rsp)
je 0x134d1e8
movq 0x428(%rsp), %rax
movq %rax, 0x41b0(%rsp)
movq 0x41b0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x437(%rsp)
movb 0x437(%rsp), %al
testb $0x1, %al
jne 0x134d1f5
jmp 0x134d205
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1354af0
movl $0x0, 0x1abc(%rsp)
movl 0x1abc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x134e09c
movq 0x2bc8(%rsp), %rcx
movl 0x1abc(%rsp), %eax
leaq 0x1a68(%rsp), %rdx
movq %rdx, 0x2d88(%rsp)
movq %rcx, 0x2d80(%rsp)
movl %eax, 0x2d7c(%rsp)
movq 0x2d80(%rsp), %rax
movq %rax, 0x420(%rsp)
movb $0x0, 0x2d7b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d7c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1a68(%rsp), %r10
movq %r10, 0x4940(%rsp)
movl %r9d, 0x493c(%rsp)
movl %r8d, 0x4938(%rsp)
movl %edi, 0x4934(%rsp)
movq %rsi, 0x4928(%rsp)
movq %rdx, 0x4920(%rsp)
movl %ecx, 0x491c(%rsp)
movq %rax, 0x4910(%rsp)
movq 0x4940(%rsp), %rcx
movq %rcx, 0x418(%rsp)
movq 0x4928(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4920(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x491c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4910(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x493c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4938(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4934(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c68(%rsp)
movl $0x10, 0x4c64(%rsp)
movq 0x4c68(%rsp), %rax
movslq 0x4c64(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c64(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x420(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1a90(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x134d3e0
movq 0x420(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1aa8(%rsp)
movb $0x1, 0x2d7b(%rsp)
testb $0x1, 0x2d7b(%rsp)
jne 0x134d521
leaq 0x1a68(%rsp), %rax
movq %rax, 0x3070(%rsp)
movq 0x3070(%rsp), %rax
movq %rax, 0x5308(%rsp)
movq 0x5308(%rsp), %rax
movq %rax, 0x410(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134d4c4
movq 0x410(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5304(%rsp) # imm = 0xFFFFFFFF
movl 0x5304(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5300(%rsp)
cmpl $0x1, 0x5300(%rsp)
jne 0x134d4c4
movq 0x410(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x134d492
movq 0x410(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x134d490
jmp 0x134d4c2
movq 0x410(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5460(%rsp)
cmpq $0x0, 0x5460(%rsp)
je 0x134d4c0
movq 0x5460(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x134d4c2
jmp 0x134d4c4
movq 0x410(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134d51f
movq %rax, %rdi
callq 0x678a0
jmp 0x134d521
leaq 0x1a68(%rsp), %rax
movq %rax, 0x2f70(%rsp)
movq 0x2f70(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x400(%rsp)
leaq 0x1a68(%rsp), %rax
movq %rax, 0x3188(%rsp)
movq 0x3188(%rsp), %rax
movq %rax, 0x50d8(%rsp)
movq 0x50d8(%rsp), %rax
movq %rax, 0x408(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134d612
movq 0x408(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x50d4(%rsp) # imm = 0xFFFFFFFF
movl 0x50d4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x50d0(%rsp)
cmpl $0x1, 0x50d0(%rsp)
jne 0x134d612
movq 0x408(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x134d5e0
movq 0x408(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x134d5de
jmp 0x134d610
movq 0x408(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5578(%rsp)
cmpq $0x0, 0x5578(%rsp)
je 0x134d60e
movq 0x5578(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x134d610
jmp 0x134d612
movq 0x408(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134d66d
movq %rax, %rdi
callq 0x678a0
movq 0x400(%rsp), %rax
movq %rax, 0x1ab0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x1abc(%rsp), %eax
leaq 0x1a18(%rsp), %rdx
movq %rdx, 0x2d70(%rsp)
movq %rcx, 0x2d68(%rsp)
movl %eax, 0x2d64(%rsp)
movq 0x2d68(%rsp), %rax
movq %rax, 0x3f8(%rsp)
movb $0x0, 0x2d63(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d64(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1a18(%rsp), %r10
movq %r10, 0x4978(%rsp)
movl %r9d, 0x4974(%rsp)
movl %r8d, 0x4970(%rsp)
movl %edi, 0x496c(%rsp)
movq %rsi, 0x4960(%rsp)
movq %rdx, 0x4958(%rsp)
movl %ecx, 0x4954(%rsp)
movq %rax, 0x4948(%rsp)
movq 0x4978(%rsp), %rcx
movq %rcx, 0x3f0(%rsp)
movq 0x4960(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4958(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4954(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4948(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4974(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4970(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x496c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c58(%rsp)
movl $0x10, 0x4c54(%rsp)
movq 0x4c58(%rsp), %rax
movslq 0x4c54(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c54(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3f8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1a40(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x134d839
movq 0x3f8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1a58(%rsp)
movb $0x1, 0x2d63(%rsp)
testb $0x1, 0x2d63(%rsp)
jne 0x134d97a
leaq 0x1a18(%rsp), %rax
movq %rax, 0x3078(%rsp)
movq 0x3078(%rsp), %rax
movq %rax, 0x52f8(%rsp)
movq 0x52f8(%rsp), %rax
movq %rax, 0x3e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134d91d
movq 0x3e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x52f4(%rsp) # imm = 0xFFFFFFFF
movl 0x52f4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x52f0(%rsp)
cmpl $0x1, 0x52f0(%rsp)
jne 0x134d91d
movq 0x3e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x134d8eb
movq 0x3e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x134d8e9
jmp 0x134d91b
movq 0x3e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5468(%rsp)
cmpq $0x0, 0x5468(%rsp)
je 0x134d919
movq 0x5468(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x134d91b
jmp 0x134d91d
movq 0x3e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134d978
movq %rax, %rdi
callq 0x678a0
jmp 0x134d97a
leaq 0x1a18(%rsp), %rax
movq %rax, 0x2f68(%rsp)
movq 0x2f68(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d8(%rsp)
leaq 0x1a18(%rsp), %rax
movq %rax, 0x3190(%rsp)
movq 0x3190(%rsp), %rax
movq %rax, 0x50c8(%rsp)
movq 0x50c8(%rsp), %rax
movq %rax, 0x3e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134da6b
movq 0x3e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x50c4(%rsp) # imm = 0xFFFFFFFF
movl 0x50c4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x50c0(%rsp)
cmpl $0x1, 0x50c0(%rsp)
jne 0x134da6b
movq 0x3e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x134da39
movq 0x3e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x134da37
jmp 0x134da69
movq 0x3e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5580(%rsp)
cmpq $0x0, 0x5580(%rsp)
je 0x134da67
movq 0x5580(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x134da69
jmp 0x134da6b
movq 0x3e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134dac6
movq %rax, %rdi
callq 0x678a0
movq 0x3d8(%rsp), %rax
movq %rax, 0x1a60(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x1abc(%rsp), %eax
leaq 0x19c8(%rsp), %rdx
movq %rdx, 0x3340(%rsp)
movq %rcx, 0x3338(%rsp)
movl %eax, 0x3334(%rsp)
movq 0x3338(%rsp), %rax
movq %rax, 0x3d0(%rsp)
movb $0x0, 0x3333(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3334(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x19c8(%rsp), %r10
movq %r10, 0x4438(%rsp)
movl %r9d, 0x4434(%rsp)
movl %r8d, 0x4430(%rsp)
movl %edi, 0x442c(%rsp)
movq %rsi, 0x4420(%rsp)
movq %rdx, 0x4418(%rsp)
movl %ecx, 0x4414(%rsp)
movq %rax, 0x4408(%rsp)
movq 0x4438(%rsp), %rcx
movq %rcx, 0x3c8(%rsp)
movq 0x4420(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4418(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4414(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4408(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4434(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4430(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x442c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4dd8(%rsp)
movl $0x10, 0x4dd4(%rsp)
movq 0x4dd8(%rsp), %rax
movslq 0x4dd4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4dd4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3d0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x19f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x134dc92
movq 0x3d0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1a08(%rsp)
movb $0x1, 0x3333(%rsp)
testb $0x1, 0x3333(%rsp)
jne 0x134ddd3
leaq 0x19c8(%rsp), %rax
movq %rax, 0x3348(%rsp)
movq 0x3348(%rsp), %rax
movq %rax, 0x4f08(%rsp)
movq 0x4f08(%rsp), %rax
movq %rax, 0x3c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134dd76
movq 0x3c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f04(%rsp) # imm = 0xFFFFFFFF
movl 0x4f04(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f00(%rsp)
cmpl $0x1, 0x4f00(%rsp)
jne 0x134dd76
movq 0x3c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x134dd44
movq 0x3c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x134dd42
jmp 0x134dd74
movq 0x3c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5660(%rsp)
cmpq $0x0, 0x5660(%rsp)
je 0x134dd72
movq 0x5660(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x134dd74
jmp 0x134dd76
movq 0x3c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134ddd1
movq %rax, %rdi
callq 0x678a0
jmp 0x134ddd3
leaq 0x19c8(%rsp), %rax
movq %rax, 0x34c0(%rsp)
movq 0x34c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3b0(%rsp)
leaq 0x19c8(%rsp), %rax
movq %rax, 0x3198(%rsp)
movq 0x3198(%rsp), %rax
movq %rax, 0x50b8(%rsp)
movq 0x50b8(%rsp), %rax
movq %rax, 0x3b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134dec4
movq 0x3b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x50b4(%rsp) # imm = 0xFFFFFFFF
movl 0x50b4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x50b0(%rsp)
cmpl $0x1, 0x50b0(%rsp)
jne 0x134dec4
movq 0x3b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x134de92
movq 0x3b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x134de90
jmp 0x134dec2
movq 0x3b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5588(%rsp)
cmpq $0x0, 0x5588(%rsp)
je 0x134dec0
movq 0x5588(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x134dec2
jmp 0x134dec4
movq 0x3b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134df1f
movq %rax, %rdi
callq 0x678a0
movq 0x3b0(%rsp), %rax
movq %rax, 0x1a10(%rsp)
movl $0x0, 0x19c4(%rsp)
movl 0x19c4(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jge 0x134e084
movl $0x0, 0x19c0(%rsp)
movl 0x19c0(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jge 0x134e06c
movq 0x1ab0(%rsp), %rax
movq %rax, 0x35b8(%rsp)
movq 0x35b8(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1980(%rsp)
movq 0x1a60(%rsp), %rax
movl 0x19c0(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x35b0(%rsp)
movq 0x35b0(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1940(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x1980(%rsp), %rsi
leaq 0x1940(%rsp), %rdx
callq 0x1453b90
vmovaps %zmm0, 0x1900(%rsp)
movq 0x1a10(%rsp), %rax
vmovaps 0x1900(%rsp), %zmm0
movq %rax, 0x3bb8(%rsp)
vmovaps %zmm0, 0x3b40(%rsp)
vmovaps 0x3b40(%rsp), %zmm0
movq 0x3bb8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x1ab0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1ab0(%rsp)
movq 0x1a10(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1a10(%rsp)
movl 0x19c0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x19c0(%rsp)
jmp 0x134df59
jmp 0x134e06e
movl 0x19c4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x19c4(%rsp)
jmp 0x134df3a
jmp 0x134e086
movl 0x1abc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1abc(%rsp)
jmp 0x134d210
movl $0x0, 0x2bd4(%rsp)
jmp 0x1354af0
cmpl $0x1, 0x2b88(%rsp)
je 0x134f057
cmpl $0x1, 0x2ba8(%rsp)
jne 0x134f057
movl 0x2b84(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jne 0x134f057
movl 0x2b7c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jne 0x134f057
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b7c(%rsp), %ecx
movq 0x2b70(%rsp), %r8
movl 0x2b6c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c28(%rsp)
movq 0x2c28(%rsp), %rcx
movq %rcx, 0x3a0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x3af(%rsp)
je 0x134e193
movq 0x3a0(%rsp), %rax
movq %rax, 0x41b8(%rsp)
movq 0x41b8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x3af(%rsp)
movb 0x3af(%rsp), %al
testb $0x1, %al
jne 0x134e1a0
jmp 0x134e1b0
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1354af0
movl $0x0, 0x18fc(%rsp)
movl 0x18fc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x134f047
movq 0x2bc8(%rsp), %rcx
movl 0x18fc(%rsp), %eax
leaq 0x18a8(%rsp), %rdx
movq %rdx, 0x2d58(%rsp)
movq %rcx, 0x2d50(%rsp)
movl %eax, 0x2d4c(%rsp)
movq 0x2d50(%rsp), %rax
movq %rax, 0x398(%rsp)
movb $0x0, 0x2d4b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d4c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x18a8(%rsp), %r10
movq %r10, 0x49b0(%rsp)
movl %r9d, 0x49ac(%rsp)
movl %r8d, 0x49a8(%rsp)
movl %edi, 0x49a4(%rsp)
movq %rsi, 0x4998(%rsp)
movq %rdx, 0x4990(%rsp)
movl %ecx, 0x498c(%rsp)
movq %rax, 0x4980(%rsp)
movq 0x49b0(%rsp), %rcx
movq %rcx, 0x390(%rsp)
movq 0x4998(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4990(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x498c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4980(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x49ac(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x49a8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x49a4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c48(%rsp)
movl $0x10, 0x4c44(%rsp)
movq 0x4c48(%rsp), %rax
movslq 0x4c44(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c44(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x398(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x18d0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x134e38b
movq 0x398(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x18e8(%rsp)
movb $0x1, 0x2d4b(%rsp)
testb $0x1, 0x2d4b(%rsp)
jne 0x134e4cc
leaq 0x18a8(%rsp), %rax
movq %rax, 0x3080(%rsp)
movq 0x3080(%rsp), %rax
movq %rax, 0x52e8(%rsp)
movq 0x52e8(%rsp), %rax
movq %rax, 0x388(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134e46f
movq 0x388(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x52e4(%rsp) # imm = 0xFFFFFFFF
movl 0x52e4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x52e0(%rsp)
cmpl $0x1, 0x52e0(%rsp)
jne 0x134e46f
movq 0x388(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x134e43d
movq 0x388(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x134e43b
jmp 0x134e46d
movq 0x388(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5470(%rsp)
cmpq $0x0, 0x5470(%rsp)
je 0x134e46b
movq 0x5470(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x134e46d
jmp 0x134e46f
movq 0x388(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134e4ca
movq %rax, %rdi
callq 0x678a0
jmp 0x134e4cc
leaq 0x18a8(%rsp), %rax
movq %rax, 0x2f60(%rsp)
movq 0x2f60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x378(%rsp)
leaq 0x18a8(%rsp), %rax
movq %rax, 0x31a0(%rsp)
movq 0x31a0(%rsp), %rax
movq %rax, 0x50a8(%rsp)
movq 0x50a8(%rsp), %rax
movq %rax, 0x380(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134e5bd
movq 0x380(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x50a4(%rsp) # imm = 0xFFFFFFFF
movl 0x50a4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x50a0(%rsp)
cmpl $0x1, 0x50a0(%rsp)
jne 0x134e5bd
movq 0x380(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x134e58b
movq 0x380(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x134e589
jmp 0x134e5bb
movq 0x380(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5590(%rsp)
cmpq $0x0, 0x5590(%rsp)
je 0x134e5b9
movq 0x5590(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x134e5bb
jmp 0x134e5bd
movq 0x380(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134e618
movq %rax, %rdi
callq 0x678a0
movq 0x378(%rsp), %rax
movq %rax, 0x18f0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x18fc(%rsp), %eax
leaq 0x1858(%rsp), %rdx
movq %rdx, 0x2d40(%rsp)
movq %rcx, 0x2d38(%rsp)
movl %eax, 0x2d34(%rsp)
movq 0x2d38(%rsp), %rax
movq %rax, 0x370(%rsp)
movb $0x0, 0x2d33(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d34(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1858(%rsp), %r10
movq %r10, 0x49e8(%rsp)
movl %r9d, 0x49e4(%rsp)
movl %r8d, 0x49e0(%rsp)
movl %edi, 0x49dc(%rsp)
movq %rsi, 0x49d0(%rsp)
movq %rdx, 0x49c8(%rsp)
movl %ecx, 0x49c4(%rsp)
movq %rax, 0x49b8(%rsp)
movq 0x49e8(%rsp), %rcx
movq %rcx, 0x368(%rsp)
movq 0x49d0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x49c8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x49c4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x49b8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x49e4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x49e0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x49dc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c38(%rsp)
movl $0x10, 0x4c34(%rsp)
movq 0x4c38(%rsp), %rax
movslq 0x4c34(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c34(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x370(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1880(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x134e7e4
movq 0x370(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1898(%rsp)
movb $0x1, 0x2d33(%rsp)
testb $0x1, 0x2d33(%rsp)
jne 0x134e925
leaq 0x1858(%rsp), %rax
movq %rax, 0x3088(%rsp)
movq 0x3088(%rsp), %rax
movq %rax, 0x52d8(%rsp)
movq 0x52d8(%rsp), %rax
movq %rax, 0x360(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134e8c8
movq 0x360(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x52d4(%rsp) # imm = 0xFFFFFFFF
movl 0x52d4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x52d0(%rsp)
cmpl $0x1, 0x52d0(%rsp)
jne 0x134e8c8
movq 0x360(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x134e896
movq 0x360(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x134e894
jmp 0x134e8c6
movq 0x360(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5478(%rsp)
cmpq $0x0, 0x5478(%rsp)
je 0x134e8c4
movq 0x5478(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x134e8c6
jmp 0x134e8c8
movq 0x360(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134e923
movq %rax, %rdi
callq 0x678a0
jmp 0x134e925
leaq 0x1858(%rsp), %rax
movq %rax, 0x2f58(%rsp)
movq 0x2f58(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x350(%rsp)
leaq 0x1858(%rsp), %rax
movq %rax, 0x31a8(%rsp)
movq 0x31a8(%rsp), %rax
movq %rax, 0x5098(%rsp)
movq 0x5098(%rsp), %rax
movq %rax, 0x358(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134ea16
movq 0x358(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5094(%rsp) # imm = 0xFFFFFFFF
movl 0x5094(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5090(%rsp)
cmpl $0x1, 0x5090(%rsp)
jne 0x134ea16
movq 0x358(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x134e9e4
movq 0x358(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x134e9e2
jmp 0x134ea14
movq 0x358(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5598(%rsp)
cmpq $0x0, 0x5598(%rsp)
je 0x134ea12
movq 0x5598(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x134ea14
jmp 0x134ea16
movq 0x358(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134ea71
movq %rax, %rdi
callq 0x678a0
movq 0x350(%rsp), %rax
movq %rax, 0x18a0(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x18fc(%rsp), %eax
leaq 0x1808(%rsp), %rdx
movq %rdx, 0x3320(%rsp)
movq %rcx, 0x3318(%rsp)
movl %eax, 0x3314(%rsp)
movq 0x3318(%rsp), %rax
movq %rax, 0x348(%rsp)
movb $0x0, 0x3313(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3314(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1808(%rsp), %r10
movq %r10, 0x4470(%rsp)
movl %r9d, 0x446c(%rsp)
movl %r8d, 0x4468(%rsp)
movl %edi, 0x4464(%rsp)
movq %rsi, 0x4458(%rsp)
movq %rdx, 0x4450(%rsp)
movl %ecx, 0x444c(%rsp)
movq %rax, 0x4440(%rsp)
movq 0x4470(%rsp), %rcx
movq %rcx, 0x340(%rsp)
movq 0x4458(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4450(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x444c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4440(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x446c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4468(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4464(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4dc8(%rsp)
movl $0x10, 0x4dc4(%rsp)
movq 0x4dc8(%rsp), %rax
movslq 0x4dc4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4dc4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x348(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1830(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x134ec3d
movq 0x348(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1848(%rsp)
movb $0x1, 0x3313(%rsp)
testb $0x1, 0x3313(%rsp)
jne 0x134ed7e
leaq 0x1808(%rsp), %rax
movq %rax, 0x3328(%rsp)
movq 0x3328(%rsp), %rax
movq %rax, 0x4f18(%rsp)
movq 0x4f18(%rsp), %rax
movq %rax, 0x338(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134ed21
movq 0x338(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f14(%rsp) # imm = 0xFFFFFFFF
movl 0x4f14(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f10(%rsp)
cmpl $0x1, 0x4f10(%rsp)
jne 0x134ed21
movq 0x338(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x134ecef
movq 0x338(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x134eced
jmp 0x134ed1f
movq 0x338(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5658(%rsp)
cmpq $0x0, 0x5658(%rsp)
je 0x134ed1d
movq 0x5658(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x134ed1f
jmp 0x134ed21
movq 0x338(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134ed7c
movq %rax, %rdi
callq 0x678a0
jmp 0x134ed7e
leaq 0x1808(%rsp), %rax
movq %rax, 0x34b8(%rsp)
movq 0x34b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x328(%rsp)
leaq 0x1808(%rsp), %rax
movq %rax, 0x31b0(%rsp)
movq 0x31b0(%rsp), %rax
movq %rax, 0x5088(%rsp)
movq 0x5088(%rsp), %rax
movq %rax, 0x330(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134ee6f
movq 0x330(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5084(%rsp) # imm = 0xFFFFFFFF
movl 0x5084(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5080(%rsp)
cmpl $0x1, 0x5080(%rsp)
jne 0x134ee6f
movq 0x330(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x134ee3d
movq 0x330(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x134ee3b
jmp 0x134ee6d
movq 0x330(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55a0(%rsp)
cmpq $0x0, 0x55a0(%rsp)
je 0x134ee6b
movq 0x55a0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x134ee6d
jmp 0x134ee6f
movq 0x330(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134eeca
movq %rax, %rdi
callq 0x678a0
movq 0x328(%rsp), %rax
movq %rax, 0x1850(%rsp)
movl $0x0, 0x1804(%rsp)
movl 0x1804(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jge 0x134f02f
movq 0x18f0(%rsp), %rax
movl 0x1804(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x35a8(%rsp)
movq 0x35a8(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x17c0(%rsp)
movl $0x0, 0x17bc(%rsp)
movl 0x17bc(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jge 0x134f017
movq 0x18a0(%rsp), %rax
movq %rax, 0x35a0(%rsp)
movq 0x35a0(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1740(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x17c0(%rsp), %rsi
leaq 0x1740(%rsp), %rdx
callq 0x1453b90
vmovaps %zmm0, 0x1700(%rsp)
movq 0x1850(%rsp), %rax
vmovaps 0x1700(%rsp), %zmm0
movq %rax, 0x3b38(%rsp)
vmovaps %zmm0, 0x3ac0(%rsp)
vmovaps 0x3ac0(%rsp), %zmm0
movq 0x3b38(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x18a0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x18a0(%rsp)
movq 0x1850(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1850(%rsp)
movl 0x17bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x17bc(%rsp)
jmp 0x134ef3e
jmp 0x134f019
movl 0x1804(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1804(%rsp)
jmp 0x134eee5
jmp 0x134f031
movl 0x18fc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x18fc(%rsp)
jmp 0x134e1bb
movl $0x0, 0x2bd4(%rsp)
jmp 0x1354af0
movl 0x2b88(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jne 0x1350002
cmpl $0x1, 0x2b84(%rsp)
je 0x1350002
cmpl $0x1, 0x2ba4(%rsp)
jne 0x1350002
movl 0x2b7c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jne 0x1350002
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b7c(%rsp), %ecx
movq 0x2b70(%rsp), %r8
movl 0x2b6c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c20(%rsp)
movq 0x2c20(%rsp), %rcx
movq %rcx, 0x318(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x327(%rsp)
je 0x134f13e
movq 0x318(%rsp), %rax
movq %rax, 0x41c0(%rsp)
movq 0x41c0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x327(%rsp)
movb 0x327(%rsp), %al
testb $0x1, %al
jne 0x134f14b
jmp 0x134f15b
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1354af0
movl $0x0, 0x16fc(%rsp)
movl 0x16fc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x134fff2
movq 0x2bc8(%rsp), %rcx
movl 0x16fc(%rsp), %eax
leaq 0x16a8(%rsp), %rdx
movq %rdx, 0x2d28(%rsp)
movq %rcx, 0x2d20(%rsp)
movl %eax, 0x2d1c(%rsp)
movq 0x2d20(%rsp), %rax
movq %rax, 0x310(%rsp)
movb $0x0, 0x2d1b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d1c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x16a8(%rsp), %r10
movq %r10, 0x4a20(%rsp)
movl %r9d, 0x4a1c(%rsp)
movl %r8d, 0x4a18(%rsp)
movl %edi, 0x4a14(%rsp)
movq %rsi, 0x4a08(%rsp)
movq %rdx, 0x4a00(%rsp)
movl %ecx, 0x49fc(%rsp)
movq %rax, 0x49f0(%rsp)
movq 0x4a20(%rsp), %rcx
movq %rcx, 0x308(%rsp)
movq 0x4a08(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4a00(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x49fc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x49f0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4a1c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4a18(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4a14(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c28(%rsp)
movl $0x10, 0x4c24(%rsp)
movq 0x4c28(%rsp), %rax
movslq 0x4c24(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c24(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x310(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x16d0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x134f336
movq 0x310(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x16e8(%rsp)
movb $0x1, 0x2d1b(%rsp)
testb $0x1, 0x2d1b(%rsp)
jne 0x134f477
leaq 0x16a8(%rsp), %rax
movq %rax, 0x3090(%rsp)
movq 0x3090(%rsp), %rax
movq %rax, 0x52c8(%rsp)
movq 0x52c8(%rsp), %rax
movq %rax, 0x300(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134f41a
movq 0x300(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x52c4(%rsp) # imm = 0xFFFFFFFF
movl 0x52c4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x52c0(%rsp)
cmpl $0x1, 0x52c0(%rsp)
jne 0x134f41a
movq 0x300(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x134f3e8
movq 0x300(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x134f3e6
jmp 0x134f418
movq 0x300(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5480(%rsp)
cmpq $0x0, 0x5480(%rsp)
je 0x134f416
movq 0x5480(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x134f418
jmp 0x134f41a
movq 0x300(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134f475
movq %rax, %rdi
callq 0x678a0
jmp 0x134f477
leaq 0x16a8(%rsp), %rax
movq %rax, 0x2f50(%rsp)
movq 0x2f50(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2f0(%rsp)
leaq 0x16a8(%rsp), %rax
movq %rax, 0x31b8(%rsp)
movq 0x31b8(%rsp), %rax
movq %rax, 0x5078(%rsp)
movq 0x5078(%rsp), %rax
movq %rax, 0x2f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134f568
movq 0x2f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5074(%rsp) # imm = 0xFFFFFFFF
movl 0x5074(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5070(%rsp)
cmpl $0x1, 0x5070(%rsp)
jne 0x134f568
movq 0x2f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x134f536
movq 0x2f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x134f534
jmp 0x134f566
movq 0x2f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55a8(%rsp)
cmpq $0x0, 0x55a8(%rsp)
je 0x134f564
movq 0x55a8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x134f566
jmp 0x134f568
movq 0x2f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134f5c3
movq %rax, %rdi
callq 0x678a0
movq 0x2f0(%rsp), %rax
movq %rax, 0x16f0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x16fc(%rsp), %eax
leaq 0x1658(%rsp), %rdx
movq %rdx, 0x2d10(%rsp)
movq %rcx, 0x2d08(%rsp)
movl %eax, 0x2d04(%rsp)
movq 0x2d08(%rsp), %rax
movq %rax, 0x2e8(%rsp)
movb $0x0, 0x2d03(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d04(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1658(%rsp), %r10
movq %r10, 0x4a58(%rsp)
movl %r9d, 0x4a54(%rsp)
movl %r8d, 0x4a50(%rsp)
movl %edi, 0x4a4c(%rsp)
movq %rsi, 0x4a40(%rsp)
movq %rdx, 0x4a38(%rsp)
movl %ecx, 0x4a34(%rsp)
movq %rax, 0x4a28(%rsp)
movq 0x4a58(%rsp), %rcx
movq %rcx, 0x2e0(%rsp)
movq 0x4a40(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4a38(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4a34(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4a28(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4a54(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4a50(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4a4c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c18(%rsp)
movl $0x10, 0x4c14(%rsp)
movq 0x4c18(%rsp), %rax
movslq 0x4c14(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c14(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2e8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1680(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x134f78f
movq 0x2e8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1698(%rsp)
movb $0x1, 0x2d03(%rsp)
testb $0x1, 0x2d03(%rsp)
jne 0x134f8d0
leaq 0x1658(%rsp), %rax
movq %rax, 0x3098(%rsp)
movq 0x3098(%rsp), %rax
movq %rax, 0x52b8(%rsp)
movq 0x52b8(%rsp), %rax
movq %rax, 0x2d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134f873
movq 0x2d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x52b4(%rsp) # imm = 0xFFFFFFFF
movl 0x52b4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x52b0(%rsp)
cmpl $0x1, 0x52b0(%rsp)
jne 0x134f873
movq 0x2d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x134f841
movq 0x2d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x134f83f
jmp 0x134f871
movq 0x2d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5488(%rsp)
cmpq $0x0, 0x5488(%rsp)
je 0x134f86f
movq 0x5488(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x134f871
jmp 0x134f873
movq 0x2d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134f8ce
movq %rax, %rdi
callq 0x678a0
jmp 0x134f8d0
leaq 0x1658(%rsp), %rax
movq %rax, 0x2f48(%rsp)
movq 0x2f48(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2c8(%rsp)
leaq 0x1658(%rsp), %rax
movq %rax, 0x31c0(%rsp)
movq 0x31c0(%rsp), %rax
movq %rax, 0x5068(%rsp)
movq 0x5068(%rsp), %rax
movq %rax, 0x2d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134f9c1
movq 0x2d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5064(%rsp) # imm = 0xFFFFFFFF
movl 0x5064(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5060(%rsp)
cmpl $0x1, 0x5060(%rsp)
jne 0x134f9c1
movq 0x2d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x134f98f
movq 0x2d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x134f98d
jmp 0x134f9bf
movq 0x2d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55b0(%rsp)
cmpq $0x0, 0x55b0(%rsp)
je 0x134f9bd
movq 0x55b0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x134f9bf
jmp 0x134f9c1
movq 0x2d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134fa1c
movq %rax, %rdi
callq 0x678a0
movq 0x2c8(%rsp), %rax
movq %rax, 0x16a0(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x16fc(%rsp), %eax
leaq 0x1608(%rsp), %rdx
movq %rdx, 0x3300(%rsp)
movq %rcx, 0x32f8(%rsp)
movl %eax, 0x32f4(%rsp)
movq 0x32f8(%rsp), %rax
movq %rax, 0x2c0(%rsp)
movb $0x0, 0x32f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x32f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1608(%rsp), %r10
movq %r10, 0x44a8(%rsp)
movl %r9d, 0x44a4(%rsp)
movl %r8d, 0x44a0(%rsp)
movl %edi, 0x449c(%rsp)
movq %rsi, 0x4490(%rsp)
movq %rdx, 0x4488(%rsp)
movl %ecx, 0x4484(%rsp)
movq %rax, 0x4478(%rsp)
movq 0x44a8(%rsp), %rcx
movq %rcx, 0x2b8(%rsp)
movq 0x4490(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4488(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4484(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4478(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x44a4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x44a0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x449c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4db8(%rsp)
movl $0x10, 0x4db4(%rsp)
movq 0x4db8(%rsp), %rax
movslq 0x4db4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4db4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2c0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1630(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x134fbe8
movq 0x2c0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1648(%rsp)
movb $0x1, 0x32f3(%rsp)
testb $0x1, 0x32f3(%rsp)
jne 0x134fd29
leaq 0x1608(%rsp), %rax
movq %rax, 0x3308(%rsp)
movq 0x3308(%rsp), %rax
movq %rax, 0x4f28(%rsp)
movq 0x4f28(%rsp), %rax
movq %rax, 0x2b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134fccc
movq 0x2b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f24(%rsp) # imm = 0xFFFFFFFF
movl 0x4f24(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f20(%rsp)
cmpl $0x1, 0x4f20(%rsp)
jne 0x134fccc
movq 0x2b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x134fc9a
movq 0x2b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x134fc98
jmp 0x134fcca
movq 0x2b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5650(%rsp)
cmpq $0x0, 0x5650(%rsp)
je 0x134fcc8
movq 0x5650(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x134fcca
jmp 0x134fccc
movq 0x2b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134fd27
movq %rax, %rdi
callq 0x678a0
jmp 0x134fd29
leaq 0x1608(%rsp), %rax
movq %rax, 0x34b0(%rsp)
movq 0x34b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2a0(%rsp)
leaq 0x1608(%rsp), %rax
movq %rax, 0x31c8(%rsp)
movq 0x31c8(%rsp), %rax
movq %rax, 0x5058(%rsp)
movq 0x5058(%rsp), %rax
movq %rax, 0x2a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x134fe1a
movq 0x2a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5054(%rsp) # imm = 0xFFFFFFFF
movl 0x5054(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5050(%rsp)
cmpl $0x1, 0x5050(%rsp)
jne 0x134fe1a
movq 0x2a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x134fde8
movq 0x2a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x134fde6
jmp 0x134fe18
movq 0x2a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55b8(%rsp)
cmpq $0x0, 0x55b8(%rsp)
je 0x134fe16
movq 0x55b8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x134fe18
jmp 0x134fe1a
movq 0x2a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x134fe75
movq %rax, %rdi
callq 0x678a0
movq 0x2a0(%rsp), %rax
movq %rax, 0x1650(%rsp)
movl $0x0, 0x1604(%rsp)
movl 0x1604(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jge 0x134ffda
movl $0x0, 0x1600(%rsp)
movl 0x1600(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jge 0x134ffc2
movq 0x16f0(%rsp), %rax
movl 0x1600(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x3598(%rsp)
movq 0x3598(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x15c0(%rsp)
movq 0x16a0(%rsp), %rax
movq %rax, 0x3590(%rsp)
movq 0x3590(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1580(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x15c0(%rsp), %rsi
leaq 0x1580(%rsp), %rdx
callq 0x1453b90
vmovaps %zmm0, 0x1540(%rsp)
movq 0x1650(%rsp), %rax
vmovaps 0x1540(%rsp), %zmm0
movq %rax, 0x3ab8(%rsp)
vmovaps %zmm0, 0x3a40(%rsp)
vmovaps 0x3a40(%rsp), %zmm0
movq 0x3ab8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x16a0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x16a0(%rsp)
movq 0x1650(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1650(%rsp)
movl 0x1600(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1600(%rsp)
jmp 0x134feaf
jmp 0x134ffc4
movl 0x1604(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1604(%rsp)
jmp 0x134fe90
jmp 0x134ffdc
movl 0x16fc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x16fc(%rsp)
jmp 0x134f166
movl $0x0, 0x2bd4(%rsp)
jmp 0x1354af0
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x144d7c0
movl %eax, 0x2bd4(%rsp)
jmp 0x1354af0
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movl 0x2b9c(%rsp), %ecx
movq 0x2b90(%rsp), %r8
movl 0x2b8c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c18(%rsp)
movq 0x2c18(%rsp), %rcx
movq %rcx, 0x290(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x29f(%rsp)
je 0x13500d6
movq 0x290(%rsp), %rax
movq %rax, 0x41c8(%rsp)
movq 0x41c8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x29f(%rsp)
movb 0x29f(%rsp), %al
testb $0x1, %al
jne 0x13500e3
jmp 0x13500f3
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1354af0
movq 0x2bc0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1350b9a
movl $0x0, 0x153c(%rsp)
movl 0x153c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jge 0x1350b8a
movq 0x2bc8(%rsp), %rcx
movl 0x153c(%rsp), %eax
leaq 0x14e8(%rsp), %rdx
movq %rdx, 0x2cf8(%rsp)
movq %rcx, 0x2cf0(%rsp)
movl %eax, 0x2cec(%rsp)
movq 0x2cf0(%rsp), %rax
movq %rax, 0x288(%rsp)
movb $0x0, 0x2ceb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2cec(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x14e8(%rsp), %r10
movq %r10, 0x4a90(%rsp)
movl %r9d, 0x4a8c(%rsp)
movl %r8d, 0x4a88(%rsp)
movl %edi, 0x4a84(%rsp)
movq %rsi, 0x4a78(%rsp)
movq %rdx, 0x4a70(%rsp)
movl %ecx, 0x4a6c(%rsp)
movq %rax, 0x4a60(%rsp)
movq 0x4a90(%rsp), %rcx
movq %rcx, 0x280(%rsp)
movq 0x4a78(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4a70(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4a6c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4a60(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4a8c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4a88(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4a84(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c08(%rsp)
movl $0x10, 0x4c04(%rsp)
movq 0x4c08(%rsp), %rax
movslq 0x4c04(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c04(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x288(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1510(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13502e0
movq 0x288(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1528(%rsp)
movb $0x1, 0x2ceb(%rsp)
testb $0x1, 0x2ceb(%rsp)
jne 0x1350421
leaq 0x14e8(%rsp), %rax
movq %rax, 0x30a0(%rsp)
movq 0x30a0(%rsp), %rax
movq %rax, 0x52a8(%rsp)
movq 0x52a8(%rsp), %rax
movq %rax, 0x278(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13503c4
movq 0x278(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x52a4(%rsp) # imm = 0xFFFFFFFF
movl 0x52a4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x52a0(%rsp)
cmpl $0x1, 0x52a0(%rsp)
jne 0x13503c4
movq 0x278(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1350392
movq 0x278(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1350390
jmp 0x13503c2
movq 0x278(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5490(%rsp)
cmpq $0x0, 0x5490(%rsp)
je 0x13503c0
movq 0x5490(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13503c2
jmp 0x13503c4
movq 0x278(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135041f
movq %rax, %rdi
callq 0x678a0
jmp 0x1350421
leaq 0x14e8(%rsp), %rax
movq %rax, 0x2f40(%rsp)
movq 0x2f40(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x268(%rsp)
leaq 0x14e8(%rsp), %rax
movq %rax, 0x31d0(%rsp)
movq 0x31d0(%rsp), %rax
movq %rax, 0x5048(%rsp)
movq 0x5048(%rsp), %rax
movq %rax, 0x270(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1350512
movq 0x270(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5044(%rsp) # imm = 0xFFFFFFFF
movl 0x5044(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5040(%rsp)
cmpl $0x1, 0x5040(%rsp)
jne 0x1350512
movq 0x270(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13504e0
movq 0x270(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13504de
jmp 0x1350510
movq 0x270(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55c0(%rsp)
cmpq $0x0, 0x55c0(%rsp)
je 0x135050e
movq 0x55c0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1350510
jmp 0x1350512
movq 0x270(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135056d
movq %rax, %rdi
callq 0x678a0
movq 0x268(%rsp), %rax
movq %rax, 0x1530(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x153c(%rsp), %eax
movq %rcx, 0x4068(%rsp)
movl %eax, 0x4064(%rsp)
movq 0x4068(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x4064(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x14e0(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x153c(%rsp), %eax
leaq 0x1490(%rsp), %rdx
movq %rdx, 0x32e0(%rsp)
movq %rcx, 0x32d8(%rsp)
movl %eax, 0x32d4(%rsp)
movq 0x32d8(%rsp), %rax
movq %rax, 0x260(%rsp)
movb $0x0, 0x32d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x32d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1490(%rsp), %r10
movq %r10, 0x44e0(%rsp)
movl %r9d, 0x44dc(%rsp)
movl %r8d, 0x44d8(%rsp)
movl %edi, 0x44d4(%rsp)
movq %rsi, 0x44c8(%rsp)
movq %rdx, 0x44c0(%rsp)
movl %ecx, 0x44bc(%rsp)
movq %rax, 0x44b0(%rsp)
movq 0x44e0(%rsp), %rcx
movq %rcx, 0x258(%rsp)
movq 0x44c8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x44c0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x44bc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x44b0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x44dc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x44d8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x44d4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4da8(%rsp)
movl $0x10, 0x4da4(%rsp)
movq 0x4da8(%rsp), %rax
movslq 0x4da4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4da4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x260(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x14b8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1350782
movq 0x260(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x14d0(%rsp)
movb $0x1, 0x32d3(%rsp)
testb $0x1, 0x32d3(%rsp)
jne 0x13508c3
leaq 0x1490(%rsp), %rax
movq %rax, 0x32e8(%rsp)
movq 0x32e8(%rsp), %rax
movq %rax, 0x4f38(%rsp)
movq 0x4f38(%rsp), %rax
movq %rax, 0x250(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1350866
movq 0x250(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f34(%rsp) # imm = 0xFFFFFFFF
movl 0x4f34(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f30(%rsp)
cmpl $0x1, 0x4f30(%rsp)
jne 0x1350866
movq 0x250(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1350834
movq 0x250(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1350832
jmp 0x1350864
movq 0x250(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5648(%rsp)
cmpq $0x0, 0x5648(%rsp)
je 0x1350862
movq 0x5648(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1350864
jmp 0x1350866
movq 0x250(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13508c1
movq %rax, %rdi
callq 0x678a0
jmp 0x13508c3
leaq 0x1490(%rsp), %rax
movq %rax, 0x34a8(%rsp)
movq 0x34a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x240(%rsp)
leaq 0x1490(%rsp), %rax
movq %rax, 0x31d8(%rsp)
movq 0x31d8(%rsp), %rax
movq %rax, 0x5038(%rsp)
movq 0x5038(%rsp), %rax
movq %rax, 0x248(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13509b4
movq 0x248(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5034(%rsp) # imm = 0xFFFFFFFF
movl 0x5034(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5030(%rsp)
cmpl $0x1, 0x5030(%rsp)
jne 0x13509b4
movq 0x248(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1350982
movq 0x248(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1350980
jmp 0x13509b2
movq 0x248(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55c8(%rsp)
cmpq $0x0, 0x55c8(%rsp)
je 0x13509b0
movq 0x55c8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13509b2
jmp 0x13509b4
movq 0x248(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1350a0f
movq %rax, %rdi
callq 0x678a0
movq 0x240(%rsp), %rax
movq %rax, 0x14d8(%rsp)
movl $0x0, 0x148c(%rsp)
movl 0x148c(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jge 0x1350b72
movq 0x14e0(%rsp), %rax
movq %rax, 0x3588(%rsp)
movq 0x3588(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1440(%rsp)
movl $0x0, 0x143c(%rsp)
movl 0x143c(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jge 0x1350b48
movq 0x1530(%rsp), %rax
movq %rax, 0x3580(%rsp)
movq 0x3580(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x13c0(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x13c0(%rsp), %rsi
leaq 0x1440(%rsp), %rdx
callq 0x1453b90
vmovaps %zmm0, 0x1380(%rsp)
movq 0x14d8(%rsp), %rax
vmovaps 0x1380(%rsp), %zmm0
movq %rax, 0x3a38(%rsp)
vmovaps %zmm0, 0x39c0(%rsp)
vmovaps 0x39c0(%rsp), %zmm0
movq 0x3a38(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x1530(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1530(%rsp)
movq 0x14d8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x14d8(%rsp)
movl 0x143c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x143c(%rsp)
jmp 0x1350a6f
movq 0x14e0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x14e0(%rsp)
movl 0x148c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x148c(%rsp)
jmp 0x1350a2a
jmp 0x1350b74
movl 0x153c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x153c(%rsp)
jmp 0x1350110
movl $0x0, 0x2bd4(%rsp)
jmp 0x1354af0
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x135161f
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1350bf5
cmpl $0x1, 0x2b6c(%rsp)
jne 0x1350bf5
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x144e9d0
movl %eax, 0x2bd4(%rsp)
jmp 0x1354af0
movl $0x0, 0x137c(%rsp)
movl 0x137c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jge 0x135160f
movq 0x2bc8(%rsp), %rcx
movl 0x137c(%rsp), %eax
leaq 0x1328(%rsp), %rdx
movq %rdx, 0x2ce0(%rsp)
movq %rcx, 0x2cd8(%rsp)
movl %eax, 0x2cd4(%rsp)
movq 0x2cd8(%rsp), %rax
movq %rax, 0x238(%rsp)
movb $0x0, 0x2cd3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2cd4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1328(%rsp), %r10
movq %r10, 0x4ac8(%rsp)
movl %r9d, 0x4ac4(%rsp)
movl %r8d, 0x4ac0(%rsp)
movl %edi, 0x4abc(%rsp)
movq %rsi, 0x4ab0(%rsp)
movq %rdx, 0x4aa8(%rsp)
movl %ecx, 0x4aa4(%rsp)
movq %rax, 0x4a98(%rsp)
movq 0x4ac8(%rsp), %rcx
movq %rcx, 0x230(%rsp)
movq 0x4ab0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4aa8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4aa4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4a98(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4ac4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4ac0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4abc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4bf8(%rsp)
movl $0x10, 0x4bf4(%rsp)
movq 0x4bf8(%rsp), %rax
movslq 0x4bf4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4bf4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x238(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1350(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1350dd0
movq 0x238(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1368(%rsp)
movb $0x1, 0x2cd3(%rsp)
testb $0x1, 0x2cd3(%rsp)
jne 0x1350f11
leaq 0x1328(%rsp), %rax
movq %rax, 0x30a8(%rsp)
movq 0x30a8(%rsp), %rax
movq %rax, 0x5298(%rsp)
movq 0x5298(%rsp), %rax
movq %rax, 0x228(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1350eb4
movq 0x228(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5294(%rsp) # imm = 0xFFFFFFFF
movl 0x5294(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5290(%rsp)
cmpl $0x1, 0x5290(%rsp)
jne 0x1350eb4
movq 0x228(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1350e82
movq 0x228(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1350e80
jmp 0x1350eb2
movq 0x228(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5498(%rsp)
cmpq $0x0, 0x5498(%rsp)
je 0x1350eb0
movq 0x5498(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1350eb2
jmp 0x1350eb4
movq 0x228(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1350f0f
movq %rax, %rdi
callq 0x678a0
jmp 0x1350f11
leaq 0x1328(%rsp), %rax
movq %rax, 0x2f38(%rsp)
movq 0x2f38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x218(%rsp)
leaq 0x1328(%rsp), %rax
movq %rax, 0x31e0(%rsp)
movq 0x31e0(%rsp), %rax
movq %rax, 0x5028(%rsp)
movq 0x5028(%rsp), %rax
movq %rax, 0x220(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1351002
movq 0x220(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5024(%rsp) # imm = 0xFFFFFFFF
movl 0x5024(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5020(%rsp)
cmpl $0x1, 0x5020(%rsp)
jne 0x1351002
movq 0x220(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1350fd0
movq 0x220(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1350fce
jmp 0x1351000
movq 0x220(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55d0(%rsp)
cmpq $0x0, 0x55d0(%rsp)
je 0x1350ffe
movq 0x55d0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1351000
jmp 0x1351002
movq 0x220(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135105d
movq %rax, %rdi
callq 0x678a0
movq 0x218(%rsp), %rax
movq %rax, 0x1370(%rsp)
movq 0x2bc0(%rsp), %rax
movq %rax, 0x2f30(%rsp)
movq 0x2f30(%rsp), %rax
movq (%rax), %rax
movl 0x137c(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x3578(%rsp)
movq 0x3578(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x12c0(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x137c(%rsp), %eax
leaq 0x1270(%rsp), %rdx
movq %rdx, 0x32c0(%rsp)
movq %rcx, 0x32b8(%rsp)
movl %eax, 0x32b4(%rsp)
movq 0x32b8(%rsp), %rax
movq %rax, 0x210(%rsp)
movb $0x0, 0x32b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x32b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1270(%rsp), %r10
movq %r10, 0x4518(%rsp)
movl %r9d, 0x4514(%rsp)
movl %r8d, 0x4510(%rsp)
movl %edi, 0x450c(%rsp)
movq %rsi, 0x4500(%rsp)
movq %rdx, 0x44f8(%rsp)
movl %ecx, 0x44f4(%rsp)
movq %rax, 0x44e8(%rsp)
movq 0x4518(%rsp), %rcx
movq %rcx, 0x208(%rsp)
movq 0x4500(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x44f8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x44f4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x44e8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4514(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4510(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x450c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d98(%rsp)
movl $0x10, 0x4d94(%rsp)
movq 0x4d98(%rsp), %rax
movslq 0x4d94(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d94(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x210(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1298(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1351276
movq 0x210(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x12b0(%rsp)
movb $0x1, 0x32b3(%rsp)
testb $0x1, 0x32b3(%rsp)
jne 0x13513b7
leaq 0x1270(%rsp), %rax
movq %rax, 0x32c8(%rsp)
movq 0x32c8(%rsp), %rax
movq %rax, 0x4f48(%rsp)
movq 0x4f48(%rsp), %rax
movq %rax, 0x200(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x135135a
movq 0x200(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f44(%rsp) # imm = 0xFFFFFFFF
movl 0x4f44(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f40(%rsp)
cmpl $0x1, 0x4f40(%rsp)
jne 0x135135a
movq 0x200(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1351328
movq 0x200(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1351326
jmp 0x1351358
movq 0x200(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5640(%rsp)
cmpq $0x0, 0x5640(%rsp)
je 0x1351356
movq 0x5640(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1351358
jmp 0x135135a
movq 0x200(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13513b5
movq %rax, %rdi
callq 0x678a0
jmp 0x13513b7
leaq 0x1270(%rsp), %rax
movq %rax, 0x34a0(%rsp)
movq 0x34a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1f0(%rsp)
leaq 0x1270(%rsp), %rax
movq %rax, 0x31e8(%rsp)
movq 0x31e8(%rsp), %rax
movq %rax, 0x5018(%rsp)
movq 0x5018(%rsp), %rax
movq %rax, 0x1f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13514a8
movq 0x1f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5014(%rsp) # imm = 0xFFFFFFFF
movl 0x5014(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5010(%rsp)
cmpl $0x1, 0x5010(%rsp)
jne 0x13514a8
movq 0x1f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1351476
movq 0x1f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1351474
jmp 0x13514a6
movq 0x1f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55d8(%rsp)
cmpq $0x0, 0x55d8(%rsp)
je 0x13514a4
movq 0x55d8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13514a6
jmp 0x13514a8
movq 0x1f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1351503
movq %rax, %rdi
callq 0x678a0
movq 0x1f0(%rsp), %rax
movq %rax, 0x12b8(%rsp)
movl $0x0, 0x126c(%rsp)
movl 0x126c(%rsp), %eax
cmpl 0x2b98(%rsp), %eax
jge 0x13515f7
movq 0x1370(%rsp), %rax
movq %rax, 0x3570(%rsp)
movq 0x3570(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1200(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x1200(%rsp), %rsi
leaq 0x12c0(%rsp), %rdx
callq 0x1453b90
vmovaps %zmm0, 0x11c0(%rsp)
movq 0x12b8(%rsp), %rax
vmovaps 0x11c0(%rsp), %zmm0
movq %rax, 0x39b8(%rsp)
vmovaps %zmm0, 0x3940(%rsp)
vmovaps 0x3940(%rsp), %zmm0
movq 0x39b8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x1370(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1370(%rsp)
movq 0x12b8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x12b8(%rsp)
movl 0x126c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x126c(%rsp)
jmp 0x135151e
jmp 0x13515f9
movl 0x137c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x137c(%rsp)
jmp 0x1350c00
movl $0x0, 0x2bd4(%rsp)
jmp 0x1354af0
jmp 0x1354ae3
movq 0x2bc8(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x135311d
movq 0x2bc0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x13521e1
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b80(%rsp), %ecx
movl 0x2b7c(%rsp), %r8d
movq 0x2b70(%rsp), %r9
movl 0x2b6c(%rsp), %r10d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c10(%rsp)
movq 0x2c10(%rsp), %rcx
movq %rcx, 0x1e0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1ef(%rsp)
je 0x13516f8
movq 0x1e0(%rsp), %rax
movq %rax, 0x41d0(%rsp)
movq 0x41d0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1ef(%rsp)
movb 0x1ef(%rsp), %al
testb $0x1, %al
jne 0x1351705
jmp 0x1351715
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1354af0
movl $0x0, 0x11bc(%rsp)
movl 0x11bc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x13521d1
movq 0x2bc8(%rsp), %rcx
movl 0x11bc(%rsp), %eax
movq %rcx, 0x4058(%rsp)
movl %eax, 0x4054(%rsp)
movq 0x4058(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x4054(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x11b0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x11bc(%rsp), %eax
leaq 0x1160(%rsp), %rdx
movq %rdx, 0x2cc8(%rsp)
movq %rcx, 0x2cc0(%rsp)
movl %eax, 0x2cbc(%rsp)
movq 0x2cc0(%rsp), %rax
movq %rax, 0x1d8(%rsp)
movb $0x0, 0x2cbb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2cbc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1160(%rsp), %r10
movq %r10, 0x4b00(%rsp)
movl %r9d, 0x4afc(%rsp)
movl %r8d, 0x4af8(%rsp)
movl %edi, 0x4af4(%rsp)
movq %rsi, 0x4ae8(%rsp)
movq %rdx, 0x4ae0(%rsp)
movl %ecx, 0x4adc(%rsp)
movq %rax, 0x4ad0(%rsp)
movq 0x4b00(%rsp), %rcx
movq %rcx, 0x1d0(%rsp)
movq 0x4ae8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4ae0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4adc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4ad0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4afc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4af8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4af4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4be8(%rsp)
movl $0x10, 0x4be4(%rsp)
movq 0x4be8(%rsp), %rax
movslq 0x4be4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4be4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x1d8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1188(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1351939
movq 0x1d8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x11a0(%rsp)
movb $0x1, 0x2cbb(%rsp)
testb $0x1, 0x2cbb(%rsp)
jne 0x1351a7a
leaq 0x1160(%rsp), %rax
movq %rax, 0x30b0(%rsp)
movq 0x30b0(%rsp), %rax
movq %rax, 0x5288(%rsp)
movq 0x5288(%rsp), %rax
movq %rax, 0x1c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1351a1d
movq 0x1c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5284(%rsp) # imm = 0xFFFFFFFF
movl 0x5284(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5280(%rsp)
cmpl $0x1, 0x5280(%rsp)
jne 0x1351a1d
movq 0x1c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13519eb
movq 0x1c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13519e9
jmp 0x1351a1b
movq 0x1c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54a0(%rsp)
cmpq $0x0, 0x54a0(%rsp)
je 0x1351a19
movq 0x54a0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1351a1b
jmp 0x1351a1d
movq 0x1c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1351a78
movq %rax, %rdi
callq 0x678a0
jmp 0x1351a7a
leaq 0x1160(%rsp), %rax
movq %rax, 0x2f28(%rsp)
movq 0x2f28(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1b8(%rsp)
leaq 0x1160(%rsp), %rax
movq %rax, 0x31f0(%rsp)
movq 0x31f0(%rsp), %rax
movq %rax, 0x5008(%rsp)
movq 0x5008(%rsp), %rax
movq %rax, 0x1c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1351b6b
movq 0x1c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5004(%rsp) # imm = 0xFFFFFFFF
movl 0x5004(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5000(%rsp)
cmpl $0x1, 0x5000(%rsp)
jne 0x1351b6b
movq 0x1c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1351b39
movq 0x1c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1351b37
jmp 0x1351b69
movq 0x1c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55e0(%rsp)
cmpq $0x0, 0x55e0(%rsp)
je 0x1351b67
movq 0x55e0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1351b69
jmp 0x1351b6b
movq 0x1c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1351bc6
movq %rax, %rdi
callq 0x678a0
movq 0x1b8(%rsp), %rax
movq %rax, 0x11a8(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x11bc(%rsp), %eax
leaq 0x1110(%rsp), %rdx
movq %rdx, 0x32a0(%rsp)
movq %rcx, 0x3298(%rsp)
movl %eax, 0x3294(%rsp)
movq 0x3298(%rsp), %rax
movq %rax, 0x1b0(%rsp)
movb $0x0, 0x3293(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3294(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1110(%rsp), %r10
movq %r10, 0x4550(%rsp)
movl %r9d, 0x454c(%rsp)
movl %r8d, 0x4548(%rsp)
movl %edi, 0x4544(%rsp)
movq %rsi, 0x4538(%rsp)
movq %rdx, 0x4530(%rsp)
movl %ecx, 0x452c(%rsp)
movq %rax, 0x4520(%rsp)
movq 0x4550(%rsp), %rcx
movq %rcx, 0x1a8(%rsp)
movq 0x4538(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4530(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x452c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4520(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x454c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4548(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4544(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d88(%rsp)
movl $0x10, 0x4d84(%rsp)
movq 0x4d88(%rsp), %rax
movslq 0x4d84(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d84(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x1b0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1138(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1351d92
movq 0x1b0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1150(%rsp)
movb $0x1, 0x3293(%rsp)
testb $0x1, 0x3293(%rsp)
jne 0x1351ed3
leaq 0x1110(%rsp), %rax
movq %rax, 0x32a8(%rsp)
movq 0x32a8(%rsp), %rax
movq %rax, 0x4f58(%rsp)
movq 0x4f58(%rsp), %rax
movq %rax, 0x1a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1351e76
movq 0x1a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f54(%rsp) # imm = 0xFFFFFFFF
movl 0x4f54(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f50(%rsp)
cmpl $0x1, 0x4f50(%rsp)
jne 0x1351e76
movq 0x1a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1351e44
movq 0x1a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1351e42
jmp 0x1351e74
movq 0x1a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5638(%rsp)
cmpq $0x0, 0x5638(%rsp)
je 0x1351e72
movq 0x5638(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1351e74
jmp 0x1351e76
movq 0x1a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1351ed1
movq %rax, %rdi
callq 0x678a0
jmp 0x1351ed3
leaq 0x1110(%rsp), %rax
movq %rax, 0x3498(%rsp)
movq 0x3498(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x190(%rsp)
leaq 0x1110(%rsp), %rax
movq %rax, 0x31f8(%rsp)
movq 0x31f8(%rsp), %rax
movq %rax, 0x4ff8(%rsp)
movq 0x4ff8(%rsp), %rax
movq %rax, 0x198(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1351fc4
movq 0x198(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4ff4(%rsp) # imm = 0xFFFFFFFF
movl 0x4ff4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4ff0(%rsp)
cmpl $0x1, 0x4ff0(%rsp)
jne 0x1351fc4
movq 0x198(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1351f92
movq 0x198(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1351f90
jmp 0x1351fc2
movq 0x198(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55e8(%rsp)
cmpq $0x0, 0x55e8(%rsp)
je 0x1351fc0
movq 0x55e8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1351fc2
jmp 0x1351fc4
movq 0x198(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135201f
movq %rax, %rdi
callq 0x678a0
movq 0x190(%rsp), %rax
movq %rax, 0x1158(%rsp)
movl $0x0, 0x110c(%rsp)
movl 0x110c(%rsp), %eax
cmpl 0x2b80(%rsp), %eax
jge 0x13521b9
movq 0x11b0(%rsp), %rax
movq %rax, 0x3568(%rsp)
movq 0x3568(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x10c0(%rsp)
movl $0x0, 0x10bc(%rsp)
movl 0x10bc(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jge 0x135218f
movl $0x0, 0x10b8(%rsp)
movl 0x10b8(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jge 0x1352177
movq 0x11a8(%rsp), %rax
movq %rax, 0x3560(%rsp)
movq 0x3560(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1040(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x10c0(%rsp), %rsi
leaq 0x1040(%rsp), %rdx
callq 0x1453b90
vmovaps %zmm0, 0x1000(%rsp)
movq 0x1158(%rsp), %rax
vmovaps 0x1000(%rsp), %zmm0
movq %rax, 0x3938(%rsp)
vmovaps %zmm0, 0x38c0(%rsp)
vmovaps 0x38c0(%rsp), %zmm0
movq 0x3938(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x11a8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x11a8(%rsp)
movq 0x1158(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1158(%rsp)
movl 0x10b8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x10b8(%rsp)
jmp 0x135209e
jmp 0x1352179
movl 0x10bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x10bc(%rsp)
jmp 0x135207f
movq 0x11b0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x11b0(%rsp)
movl 0x110c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x110c(%rsp)
jmp 0x135203a
jmp 0x13521bb
movl 0x11bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x11bc(%rsp)
jmp 0x1351720
movl $0x0, 0x2bd4(%rsp)
jmp 0x1354af0
movq 0x2bc0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1352d48
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b7c(%rsp), %ecx
movq 0x2b70(%rsp), %r8
movl 0x2b6c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c08(%rsp)
movq 0x2c08(%rsp), %rcx
movq %rcx, 0x180(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x18f(%rsp)
je 0x1352296
movq 0x180(%rsp), %rax
movq %rax, 0x41d8(%rsp)
movq 0x41d8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x18f(%rsp)
movb 0x18f(%rsp), %al
testb $0x1, %al
jne 0x13522a3
jmp 0x13522b3
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1354af0
movl $0x0, 0xffc(%rsp)
movl 0xffc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x1352d38
movq 0x2bc8(%rsp), %rcx
movl 0xffc(%rsp), %eax
movq %rcx, 0x4048(%rsp)
movl %eax, 0x4044(%rsp)
movq 0x4048(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x4044(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xff0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0xffc(%rsp), %eax
leaq 0xfa0(%rsp), %rdx
movq %rdx, 0x2cb0(%rsp)
movq %rcx, 0x2ca8(%rsp)
movl %eax, 0x2ca4(%rsp)
movq 0x2ca8(%rsp), %rax
movq %rax, 0x178(%rsp)
movb $0x0, 0x2ca3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2ca4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xfa0(%rsp), %r10
movq %r10, 0x4b38(%rsp)
movl %r9d, 0x4b34(%rsp)
movl %r8d, 0x4b30(%rsp)
movl %edi, 0x4b2c(%rsp)
movq %rsi, 0x4b20(%rsp)
movq %rdx, 0x4b18(%rsp)
movl %ecx, 0x4b14(%rsp)
movq %rax, 0x4b08(%rsp)
movq 0x4b38(%rsp), %rcx
movq %rcx, 0x170(%rsp)
movq 0x4b20(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4b18(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4b14(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4b08(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4b34(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4b30(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4b2c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4bd8(%rsp)
movl $0x10, 0x4bd4(%rsp)
movq 0x4bd8(%rsp), %rax
movslq 0x4bd4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4bd4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x178(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xfc8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13524d7
movq 0x178(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xfe0(%rsp)
movb $0x1, 0x2ca3(%rsp)
testb $0x1, 0x2ca3(%rsp)
jne 0x1352618
leaq 0xfa0(%rsp), %rax
movq %rax, 0x30b8(%rsp)
movq 0x30b8(%rsp), %rax
movq %rax, 0x5278(%rsp)
movq 0x5278(%rsp), %rax
movq %rax, 0x168(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13525bb
movq 0x168(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5274(%rsp) # imm = 0xFFFFFFFF
movl 0x5274(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5270(%rsp)
cmpl $0x1, 0x5270(%rsp)
jne 0x13525bb
movq 0x168(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1352589
movq 0x168(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1352587
jmp 0x13525b9
movq 0x168(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54a8(%rsp)
cmpq $0x0, 0x54a8(%rsp)
je 0x13525b7
movq 0x54a8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13525b9
jmp 0x13525bb
movq 0x168(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1352616
movq %rax, %rdi
callq 0x678a0
jmp 0x1352618
leaq 0xfa0(%rsp), %rax
movq %rax, 0x2f20(%rsp)
movq 0x2f20(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x158(%rsp)
leaq 0xfa0(%rsp), %rax
movq %rax, 0x3200(%rsp)
movq 0x3200(%rsp), %rax
movq %rax, 0x4fe8(%rsp)
movq 0x4fe8(%rsp), %rax
movq %rax, 0x160(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1352709
movq 0x160(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4fe4(%rsp) # imm = 0xFFFFFFFF
movl 0x4fe4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4fe0(%rsp)
cmpl $0x1, 0x4fe0(%rsp)
jne 0x1352709
movq 0x160(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13526d7
movq 0x160(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13526d5
jmp 0x1352707
movq 0x160(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55f0(%rsp)
cmpq $0x0, 0x55f0(%rsp)
je 0x1352705
movq 0x55f0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1352707
jmp 0x1352709
movq 0x160(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1352764
movq %rax, %rdi
callq 0x678a0
movq 0x158(%rsp), %rax
movq %rax, 0xfe8(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0xffc(%rsp), %eax
leaq 0xf50(%rsp), %rdx
movq %rdx, 0x3280(%rsp)
movq %rcx, 0x3278(%rsp)
movl %eax, 0x3274(%rsp)
movq 0x3278(%rsp), %rax
movq %rax, 0x150(%rsp)
movb $0x0, 0x3273(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3274(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xf50(%rsp), %r10
movq %r10, 0x4588(%rsp)
movl %r9d, 0x4584(%rsp)
movl %r8d, 0x4580(%rsp)
movl %edi, 0x457c(%rsp)
movq %rsi, 0x4570(%rsp)
movq %rdx, 0x4568(%rsp)
movl %ecx, 0x4564(%rsp)
movq %rax, 0x4558(%rsp)
movq 0x4588(%rsp), %rcx
movq %rcx, 0x148(%rsp)
movq 0x4570(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4568(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4564(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4558(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4584(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4580(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x457c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d78(%rsp)
movl $0x10, 0x4d74(%rsp)
movq 0x4d78(%rsp), %rax
movslq 0x4d74(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d74(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x150(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf78(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1352930
movq 0x150(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xf90(%rsp)
movb $0x1, 0x3273(%rsp)
testb $0x1, 0x3273(%rsp)
jne 0x1352a71
leaq 0xf50(%rsp), %rax
movq %rax, 0x3288(%rsp)
movq 0x3288(%rsp), %rax
movq %rax, 0x4f68(%rsp)
movq 0x4f68(%rsp), %rax
movq %rax, 0x140(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1352a14
movq 0x140(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f64(%rsp) # imm = 0xFFFFFFFF
movl 0x4f64(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f60(%rsp)
cmpl $0x1, 0x4f60(%rsp)
jne 0x1352a14
movq 0x140(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13529e2
movq 0x140(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13529e0
jmp 0x1352a12
movq 0x140(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5630(%rsp)
cmpq $0x0, 0x5630(%rsp)
je 0x1352a10
movq 0x5630(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1352a12
jmp 0x1352a14
movq 0x140(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1352a6f
movq %rax, %rdi
callq 0x678a0
jmp 0x1352a71
leaq 0xf50(%rsp), %rax
movq %rax, 0x3490(%rsp)
movq 0x3490(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x130(%rsp)
leaq 0xf50(%rsp), %rax
movq %rax, 0x3208(%rsp)
movq 0x3208(%rsp), %rax
movq %rax, 0x4fd8(%rsp)
movq 0x4fd8(%rsp), %rax
movq %rax, 0x138(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1352b62
movq 0x138(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4fd4(%rsp) # imm = 0xFFFFFFFF
movl 0x4fd4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4fd0(%rsp)
cmpl $0x1, 0x4fd0(%rsp)
jne 0x1352b62
movq 0x138(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1352b30
movq 0x138(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1352b2e
jmp 0x1352b60
movq 0x138(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55f8(%rsp)
cmpq $0x0, 0x55f8(%rsp)
je 0x1352b5e
movq 0x55f8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1352b60
jmp 0x1352b62
movq 0x138(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1352bbd
movq %rax, %rdi
callq 0x678a0
movq 0x130(%rsp), %rax
movq %rax, 0xf98(%rsp)
movl $0x0, 0xf4c(%rsp)
movl 0xf4c(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jge 0x1352d20
movq 0xff0(%rsp), %rax
movq %rax, 0x3558(%rsp)
movq 0x3558(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xf00(%rsp)
movl $0x0, 0xefc(%rsp)
movl 0xefc(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jge 0x1352cf6
movq 0xfe8(%rsp), %rax
movq %rax, 0x3550(%rsp)
movq 0x3550(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xe80(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0xf00(%rsp), %rsi
leaq 0xe80(%rsp), %rdx
callq 0x1453b90
vmovaps %zmm0, 0xe40(%rsp)
movq 0xf98(%rsp), %rax
vmovaps 0xe40(%rsp), %zmm0
movq %rax, 0x38b8(%rsp)
vmovaps %zmm0, 0x3840(%rsp)
vmovaps 0x3840(%rsp), %zmm0
movq 0x38b8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0xfe8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xfe8(%rsp)
movq 0xf98(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xf98(%rsp)
movl 0xefc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xefc(%rsp)
jmp 0x1352c1d
movq 0xff0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xff0(%rsp)
movl 0xf4c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xf4c(%rsp)
jmp 0x1352bd8
jmp 0x1352d22
movl 0xffc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xffc(%rsp)
jmp 0x13522be
movl $0x0, 0x2bd4(%rsp)
jmp 0x1354af0
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movq 0x2b90(%rsp), %rcx
movl 0x2b8c(%rsp), %r8d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c00(%rsp)
movq 0x2c00(%rsp), %rcx
movq %rcx, 0x120(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x12f(%rsp)
je 0x1352de0
movq 0x120(%rsp), %rax
movq %rax, 0x41e0(%rsp)
movq 0x41e0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x12f(%rsp)
movb 0x12f(%rsp), %al
testb $0x1, %al
jne 0x1352ded
jmp 0x1352dfd
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1354af0
movq 0x2bc0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1352e3c
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x144d7c0
movl %eax, 0x2bd4(%rsp)
jmp 0x1354af0
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1353118
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movq 0x2b90(%rsp), %rcx
movl 0x2b8c(%rsp), %r8d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2bf8(%rsp)
movq 0x2bf8(%rsp), %rcx
movq %rcx, 0x110(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x11f(%rsp)
je 0x1352ee6
movq 0x110(%rsp), %rax
movq %rax, 0x41e8(%rsp)
movq 0x41e8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x11f(%rsp)
movb 0x11f(%rsp), %al
testb $0x1, %al
jne 0x1352ef3
jmp 0x1352f03
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1354af0
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1352f4c
cmpl $0x1, 0x2b6c(%rsp)
jne 0x1352f4c
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x144e9d0
movl %eax, 0x2bd4(%rsp)
jmp 0x1354af0
movq 0x2bc8(%rsp), %rax
movq %rax, 0x2f18(%rsp)
movq 0x2f18(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xe38(%rsp)
movq 0x2bc0(%rsp), %rax
movq %rax, 0x2f10(%rsp)
movq 0x2f10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xe30(%rsp)
movq 0x2bb8(%rsp), %rax
movq %rax, 0x3488(%rsp)
movq 0x3488(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xe28(%rsp)
movl $0x0, 0xe24(%rsp)
movl 0xe24(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jge 0x1353108
movq 0xe30(%rsp), %rax
movq %rax, 0x3548(%rsp)
movq 0x3548(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xdc0(%rsp)
movl $0x0, 0xdbc(%rsp)
movl 0xdbc(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jge 0x13530de
movq 0xe38(%rsp), %rax
movq %rax, 0x3540(%rsp)
movq 0x3540(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xd40(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0xd40(%rsp), %rsi
leaq 0xdc0(%rsp), %rdx
callq 0x1453b90
vmovaps %zmm0, 0xd00(%rsp)
movq 0xe28(%rsp), %rax
vmovaps 0xd00(%rsp), %zmm0
movq %rax, 0x3838(%rsp)
vmovaps %zmm0, 0x37c0(%rsp)
vmovaps 0x37c0(%rsp), %zmm0
movq 0x3838(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0xe38(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xe38(%rsp)
movq 0xe28(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xe28(%rsp)
movl 0xdbc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdbc(%rsp)
jmp 0x1353005
movq 0xe30(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xe30(%rsp)
movl 0xe24(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xe24(%rsp)
jmp 0x1352fc0
movl $0x0, 0x2bd4(%rsp)
jmp 0x1354af0
jmp 0x1354ae1
movq 0x2bc8(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1354adf
movq 0x2bc8(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1353178
cmpl $0x1, 0x2b8c(%rsp)
jne 0x1353178
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x144f850
movl %eax, 0x2bd4(%rsp)
jmp 0x1354af0
movq 0x2bc0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1353c81
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b80(%rsp), %ecx
movl 0x2b7c(%rsp), %r8d
movq 0x2b70(%rsp), %r9
movl 0x2b6c(%rsp), %r10d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2bf0(%rsp)
movq 0x2bf0(%rsp), %rcx
movq %rcx, 0x100(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x10f(%rsp)
je 0x135323a
movq 0x100(%rsp), %rax
movq %rax, 0x41f0(%rsp)
movq 0x41f0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x10f(%rsp)
movb 0x10f(%rsp), %al
testb $0x1, %al
jne 0x1353247
jmp 0x1353257
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1354af0
movl $0x0, 0xcfc(%rsp)
movl 0xcfc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x1353c71
movq 0x2bc8(%rsp), %rax
movq %rax, 0x2f08(%rsp)
movq 0x2f08(%rsp), %rax
movq (%rax), %rax
movl 0xcfc(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x3538(%rsp)
movq 0x3538(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xc80(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0xcfc(%rsp), %eax
leaq 0xc30(%rsp), %rdx
movq %rdx, 0x2c98(%rsp)
movq %rcx, 0x2c90(%rsp)
movl %eax, 0x2c8c(%rsp)
movq 0x2c90(%rsp), %rax
movq %rax, 0xf8(%rsp)
movb $0x0, 0x2c8b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2c8c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xc30(%rsp), %r10
movq %r10, 0x4b70(%rsp)
movl %r9d, 0x4b6c(%rsp)
movl %r8d, 0x4b68(%rsp)
movl %edi, 0x4b64(%rsp)
movq %rsi, 0x4b58(%rsp)
movq %rdx, 0x4b50(%rsp)
movl %ecx, 0x4b4c(%rsp)
movq %rax, 0x4b40(%rsp)
movq 0x4b70(%rsp), %rcx
movq %rcx, 0xf0(%rsp)
movq 0x4b58(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4b50(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4b4c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4b40(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4b6c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4b68(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4b64(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4bc8(%rsp)
movl $0x10, 0x4bc4(%rsp)
movq 0x4bc8(%rsp), %rax
movslq 0x4bc4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4bc4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xf8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc58(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x135347f
movq 0xf8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xc70(%rsp)
movb $0x1, 0x2c8b(%rsp)
testb $0x1, 0x2c8b(%rsp)
jne 0x13535c0
leaq 0xc30(%rsp), %rax
movq %rax, 0x30c0(%rsp)
movq 0x30c0(%rsp), %rax
movq %rax, 0x5268(%rsp)
movq 0x5268(%rsp), %rax
movq %rax, 0xe8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1353563
movq 0xe8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5264(%rsp) # imm = 0xFFFFFFFF
movl 0x5264(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5260(%rsp)
cmpl $0x1, 0x5260(%rsp)
jne 0x1353563
movq 0xe8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1353531
movq 0xe8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135352f
jmp 0x1353561
movq 0xe8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54b0(%rsp)
cmpq $0x0, 0x54b0(%rsp)
je 0x135355f
movq 0x54b0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1353561
jmp 0x1353563
movq 0xe8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13535be
movq %rax, %rdi
callq 0x678a0
jmp 0x13535c0
leaq 0xc30(%rsp), %rax
movq %rax, 0x2f00(%rsp)
movq 0x2f00(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xd8(%rsp)
leaq 0xc30(%rsp), %rax
movq %rax, 0x3210(%rsp)
movq 0x3210(%rsp), %rax
movq %rax, 0x4fc8(%rsp)
movq 0x4fc8(%rsp), %rax
movq %rax, 0xe0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13536b1
movq 0xe0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4fc4(%rsp) # imm = 0xFFFFFFFF
movl 0x4fc4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4fc0(%rsp)
cmpl $0x1, 0x4fc0(%rsp)
jne 0x13536b1
movq 0xe0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135367f
movq 0xe0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135367d
jmp 0x13536af
movq 0xe0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5600(%rsp)
cmpq $0x0, 0x5600(%rsp)
je 0x13536ad
movq 0x5600(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13536af
jmp 0x13536b1
movq 0xe0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135370c
movq %rax, %rdi
callq 0x678a0
movq 0xd8(%rsp), %rax
movq %rax, 0xc78(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0xcfc(%rsp), %eax
leaq 0xbe0(%rsp), %rdx
movq %rdx, 0x3260(%rsp)
movq %rcx, 0x3258(%rsp)
movl %eax, 0x3254(%rsp)
movq 0x3258(%rsp), %rax
movq %rax, 0xd0(%rsp)
movb $0x0, 0x3253(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3254(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xbe0(%rsp), %r10
movq %r10, 0x45c0(%rsp)
movl %r9d, 0x45bc(%rsp)
movl %r8d, 0x45b8(%rsp)
movl %edi, 0x45b4(%rsp)
movq %rsi, 0x45a8(%rsp)
movq %rdx, 0x45a0(%rsp)
movl %ecx, 0x459c(%rsp)
movq %rax, 0x4590(%rsp)
movq 0x45c0(%rsp), %rcx
movq %rcx, 0xc8(%rsp)
movq 0x45a8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x45a0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x459c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4590(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x45bc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x45b8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x45b4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d68(%rsp)
movl $0x10, 0x4d64(%rsp)
movq 0x4d68(%rsp), %rax
movslq 0x4d64(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d64(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xd0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc08(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13538d8
movq 0xd0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xc20(%rsp)
movb $0x1, 0x3253(%rsp)
testb $0x1, 0x3253(%rsp)
jne 0x1353a19
leaq 0xbe0(%rsp), %rax
movq %rax, 0x3268(%rsp)
movq 0x3268(%rsp), %rax
movq %rax, 0x4f78(%rsp)
movq 0x4f78(%rsp), %rax
movq %rax, 0xc0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13539bc
movq 0xc0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f74(%rsp) # imm = 0xFFFFFFFF
movl 0x4f74(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f70(%rsp)
cmpl $0x1, 0x4f70(%rsp)
jne 0x13539bc
movq 0xc0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135398a
movq 0xc0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1353988
jmp 0x13539ba
movq 0xc0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5628(%rsp)
cmpq $0x0, 0x5628(%rsp)
je 0x13539b8
movq 0x5628(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13539ba
jmp 0x13539bc
movq 0xc0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1353a17
movq %rax, %rdi
callq 0x678a0
jmp 0x1353a19
leaq 0xbe0(%rsp), %rax
movq %rax, 0x3480(%rsp)
movq 0x3480(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xb0(%rsp)
leaq 0xbe0(%rsp), %rax
movq %rax, 0x3218(%rsp)
movq 0x3218(%rsp), %rax
movq %rax, 0x4fb8(%rsp)
movq 0x4fb8(%rsp), %rax
movq %rax, 0xb8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1353b0a
movq 0xb8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4fb4(%rsp) # imm = 0xFFFFFFFF
movl 0x4fb4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4fb0(%rsp)
cmpl $0x1, 0x4fb0(%rsp)
jne 0x1353b0a
movq 0xb8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1353ad8
movq 0xb8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1353ad6
jmp 0x1353b08
movq 0xb8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5608(%rsp)
cmpq $0x0, 0x5608(%rsp)
je 0x1353b06
movq 0x5608(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1353b08
jmp 0x1353b0a
movq 0xb8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1353b65
movq %rax, %rdi
callq 0x678a0
movq 0xb0(%rsp), %rax
movq %rax, 0xc28(%rsp)
movl $0x0, 0xbdc(%rsp)
movl 0xbdc(%rsp), %eax
cmpl 0x2b78(%rsp), %eax
jge 0x1353c59
movq 0xc78(%rsp), %rax
movq %rax, 0x3530(%rsp)
movq 0x3530(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xb80(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0xc80(%rsp), %rsi
leaq 0xb80(%rsp), %rdx
callq 0x1453b90
vmovaps %zmm0, 0xb40(%rsp)
movq 0xc28(%rsp), %rax
vmovaps 0xb40(%rsp), %zmm0
movq %rax, 0x37b8(%rsp)
vmovaps %zmm0, 0x3740(%rsp)
vmovaps 0x3740(%rsp), %zmm0
movq 0x37b8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0xc78(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xc78(%rsp)
movq 0xc28(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xc28(%rsp)
movl 0xbdc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xbdc(%rsp)
jmp 0x1353b80
jmp 0x1353c5b
movl 0xcfc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xcfc(%rsp)
jmp 0x1353262
movl $0x0, 0x2bd4(%rsp)
jmp 0x1354af0
movq 0x2bc0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1354741
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b7c(%rsp), %ecx
movq 0x2b70(%rsp), %r8
movl 0x2b6c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2be8(%rsp)
movq 0x2be8(%rsp), %rcx
movq %rcx, 0xa0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xaf(%rsp)
je 0x1353d36
movq 0xa0(%rsp), %rax
movq %rax, 0x41f8(%rsp)
movq 0x41f8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xaf(%rsp)
movb 0xaf(%rsp), %al
testb $0x1, %al
jne 0x1353d43
jmp 0x1353d53
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1354af0
movl $0x0, 0xb3c(%rsp)
movl 0xb3c(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x1354731
movq 0x2bc8(%rsp), %rax
movq %rax, 0x2ef8(%rsp)
movq 0x2ef8(%rsp), %rax
movq (%rax), %rax
movl 0xb3c(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x3528(%rsp)
movq 0x3528(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xac0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0xb3c(%rsp), %eax
leaq 0xa70(%rsp), %rdx
movq %rdx, 0x2c80(%rsp)
movq %rcx, 0x2c78(%rsp)
movl %eax, 0x2c74(%rsp)
movq 0x2c78(%rsp), %rax
movq %rax, 0x98(%rsp)
movb $0x0, 0x2c73(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2c74(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xa70(%rsp), %r10
movq %r10, 0x4ba8(%rsp)
movl %r9d, 0x4ba4(%rsp)
movl %r8d, 0x4ba0(%rsp)
movl %edi, 0x4b9c(%rsp)
movq %rsi, 0x4b90(%rsp)
movq %rdx, 0x4b88(%rsp)
movl %ecx, 0x4b84(%rsp)
movq %rax, 0x4b78(%rsp)
movq 0x4ba8(%rsp), %rcx
movq %rcx, 0x90(%rsp)
movq 0x4b90(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4b88(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4b84(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4b78(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4ba4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4ba0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4b9c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4bb8(%rsp)
movl $0x10, 0x4bb4(%rsp)
movq 0x4bb8(%rsp), %rax
movslq 0x4bb4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4bb4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x98(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xa98(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1353f7b
movq 0x98(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xab0(%rsp)
movb $0x1, 0x2c73(%rsp)
testb $0x1, 0x2c73(%rsp)
jne 0x13540bc
leaq 0xa70(%rsp), %rax
movq %rax, 0x30c8(%rsp)
movq 0x30c8(%rsp), %rax
movq %rax, 0x5258(%rsp)
movq 0x5258(%rsp), %rax
movq %rax, 0x88(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x135405f
movq 0x88(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5254(%rsp) # imm = 0xFFFFFFFF
movl 0x5254(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5250(%rsp)
cmpl $0x1, 0x5250(%rsp)
jne 0x135405f
movq 0x88(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135402d
movq 0x88(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135402b
jmp 0x135405d
movq 0x88(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54b8(%rsp)
cmpq $0x0, 0x54b8(%rsp)
je 0x135405b
movq 0x54b8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x135405d
jmp 0x135405f
movq 0x88(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13540ba
movq %rax, %rdi
callq 0x678a0
jmp 0x13540bc
leaq 0xa70(%rsp), %rax
movq %rax, 0x2ef0(%rsp)
movq 0x2ef0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x78(%rsp)
leaq 0xa70(%rsp), %rax
movq %rax, 0x3220(%rsp)
movq 0x3220(%rsp), %rax
movq %rax, 0x4fa8(%rsp)
movq 0x4fa8(%rsp), %rax
movq %rax, 0x80(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13541aa
movq 0x80(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4fa4(%rsp) # imm = 0xFFFFFFFF
movl 0x4fa4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4fa0(%rsp)
cmpl $0x1, 0x4fa0(%rsp)
jne 0x13541aa
movq 0x80(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1354178
movq 0x80(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1354176
jmp 0x13541a8
movq 0x80(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5610(%rsp)
cmpq $0x0, 0x5610(%rsp)
je 0x13541a6
movq 0x5610(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13541a8
jmp 0x13541aa
movq 0x80(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1354205
movq %rax, %rdi
callq 0x678a0
movq 0x78(%rsp), %rax
movq %rax, 0xab8(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0xb3c(%rsp), %eax
leaq 0xa20(%rsp), %rdx
movq %rdx, 0x3240(%rsp)
movq %rcx, 0x3238(%rsp)
movl %eax, 0x3234(%rsp)
movq 0x3238(%rsp), %rax
movq %rax, 0x70(%rsp)
movb $0x0, 0x3233(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3234(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xa20(%rsp), %r10
movq %r10, 0x45f8(%rsp)
movl %r9d, 0x45f4(%rsp)
movl %r8d, 0x45f0(%rsp)
movl %edi, 0x45ec(%rsp)
movq %rsi, 0x45e0(%rsp)
movq %rdx, 0x45d8(%rsp)
movl %ecx, 0x45d4(%rsp)
movq %rax, 0x45c8(%rsp)
movq 0x45f8(%rsp), %rcx
movq %rcx, 0x68(%rsp)
movq 0x45e0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x45d8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x45d4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x45c8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x45f4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x45f0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x45ec(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d58(%rsp)
movl $0x10, 0x4d54(%rsp)
movq 0x4d58(%rsp), %rax
movslq 0x4d54(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d54(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x70(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xa48(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13543c2
movq 0x70(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xa60(%rsp)
movb $0x1, 0x3233(%rsp)
testb $0x1, 0x3233(%rsp)
jne 0x13544f1
leaq 0xa20(%rsp), %rax
movq %rax, 0x3248(%rsp)
movq 0x3248(%rsp), %rax
movq %rax, 0x4f88(%rsp)
movq 0x4f88(%rsp), %rax
movq %rax, 0x60(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1354497
movq 0x60(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f84(%rsp) # imm = 0xFFFFFFFF
movl 0x4f84(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f80(%rsp)
cmpl $0x1, 0x4f80(%rsp)
jne 0x1354497
movq 0x60(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1354468
movq 0x60(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1354466
jmp 0x1354495
movq 0x60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5620(%rsp)
cmpq $0x0, 0x5620(%rsp)
je 0x1354493
movq 0x5620(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1354495
jmp 0x1354497
movq 0x60(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13544ef
movq %rax, %rdi
callq 0x678a0
jmp 0x13544f1
leaq 0xa20(%rsp), %rax
movq %rax, 0x3478(%rsp)
movq 0x3478(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x50(%rsp)
leaq 0xa20(%rsp), %rax
movq %rax, 0x3228(%rsp)
movq 0x3228(%rsp), %rax
movq %rax, 0x4f98(%rsp)
movq 0x4f98(%rsp), %rax
movq %rax, 0x58(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13545d0
movq 0x58(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f94(%rsp) # imm = 0xFFFFFFFF
movl 0x4f94(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f90(%rsp)
cmpl $0x1, 0x4f90(%rsp)
jne 0x13545d0
movq 0x58(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13545a1
movq 0x58(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135459f
jmp 0x13545ce
movq 0x58(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5618(%rsp)
cmpq $0x0, 0x5618(%rsp)
je 0x13545cc
movq 0x5618(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13545ce
jmp 0x13545d0
movq 0x58(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1354628
movq %rax, %rdi
callq 0x678a0
movq 0x50(%rsp), %rax
movq %rax, 0xa68(%rsp)
movl $0x0, 0xa1c(%rsp)
movl 0xa1c(%rsp), %eax
cmpl 0x2b78(%rsp), %eax
jge 0x1354719
movq 0xab8(%rsp), %rax
movq %rax, 0x3520(%rsp)
movq 0x3520(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x9c0(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0xac0(%rsp), %rsi
leaq 0x9c0(%rsp), %rdx
callq 0x1453b90
vmovaps %zmm0, 0x980(%rsp)
movq 0xa68(%rsp), %rax
vmovaps 0x980(%rsp), %zmm0
movq %rax, 0x3738(%rsp)
vmovaps %zmm0, 0x36c0(%rsp)
vmovaps 0x36c0(%rsp), %zmm0
movq 0x3738(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0xab8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xab8(%rsp)
movq 0xa68(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xa68(%rsp)
movl 0xa1c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xa1c(%rsp)
jmp 0x1354640
jmp 0x135471b
movl 0xb3c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xb3c(%rsp)
jmp 0x1353d5e
movl $0x0, 0x2bd4(%rsp)
jmp 0x1354af0
movq 0x2bc0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x13549c5
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movq 0x2b70(%rsp), %rcx
movl 0x2b6c(%rsp), %r8d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2be0(%rsp)
movq 0x2be0(%rsp), %rcx
movq %rcx, 0x40(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x4f(%rsp)
je 0x13547df
movq 0x40(%rsp), %rax
movq %rax, 0x4200(%rsp)
movq 0x4200(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x4f(%rsp)
movb 0x4f(%rsp), %al
testb $0x1, %al
jne 0x13547e9
jmp 0x13547f9
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1354af0
movq 0x2bc8(%rsp), %rax
movq %rax, 0x2ee8(%rsp)
movq 0x2ee8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x978(%rsp)
movq 0x2bc0(%rsp), %rax
movq %rax, 0x2ee0(%rsp)
movq 0x2ee0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x970(%rsp)
movq 0x2bb8(%rsp), %rax
movq %rax, 0x3470(%rsp)
movq 0x3470(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x968(%rsp)
movl $0x0, 0x964(%rsp)
movl 0x964(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jge 0x13549b5
movq 0x978(%rsp), %rax
movq %rax, 0x3518(%rsp)
movq 0x3518(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x900(%rsp)
movl $0x0, 0x8fc(%rsp)
movl 0x8fc(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jge 0x135498b
movq 0x970(%rsp), %rax
movq %rax, 0x3510(%rsp)
movq 0x3510(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x880(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x900(%rsp), %rsi
leaq 0x880(%rsp), %rdx
callq 0x1453b90
vmovaps %zmm0, 0x840(%rsp)
movq 0x968(%rsp), %rax
vmovaps 0x840(%rsp), %zmm0
movq %rax, 0x36b8(%rsp)
vmovaps %zmm0, 0x3640(%rsp)
vmovaps 0x3640(%rsp), %zmm0
movq 0x36b8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x970(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x970(%rsp)
movq 0x968(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x968(%rsp)
movl 0x8fc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x8fc(%rsp)
jmp 0x13548b2
movq 0x978(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x978(%rsp)
movl 0x964(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x964(%rsp)
jmp 0x135486d
movl $0x0, 0x2bd4(%rsp)
jmp 0x1354af0
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1354add
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movq 0x2b90(%rsp), %rdx
movl 0x2b8c(%rsp), %ecx
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6be00
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2bd8(%rsp)
movq 0x2bd8(%rsp), %rcx
movq %rcx, 0x30(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x3f(%rsp)
je 0x1354a5b
movq 0x30(%rsp), %rax
movq %rax, 0x4208(%rsp)
movq 0x4208(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x3f(%rsp)
movb 0x3f(%rsp), %al
testb $0x1, %al
jne 0x1354a65
jmp 0x1354a72
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x1354af0
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1354ab8
cmpl $0x1, 0x2b6c(%rsp)
jne 0x1354ab8
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x144e9d0
movl %eax, 0x2bd4(%rsp)
jmp 0x1354af0
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x144d7c0
jmp 0x1354adf
jmp 0x1354ae1
jmp 0x1354ae3
jmp 0x1354ae5
movl $0x0, 0x2bd4(%rsp)
movl 0x2bd4(%rsp), %eax
movq %rbp, %rsp
popq %rbp
vzeroupper
retq
nop
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/build_O0/src/layer/x86/binaryop_x86_avx512.cpp
|
2,112,896
|
int ncnn::binary_op_pack16<ncnn::BinaryOp_x86_avx512_functor::binary_op_pow>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op_pack16(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int size = w * h * d;
size_t elemsize = a.elemsize;
int elempack = a.elempack;
int w1 = b.w;
int h1 = b.h;
int d1 = b.d;
int channels1 = b.c;
int size1 = w1 * h1 * d1;
size_t elemsize1 = b.elemsize;
int elempack1 = b.elempack;
if (a.dims == 4)
{
if (b.dims == 4)
{
// type 29
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
c.create(w, h, d, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 3)
{
// type 28
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
for (int y = 0; y < h; y++)
{
__m512 _b0 = _mm512_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
ptr1 += 16;
}
}
}
return 0;
}
if (b.dims == 2)
{
// type 27
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
__m512 _b0 = _mm512_loadu_ps(ptr1);
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
}
ptr1 += 16;
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1 && elempack1 == 1)
{
// type 25
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 26
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
__m512 _b0 = _mm512_loadu_ps((const float*)b + q * 16);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
}
return 0;
}
}
else if (a.dims == 3)
{
if (b.dims == 4)
{
// type 23
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
for (int y = 0; y < h1; y++)
{
__m512 _a0 = _mm512_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m512 _p = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
ptr += 16;
}
}
}
return 0;
}
if (b.dims == 3)
{
if (w1 == 1 && h1 == 1 && channels1 == channels)
{
// special type 1
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* b0 = b.channel(q);
float* outptr = c.channel(q);
__m512 _b0 = _mm512_loadu_ps(b0);
for (int i = 0; i < size; i++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
}
return 0;
}
if (w1 == w && h1 == h && channels1 == 1 && elempack1 == 1)
{
// special type 2
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b;
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _p1 = _mm512_set1_ps(*ptr1);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
ptr1 += 1;
outptr += 16;
}
}
return 0;
}
if (w == 1 && h == 1 && channels1 == channels)
{
// special type 3
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* a0 = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
__m512 _a0 = _mm512_loadu_ps(a0);
for (int i = 0; i < size1; i++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
}
return 0;
}
if (w1 == w && h1 == h && channels == 1 && elempack == 1)
{
// special type 4
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a;
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m512 _p = _mm512_set1_ps(*ptr);
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr += 1;
ptr1 += 16;
outptr += 16;
}
}
return 0;
}
if (w != 1 && w1 == 1 && h1 == h && channels1 == channels)
{
// special type 5
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1 + y * 16);
for (int x = 0; x < w; x++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
}
}
return 0;
}
if (w1 == w && h != 1 && h1 == 1 && channels1 == channels)
{
// special type 6
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _p1 = _mm512_loadu_ps(ptr1 + x * 16);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
}
}
return 0;
}
if (w1 != 1 && w == 1 && h1 == h && channels1 == channels)
{
// special type 7
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
__m512 _p = _mm512_loadu_ps(ptr + y * 16);
for (int x = 0; x < w1; x++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
}
}
return 0;
}
if (w1 == w && h1 != 1 && h == 1 && channels1 == channels)
{
// special type 8
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
__m512 _p = _mm512_loadu_ps(ptr + x * 16);
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_p, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
}
}
return 0;
}
// type 19
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 18
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
__m512 _b0 = _mm512_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
ptr1 += 16;
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1 && elempack1 == 1)
{
// type 16
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 17
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
__m512 _b0 = _mm512_loadu_ps((const float*)b + q * 16);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
}
return 0;
}
}
else if (a.dims == 2)
{
if (b.dims == 4)
{
// type 22
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
__m512 _a0 = _mm512_loadu_ps(ptr);
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
__m512 _p = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
}
ptr += 16;
}
}
return 0;
}
if (b.dims == 3)
{
// type 14
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
__m512 _a0 = _mm512_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
ptr += 16;
}
}
return 0;
}
c.create(w, h, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 13
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
if (b.dims == 1)
{
c.create(w, h, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1 && elempack1 == 1)
{
// type 11
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 12
const float* ptr = a;
const float* ptr1 = b;
float* outptr = c;
for (int y = 0; y < h; y++)
{
__m512 _b0 = _mm512_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m512 _p = _mm512_loadu_ps(ptr);
__m512 _outp = op.func_pack16(_p, _b0);
_mm512_storeu_ps(outptr, _outp);
ptr += 16;
outptr += 16;
}
ptr1 += 16;
}
return 0;
}
}
else if (a.dims == 1)
{
if (a.w == 1 && elempack == 1)
{
// type 2 3 4 20
return binary_op_2_3_4_20<Op>(a, b, c, opt);
}
if (b.dims == 4)
{
// type 21
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
__m512 _a0 = _mm512_loadu_ps((const float*)a + q * 16);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
}
return 0;
}
if (b.dims == 3)
{
// type 9
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
__m512 _a0 = _mm512_loadu_ps((const float*)a + q * 16);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
}
return 0;
}
if (b.dims == 2)
{
// type 8
c.create(w1, h1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
const float* ptr = a;
const float* ptr1 = b;
float* outptr = c;
for (int y = 0; y < h1; y++)
{
__m512 _a0 = _mm512_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m512 _p1 = _mm512_loadu_ps(ptr1);
__m512 _outp = op.func_pack16(_a0, _p1);
_mm512_storeu_ps(outptr, _outp);
ptr1 += 16;
outptr += 16;
}
ptr += 16;
}
return 0;
}
if (b.dims == 1)
{
c.create(w, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1 && elempack1 == 1)
{
// type 6
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 7
binary_op_7_13_19_29<Op>(a, b, c, opt);
}
}
return 0;
}
|
pushq %rbp
movq %rsp, %rbp
andq $-0x40, %rsp
subq $0x56c0, %rsp # imm = 0x56C0
movq %rdi, 0x2bc8(%rsp)
movq %rsi, 0x2bc0(%rsp)
movq %rdx, 0x2bb8(%rsp)
movq %rcx, 0x2bb0(%rsp)
movq 0x2bc8(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x2ba8(%rsp)
movq 0x2bc8(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x2ba4(%rsp)
movq 0x2bc8(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x2ba0(%rsp)
movq 0x2bc8(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x2b9c(%rsp)
movl 0x2ba8(%rsp), %eax
imull 0x2ba4(%rsp), %eax
imull 0x2ba0(%rsp), %eax
movl %eax, 0x2b98(%rsp)
movq 0x2bc8(%rsp), %rax
movq 0x10(%rax), %rax
movq %rax, 0x2b90(%rsp)
movq 0x2bc8(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x2b8c(%rsp)
movq 0x2bc0(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x2b88(%rsp)
movq 0x2bc0(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x2b84(%rsp)
movq 0x2bc0(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x2b80(%rsp)
movq 0x2bc0(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x2b7c(%rsp)
movl 0x2b88(%rsp), %eax
imull 0x2b84(%rsp), %eax
imull 0x2b80(%rsp), %eax
movl %eax, 0x2b78(%rsp)
movq 0x2bc0(%rsp), %rax
movq 0x10(%rax), %rax
movq %rax, 0x2b70(%rsp)
movq 0x2bc0(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x2b6c(%rsp)
movq 0x2bc8(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x13571df
movq 0x2bc0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1354c98
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x14506d0
movl %eax, 0x2bd4(%rsp)
jmp 0x13640c0
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movl 0x2ba0(%rsp), %ecx
movl 0x2b9c(%rsp), %r8d
movq 0x2b90(%rsp), %r9
movl 0x2b8c(%rsp), %r10d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c68(%rsp)
movq 0x2c68(%rsp), %rcx
movq %rcx, 0x830(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x83f(%rsp)
je 0x1354d48
movq 0x830(%rsp), %rax
movq %rax, 0x4178(%rsp)
movq 0x4178(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x83f(%rsp)
movb 0x83f(%rsp), %al
testb $0x1, %al
jne 0x1354d55
jmp 0x1354d65
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x13640c0
movq 0x2bc0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1355c5f
movl $0x0, 0x2b68(%rsp)
movl 0x2b68(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jge 0x1355c4f
movq 0x2bc8(%rsp), %rcx
movl 0x2b68(%rsp), %eax
leaq 0x2b18(%rsp), %rdx
movq %rdx, 0x2ed8(%rsp)
movq %rcx, 0x2ed0(%rsp)
movl %eax, 0x2ecc(%rsp)
movq 0x2ed0(%rsp), %rax
movq %rax, 0x828(%rsp)
movb $0x0, 0x2ecb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2ecc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2b18(%rsp), %r10
movq %r10, 0x4630(%rsp)
movl %r9d, 0x462c(%rsp)
movl %r8d, 0x4628(%rsp)
movl %edi, 0x4624(%rsp)
movq %rsi, 0x4618(%rsp)
movq %rdx, 0x4610(%rsp)
movl %ecx, 0x460c(%rsp)
movq %rax, 0x4600(%rsp)
movq 0x4630(%rsp), %rcx
movq %rcx, 0x820(%rsp)
movq 0x4618(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4610(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x460c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4600(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x462c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4628(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4624(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d48(%rsp)
movl $0x10, 0x4d44(%rsp)
movq 0x4d48(%rsp), %rax
movslq 0x4d44(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d44(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x828(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2b40(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1354f52
movq 0x828(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2b58(%rsp)
movb $0x1, 0x2ecb(%rsp)
testb $0x1, 0x2ecb(%rsp)
jne 0x1355093
leaq 0x2b18(%rsp), %rax
movq %rax, 0x3000(%rsp)
movq 0x3000(%rsp), %rax
movq %rax, 0x53e8(%rsp)
movq 0x53e8(%rsp), %rax
movq %rax, 0x818(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1355036
movq 0x818(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x53e4(%rsp) # imm = 0xFFFFFFFF
movl 0x53e4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x53e0(%rsp)
cmpl $0x1, 0x53e0(%rsp)
jne 0x1355036
movq 0x818(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1355004
movq 0x818(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1355002
jmp 0x1355034
movq 0x818(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x53f0(%rsp)
cmpq $0x0, 0x53f0(%rsp)
je 0x1355032
movq 0x53f0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1355034
jmp 0x1355036
movq 0x818(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1355091
movq %rax, %rdi
callq 0x678a0
jmp 0x1355093
leaq 0x2b18(%rsp), %rax
movq %rax, 0x2ff8(%rsp)
movq 0x2ff8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x808(%rsp)
leaq 0x2b18(%rsp), %rax
movq %rax, 0x30d0(%rsp)
movq 0x30d0(%rsp), %rax
movq %rax, 0x5248(%rsp)
movq 0x5248(%rsp), %rax
movq %rax, 0x810(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1355184
movq 0x810(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5244(%rsp) # imm = 0xFFFFFFFF
movl 0x5244(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5240(%rsp)
cmpl $0x1, 0x5240(%rsp)
jne 0x1355184
movq 0x810(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1355152
movq 0x810(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1355150
jmp 0x1355182
movq 0x810(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54c0(%rsp)
cmpq $0x0, 0x54c0(%rsp)
je 0x1355180
movq 0x54c0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1355182
jmp 0x1355184
movq 0x810(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13551df
movq %rax, %rdi
callq 0x678a0
movq 0x808(%rsp), %rax
movq %rax, 0x2b60(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x2b68(%rsp), %eax
leaq 0x2ac8(%rsp), %rdx
movq %rdx, 0x2ec0(%rsp)
movq %rcx, 0x2eb8(%rsp)
movl %eax, 0x2eb4(%rsp)
movq 0x2eb8(%rsp), %rax
movq %rax, 0x800(%rsp)
movb $0x0, 0x2eb3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2eb4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2ac8(%rsp), %r10
movq %r10, 0x4668(%rsp)
movl %r9d, 0x4664(%rsp)
movl %r8d, 0x4660(%rsp)
movl %edi, 0x465c(%rsp)
movq %rsi, 0x4650(%rsp)
movq %rdx, 0x4648(%rsp)
movl %ecx, 0x4644(%rsp)
movq %rax, 0x4638(%rsp)
movq 0x4668(%rsp), %rcx
movq %rcx, 0x7f8(%rsp)
movq 0x4650(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4648(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4644(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4638(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4664(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4660(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x465c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d38(%rsp)
movl $0x10, 0x4d34(%rsp)
movq 0x4d38(%rsp), %rax
movslq 0x4d34(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d34(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x800(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2af0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13553ab
movq 0x800(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2b08(%rsp)
movb $0x1, 0x2eb3(%rsp)
testb $0x1, 0x2eb3(%rsp)
jne 0x13554ec
leaq 0x2ac8(%rsp), %rax
movq %rax, 0x3008(%rsp)
movq 0x3008(%rsp), %rax
movq %rax, 0x53d8(%rsp)
movq 0x53d8(%rsp), %rax
movq %rax, 0x7f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x135548f
movq 0x7f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x53d4(%rsp) # imm = 0xFFFFFFFF
movl 0x53d4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x53d0(%rsp)
cmpl $0x1, 0x53d0(%rsp)
jne 0x135548f
movq 0x7f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135545d
movq 0x7f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135545b
jmp 0x135548d
movq 0x7f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x53f8(%rsp)
cmpq $0x0, 0x53f8(%rsp)
je 0x135548b
movq 0x53f8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x135548d
jmp 0x135548f
movq 0x7f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13554ea
movq %rax, %rdi
callq 0x678a0
jmp 0x13554ec
leaq 0x2ac8(%rsp), %rax
movq %rax, 0x2ff0(%rsp)
movq 0x2ff0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7e0(%rsp)
leaq 0x2ac8(%rsp), %rax
movq %rax, 0x30d8(%rsp)
movq 0x30d8(%rsp), %rax
movq %rax, 0x5238(%rsp)
movq 0x5238(%rsp), %rax
movq %rax, 0x7e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13555dd
movq 0x7e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5234(%rsp) # imm = 0xFFFFFFFF
movl 0x5234(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5230(%rsp)
cmpl $0x1, 0x5230(%rsp)
jne 0x13555dd
movq 0x7e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13555ab
movq 0x7e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13555a9
jmp 0x13555db
movq 0x7e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54c8(%rsp)
cmpq $0x0, 0x54c8(%rsp)
je 0x13555d9
movq 0x54c8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13555db
jmp 0x13555dd
movq 0x7e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1355638
movq %rax, %rdi
callq 0x678a0
movq 0x7e0(%rsp), %rax
movq %rax, 0x2b10(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x2b68(%rsp), %eax
leaq 0x2a78(%rsp), %rdx
movq %rdx, 0x3460(%rsp)
movq %rcx, 0x3458(%rsp)
movl %eax, 0x3454(%rsp)
movq 0x3458(%rsp), %rax
movq %rax, 0x7d8(%rsp)
movb $0x0, 0x3453(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3454(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2a78(%rsp), %r10
movq %r10, 0x4240(%rsp)
movl %r9d, 0x423c(%rsp)
movl %r8d, 0x4238(%rsp)
movl %edi, 0x4234(%rsp)
movq %rsi, 0x4228(%rsp)
movq %rdx, 0x4220(%rsp)
movl %ecx, 0x421c(%rsp)
movq %rax, 0x4210(%rsp)
movq 0x4240(%rsp), %rcx
movq %rcx, 0x7d0(%rsp)
movq 0x4228(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4220(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x421c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4210(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x423c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4238(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4234(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e68(%rsp)
movl $0x10, 0x4e64(%rsp)
movq 0x4e68(%rsp), %rax
movslq 0x4e64(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e64(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7d8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2aa0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1355804
movq 0x7d8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2ab8(%rsp)
movb $0x1, 0x3453(%rsp)
testb $0x1, 0x3453(%rsp)
jne 0x1355945
leaq 0x2a78(%rsp), %rax
movq %rax, 0x3468(%rsp)
movq 0x3468(%rsp), %rax
movq %rax, 0x4e78(%rsp)
movq 0x4e78(%rsp), %rax
movq %rax, 0x7c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13558e8
movq 0x7c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4e74(%rsp) # imm = 0xFFFFFFFF
movl 0x4e74(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4e70(%rsp)
cmpl $0x1, 0x4e70(%rsp)
jne 0x13558e8
movq 0x7c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13558b6
movq 0x7c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13558b4
jmp 0x13558e6
movq 0x7c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x56a8(%rsp)
cmpq $0x0, 0x56a8(%rsp)
je 0x13558e4
movq 0x56a8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13558e6
jmp 0x13558e8
movq 0x7c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1355943
movq %rax, %rdi
callq 0x678a0
jmp 0x1355945
leaq 0x2a78(%rsp), %rax
movq %rax, 0x3508(%rsp)
movq 0x3508(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7b8(%rsp)
leaq 0x2a78(%rsp), %rax
movq %rax, 0x30e0(%rsp)
movq 0x30e0(%rsp), %rax
movq %rax, 0x5228(%rsp)
movq 0x5228(%rsp), %rax
movq %rax, 0x7c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1355a36
movq 0x7c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5224(%rsp) # imm = 0xFFFFFFFF
movl 0x5224(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5220(%rsp)
cmpl $0x1, 0x5220(%rsp)
jne 0x1355a36
movq 0x7c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1355a04
movq 0x7c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1355a02
jmp 0x1355a34
movq 0x7c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54d0(%rsp)
cmpq $0x0, 0x54d0(%rsp)
je 0x1355a32
movq 0x54d0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1355a34
jmp 0x1355a36
movq 0x7c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1355a91
movq %rax, %rdi
callq 0x678a0
movq 0x7b8(%rsp), %rax
movq %rax, 0x2ac0(%rsp)
movl $0x0, 0x2a74(%rsp)
movl 0x2a74(%rsp), %eax
cmpl 0x2ba0(%rsp), %eax
jge 0x1355c37
movl $0x0, 0x2a70(%rsp)
movl 0x2a70(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jge 0x1355c1f
movq 0x2b10(%rsp), %rax
movq %rax, 0x3638(%rsp)
movq 0x3638(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2a00(%rsp)
movl $0x0, 0x29fc(%rsp)
movl 0x29fc(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jge 0x1355bf5
movq 0x2b60(%rsp), %rax
movq %rax, 0x3630(%rsp)
movq 0x3630(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2980(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x2980(%rsp), %rsi
leaq 0x2a00(%rsp), %rdx
callq 0x1453cc0
vmovaps %zmm0, 0x2940(%rsp)
movq 0x2ac0(%rsp), %rax
vmovaps 0x2940(%rsp), %zmm0
movq %rax, 0x4038(%rsp)
vmovaps %zmm0, 0x3fc0(%rsp)
vmovaps 0x3fc0(%rsp), %zmm0
movq 0x4038(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x2b60(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2b60(%rsp)
movq 0x2ac0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2ac0(%rsp)
movl 0x29fc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x29fc(%rsp)
jmp 0x1355b13
movq 0x2b10(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2b10(%rsp)
movl 0x2a70(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x2a70(%rsp)
jmp 0x1355acb
jmp 0x1355c21
movl 0x2a74(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x2a74(%rsp)
jmp 0x1355aac
jmp 0x1355c39
movl 0x2b68(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x2b68(%rsp)
jmp 0x1354d82
movl $0x0, 0x2bd4(%rsp)
jmp 0x13640c0
movq 0x2bc0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1356749
movl $0x0, 0x293c(%rsp)
movl 0x293c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jge 0x1356739
movq 0x2bc8(%rsp), %rcx
movl 0x293c(%rsp), %eax
leaq 0x28e8(%rsp), %rdx
movq %rdx, 0x2ea8(%rsp)
movq %rcx, 0x2ea0(%rsp)
movl %eax, 0x2e9c(%rsp)
movq 0x2ea0(%rsp), %rax
movq %rax, 0x7b0(%rsp)
movb $0x0, 0x2e9b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e9c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x28e8(%rsp), %r10
movq %r10, 0x46a0(%rsp)
movl %r9d, 0x469c(%rsp)
movl %r8d, 0x4698(%rsp)
movl %edi, 0x4694(%rsp)
movq %rsi, 0x4688(%rsp)
movq %rdx, 0x4680(%rsp)
movl %ecx, 0x467c(%rsp)
movq %rax, 0x4670(%rsp)
movq 0x46a0(%rsp), %rcx
movq %rcx, 0x7a8(%rsp)
movq 0x4688(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4680(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x467c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4670(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x469c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4698(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4694(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d28(%rsp)
movl $0x10, 0x4d24(%rsp)
movq 0x4d28(%rsp), %rax
movslq 0x4d24(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d24(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7b0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2910(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1355e4c
movq 0x7b0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2928(%rsp)
movb $0x1, 0x2e9b(%rsp)
testb $0x1, 0x2e9b(%rsp)
jne 0x1355f8d
leaq 0x28e8(%rsp), %rax
movq %rax, 0x3010(%rsp)
movq 0x3010(%rsp), %rax
movq %rax, 0x53c8(%rsp)
movq 0x53c8(%rsp), %rax
movq %rax, 0x7a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1355f30
movq 0x7a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x53c4(%rsp) # imm = 0xFFFFFFFF
movl 0x53c4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x53c0(%rsp)
cmpl $0x1, 0x53c0(%rsp)
jne 0x1355f30
movq 0x7a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1355efe
movq 0x7a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1355efc
jmp 0x1355f2e
movq 0x7a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5400(%rsp)
cmpq $0x0, 0x5400(%rsp)
je 0x1355f2c
movq 0x5400(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1355f2e
jmp 0x1355f30
movq 0x7a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1355f8b
movq %rax, %rdi
callq 0x678a0
jmp 0x1355f8d
leaq 0x28e8(%rsp), %rax
movq %rax, 0x2fe8(%rsp)
movq 0x2fe8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x790(%rsp)
leaq 0x28e8(%rsp), %rax
movq %rax, 0x30e8(%rsp)
movq 0x30e8(%rsp), %rax
movq %rax, 0x5218(%rsp)
movq 0x5218(%rsp), %rax
movq %rax, 0x798(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x135607e
movq 0x798(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5214(%rsp) # imm = 0xFFFFFFFF
movl 0x5214(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5210(%rsp)
cmpl $0x1, 0x5210(%rsp)
jne 0x135607e
movq 0x798(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135604c
movq 0x798(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135604a
jmp 0x135607c
movq 0x798(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54d8(%rsp)
cmpq $0x0, 0x54d8(%rsp)
je 0x135607a
movq 0x54d8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x135607c
jmp 0x135607e
movq 0x798(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13560d9
movq %rax, %rdi
callq 0x678a0
movq 0x790(%rsp), %rax
movq %rax, 0x2930(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x293c(%rsp), %eax
movq %rcx, 0x4078(%rsp)
movl %eax, 0x4074(%rsp)
movq 0x4078(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x4074(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x28e0(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x293c(%rsp), %eax
leaq 0x2890(%rsp), %rdx
movq %rdx, 0x3440(%rsp)
movq %rcx, 0x3438(%rsp)
movl %eax, 0x3434(%rsp)
movq 0x3438(%rsp), %rax
movq %rax, 0x788(%rsp)
movb $0x0, 0x3433(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3434(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2890(%rsp), %r10
movq %r10, 0x4278(%rsp)
movl %r9d, 0x4274(%rsp)
movl %r8d, 0x4270(%rsp)
movl %edi, 0x426c(%rsp)
movq %rsi, 0x4260(%rsp)
movq %rdx, 0x4258(%rsp)
movl %ecx, 0x4254(%rsp)
movq %rax, 0x4248(%rsp)
movq 0x4278(%rsp), %rcx
movq %rcx, 0x780(%rsp)
movq 0x4260(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4258(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4254(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4248(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4274(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4270(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x426c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e58(%rsp)
movl $0x10, 0x4e54(%rsp)
movq 0x4e58(%rsp), %rax
movslq 0x4e54(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e54(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x788(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x28b8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13562ee
movq 0x788(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x28d0(%rsp)
movb $0x1, 0x3433(%rsp)
testb $0x1, 0x3433(%rsp)
jne 0x135642f
leaq 0x2890(%rsp), %rax
movq %rax, 0x3448(%rsp)
movq 0x3448(%rsp), %rax
movq %rax, 0x4e88(%rsp)
movq 0x4e88(%rsp), %rax
movq %rax, 0x778(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13563d2
movq 0x778(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4e84(%rsp) # imm = 0xFFFFFFFF
movl 0x4e84(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4e80(%rsp)
cmpl $0x1, 0x4e80(%rsp)
jne 0x13563d2
movq 0x778(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13563a0
movq 0x778(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135639e
jmp 0x13563d0
movq 0x778(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x56a0(%rsp)
cmpq $0x0, 0x56a0(%rsp)
je 0x13563ce
movq 0x56a0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13563d0
jmp 0x13563d2
movq 0x778(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135642d
movq %rax, %rdi
callq 0x678a0
jmp 0x135642f
leaq 0x2890(%rsp), %rax
movq %rax, 0x3500(%rsp)
movq 0x3500(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x768(%rsp)
leaq 0x2890(%rsp), %rax
movq %rax, 0x30f0(%rsp)
movq 0x30f0(%rsp), %rax
movq %rax, 0x5208(%rsp)
movq 0x5208(%rsp), %rax
movq %rax, 0x770(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1356520
movq 0x770(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5204(%rsp) # imm = 0xFFFFFFFF
movl 0x5204(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5200(%rsp)
cmpl $0x1, 0x5200(%rsp)
jne 0x1356520
movq 0x770(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13564ee
movq 0x770(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13564ec
jmp 0x135651e
movq 0x770(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54e0(%rsp)
cmpq $0x0, 0x54e0(%rsp)
je 0x135651c
movq 0x54e0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x135651e
jmp 0x1356520
movq 0x770(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135657b
movq %rax, %rdi
callq 0x678a0
movq 0x768(%rsp), %rax
movq %rax, 0x28d8(%rsp)
movl $0x0, 0x288c(%rsp)
movl 0x288c(%rsp), %eax
cmpl 0x2ba0(%rsp), %eax
jge 0x1356721
movq 0x28e0(%rsp), %rax
movq %rax, 0x3628(%rsp)
movq 0x3628(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2840(%rsp)
movl $0x0, 0x283c(%rsp)
movl 0x283c(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jge 0x13566f7
movl $0x0, 0x2838(%rsp)
movl 0x2838(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jge 0x13566df
movq 0x2930(%rsp), %rax
movq %rax, 0x3620(%rsp)
movq 0x3620(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x27c0(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x27c0(%rsp), %rsi
leaq 0x2840(%rsp), %rdx
callq 0x1453cc0
vmovaps %zmm0, 0x2780(%rsp)
movq 0x28d8(%rsp), %rax
vmovaps 0x2780(%rsp), %zmm0
movq %rax, 0x3fb8(%rsp)
vmovaps %zmm0, 0x3f40(%rsp)
vmovaps 0x3f40(%rsp), %zmm0
movq 0x3fb8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x2930(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2930(%rsp)
movq 0x28d8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x28d8(%rsp)
movl 0x2838(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x2838(%rsp)
jmp 0x13565fd
jmp 0x13566e1
movl 0x283c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x283c(%rsp)
jmp 0x13565de
movq 0x28e0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x28e0(%rsp)
movl 0x288c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x288c(%rsp)
jmp 0x1356596
jmp 0x1356723
movl 0x293c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x293c(%rsp)
jmp 0x1355c7c
movl $0x0, 0x2bd4(%rsp)
jmp 0x13640c0
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x13571da
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x13567a4
cmpl $0x1, 0x2b6c(%rsp)
jne 0x13567a4
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x14518e0
movl %eax, 0x2bd4(%rsp)
jmp 0x13640c0
movl $0x0, 0x277c(%rsp)
movl 0x277c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jge 0x13571ca
movq 0x2bc8(%rsp), %rcx
movl 0x277c(%rsp), %eax
leaq 0x2728(%rsp), %rdx
movq %rdx, 0x2e90(%rsp)
movq %rcx, 0x2e88(%rsp)
movl %eax, 0x2e84(%rsp)
movq 0x2e88(%rsp), %rax
movq %rax, 0x760(%rsp)
movb $0x0, 0x2e83(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e84(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2728(%rsp), %r10
movq %r10, 0x46d8(%rsp)
movl %r9d, 0x46d4(%rsp)
movl %r8d, 0x46d0(%rsp)
movl %edi, 0x46cc(%rsp)
movq %rsi, 0x46c0(%rsp)
movq %rdx, 0x46b8(%rsp)
movl %ecx, 0x46b4(%rsp)
movq %rax, 0x46a8(%rsp)
movq 0x46d8(%rsp), %rcx
movq %rcx, 0x758(%rsp)
movq 0x46c0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x46b8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x46b4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x46a8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x46d4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x46d0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x46cc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d18(%rsp)
movl $0x10, 0x4d14(%rsp)
movq 0x4d18(%rsp), %rax
movslq 0x4d14(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d14(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x760(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2750(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x135697f
movq 0x760(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2768(%rsp)
movb $0x1, 0x2e83(%rsp)
testb $0x1, 0x2e83(%rsp)
jne 0x1356ac0
leaq 0x2728(%rsp), %rax
movq %rax, 0x3018(%rsp)
movq 0x3018(%rsp), %rax
movq %rax, 0x53b8(%rsp)
movq 0x53b8(%rsp), %rax
movq %rax, 0x750(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1356a63
movq 0x750(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x53b4(%rsp) # imm = 0xFFFFFFFF
movl 0x53b4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x53b0(%rsp)
cmpl $0x1, 0x53b0(%rsp)
jne 0x1356a63
movq 0x750(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1356a31
movq 0x750(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1356a2f
jmp 0x1356a61
movq 0x750(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5408(%rsp)
cmpq $0x0, 0x5408(%rsp)
je 0x1356a5f
movq 0x5408(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1356a61
jmp 0x1356a63
movq 0x750(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1356abe
movq %rax, %rdi
callq 0x678a0
jmp 0x1356ac0
leaq 0x2728(%rsp), %rax
movq %rax, 0x2fe0(%rsp)
movq 0x2fe0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x740(%rsp)
leaq 0x2728(%rsp), %rax
movq %rax, 0x30f8(%rsp)
movq 0x30f8(%rsp), %rax
movq %rax, 0x51f8(%rsp)
movq 0x51f8(%rsp), %rax
movq %rax, 0x748(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1356bb1
movq 0x748(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x51f4(%rsp) # imm = 0xFFFFFFFF
movl 0x51f4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x51f0(%rsp)
cmpl $0x1, 0x51f0(%rsp)
jne 0x1356bb1
movq 0x748(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1356b7f
movq 0x748(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1356b7d
jmp 0x1356baf
movq 0x748(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54e8(%rsp)
cmpq $0x0, 0x54e8(%rsp)
je 0x1356bad
movq 0x54e8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1356baf
jmp 0x1356bb1
movq 0x748(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1356c0c
movq %rax, %rdi
callq 0x678a0
movq 0x740(%rsp), %rax
movq %rax, 0x2770(%rsp)
movq 0x2bc0(%rsp), %rax
movq %rax, 0x2fd8(%rsp)
movq 0x2fd8(%rsp), %rax
movq (%rax), %rax
movl 0x277c(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x3618(%rsp)
movq 0x3618(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x26c0(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x277c(%rsp), %eax
leaq 0x2670(%rsp), %rdx
movq %rdx, 0x3420(%rsp)
movq %rcx, 0x3418(%rsp)
movl %eax, 0x3414(%rsp)
movq 0x3418(%rsp), %rax
movq %rax, 0x738(%rsp)
movb $0x0, 0x3413(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3414(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2670(%rsp), %r10
movq %r10, 0x42b0(%rsp)
movl %r9d, 0x42ac(%rsp)
movl %r8d, 0x42a8(%rsp)
movl %edi, 0x42a4(%rsp)
movq %rsi, 0x4298(%rsp)
movq %rdx, 0x4290(%rsp)
movl %ecx, 0x428c(%rsp)
movq %rax, 0x4280(%rsp)
movq 0x42b0(%rsp), %rcx
movq %rcx, 0x730(%rsp)
movq 0x4298(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4290(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x428c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4280(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x42ac(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x42a8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x42a4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e48(%rsp)
movl $0x10, 0x4e44(%rsp)
movq 0x4e48(%rsp), %rax
movslq 0x4e44(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e44(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x738(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2698(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1356e28
movq 0x738(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x26b0(%rsp)
movb $0x1, 0x3413(%rsp)
testb $0x1, 0x3413(%rsp)
jne 0x1356f69
leaq 0x2670(%rsp), %rax
movq %rax, 0x3428(%rsp)
movq 0x3428(%rsp), %rax
movq %rax, 0x4e98(%rsp)
movq 0x4e98(%rsp), %rax
movq %rax, 0x728(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1356f0c
movq 0x728(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4e94(%rsp) # imm = 0xFFFFFFFF
movl 0x4e94(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4e90(%rsp)
cmpl $0x1, 0x4e90(%rsp)
jne 0x1356f0c
movq 0x728(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1356eda
movq 0x728(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1356ed8
jmp 0x1356f0a
movq 0x728(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5698(%rsp)
cmpq $0x0, 0x5698(%rsp)
je 0x1356f08
movq 0x5698(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1356f0a
jmp 0x1356f0c
movq 0x728(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1356f67
movq %rax, %rdi
callq 0x678a0
jmp 0x1356f69
leaq 0x2670(%rsp), %rax
movq %rax, 0x34f8(%rsp)
movq 0x34f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x718(%rsp)
leaq 0x2670(%rsp), %rax
movq %rax, 0x3100(%rsp)
movq 0x3100(%rsp), %rax
movq %rax, 0x51e8(%rsp)
movq 0x51e8(%rsp), %rax
movq %rax, 0x720(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x135705a
movq 0x720(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x51e4(%rsp) # imm = 0xFFFFFFFF
movl 0x51e4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x51e0(%rsp)
cmpl $0x1, 0x51e0(%rsp)
jne 0x135705a
movq 0x720(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1357028
movq 0x720(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1357026
jmp 0x1357058
movq 0x720(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54f0(%rsp)
cmpq $0x0, 0x54f0(%rsp)
je 0x1357056
movq 0x54f0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1357058
jmp 0x135705a
movq 0x720(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13570b5
movq %rax, %rdi
callq 0x678a0
movq 0x718(%rsp), %rax
movq %rax, 0x26b8(%rsp)
movl $0x0, 0x266c(%rsp)
movl 0x266c(%rsp), %eax
cmpl 0x2b98(%rsp), %eax
jge 0x13571b2
movq 0x2770(%rsp), %rax
movq %rax, 0x3610(%rsp)
movq 0x3610(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2600(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x2600(%rsp), %rsi
leaq 0x26c0(%rsp), %rdx
callq 0x1453cc0
vmovaps %zmm0, 0x25c0(%rsp)
movq 0x26b8(%rsp), %rax
vmovaps 0x25c0(%rsp), %zmm0
movq %rax, 0x3f38(%rsp)
vmovaps %zmm0, 0x3ec0(%rsp)
vmovaps 0x3ec0(%rsp), %zmm0
movq 0x3f38(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x2770(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2770(%rsp)
movq 0x26b8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x26b8(%rsp)
movl 0x266c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x266c(%rsp)
jmp 0x13570d0
jmp 0x13571b4
movl 0x277c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x277c(%rsp)
jmp 0x13567af
movl $0x0, 0x2bd4(%rsp)
jmp 0x13640c0
jmp 0x13640b5
movq 0x2bc8(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1360bf4
movq 0x2bc0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x13581b8
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b80(%rsp), %ecx
movl 0x2b7c(%rsp), %r8d
movq 0x2b70(%rsp), %r9
movl 0x2b6c(%rsp), %r10d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c60(%rsp)
movq 0x2c60(%rsp), %rcx
movq %rcx, 0x708(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x717(%rsp)
je 0x13572b3
movq 0x708(%rsp), %rax
movq %rax, 0x4180(%rsp)
movq 0x4180(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x717(%rsp)
movb 0x717(%rsp), %al
testb $0x1, %al
jne 0x13572c0
jmp 0x13572d0
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x13640c0
movl $0x0, 0x25bc(%rsp)
movl 0x25bc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x13581a8
movq 0x2bc8(%rsp), %rcx
movl 0x25bc(%rsp), %eax
leaq 0x2568(%rsp), %rdx
movq %rdx, 0x2e78(%rsp)
movq %rcx, 0x2e70(%rsp)
movl %eax, 0x2e6c(%rsp)
movq 0x2e70(%rsp), %rax
movq %rax, 0x700(%rsp)
movb $0x0, 0x2e6b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e6c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2568(%rsp), %r10
movq %r10, 0x4710(%rsp)
movl %r9d, 0x470c(%rsp)
movl %r8d, 0x4708(%rsp)
movl %edi, 0x4704(%rsp)
movq %rsi, 0x46f8(%rsp)
movq %rdx, 0x46f0(%rsp)
movl %ecx, 0x46ec(%rsp)
movq %rax, 0x46e0(%rsp)
movq 0x4710(%rsp), %rcx
movq %rcx, 0x6f8(%rsp)
movq 0x46f8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x46f0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x46ec(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x46e0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x470c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4708(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4704(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d08(%rsp)
movl $0x10, 0x4d04(%rsp)
movq 0x4d08(%rsp), %rax
movslq 0x4d04(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d04(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x700(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2590(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13574ab
movq 0x700(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x25a8(%rsp)
movb $0x1, 0x2e6b(%rsp)
testb $0x1, 0x2e6b(%rsp)
jne 0x13575ec
leaq 0x2568(%rsp), %rax
movq %rax, 0x3020(%rsp)
movq 0x3020(%rsp), %rax
movq %rax, 0x53a8(%rsp)
movq 0x53a8(%rsp), %rax
movq %rax, 0x6f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x135758f
movq 0x6f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x53a4(%rsp) # imm = 0xFFFFFFFF
movl 0x53a4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x53a0(%rsp)
cmpl $0x1, 0x53a0(%rsp)
jne 0x135758f
movq 0x6f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135755d
movq 0x6f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135755b
jmp 0x135758d
movq 0x6f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5410(%rsp)
cmpq $0x0, 0x5410(%rsp)
je 0x135758b
movq 0x5410(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x135758d
jmp 0x135758f
movq 0x6f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13575ea
movq %rax, %rdi
callq 0x678a0
jmp 0x13575ec
leaq 0x2568(%rsp), %rax
movq %rax, 0x2fd0(%rsp)
movq 0x2fd0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6e0(%rsp)
leaq 0x2568(%rsp), %rax
movq %rax, 0x3108(%rsp)
movq 0x3108(%rsp), %rax
movq %rax, 0x51d8(%rsp)
movq 0x51d8(%rsp), %rax
movq %rax, 0x6e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13576dd
movq 0x6e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x51d4(%rsp) # imm = 0xFFFFFFFF
movl 0x51d4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x51d0(%rsp)
cmpl $0x1, 0x51d0(%rsp)
jne 0x13576dd
movq 0x6e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13576ab
movq 0x6e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13576a9
jmp 0x13576db
movq 0x6e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54f8(%rsp)
cmpq $0x0, 0x54f8(%rsp)
je 0x13576d9
movq 0x54f8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13576db
jmp 0x13576dd
movq 0x6e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1357738
movq %rax, %rdi
callq 0x678a0
movq 0x6e0(%rsp), %rax
movq %rax, 0x25b0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x25bc(%rsp), %eax
leaq 0x2518(%rsp), %rdx
movq %rdx, 0x2e60(%rsp)
movq %rcx, 0x2e58(%rsp)
movl %eax, 0x2e54(%rsp)
movq 0x2e58(%rsp), %rax
movq %rax, 0x6d8(%rsp)
movb $0x0, 0x2e53(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e54(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2518(%rsp), %r10
movq %r10, 0x4748(%rsp)
movl %r9d, 0x4744(%rsp)
movl %r8d, 0x4740(%rsp)
movl %edi, 0x473c(%rsp)
movq %rsi, 0x4730(%rsp)
movq %rdx, 0x4728(%rsp)
movl %ecx, 0x4724(%rsp)
movq %rax, 0x4718(%rsp)
movq 0x4748(%rsp), %rcx
movq %rcx, 0x6d0(%rsp)
movq 0x4730(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4728(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4724(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4718(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4744(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4740(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x473c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4cf8(%rsp)
movl $0x10, 0x4cf4(%rsp)
movq 0x4cf8(%rsp), %rax
movslq 0x4cf4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4cf4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6d8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2540(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1357904
movq 0x6d8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2558(%rsp)
movb $0x1, 0x2e53(%rsp)
testb $0x1, 0x2e53(%rsp)
jne 0x1357a45
leaq 0x2518(%rsp), %rax
movq %rax, 0x3028(%rsp)
movq 0x3028(%rsp), %rax
movq %rax, 0x5398(%rsp)
movq 0x5398(%rsp), %rax
movq %rax, 0x6c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13579e8
movq 0x6c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5394(%rsp) # imm = 0xFFFFFFFF
movl 0x5394(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5390(%rsp)
cmpl $0x1, 0x5390(%rsp)
jne 0x13579e8
movq 0x6c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13579b6
movq 0x6c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13579b4
jmp 0x13579e6
movq 0x6c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5418(%rsp)
cmpq $0x0, 0x5418(%rsp)
je 0x13579e4
movq 0x5418(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13579e6
jmp 0x13579e8
movq 0x6c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1357a43
movq %rax, %rdi
callq 0x678a0
jmp 0x1357a45
leaq 0x2518(%rsp), %rax
movq %rax, 0x2fc8(%rsp)
movq 0x2fc8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6b8(%rsp)
leaq 0x2518(%rsp), %rax
movq %rax, 0x3110(%rsp)
movq 0x3110(%rsp), %rax
movq %rax, 0x51c8(%rsp)
movq 0x51c8(%rsp), %rax
movq %rax, 0x6c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1357b36
movq 0x6c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x51c4(%rsp) # imm = 0xFFFFFFFF
movl 0x51c4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x51c0(%rsp)
cmpl $0x1, 0x51c0(%rsp)
jne 0x1357b36
movq 0x6c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1357b04
movq 0x6c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1357b02
jmp 0x1357b34
movq 0x6c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5500(%rsp)
cmpq $0x0, 0x5500(%rsp)
je 0x1357b32
movq 0x5500(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1357b34
jmp 0x1357b36
movq 0x6c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1357b91
movq %rax, %rdi
callq 0x678a0
movq 0x6b8(%rsp), %rax
movq %rax, 0x2560(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x25bc(%rsp), %eax
leaq 0x24c8(%rsp), %rdx
movq %rdx, 0x3400(%rsp)
movq %rcx, 0x33f8(%rsp)
movl %eax, 0x33f4(%rsp)
movq 0x33f8(%rsp), %rax
movq %rax, 0x6b0(%rsp)
movb $0x0, 0x33f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x33f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x24c8(%rsp), %r10
movq %r10, 0x42e8(%rsp)
movl %r9d, 0x42e4(%rsp)
movl %r8d, 0x42e0(%rsp)
movl %edi, 0x42dc(%rsp)
movq %rsi, 0x42d0(%rsp)
movq %rdx, 0x42c8(%rsp)
movl %ecx, 0x42c4(%rsp)
movq %rax, 0x42b8(%rsp)
movq 0x42e8(%rsp), %rcx
movq %rcx, 0x6a8(%rsp)
movq 0x42d0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x42c8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x42c4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x42b8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x42e4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x42e0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x42dc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e38(%rsp)
movl $0x10, 0x4e34(%rsp)
movq 0x4e38(%rsp), %rax
movslq 0x4e34(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e34(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6b0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x24f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1357d5d
movq 0x6b0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2508(%rsp)
movb $0x1, 0x33f3(%rsp)
testb $0x1, 0x33f3(%rsp)
jne 0x1357e9e
leaq 0x24c8(%rsp), %rax
movq %rax, 0x3408(%rsp)
movq 0x3408(%rsp), %rax
movq %rax, 0x4ea8(%rsp)
movq 0x4ea8(%rsp), %rax
movq %rax, 0x6a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1357e41
movq 0x6a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4ea4(%rsp) # imm = 0xFFFFFFFF
movl 0x4ea4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4ea0(%rsp)
cmpl $0x1, 0x4ea0(%rsp)
jne 0x1357e41
movq 0x6a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1357e0f
movq 0x6a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1357e0d
jmp 0x1357e3f
movq 0x6a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5690(%rsp)
cmpq $0x0, 0x5690(%rsp)
je 0x1357e3d
movq 0x5690(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1357e3f
jmp 0x1357e41
movq 0x6a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1357e9c
movq %rax, %rdi
callq 0x678a0
jmp 0x1357e9e
leaq 0x24c8(%rsp), %rax
movq %rax, 0x34f0(%rsp)
movq 0x34f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x690(%rsp)
leaq 0x24c8(%rsp), %rax
movq %rax, 0x3118(%rsp)
movq 0x3118(%rsp), %rax
movq %rax, 0x51b8(%rsp)
movq 0x51b8(%rsp), %rax
movq %rax, 0x698(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1357f8f
movq 0x698(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x51b4(%rsp) # imm = 0xFFFFFFFF
movl 0x51b4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x51b0(%rsp)
cmpl $0x1, 0x51b0(%rsp)
jne 0x1357f8f
movq 0x698(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1357f5d
movq 0x698(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1357f5b
jmp 0x1357f8d
movq 0x698(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5508(%rsp)
cmpq $0x0, 0x5508(%rsp)
je 0x1357f8b
movq 0x5508(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1357f8d
jmp 0x1357f8f
movq 0x698(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1357fea
movq %rax, %rdi
callq 0x678a0
movq 0x690(%rsp), %rax
movq %rax, 0x2510(%rsp)
movl $0x0, 0x24c4(%rsp)
movl 0x24c4(%rsp), %eax
cmpl 0x2b80(%rsp), %eax
jge 0x1358190
movl $0x0, 0x24c0(%rsp)
movl 0x24c0(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jge 0x1358178
movq 0x25b0(%rsp), %rax
movq %rax, 0x3608(%rsp)
movq 0x3608(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2480(%rsp)
movl $0x0, 0x247c(%rsp)
movl 0x247c(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jge 0x135814e
movq 0x2560(%rsp), %rax
movq %rax, 0x3600(%rsp)
movq 0x3600(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2400(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x2480(%rsp), %rsi
leaq 0x2400(%rsp), %rdx
callq 0x1453cc0
vmovaps %zmm0, 0x23c0(%rsp)
movq 0x2510(%rsp), %rax
vmovaps 0x23c0(%rsp), %zmm0
movq %rax, 0x3eb8(%rsp)
vmovaps %zmm0, 0x3e40(%rsp)
vmovaps 0x3e40(%rsp), %zmm0
movq 0x3eb8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x2560(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2560(%rsp)
movq 0x2510(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2510(%rsp)
movl 0x247c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x247c(%rsp)
jmp 0x135806c
movq 0x25b0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x25b0(%rsp)
movl 0x24c0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x24c0(%rsp)
jmp 0x1358024
jmp 0x135817a
movl 0x24c4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x24c4(%rsp)
jmp 0x1358005
jmp 0x1358192
movl 0x25bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x25bc(%rsp)
jmp 0x13572db
movl $0x0, 0x2bd4(%rsp)
jmp 0x13640c0
movq 0x2bc0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x135f603
cmpl $0x1, 0x2b88(%rsp)
jne 0x1359122
cmpl $0x1, 0x2b84(%rsp)
jne 0x1359122
movl 0x2b7c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jne 0x1359122
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movl 0x2b9c(%rsp), %ecx
movq 0x2b90(%rsp), %r8
movl 0x2b8c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c58(%rsp)
movq 0x2c58(%rsp), %rcx
movq %rcx, 0x680(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x68f(%rsp)
je 0x135829d
movq 0x680(%rsp), %rax
movq %rax, 0x4188(%rsp)
movq 0x4188(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x68f(%rsp)
movb 0x68f(%rsp), %al
testb $0x1, %al
jne 0x13582aa
jmp 0x13582ba
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x13640c0
movl $0x0, 0x23bc(%rsp)
movl 0x23bc(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jge 0x1359112
movq 0x2bc8(%rsp), %rcx
movl 0x23bc(%rsp), %eax
leaq 0x2368(%rsp), %rdx
movq %rdx, 0x2e48(%rsp)
movq %rcx, 0x2e40(%rsp)
movl %eax, 0x2e3c(%rsp)
movq 0x2e40(%rsp), %rax
movq %rax, 0x678(%rsp)
movb $0x0, 0x2e3b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e3c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2368(%rsp), %r10
movq %r10, 0x4780(%rsp)
movl %r9d, 0x477c(%rsp)
movl %r8d, 0x4778(%rsp)
movl %edi, 0x4774(%rsp)
movq %rsi, 0x4768(%rsp)
movq %rdx, 0x4760(%rsp)
movl %ecx, 0x475c(%rsp)
movq %rax, 0x4750(%rsp)
movq 0x4780(%rsp), %rcx
movq %rcx, 0x670(%rsp)
movq 0x4768(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4760(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x475c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4750(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x477c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4778(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4774(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4ce8(%rsp)
movl $0x10, 0x4ce4(%rsp)
movq 0x4ce8(%rsp), %rax
movslq 0x4ce4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4ce4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x678(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2390(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1358495
movq 0x678(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x23a8(%rsp)
movb $0x1, 0x2e3b(%rsp)
testb $0x1, 0x2e3b(%rsp)
jne 0x13585d6
leaq 0x2368(%rsp), %rax
movq %rax, 0x3030(%rsp)
movq 0x3030(%rsp), %rax
movq %rax, 0x5388(%rsp)
movq 0x5388(%rsp), %rax
movq %rax, 0x668(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1358579
movq 0x668(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5384(%rsp) # imm = 0xFFFFFFFF
movl 0x5384(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5380(%rsp)
cmpl $0x1, 0x5380(%rsp)
jne 0x1358579
movq 0x668(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1358547
movq 0x668(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1358545
jmp 0x1358577
movq 0x668(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5420(%rsp)
cmpq $0x0, 0x5420(%rsp)
je 0x1358575
movq 0x5420(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1358577
jmp 0x1358579
movq 0x668(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13585d4
movq %rax, %rdi
callq 0x678a0
jmp 0x13585d6
leaq 0x2368(%rsp), %rax
movq %rax, 0x2fc0(%rsp)
movq 0x2fc0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x658(%rsp)
leaq 0x2368(%rsp), %rax
movq %rax, 0x3120(%rsp)
movq 0x3120(%rsp), %rax
movq %rax, 0x51a8(%rsp)
movq 0x51a8(%rsp), %rax
movq %rax, 0x660(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13586c7
movq 0x660(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x51a4(%rsp) # imm = 0xFFFFFFFF
movl 0x51a4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x51a0(%rsp)
cmpl $0x1, 0x51a0(%rsp)
jne 0x13586c7
movq 0x660(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1358695
movq 0x660(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1358693
jmp 0x13586c5
movq 0x660(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5510(%rsp)
cmpq $0x0, 0x5510(%rsp)
je 0x13586c3
movq 0x5510(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13586c5
jmp 0x13586c7
movq 0x660(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1358722
movq %rax, %rdi
callq 0x678a0
movq 0x658(%rsp), %rax
movq %rax, 0x23b0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x23bc(%rsp), %eax
leaq 0x2318(%rsp), %rdx
movq %rdx, 0x2e30(%rsp)
movq %rcx, 0x2e28(%rsp)
movl %eax, 0x2e24(%rsp)
movq 0x2e28(%rsp), %rax
movq %rax, 0x650(%rsp)
movb $0x0, 0x2e23(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e24(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2318(%rsp), %r10
movq %r10, 0x47b8(%rsp)
movl %r9d, 0x47b4(%rsp)
movl %r8d, 0x47b0(%rsp)
movl %edi, 0x47ac(%rsp)
movq %rsi, 0x47a0(%rsp)
movq %rdx, 0x4798(%rsp)
movl %ecx, 0x4794(%rsp)
movq %rax, 0x4788(%rsp)
movq 0x47b8(%rsp), %rcx
movq %rcx, 0x648(%rsp)
movq 0x47a0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4798(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4794(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4788(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x47b4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x47b0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x47ac(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4cd8(%rsp)
movl $0x10, 0x4cd4(%rsp)
movq 0x4cd8(%rsp), %rax
movslq 0x4cd4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4cd4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x650(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2340(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13588ee
movq 0x650(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2358(%rsp)
movb $0x1, 0x2e23(%rsp)
testb $0x1, 0x2e23(%rsp)
jne 0x1358a2f
leaq 0x2318(%rsp), %rax
movq %rax, 0x3038(%rsp)
movq 0x3038(%rsp), %rax
movq %rax, 0x5378(%rsp)
movq 0x5378(%rsp), %rax
movq %rax, 0x640(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13589d2
movq 0x640(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5374(%rsp) # imm = 0xFFFFFFFF
movl 0x5374(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5370(%rsp)
cmpl $0x1, 0x5370(%rsp)
jne 0x13589d2
movq 0x640(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13589a0
movq 0x640(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135899e
jmp 0x13589d0
movq 0x640(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5428(%rsp)
cmpq $0x0, 0x5428(%rsp)
je 0x13589ce
movq 0x5428(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13589d0
jmp 0x13589d2
movq 0x640(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1358a2d
movq %rax, %rdi
callq 0x678a0
jmp 0x1358a2f
leaq 0x2318(%rsp), %rax
movq %rax, 0x2fb8(%rsp)
movq 0x2fb8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x630(%rsp)
leaq 0x2318(%rsp), %rax
movq %rax, 0x3128(%rsp)
movq 0x3128(%rsp), %rax
movq %rax, 0x5198(%rsp)
movq 0x5198(%rsp), %rax
movq %rax, 0x638(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1358b20
movq 0x638(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5194(%rsp) # imm = 0xFFFFFFFF
movl 0x5194(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5190(%rsp)
cmpl $0x1, 0x5190(%rsp)
jne 0x1358b20
movq 0x638(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1358aee
movq 0x638(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1358aec
jmp 0x1358b1e
movq 0x638(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5518(%rsp)
cmpq $0x0, 0x5518(%rsp)
je 0x1358b1c
movq 0x5518(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1358b1e
jmp 0x1358b20
movq 0x638(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1358b7b
movq %rax, %rdi
callq 0x678a0
movq 0x630(%rsp), %rax
movq %rax, 0x2360(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x23bc(%rsp), %eax
leaq 0x22c8(%rsp), %rdx
movq %rdx, 0x33e0(%rsp)
movq %rcx, 0x33d8(%rsp)
movl %eax, 0x33d4(%rsp)
movq 0x33d8(%rsp), %rax
movq %rax, 0x628(%rsp)
movb $0x0, 0x33d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x33d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x22c8(%rsp), %r10
movq %r10, 0x4320(%rsp)
movl %r9d, 0x431c(%rsp)
movl %r8d, 0x4318(%rsp)
movl %edi, 0x4314(%rsp)
movq %rsi, 0x4308(%rsp)
movq %rdx, 0x4300(%rsp)
movl %ecx, 0x42fc(%rsp)
movq %rax, 0x42f0(%rsp)
movq 0x4320(%rsp), %rcx
movq %rcx, 0x620(%rsp)
movq 0x4308(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4300(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x42fc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x42f0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x431c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4318(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4314(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e28(%rsp)
movl $0x10, 0x4e24(%rsp)
movq 0x4e28(%rsp), %rax
movslq 0x4e24(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e24(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x628(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x22f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1358d47
movq 0x628(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2308(%rsp)
movb $0x1, 0x33d3(%rsp)
testb $0x1, 0x33d3(%rsp)
jne 0x1358e88
leaq 0x22c8(%rsp), %rax
movq %rax, 0x33e8(%rsp)
movq 0x33e8(%rsp), %rax
movq %rax, 0x4eb8(%rsp)
movq 0x4eb8(%rsp), %rax
movq %rax, 0x618(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1358e2b
movq 0x618(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4eb4(%rsp) # imm = 0xFFFFFFFF
movl 0x4eb4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4eb0(%rsp)
cmpl $0x1, 0x4eb0(%rsp)
jne 0x1358e2b
movq 0x618(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1358df9
movq 0x618(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1358df7
jmp 0x1358e29
movq 0x618(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5688(%rsp)
cmpq $0x0, 0x5688(%rsp)
je 0x1358e27
movq 0x5688(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1358e29
jmp 0x1358e2b
movq 0x618(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1358e86
movq %rax, %rdi
callq 0x678a0
jmp 0x1358e88
leaq 0x22c8(%rsp), %rax
movq %rax, 0x34e8(%rsp)
movq 0x34e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x608(%rsp)
leaq 0x22c8(%rsp), %rax
movq %rax, 0x3130(%rsp)
movq 0x3130(%rsp), %rax
movq %rax, 0x5188(%rsp)
movq 0x5188(%rsp), %rax
movq %rax, 0x610(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1358f79
movq 0x610(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5184(%rsp) # imm = 0xFFFFFFFF
movl 0x5184(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5180(%rsp)
cmpl $0x1, 0x5180(%rsp)
jne 0x1358f79
movq 0x610(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1358f47
movq 0x610(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1358f45
jmp 0x1358f77
movq 0x610(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5520(%rsp)
cmpq $0x0, 0x5520(%rsp)
je 0x1358f75
movq 0x5520(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1358f77
jmp 0x1358f79
movq 0x610(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1358fd4
movq %rax, %rdi
callq 0x678a0
movq 0x608(%rsp), %rax
movq %rax, 0x2310(%rsp)
movq 0x2360(%rsp), %rax
movq %rax, 0x35f8(%rsp)
movq 0x35f8(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2280(%rsp)
movl $0x0, 0x227c(%rsp)
movl 0x227c(%rsp), %eax
cmpl 0x2b98(%rsp), %eax
jge 0x13590fa
movq 0x23b0(%rsp), %rax
movq %rax, 0x35f0(%rsp)
movq 0x35f0(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x2200(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x2200(%rsp), %rsi
leaq 0x2280(%rsp), %rdx
callq 0x1453cc0
vmovaps %zmm0, 0x21c0(%rsp)
movq 0x2310(%rsp), %rax
vmovaps 0x21c0(%rsp), %zmm0
movq %rax, 0x3e38(%rsp)
vmovaps %zmm0, 0x3dc0(%rsp)
vmovaps 0x3dc0(%rsp), %zmm0
movq 0x3e38(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x23b0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x23b0(%rsp)
movq 0x2310(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2310(%rsp)
movl 0x227c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x227c(%rsp)
jmp 0x1359018
jmp 0x13590fc
movl 0x23bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x23bc(%rsp)
jmp 0x13582c5
movl $0x0, 0x2bd4(%rsp)
jmp 0x13640c0
movl 0x2b88(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jne 0x1359c84
movl 0x2b84(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jne 0x1359c84
cmpl $0x1, 0x2b7c(%rsp)
jne 0x1359c84
cmpl $0x1, 0x2b6c(%rsp)
jne 0x1359c84
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movl 0x2b9c(%rsp), %ecx
movq 0x2b90(%rsp), %r8
movl 0x2b8c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c50(%rsp)
movq 0x2c50(%rsp), %rcx
movq %rcx, 0x5f8(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x607(%rsp)
je 0x1359209
movq 0x5f8(%rsp), %rax
movq %rax, 0x4190(%rsp)
movq 0x4190(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x607(%rsp)
movb 0x607(%rsp), %al
testb $0x1, %al
jne 0x1359216
jmp 0x1359226
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x13640c0
movl $0x0, 0x21bc(%rsp)
movl 0x21bc(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jge 0x1359c74
movq 0x2bc8(%rsp), %rcx
movl 0x21bc(%rsp), %eax
leaq 0x2168(%rsp), %rdx
movq %rdx, 0x2e18(%rsp)
movq %rcx, 0x2e10(%rsp)
movl %eax, 0x2e0c(%rsp)
movq 0x2e10(%rsp), %rax
movq %rax, 0x5f0(%rsp)
movb $0x0, 0x2e0b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2e0c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2168(%rsp), %r10
movq %r10, 0x47f0(%rsp)
movl %r9d, 0x47ec(%rsp)
movl %r8d, 0x47e8(%rsp)
movl %edi, 0x47e4(%rsp)
movq %rsi, 0x47d8(%rsp)
movq %rdx, 0x47d0(%rsp)
movl %ecx, 0x47cc(%rsp)
movq %rax, 0x47c0(%rsp)
movq 0x47f0(%rsp), %rcx
movq %rcx, 0x5e8(%rsp)
movq 0x47d8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x47d0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x47cc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x47c0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x47ec(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x47e8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x47e4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4cc8(%rsp)
movl $0x10, 0x4cc4(%rsp)
movq 0x4cc8(%rsp), %rax
movslq 0x4cc4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4cc4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5f0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2190(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1359401
movq 0x5f0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x21a8(%rsp)
movb $0x1, 0x2e0b(%rsp)
testb $0x1, 0x2e0b(%rsp)
jne 0x1359542
leaq 0x2168(%rsp), %rax
movq %rax, 0x3040(%rsp)
movq 0x3040(%rsp), %rax
movq %rax, 0x5368(%rsp)
movq 0x5368(%rsp), %rax
movq %rax, 0x5e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13594e5
movq 0x5e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5364(%rsp) # imm = 0xFFFFFFFF
movl 0x5364(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5360(%rsp)
cmpl $0x1, 0x5360(%rsp)
jne 0x13594e5
movq 0x5e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13594b3
movq 0x5e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13594b1
jmp 0x13594e3
movq 0x5e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5430(%rsp)
cmpq $0x0, 0x5430(%rsp)
je 0x13594e1
movq 0x5430(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13594e3
jmp 0x13594e5
movq 0x5e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1359540
movq %rax, %rdi
callq 0x678a0
jmp 0x1359542
leaq 0x2168(%rsp), %rax
movq %rax, 0x2fb0(%rsp)
movq 0x2fb0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5d0(%rsp)
leaq 0x2168(%rsp), %rax
movq %rax, 0x3138(%rsp)
movq 0x3138(%rsp), %rax
movq %rax, 0x5178(%rsp)
movq 0x5178(%rsp), %rax
movq %rax, 0x5d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1359633
movq 0x5d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5174(%rsp) # imm = 0xFFFFFFFF
movl 0x5174(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5170(%rsp)
cmpl $0x1, 0x5170(%rsp)
jne 0x1359633
movq 0x5d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1359601
movq 0x5d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13595ff
jmp 0x1359631
movq 0x5d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5528(%rsp)
cmpq $0x0, 0x5528(%rsp)
je 0x135962f
movq 0x5528(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1359631
jmp 0x1359633
movq 0x5d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135968e
movq %rax, %rdi
callq 0x678a0
movq 0x5d0(%rsp), %rax
movq %rax, 0x21b0(%rsp)
movq 0x2bc0(%rsp), %rax
movq %rax, 0x2fa8(%rsp)
movq 0x2fa8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2160(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x21bc(%rsp), %eax
leaq 0x2110(%rsp), %rdx
movq %rdx, 0x33c0(%rsp)
movq %rcx, 0x33b8(%rsp)
movl %eax, 0x33b4(%rsp)
movq 0x33b8(%rsp), %rax
movq %rax, 0x5c8(%rsp)
movb $0x0, 0x33b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x33b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2110(%rsp), %r10
movq %r10, 0x4358(%rsp)
movl %r9d, 0x4354(%rsp)
movl %r8d, 0x4350(%rsp)
movl %edi, 0x434c(%rsp)
movq %rsi, 0x4340(%rsp)
movq %rdx, 0x4338(%rsp)
movl %ecx, 0x4334(%rsp)
movq %rax, 0x4328(%rsp)
movq 0x4358(%rsp), %rcx
movq %rcx, 0x5c0(%rsp)
movq 0x4340(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4338(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4334(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4328(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4354(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4350(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x434c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e18(%rsp)
movl $0x10, 0x4e14(%rsp)
movq 0x4e18(%rsp), %rax
movslq 0x4e14(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e14(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5c8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2138(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x135987d
movq 0x5c8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2150(%rsp)
movb $0x1, 0x33b3(%rsp)
testb $0x1, 0x33b3(%rsp)
jne 0x13599be
leaq 0x2110(%rsp), %rax
movq %rax, 0x33c8(%rsp)
movq 0x33c8(%rsp), %rax
movq %rax, 0x4ec8(%rsp)
movq 0x4ec8(%rsp), %rax
movq %rax, 0x5b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1359961
movq 0x5b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4ec4(%rsp) # imm = 0xFFFFFFFF
movl 0x4ec4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4ec0(%rsp)
cmpl $0x1, 0x4ec0(%rsp)
jne 0x1359961
movq 0x5b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135992f
movq 0x5b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135992d
jmp 0x135995f
movq 0x5b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5680(%rsp)
cmpq $0x0, 0x5680(%rsp)
je 0x135995d
movq 0x5680(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x135995f
jmp 0x1359961
movq 0x5b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13599bc
movq %rax, %rdi
callq 0x678a0
jmp 0x13599be
leaq 0x2110(%rsp), %rax
movq %rax, 0x34e0(%rsp)
movq 0x34e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5a8(%rsp)
leaq 0x2110(%rsp), %rax
movq %rax, 0x3140(%rsp)
movq 0x3140(%rsp), %rax
movq %rax, 0x5168(%rsp)
movq 0x5168(%rsp), %rax
movq %rax, 0x5b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1359aaf
movq 0x5b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5164(%rsp) # imm = 0xFFFFFFFF
movl 0x5164(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5160(%rsp)
cmpl $0x1, 0x5160(%rsp)
jne 0x1359aaf
movq 0x5b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1359a7d
movq 0x5b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1359a7b
jmp 0x1359aad
movq 0x5b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5530(%rsp)
cmpq $0x0, 0x5530(%rsp)
je 0x1359aab
movq 0x5530(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1359aad
jmp 0x1359aaf
movq 0x5b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1359b0a
movq %rax, %rdi
callq 0x678a0
movq 0x5a8(%rsp), %rax
movq %rax, 0x2158(%rsp)
movl $0x0, 0x210c(%rsp)
movl 0x210c(%rsp), %eax
cmpl 0x2b98(%rsp), %eax
jge 0x1359c5c
movq 0x21b0(%rsp), %rax
movq %rax, 0x35e8(%rsp)
movq 0x35e8(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x20c0(%rsp)
movq 0x2160(%rsp), %rax
vmovss (%rax), %xmm0
vmovss %xmm0, 0x4174(%rsp)
vbroadcastss 0x4174(%rsp), %zmm0
vmovaps %zmm0, 0x4100(%rsp)
vmovaps 0x4100(%rsp), %zmm0
vmovaps %zmm0, 0x2080(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x20c0(%rsp), %rsi
leaq 0x2080(%rsp), %rdx
callq 0x1453cc0
vmovaps %zmm0, 0x2040(%rsp)
movq 0x2158(%rsp), %rax
vmovaps 0x2040(%rsp), %zmm0
movq %rax, 0x3db8(%rsp)
vmovaps %zmm0, 0x3d40(%rsp)
vmovaps 0x3d40(%rsp), %zmm0
movq 0x3db8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x21b0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x21b0(%rsp)
movq 0x2160(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x2160(%rsp)
movq 0x2158(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x2158(%rsp)
movl 0x210c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x210c(%rsp)
jmp 0x1359b25
jmp 0x1359c5e
movl 0x21bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x21bc(%rsp)
jmp 0x1359231
movl $0x0, 0x2bd4(%rsp)
jmp 0x13640c0
cmpl $0x1, 0x2ba8(%rsp)
jne 0x135abd0
cmpl $0x1, 0x2ba4(%rsp)
jne 0x135abd0
movl 0x2b7c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jne 0x135abd0
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b7c(%rsp), %ecx
movq 0x2b70(%rsp), %r8
movl 0x2b6c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c48(%rsp)
movq 0x2c48(%rsp), %rcx
movq %rcx, 0x598(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x5a7(%rsp)
je 0x1359d57
movq 0x598(%rsp), %rax
movq %rax, 0x4198(%rsp)
movq 0x4198(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x5a7(%rsp)
movb 0x5a7(%rsp), %al
testb $0x1, %al
jne 0x1359d64
jmp 0x1359d74
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x13640c0
movl $0x0, 0x203c(%rsp)
movl 0x203c(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x135abc0
movq 0x2bc8(%rsp), %rcx
movl 0x203c(%rsp), %eax
leaq 0x1fe8(%rsp), %rdx
movq %rdx, 0x2e00(%rsp)
movq %rcx, 0x2df8(%rsp)
movl %eax, 0x2df4(%rsp)
movq 0x2df8(%rsp), %rax
movq %rax, 0x590(%rsp)
movb $0x0, 0x2df3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2df4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1fe8(%rsp), %r10
movq %r10, 0x4828(%rsp)
movl %r9d, 0x4824(%rsp)
movl %r8d, 0x4820(%rsp)
movl %edi, 0x481c(%rsp)
movq %rsi, 0x4810(%rsp)
movq %rdx, 0x4808(%rsp)
movl %ecx, 0x4804(%rsp)
movq %rax, 0x47f8(%rsp)
movq 0x4828(%rsp), %rcx
movq %rcx, 0x588(%rsp)
movq 0x4810(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4808(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4804(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x47f8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4824(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4820(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x481c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4cb8(%rsp)
movl $0x10, 0x4cb4(%rsp)
movq 0x4cb8(%rsp), %rax
movslq 0x4cb4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4cb4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x590(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2010(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1359f4f
movq 0x590(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2028(%rsp)
movb $0x1, 0x2df3(%rsp)
testb $0x1, 0x2df3(%rsp)
jne 0x135a090
leaq 0x1fe8(%rsp), %rax
movq %rax, 0x3048(%rsp)
movq 0x3048(%rsp), %rax
movq %rax, 0x5358(%rsp)
movq 0x5358(%rsp), %rax
movq %rax, 0x580(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x135a033
movq 0x580(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5354(%rsp) # imm = 0xFFFFFFFF
movl 0x5354(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5350(%rsp)
cmpl $0x1, 0x5350(%rsp)
jne 0x135a033
movq 0x580(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135a001
movq 0x580(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1359fff
jmp 0x135a031
movq 0x580(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5438(%rsp)
cmpq $0x0, 0x5438(%rsp)
je 0x135a02f
movq 0x5438(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x135a031
jmp 0x135a033
movq 0x580(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135a08e
movq %rax, %rdi
callq 0x678a0
jmp 0x135a090
leaq 0x1fe8(%rsp), %rax
movq %rax, 0x2fa0(%rsp)
movq 0x2fa0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x570(%rsp)
leaq 0x1fe8(%rsp), %rax
movq %rax, 0x3148(%rsp)
movq 0x3148(%rsp), %rax
movq %rax, 0x5158(%rsp)
movq 0x5158(%rsp), %rax
movq %rax, 0x578(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x135a181
movq 0x578(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5154(%rsp) # imm = 0xFFFFFFFF
movl 0x5154(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5150(%rsp)
cmpl $0x1, 0x5150(%rsp)
jne 0x135a181
movq 0x578(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135a14f
movq 0x578(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135a14d
jmp 0x135a17f
movq 0x578(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5538(%rsp)
cmpq $0x0, 0x5538(%rsp)
je 0x135a17d
movq 0x5538(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x135a17f
jmp 0x135a181
movq 0x578(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135a1dc
movq %rax, %rdi
callq 0x678a0
movq 0x570(%rsp), %rax
movq %rax, 0x2030(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x203c(%rsp), %eax
leaq 0x1f98(%rsp), %rdx
movq %rdx, 0x2de8(%rsp)
movq %rcx, 0x2de0(%rsp)
movl %eax, 0x2ddc(%rsp)
movq 0x2de0(%rsp), %rax
movq %rax, 0x568(%rsp)
movb $0x0, 0x2ddb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2ddc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1f98(%rsp), %r10
movq %r10, 0x4860(%rsp)
movl %r9d, 0x485c(%rsp)
movl %r8d, 0x4858(%rsp)
movl %edi, 0x4854(%rsp)
movq %rsi, 0x4848(%rsp)
movq %rdx, 0x4840(%rsp)
movl %ecx, 0x483c(%rsp)
movq %rax, 0x4830(%rsp)
movq 0x4860(%rsp), %rcx
movq %rcx, 0x560(%rsp)
movq 0x4848(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4840(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x483c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4830(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x485c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4858(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4854(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4ca8(%rsp)
movl $0x10, 0x4ca4(%rsp)
movq 0x4ca8(%rsp), %rax
movslq 0x4ca4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4ca4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x568(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1fc0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x135a3a8
movq 0x568(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1fd8(%rsp)
movb $0x1, 0x2ddb(%rsp)
testb $0x1, 0x2ddb(%rsp)
jne 0x135a4e9
leaq 0x1f98(%rsp), %rax
movq %rax, 0x3050(%rsp)
movq 0x3050(%rsp), %rax
movq %rax, 0x5348(%rsp)
movq 0x5348(%rsp), %rax
movq %rax, 0x558(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x135a48c
movq 0x558(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5344(%rsp) # imm = 0xFFFFFFFF
movl 0x5344(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5340(%rsp)
cmpl $0x1, 0x5340(%rsp)
jne 0x135a48c
movq 0x558(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135a45a
movq 0x558(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135a458
jmp 0x135a48a
movq 0x558(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5440(%rsp)
cmpq $0x0, 0x5440(%rsp)
je 0x135a488
movq 0x5440(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x135a48a
jmp 0x135a48c
movq 0x558(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135a4e7
movq %rax, %rdi
callq 0x678a0
jmp 0x135a4e9
leaq 0x1f98(%rsp), %rax
movq %rax, 0x2f98(%rsp)
movq 0x2f98(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x548(%rsp)
leaq 0x1f98(%rsp), %rax
movq %rax, 0x3150(%rsp)
movq 0x3150(%rsp), %rax
movq %rax, 0x5148(%rsp)
movq 0x5148(%rsp), %rax
movq %rax, 0x550(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x135a5da
movq 0x550(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5144(%rsp) # imm = 0xFFFFFFFF
movl 0x5144(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5140(%rsp)
cmpl $0x1, 0x5140(%rsp)
jne 0x135a5da
movq 0x550(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135a5a8
movq 0x550(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135a5a6
jmp 0x135a5d8
movq 0x550(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5540(%rsp)
cmpq $0x0, 0x5540(%rsp)
je 0x135a5d6
movq 0x5540(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x135a5d8
jmp 0x135a5da
movq 0x550(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135a635
movq %rax, %rdi
callq 0x678a0
movq 0x548(%rsp), %rax
movq %rax, 0x1fe0(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x203c(%rsp), %eax
leaq 0x1f48(%rsp), %rdx
movq %rdx, 0x33a0(%rsp)
movq %rcx, 0x3398(%rsp)
movl %eax, 0x3394(%rsp)
movq 0x3398(%rsp), %rax
movq %rax, 0x540(%rsp)
movb $0x0, 0x3393(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3394(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1f48(%rsp), %r10
movq %r10, 0x4390(%rsp)
movl %r9d, 0x438c(%rsp)
movl %r8d, 0x4388(%rsp)
movl %edi, 0x4384(%rsp)
movq %rsi, 0x4378(%rsp)
movq %rdx, 0x4370(%rsp)
movl %ecx, 0x436c(%rsp)
movq %rax, 0x4360(%rsp)
movq 0x4390(%rsp), %rcx
movq %rcx, 0x538(%rsp)
movq 0x4378(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4370(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x436c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4360(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x438c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4388(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4384(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4e08(%rsp)
movl $0x10, 0x4e04(%rsp)
movq 0x4e08(%rsp), %rax
movslq 0x4e04(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4e04(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x540(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1f70(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x135a801
movq 0x540(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1f88(%rsp)
movb $0x1, 0x3393(%rsp)
testb $0x1, 0x3393(%rsp)
jne 0x135a942
leaq 0x1f48(%rsp), %rax
movq %rax, 0x33a8(%rsp)
movq 0x33a8(%rsp), %rax
movq %rax, 0x4ed8(%rsp)
movq 0x4ed8(%rsp), %rax
movq %rax, 0x530(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x135a8e5
movq 0x530(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4ed4(%rsp) # imm = 0xFFFFFFFF
movl 0x4ed4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4ed0(%rsp)
cmpl $0x1, 0x4ed0(%rsp)
jne 0x135a8e5
movq 0x530(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135a8b3
movq 0x530(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135a8b1
jmp 0x135a8e3
movq 0x530(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5678(%rsp)
cmpq $0x0, 0x5678(%rsp)
je 0x135a8e1
movq 0x5678(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x135a8e3
jmp 0x135a8e5
movq 0x530(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135a940
movq %rax, %rdi
callq 0x678a0
jmp 0x135a942
leaq 0x1f48(%rsp), %rax
movq %rax, 0x34d8(%rsp)
movq 0x34d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x520(%rsp)
leaq 0x1f48(%rsp), %rax
movq %rax, 0x3158(%rsp)
movq 0x3158(%rsp), %rax
movq %rax, 0x5138(%rsp)
movq 0x5138(%rsp), %rax
movq %rax, 0x528(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x135aa33
movq 0x528(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5134(%rsp) # imm = 0xFFFFFFFF
movl 0x5134(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5130(%rsp)
cmpl $0x1, 0x5130(%rsp)
jne 0x135aa33
movq 0x528(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135aa01
movq 0x528(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135a9ff
jmp 0x135aa31
movq 0x528(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5548(%rsp)
cmpq $0x0, 0x5548(%rsp)
je 0x135aa2f
movq 0x5548(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x135aa31
jmp 0x135aa33
movq 0x528(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135aa8e
movq %rax, %rdi
callq 0x678a0
movq 0x520(%rsp), %rax
movq %rax, 0x1f90(%rsp)
movq 0x2030(%rsp), %rax
movq %rax, 0x35e0(%rsp)
movq 0x35e0(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1f00(%rsp)
movl $0x0, 0x1efc(%rsp)
movl 0x1efc(%rsp), %eax
cmpl 0x2b78(%rsp), %eax
jge 0x135aba8
movq 0x1fe0(%rsp), %rax
movq %rax, 0x35d8(%rsp)
movq 0x35d8(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1e80(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x1f00(%rsp), %rsi
leaq 0x1e80(%rsp), %rdx
callq 0x1453cc0
vmovaps %zmm0, 0x1e40(%rsp)
movq 0x1f90(%rsp), %rax
vmovaps 0x1e40(%rsp), %zmm0
movq %rax, 0x3d38(%rsp)
vmovaps %zmm0, 0x3cc0(%rsp)
vmovaps 0x3cc0(%rsp), %zmm0
movq 0x3d38(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x1fe0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1fe0(%rsp)
movq 0x1f90(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1f90(%rsp)
movl 0x1efc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1efc(%rsp)
jmp 0x135aacf
jmp 0x135abaa
movl 0x203c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x203c(%rsp)
jmp 0x1359d7f
movl $0x0, 0x2bd4(%rsp)
jmp 0x13640c0
movl 0x2b88(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jne 0x135b726
movl 0x2b84(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jne 0x135b726
cmpl $0x1, 0x2b9c(%rsp)
jne 0x135b726
cmpl $0x1, 0x2b8c(%rsp)
jne 0x135b726
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b7c(%rsp), %ecx
movq 0x2b70(%rsp), %r8
movl 0x2b6c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c40(%rsp)
movq 0x2c40(%rsp), %rcx
movq %rcx, 0x510(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x51f(%rsp)
je 0x135acb7
movq 0x510(%rsp), %rax
movq %rax, 0x41a0(%rsp)
movq 0x41a0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x51f(%rsp)
movb 0x51f(%rsp), %al
testb $0x1, %al
jne 0x135acc4
jmp 0x135acd4
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x13640c0
movl $0x0, 0x1e3c(%rsp)
movl 0x1e3c(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x135b716
movq 0x2bc8(%rsp), %rax
movq %rax, 0x2f90(%rsp)
movq 0x2f90(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1e30(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x1e3c(%rsp), %eax
leaq 0x1de0(%rsp), %rdx
movq %rdx, 0x2dd0(%rsp)
movq %rcx, 0x2dc8(%rsp)
movl %eax, 0x2dc4(%rsp)
movq 0x2dc8(%rsp), %rax
movq %rax, 0x508(%rsp)
movb $0x0, 0x2dc3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2dc4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1de0(%rsp), %r10
movq %r10, 0x4898(%rsp)
movl %r9d, 0x4894(%rsp)
movl %r8d, 0x4890(%rsp)
movl %edi, 0x488c(%rsp)
movq %rsi, 0x4880(%rsp)
movq %rdx, 0x4878(%rsp)
movl %ecx, 0x4874(%rsp)
movq %rax, 0x4868(%rsp)
movq 0x4898(%rsp), %rcx
movq %rcx, 0x500(%rsp)
movq 0x4880(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4878(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4874(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4868(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4894(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4890(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x488c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c98(%rsp)
movl $0x10, 0x4c94(%rsp)
movq 0x4c98(%rsp), %rax
movslq 0x4c94(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c94(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x508(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1e08(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x135aed2
movq 0x508(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1e20(%rsp)
movb $0x1, 0x2dc3(%rsp)
testb $0x1, 0x2dc3(%rsp)
jne 0x135b013
leaq 0x1de0(%rsp), %rax
movq %rax, 0x3058(%rsp)
movq 0x3058(%rsp), %rax
movq %rax, 0x5338(%rsp)
movq 0x5338(%rsp), %rax
movq %rax, 0x4f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x135afb6
movq 0x4f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5334(%rsp) # imm = 0xFFFFFFFF
movl 0x5334(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5330(%rsp)
cmpl $0x1, 0x5330(%rsp)
jne 0x135afb6
movq 0x4f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135af84
movq 0x4f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135af82
jmp 0x135afb4
movq 0x4f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5448(%rsp)
cmpq $0x0, 0x5448(%rsp)
je 0x135afb2
movq 0x5448(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x135afb4
jmp 0x135afb6
movq 0x4f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135b011
movq %rax, %rdi
callq 0x678a0
jmp 0x135b013
leaq 0x1de0(%rsp), %rax
movq %rax, 0x2f88(%rsp)
movq 0x2f88(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4e8(%rsp)
leaq 0x1de0(%rsp), %rax
movq %rax, 0x3160(%rsp)
movq 0x3160(%rsp), %rax
movq %rax, 0x5128(%rsp)
movq 0x5128(%rsp), %rax
movq %rax, 0x4f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x135b104
movq 0x4f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5124(%rsp) # imm = 0xFFFFFFFF
movl 0x5124(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5120(%rsp)
cmpl $0x1, 0x5120(%rsp)
jne 0x135b104
movq 0x4f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135b0d2
movq 0x4f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135b0d0
jmp 0x135b102
movq 0x4f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5550(%rsp)
cmpq $0x0, 0x5550(%rsp)
je 0x135b100
movq 0x5550(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x135b102
jmp 0x135b104
movq 0x4f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135b15f
movq %rax, %rdi
callq 0x678a0
movq 0x4e8(%rsp), %rax
movq %rax, 0x1e28(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x1e3c(%rsp), %eax
leaq 0x1d90(%rsp), %rdx
movq %rdx, 0x3380(%rsp)
movq %rcx, 0x3378(%rsp)
movl %eax, 0x3374(%rsp)
movq 0x3378(%rsp), %rax
movq %rax, 0x4e0(%rsp)
movb $0x0, 0x3373(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3374(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1d90(%rsp), %r10
movq %r10, 0x43c8(%rsp)
movl %r9d, 0x43c4(%rsp)
movl %r8d, 0x43c0(%rsp)
movl %edi, 0x43bc(%rsp)
movq %rsi, 0x43b0(%rsp)
movq %rdx, 0x43a8(%rsp)
movl %ecx, 0x43a4(%rsp)
movq %rax, 0x4398(%rsp)
movq 0x43c8(%rsp), %rcx
movq %rcx, 0x4d8(%rsp)
movq 0x43b0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x43a8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x43a4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4398(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x43c4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x43c0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x43bc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4df8(%rsp)
movl $0x10, 0x4df4(%rsp)
movq 0x4df8(%rsp), %rax
movslq 0x4df4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4df4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4e0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1db8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x135b32b
movq 0x4e0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1dd0(%rsp)
movb $0x1, 0x3373(%rsp)
testb $0x1, 0x3373(%rsp)
jne 0x135b46c
leaq 0x1d90(%rsp), %rax
movq %rax, 0x3388(%rsp)
movq 0x3388(%rsp), %rax
movq %rax, 0x4ee8(%rsp)
movq 0x4ee8(%rsp), %rax
movq %rax, 0x4d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x135b40f
movq 0x4d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4ee4(%rsp) # imm = 0xFFFFFFFF
movl 0x4ee4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4ee0(%rsp)
cmpl $0x1, 0x4ee0(%rsp)
jne 0x135b40f
movq 0x4d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135b3dd
movq 0x4d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135b3db
jmp 0x135b40d
movq 0x4d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5670(%rsp)
cmpq $0x0, 0x5670(%rsp)
je 0x135b40b
movq 0x5670(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x135b40d
jmp 0x135b40f
movq 0x4d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135b46a
movq %rax, %rdi
callq 0x678a0
jmp 0x135b46c
leaq 0x1d90(%rsp), %rax
movq %rax, 0x34d0(%rsp)
movq 0x34d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4c0(%rsp)
leaq 0x1d90(%rsp), %rax
movq %rax, 0x3168(%rsp)
movq 0x3168(%rsp), %rax
movq %rax, 0x5118(%rsp)
movq 0x5118(%rsp), %rax
movq %rax, 0x4c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x135b55d
movq 0x4c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5114(%rsp) # imm = 0xFFFFFFFF
movl 0x5114(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5110(%rsp)
cmpl $0x1, 0x5110(%rsp)
jne 0x135b55d
movq 0x4c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135b52b
movq 0x4c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135b529
jmp 0x135b55b
movq 0x4c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5558(%rsp)
cmpq $0x0, 0x5558(%rsp)
je 0x135b559
movq 0x5558(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x135b55b
jmp 0x135b55d
movq 0x4c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135b5b8
movq %rax, %rdi
callq 0x678a0
movq 0x4c0(%rsp), %rax
movq %rax, 0x1dd8(%rsp)
movl $0x0, 0x1d8c(%rsp)
movl 0x1d8c(%rsp), %eax
cmpl 0x2b78(%rsp), %eax
jge 0x135b6fe
movq 0x1e30(%rsp), %rax
vmovss (%rax), %xmm0
vmovss %xmm0, 0x40fc(%rsp)
vbroadcastss 0x40fc(%rsp), %zmm0
vmovaps %zmm0, 0x4080(%rsp)
vmovaps 0x4080(%rsp), %zmm0
vmovaps %zmm0, 0x1d40(%rsp)
movq 0x1e28(%rsp), %rax
movq %rax, 0x35d0(%rsp)
movq 0x35d0(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1d00(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x1d40(%rsp), %rsi
leaq 0x1d00(%rsp), %rdx
callq 0x1453cc0
vmovaps %zmm0, 0x1cc0(%rsp)
movq 0x1dd8(%rsp), %rax
vmovaps 0x1cc0(%rsp), %zmm0
movq %rax, 0x3cb8(%rsp)
vmovaps %zmm0, 0x3c40(%rsp)
vmovaps 0x3c40(%rsp), %zmm0
movq 0x3cb8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x1e30(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x1e30(%rsp)
movq 0x1e28(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1e28(%rsp)
movq 0x1dd8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1dd8(%rsp)
movl 0x1d8c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1d8c(%rsp)
jmp 0x135b5d3
jmp 0x135b700
movl 0x1e3c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1e3c(%rsp)
jmp 0x135acdf
movl $0x0, 0x2bd4(%rsp)
jmp 0x13640c0
cmpl $0x1, 0x2ba8(%rsp)
je 0x135c6d1
cmpl $0x1, 0x2b88(%rsp)
jne 0x135c6d1
movl 0x2b84(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jne 0x135c6d1
movl 0x2b7c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jne 0x135c6d1
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movl 0x2b9c(%rsp), %ecx
movq 0x2b90(%rsp), %r8
movl 0x2b8c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c38(%rsp)
movq 0x2c38(%rsp), %rcx
movq %rcx, 0x4b0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x4bf(%rsp)
je 0x135b80d
movq 0x4b0(%rsp), %rax
movq %rax, 0x41a8(%rsp)
movq 0x41a8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x4bf(%rsp)
movb 0x4bf(%rsp), %al
testb $0x1, %al
jne 0x135b81a
jmp 0x135b82a
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x13640c0
movl $0x0, 0x1cbc(%rsp)
movl 0x1cbc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x135c6c1
movq 0x2bc8(%rsp), %rcx
movl 0x1cbc(%rsp), %eax
leaq 0x1c68(%rsp), %rdx
movq %rdx, 0x2db8(%rsp)
movq %rcx, 0x2db0(%rsp)
movl %eax, 0x2dac(%rsp)
movq 0x2db0(%rsp), %rax
movq %rax, 0x4a8(%rsp)
movb $0x0, 0x2dab(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2dac(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1c68(%rsp), %r10
movq %r10, 0x48d0(%rsp)
movl %r9d, 0x48cc(%rsp)
movl %r8d, 0x48c8(%rsp)
movl %edi, 0x48c4(%rsp)
movq %rsi, 0x48b8(%rsp)
movq %rdx, 0x48b0(%rsp)
movl %ecx, 0x48ac(%rsp)
movq %rax, 0x48a0(%rsp)
movq 0x48d0(%rsp), %rcx
movq %rcx, 0x4a0(%rsp)
movq 0x48b8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x48b0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x48ac(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x48a0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x48cc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x48c8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x48c4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c88(%rsp)
movl $0x10, 0x4c84(%rsp)
movq 0x4c88(%rsp), %rax
movslq 0x4c84(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c84(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4a8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1c90(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x135ba05
movq 0x4a8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1ca8(%rsp)
movb $0x1, 0x2dab(%rsp)
testb $0x1, 0x2dab(%rsp)
jne 0x135bb46
leaq 0x1c68(%rsp), %rax
movq %rax, 0x3060(%rsp)
movq 0x3060(%rsp), %rax
movq %rax, 0x5328(%rsp)
movq 0x5328(%rsp), %rax
movq %rax, 0x498(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x135bae9
movq 0x498(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5324(%rsp) # imm = 0xFFFFFFFF
movl 0x5324(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5320(%rsp)
cmpl $0x1, 0x5320(%rsp)
jne 0x135bae9
movq 0x498(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135bab7
movq 0x498(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135bab5
jmp 0x135bae7
movq 0x498(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5450(%rsp)
cmpq $0x0, 0x5450(%rsp)
je 0x135bae5
movq 0x5450(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x135bae7
jmp 0x135bae9
movq 0x498(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135bb44
movq %rax, %rdi
callq 0x678a0
jmp 0x135bb46
leaq 0x1c68(%rsp), %rax
movq %rax, 0x2f80(%rsp)
movq 0x2f80(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x488(%rsp)
leaq 0x1c68(%rsp), %rax
movq %rax, 0x3170(%rsp)
movq 0x3170(%rsp), %rax
movq %rax, 0x5108(%rsp)
movq 0x5108(%rsp), %rax
movq %rax, 0x490(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x135bc37
movq 0x490(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5104(%rsp) # imm = 0xFFFFFFFF
movl 0x5104(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5100(%rsp)
cmpl $0x1, 0x5100(%rsp)
jne 0x135bc37
movq 0x490(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135bc05
movq 0x490(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135bc03
jmp 0x135bc35
movq 0x490(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5560(%rsp)
cmpq $0x0, 0x5560(%rsp)
je 0x135bc33
movq 0x5560(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x135bc35
jmp 0x135bc37
movq 0x490(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135bc92
movq %rax, %rdi
callq 0x678a0
movq 0x488(%rsp), %rax
movq %rax, 0x1cb0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x1cbc(%rsp), %eax
leaq 0x1c18(%rsp), %rdx
movq %rdx, 0x2da0(%rsp)
movq %rcx, 0x2d98(%rsp)
movl %eax, 0x2d94(%rsp)
movq 0x2d98(%rsp), %rax
movq %rax, 0x480(%rsp)
movb $0x0, 0x2d93(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d94(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1c18(%rsp), %r10
movq %r10, 0x4908(%rsp)
movl %r9d, 0x4904(%rsp)
movl %r8d, 0x4900(%rsp)
movl %edi, 0x48fc(%rsp)
movq %rsi, 0x48f0(%rsp)
movq %rdx, 0x48e8(%rsp)
movl %ecx, 0x48e4(%rsp)
movq %rax, 0x48d8(%rsp)
movq 0x4908(%rsp), %rcx
movq %rcx, 0x478(%rsp)
movq 0x48f0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x48e8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x48e4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x48d8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4904(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4900(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x48fc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c78(%rsp)
movl $0x10, 0x4c74(%rsp)
movq 0x4c78(%rsp), %rax
movslq 0x4c74(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c74(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x480(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1c40(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x135be5e
movq 0x480(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1c58(%rsp)
movb $0x1, 0x2d93(%rsp)
testb $0x1, 0x2d93(%rsp)
jne 0x135bf9f
leaq 0x1c18(%rsp), %rax
movq %rax, 0x3068(%rsp)
movq 0x3068(%rsp), %rax
movq %rax, 0x5318(%rsp)
movq 0x5318(%rsp), %rax
movq %rax, 0x470(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x135bf42
movq 0x470(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5314(%rsp) # imm = 0xFFFFFFFF
movl 0x5314(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5310(%rsp)
cmpl $0x1, 0x5310(%rsp)
jne 0x135bf42
movq 0x470(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135bf10
movq 0x470(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135bf0e
jmp 0x135bf40
movq 0x470(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5458(%rsp)
cmpq $0x0, 0x5458(%rsp)
je 0x135bf3e
movq 0x5458(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x135bf40
jmp 0x135bf42
movq 0x470(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135bf9d
movq %rax, %rdi
callq 0x678a0
jmp 0x135bf9f
leaq 0x1c18(%rsp), %rax
movq %rax, 0x2f78(%rsp)
movq 0x2f78(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x460(%rsp)
leaq 0x1c18(%rsp), %rax
movq %rax, 0x3178(%rsp)
movq 0x3178(%rsp), %rax
movq %rax, 0x50f8(%rsp)
movq 0x50f8(%rsp), %rax
movq %rax, 0x468(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x135c090
movq 0x468(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x50f4(%rsp) # imm = 0xFFFFFFFF
movl 0x50f4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x50f0(%rsp)
cmpl $0x1, 0x50f0(%rsp)
jne 0x135c090
movq 0x468(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135c05e
movq 0x468(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135c05c
jmp 0x135c08e
movq 0x468(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5568(%rsp)
cmpq $0x0, 0x5568(%rsp)
je 0x135c08c
movq 0x5568(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x135c08e
jmp 0x135c090
movq 0x468(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135c0eb
movq %rax, %rdi
callq 0x678a0
movq 0x460(%rsp), %rax
movq %rax, 0x1c60(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x1cbc(%rsp), %eax
leaq 0x1bc8(%rsp), %rdx
movq %rdx, 0x3360(%rsp)
movq %rcx, 0x3358(%rsp)
movl %eax, 0x3354(%rsp)
movq 0x3358(%rsp), %rax
movq %rax, 0x458(%rsp)
movb $0x0, 0x3353(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3354(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1bc8(%rsp), %r10
movq %r10, 0x4400(%rsp)
movl %r9d, 0x43fc(%rsp)
movl %r8d, 0x43f8(%rsp)
movl %edi, 0x43f4(%rsp)
movq %rsi, 0x43e8(%rsp)
movq %rdx, 0x43e0(%rsp)
movl %ecx, 0x43dc(%rsp)
movq %rax, 0x43d0(%rsp)
movq 0x4400(%rsp), %rcx
movq %rcx, 0x450(%rsp)
movq 0x43e8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x43e0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x43dc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x43d0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x43fc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x43f8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x43f4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4de8(%rsp)
movl $0x10, 0x4de4(%rsp)
movq 0x4de8(%rsp), %rax
movslq 0x4de4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4de4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x458(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1bf0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x135c2b7
movq 0x458(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1c08(%rsp)
movb $0x1, 0x3353(%rsp)
testb $0x1, 0x3353(%rsp)
jne 0x135c3f8
leaq 0x1bc8(%rsp), %rax
movq %rax, 0x3368(%rsp)
movq 0x3368(%rsp), %rax
movq %rax, 0x4ef8(%rsp)
movq 0x4ef8(%rsp), %rax
movq %rax, 0x448(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x135c39b
movq 0x448(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4ef4(%rsp) # imm = 0xFFFFFFFF
movl 0x4ef4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4ef0(%rsp)
cmpl $0x1, 0x4ef0(%rsp)
jne 0x135c39b
movq 0x448(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135c369
movq 0x448(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135c367
jmp 0x135c399
movq 0x448(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5668(%rsp)
cmpq $0x0, 0x5668(%rsp)
je 0x135c397
movq 0x5668(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x135c399
jmp 0x135c39b
movq 0x448(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135c3f6
movq %rax, %rdi
callq 0x678a0
jmp 0x135c3f8
leaq 0x1bc8(%rsp), %rax
movq %rax, 0x34c8(%rsp)
movq 0x34c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x438(%rsp)
leaq 0x1bc8(%rsp), %rax
movq %rax, 0x3180(%rsp)
movq 0x3180(%rsp), %rax
movq %rax, 0x50e8(%rsp)
movq 0x50e8(%rsp), %rax
movq %rax, 0x440(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x135c4e9
movq 0x440(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x50e4(%rsp) # imm = 0xFFFFFFFF
movl 0x50e4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x50e0(%rsp)
cmpl $0x1, 0x50e0(%rsp)
jne 0x135c4e9
movq 0x440(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135c4b7
movq 0x440(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135c4b5
jmp 0x135c4e7
movq 0x440(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5570(%rsp)
cmpq $0x0, 0x5570(%rsp)
je 0x135c4e5
movq 0x5570(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x135c4e7
jmp 0x135c4e9
movq 0x440(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135c544
movq %rax, %rdi
callq 0x678a0
movq 0x438(%rsp), %rax
movq %rax, 0x1c10(%rsp)
movl $0x0, 0x1bc4(%rsp)
movl 0x1bc4(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jge 0x135c6a9
movq 0x1c60(%rsp), %rax
movl 0x1bc4(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x35c8(%rsp)
movq 0x35c8(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1b80(%rsp)
movl $0x0, 0x1b7c(%rsp)
movl 0x1b7c(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jge 0x135c691
movq 0x1cb0(%rsp), %rax
movq %rax, 0x35c0(%rsp)
movq 0x35c0(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1b00(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x1b00(%rsp), %rsi
leaq 0x1b80(%rsp), %rdx
callq 0x1453cc0
vmovaps %zmm0, 0x1ac0(%rsp)
movq 0x1c10(%rsp), %rax
vmovaps 0x1ac0(%rsp), %zmm0
movq %rax, 0x3c38(%rsp)
vmovaps %zmm0, 0x3bc0(%rsp)
vmovaps 0x3bc0(%rsp), %zmm0
movq 0x3c38(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x1cb0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1cb0(%rsp)
movq 0x1c10(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1c10(%rsp)
movl 0x1b7c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1b7c(%rsp)
jmp 0x135c5b8
jmp 0x135c693
movl 0x1bc4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1bc4(%rsp)
jmp 0x135c55f
jmp 0x135c6ab
movl 0x1cbc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1cbc(%rsp)
jmp 0x135b835
movl $0x0, 0x2bd4(%rsp)
jmp 0x13640c0
movl 0x2b88(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jne 0x135d67c
cmpl $0x1, 0x2ba4(%rsp)
je 0x135d67c
cmpl $0x1, 0x2b84(%rsp)
jne 0x135d67c
movl 0x2b7c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jne 0x135d67c
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movl 0x2b9c(%rsp), %ecx
movq 0x2b90(%rsp), %r8
movl 0x2b8c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c30(%rsp)
movq 0x2c30(%rsp), %rcx
movq %rcx, 0x428(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x437(%rsp)
je 0x135c7b8
movq 0x428(%rsp), %rax
movq %rax, 0x41b0(%rsp)
movq 0x41b0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x437(%rsp)
movb 0x437(%rsp), %al
testb $0x1, %al
jne 0x135c7c5
jmp 0x135c7d5
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x13640c0
movl $0x0, 0x1abc(%rsp)
movl 0x1abc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x135d66c
movq 0x2bc8(%rsp), %rcx
movl 0x1abc(%rsp), %eax
leaq 0x1a68(%rsp), %rdx
movq %rdx, 0x2d88(%rsp)
movq %rcx, 0x2d80(%rsp)
movl %eax, 0x2d7c(%rsp)
movq 0x2d80(%rsp), %rax
movq %rax, 0x420(%rsp)
movb $0x0, 0x2d7b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d7c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1a68(%rsp), %r10
movq %r10, 0x4940(%rsp)
movl %r9d, 0x493c(%rsp)
movl %r8d, 0x4938(%rsp)
movl %edi, 0x4934(%rsp)
movq %rsi, 0x4928(%rsp)
movq %rdx, 0x4920(%rsp)
movl %ecx, 0x491c(%rsp)
movq %rax, 0x4910(%rsp)
movq 0x4940(%rsp), %rcx
movq %rcx, 0x418(%rsp)
movq 0x4928(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4920(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x491c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4910(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x493c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4938(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4934(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c68(%rsp)
movl $0x10, 0x4c64(%rsp)
movq 0x4c68(%rsp), %rax
movslq 0x4c64(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c64(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x420(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1a90(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x135c9b0
movq 0x420(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1aa8(%rsp)
movb $0x1, 0x2d7b(%rsp)
testb $0x1, 0x2d7b(%rsp)
jne 0x135caf1
leaq 0x1a68(%rsp), %rax
movq %rax, 0x3070(%rsp)
movq 0x3070(%rsp), %rax
movq %rax, 0x5308(%rsp)
movq 0x5308(%rsp), %rax
movq %rax, 0x410(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x135ca94
movq 0x410(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5304(%rsp) # imm = 0xFFFFFFFF
movl 0x5304(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5300(%rsp)
cmpl $0x1, 0x5300(%rsp)
jne 0x135ca94
movq 0x410(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135ca62
movq 0x410(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135ca60
jmp 0x135ca92
movq 0x410(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5460(%rsp)
cmpq $0x0, 0x5460(%rsp)
je 0x135ca90
movq 0x5460(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x135ca92
jmp 0x135ca94
movq 0x410(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135caef
movq %rax, %rdi
callq 0x678a0
jmp 0x135caf1
leaq 0x1a68(%rsp), %rax
movq %rax, 0x2f70(%rsp)
movq 0x2f70(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x400(%rsp)
leaq 0x1a68(%rsp), %rax
movq %rax, 0x3188(%rsp)
movq 0x3188(%rsp), %rax
movq %rax, 0x50d8(%rsp)
movq 0x50d8(%rsp), %rax
movq %rax, 0x408(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x135cbe2
movq 0x408(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x50d4(%rsp) # imm = 0xFFFFFFFF
movl 0x50d4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x50d0(%rsp)
cmpl $0x1, 0x50d0(%rsp)
jne 0x135cbe2
movq 0x408(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135cbb0
movq 0x408(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135cbae
jmp 0x135cbe0
movq 0x408(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5578(%rsp)
cmpq $0x0, 0x5578(%rsp)
je 0x135cbde
movq 0x5578(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x135cbe0
jmp 0x135cbe2
movq 0x408(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135cc3d
movq %rax, %rdi
callq 0x678a0
movq 0x400(%rsp), %rax
movq %rax, 0x1ab0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x1abc(%rsp), %eax
leaq 0x1a18(%rsp), %rdx
movq %rdx, 0x2d70(%rsp)
movq %rcx, 0x2d68(%rsp)
movl %eax, 0x2d64(%rsp)
movq 0x2d68(%rsp), %rax
movq %rax, 0x3f8(%rsp)
movb $0x0, 0x2d63(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d64(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1a18(%rsp), %r10
movq %r10, 0x4978(%rsp)
movl %r9d, 0x4974(%rsp)
movl %r8d, 0x4970(%rsp)
movl %edi, 0x496c(%rsp)
movq %rsi, 0x4960(%rsp)
movq %rdx, 0x4958(%rsp)
movl %ecx, 0x4954(%rsp)
movq %rax, 0x4948(%rsp)
movq 0x4978(%rsp), %rcx
movq %rcx, 0x3f0(%rsp)
movq 0x4960(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4958(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4954(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4948(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4974(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4970(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x496c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c58(%rsp)
movl $0x10, 0x4c54(%rsp)
movq 0x4c58(%rsp), %rax
movslq 0x4c54(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c54(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3f8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1a40(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x135ce09
movq 0x3f8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1a58(%rsp)
movb $0x1, 0x2d63(%rsp)
testb $0x1, 0x2d63(%rsp)
jne 0x135cf4a
leaq 0x1a18(%rsp), %rax
movq %rax, 0x3078(%rsp)
movq 0x3078(%rsp), %rax
movq %rax, 0x52f8(%rsp)
movq 0x52f8(%rsp), %rax
movq %rax, 0x3e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x135ceed
movq 0x3e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x52f4(%rsp) # imm = 0xFFFFFFFF
movl 0x52f4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x52f0(%rsp)
cmpl $0x1, 0x52f0(%rsp)
jne 0x135ceed
movq 0x3e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135cebb
movq 0x3e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135ceb9
jmp 0x135ceeb
movq 0x3e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5468(%rsp)
cmpq $0x0, 0x5468(%rsp)
je 0x135cee9
movq 0x5468(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x135ceeb
jmp 0x135ceed
movq 0x3e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135cf48
movq %rax, %rdi
callq 0x678a0
jmp 0x135cf4a
leaq 0x1a18(%rsp), %rax
movq %rax, 0x2f68(%rsp)
movq 0x2f68(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3d8(%rsp)
leaq 0x1a18(%rsp), %rax
movq %rax, 0x3190(%rsp)
movq 0x3190(%rsp), %rax
movq %rax, 0x50c8(%rsp)
movq 0x50c8(%rsp), %rax
movq %rax, 0x3e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x135d03b
movq 0x3e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x50c4(%rsp) # imm = 0xFFFFFFFF
movl 0x50c4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x50c0(%rsp)
cmpl $0x1, 0x50c0(%rsp)
jne 0x135d03b
movq 0x3e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135d009
movq 0x3e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135d007
jmp 0x135d039
movq 0x3e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5580(%rsp)
cmpq $0x0, 0x5580(%rsp)
je 0x135d037
movq 0x5580(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x135d039
jmp 0x135d03b
movq 0x3e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135d096
movq %rax, %rdi
callq 0x678a0
movq 0x3d8(%rsp), %rax
movq %rax, 0x1a60(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x1abc(%rsp), %eax
leaq 0x19c8(%rsp), %rdx
movq %rdx, 0x3340(%rsp)
movq %rcx, 0x3338(%rsp)
movl %eax, 0x3334(%rsp)
movq 0x3338(%rsp), %rax
movq %rax, 0x3d0(%rsp)
movb $0x0, 0x3333(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3334(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x19c8(%rsp), %r10
movq %r10, 0x4438(%rsp)
movl %r9d, 0x4434(%rsp)
movl %r8d, 0x4430(%rsp)
movl %edi, 0x442c(%rsp)
movq %rsi, 0x4420(%rsp)
movq %rdx, 0x4418(%rsp)
movl %ecx, 0x4414(%rsp)
movq %rax, 0x4408(%rsp)
movq 0x4438(%rsp), %rcx
movq %rcx, 0x3c8(%rsp)
movq 0x4420(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4418(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4414(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4408(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4434(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4430(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x442c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4dd8(%rsp)
movl $0x10, 0x4dd4(%rsp)
movq 0x4dd8(%rsp), %rax
movslq 0x4dd4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4dd4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3d0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x19f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x135d262
movq 0x3d0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1a08(%rsp)
movb $0x1, 0x3333(%rsp)
testb $0x1, 0x3333(%rsp)
jne 0x135d3a3
leaq 0x19c8(%rsp), %rax
movq %rax, 0x3348(%rsp)
movq 0x3348(%rsp), %rax
movq %rax, 0x4f08(%rsp)
movq 0x4f08(%rsp), %rax
movq %rax, 0x3c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x135d346
movq 0x3c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f04(%rsp) # imm = 0xFFFFFFFF
movl 0x4f04(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f00(%rsp)
cmpl $0x1, 0x4f00(%rsp)
jne 0x135d346
movq 0x3c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135d314
movq 0x3c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135d312
jmp 0x135d344
movq 0x3c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5660(%rsp)
cmpq $0x0, 0x5660(%rsp)
je 0x135d342
movq 0x5660(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x135d344
jmp 0x135d346
movq 0x3c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135d3a1
movq %rax, %rdi
callq 0x678a0
jmp 0x135d3a3
leaq 0x19c8(%rsp), %rax
movq %rax, 0x34c0(%rsp)
movq 0x34c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3b0(%rsp)
leaq 0x19c8(%rsp), %rax
movq %rax, 0x3198(%rsp)
movq 0x3198(%rsp), %rax
movq %rax, 0x50b8(%rsp)
movq 0x50b8(%rsp), %rax
movq %rax, 0x3b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x135d494
movq 0x3b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x50b4(%rsp) # imm = 0xFFFFFFFF
movl 0x50b4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x50b0(%rsp)
cmpl $0x1, 0x50b0(%rsp)
jne 0x135d494
movq 0x3b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135d462
movq 0x3b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135d460
jmp 0x135d492
movq 0x3b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5588(%rsp)
cmpq $0x0, 0x5588(%rsp)
je 0x135d490
movq 0x5588(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x135d492
jmp 0x135d494
movq 0x3b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135d4ef
movq %rax, %rdi
callq 0x678a0
movq 0x3b0(%rsp), %rax
movq %rax, 0x1a10(%rsp)
movl $0x0, 0x19c4(%rsp)
movl 0x19c4(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jge 0x135d654
movl $0x0, 0x19c0(%rsp)
movl 0x19c0(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jge 0x135d63c
movq 0x1ab0(%rsp), %rax
movq %rax, 0x35b8(%rsp)
movq 0x35b8(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1980(%rsp)
movq 0x1a60(%rsp), %rax
movl 0x19c0(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x35b0(%rsp)
movq 0x35b0(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1940(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x1980(%rsp), %rsi
leaq 0x1940(%rsp), %rdx
callq 0x1453cc0
vmovaps %zmm0, 0x1900(%rsp)
movq 0x1a10(%rsp), %rax
vmovaps 0x1900(%rsp), %zmm0
movq %rax, 0x3bb8(%rsp)
vmovaps %zmm0, 0x3b40(%rsp)
vmovaps 0x3b40(%rsp), %zmm0
movq 0x3bb8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x1ab0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1ab0(%rsp)
movq 0x1a10(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1a10(%rsp)
movl 0x19c0(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x19c0(%rsp)
jmp 0x135d529
jmp 0x135d63e
movl 0x19c4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x19c4(%rsp)
jmp 0x135d50a
jmp 0x135d656
movl 0x1abc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1abc(%rsp)
jmp 0x135c7e0
movl $0x0, 0x2bd4(%rsp)
jmp 0x13640c0
cmpl $0x1, 0x2b88(%rsp)
je 0x135e627
cmpl $0x1, 0x2ba8(%rsp)
jne 0x135e627
movl 0x2b84(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jne 0x135e627
movl 0x2b7c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jne 0x135e627
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b7c(%rsp), %ecx
movq 0x2b70(%rsp), %r8
movl 0x2b6c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c28(%rsp)
movq 0x2c28(%rsp), %rcx
movq %rcx, 0x3a0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x3af(%rsp)
je 0x135d763
movq 0x3a0(%rsp), %rax
movq %rax, 0x41b8(%rsp)
movq 0x41b8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x3af(%rsp)
movb 0x3af(%rsp), %al
testb $0x1, %al
jne 0x135d770
jmp 0x135d780
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x13640c0
movl $0x0, 0x18fc(%rsp)
movl 0x18fc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x135e617
movq 0x2bc8(%rsp), %rcx
movl 0x18fc(%rsp), %eax
leaq 0x18a8(%rsp), %rdx
movq %rdx, 0x2d58(%rsp)
movq %rcx, 0x2d50(%rsp)
movl %eax, 0x2d4c(%rsp)
movq 0x2d50(%rsp), %rax
movq %rax, 0x398(%rsp)
movb $0x0, 0x2d4b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d4c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x18a8(%rsp), %r10
movq %r10, 0x49b0(%rsp)
movl %r9d, 0x49ac(%rsp)
movl %r8d, 0x49a8(%rsp)
movl %edi, 0x49a4(%rsp)
movq %rsi, 0x4998(%rsp)
movq %rdx, 0x4990(%rsp)
movl %ecx, 0x498c(%rsp)
movq %rax, 0x4980(%rsp)
movq 0x49b0(%rsp), %rcx
movq %rcx, 0x390(%rsp)
movq 0x4998(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4990(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x498c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4980(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x49ac(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x49a8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x49a4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c48(%rsp)
movl $0x10, 0x4c44(%rsp)
movq 0x4c48(%rsp), %rax
movslq 0x4c44(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c44(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x398(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x18d0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x135d95b
movq 0x398(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x18e8(%rsp)
movb $0x1, 0x2d4b(%rsp)
testb $0x1, 0x2d4b(%rsp)
jne 0x135da9c
leaq 0x18a8(%rsp), %rax
movq %rax, 0x3080(%rsp)
movq 0x3080(%rsp), %rax
movq %rax, 0x52e8(%rsp)
movq 0x52e8(%rsp), %rax
movq %rax, 0x388(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x135da3f
movq 0x388(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x52e4(%rsp) # imm = 0xFFFFFFFF
movl 0x52e4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x52e0(%rsp)
cmpl $0x1, 0x52e0(%rsp)
jne 0x135da3f
movq 0x388(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135da0d
movq 0x388(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135da0b
jmp 0x135da3d
movq 0x388(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5470(%rsp)
cmpq $0x0, 0x5470(%rsp)
je 0x135da3b
movq 0x5470(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x135da3d
jmp 0x135da3f
movq 0x388(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135da9a
movq %rax, %rdi
callq 0x678a0
jmp 0x135da9c
leaq 0x18a8(%rsp), %rax
movq %rax, 0x2f60(%rsp)
movq 0x2f60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x378(%rsp)
leaq 0x18a8(%rsp), %rax
movq %rax, 0x31a0(%rsp)
movq 0x31a0(%rsp), %rax
movq %rax, 0x50a8(%rsp)
movq 0x50a8(%rsp), %rax
movq %rax, 0x380(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x135db8d
movq 0x380(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x50a4(%rsp) # imm = 0xFFFFFFFF
movl 0x50a4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x50a0(%rsp)
cmpl $0x1, 0x50a0(%rsp)
jne 0x135db8d
movq 0x380(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135db5b
movq 0x380(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135db59
jmp 0x135db8b
movq 0x380(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5590(%rsp)
cmpq $0x0, 0x5590(%rsp)
je 0x135db89
movq 0x5590(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x135db8b
jmp 0x135db8d
movq 0x380(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135dbe8
movq %rax, %rdi
callq 0x678a0
movq 0x378(%rsp), %rax
movq %rax, 0x18f0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x18fc(%rsp), %eax
leaq 0x1858(%rsp), %rdx
movq %rdx, 0x2d40(%rsp)
movq %rcx, 0x2d38(%rsp)
movl %eax, 0x2d34(%rsp)
movq 0x2d38(%rsp), %rax
movq %rax, 0x370(%rsp)
movb $0x0, 0x2d33(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d34(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1858(%rsp), %r10
movq %r10, 0x49e8(%rsp)
movl %r9d, 0x49e4(%rsp)
movl %r8d, 0x49e0(%rsp)
movl %edi, 0x49dc(%rsp)
movq %rsi, 0x49d0(%rsp)
movq %rdx, 0x49c8(%rsp)
movl %ecx, 0x49c4(%rsp)
movq %rax, 0x49b8(%rsp)
movq 0x49e8(%rsp), %rcx
movq %rcx, 0x368(%rsp)
movq 0x49d0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x49c8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x49c4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x49b8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x49e4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x49e0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x49dc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c38(%rsp)
movl $0x10, 0x4c34(%rsp)
movq 0x4c38(%rsp), %rax
movslq 0x4c34(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c34(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x370(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1880(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x135ddb4
movq 0x370(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1898(%rsp)
movb $0x1, 0x2d33(%rsp)
testb $0x1, 0x2d33(%rsp)
jne 0x135def5
leaq 0x1858(%rsp), %rax
movq %rax, 0x3088(%rsp)
movq 0x3088(%rsp), %rax
movq %rax, 0x52d8(%rsp)
movq 0x52d8(%rsp), %rax
movq %rax, 0x360(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x135de98
movq 0x360(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x52d4(%rsp) # imm = 0xFFFFFFFF
movl 0x52d4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x52d0(%rsp)
cmpl $0x1, 0x52d0(%rsp)
jne 0x135de98
movq 0x360(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135de66
movq 0x360(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135de64
jmp 0x135de96
movq 0x360(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5478(%rsp)
cmpq $0x0, 0x5478(%rsp)
je 0x135de94
movq 0x5478(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x135de96
jmp 0x135de98
movq 0x360(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135def3
movq %rax, %rdi
callq 0x678a0
jmp 0x135def5
leaq 0x1858(%rsp), %rax
movq %rax, 0x2f58(%rsp)
movq 0x2f58(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x350(%rsp)
leaq 0x1858(%rsp), %rax
movq %rax, 0x31a8(%rsp)
movq 0x31a8(%rsp), %rax
movq %rax, 0x5098(%rsp)
movq 0x5098(%rsp), %rax
movq %rax, 0x358(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x135dfe6
movq 0x358(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5094(%rsp) # imm = 0xFFFFFFFF
movl 0x5094(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5090(%rsp)
cmpl $0x1, 0x5090(%rsp)
jne 0x135dfe6
movq 0x358(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135dfb4
movq 0x358(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135dfb2
jmp 0x135dfe4
movq 0x358(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5598(%rsp)
cmpq $0x0, 0x5598(%rsp)
je 0x135dfe2
movq 0x5598(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x135dfe4
jmp 0x135dfe6
movq 0x358(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135e041
movq %rax, %rdi
callq 0x678a0
movq 0x350(%rsp), %rax
movq %rax, 0x18a0(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x18fc(%rsp), %eax
leaq 0x1808(%rsp), %rdx
movq %rdx, 0x3320(%rsp)
movq %rcx, 0x3318(%rsp)
movl %eax, 0x3314(%rsp)
movq 0x3318(%rsp), %rax
movq %rax, 0x348(%rsp)
movb $0x0, 0x3313(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3314(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1808(%rsp), %r10
movq %r10, 0x4470(%rsp)
movl %r9d, 0x446c(%rsp)
movl %r8d, 0x4468(%rsp)
movl %edi, 0x4464(%rsp)
movq %rsi, 0x4458(%rsp)
movq %rdx, 0x4450(%rsp)
movl %ecx, 0x444c(%rsp)
movq %rax, 0x4440(%rsp)
movq 0x4470(%rsp), %rcx
movq %rcx, 0x340(%rsp)
movq 0x4458(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4450(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x444c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4440(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x446c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4468(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4464(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4dc8(%rsp)
movl $0x10, 0x4dc4(%rsp)
movq 0x4dc8(%rsp), %rax
movslq 0x4dc4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4dc4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x348(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1830(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x135e20d
movq 0x348(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1848(%rsp)
movb $0x1, 0x3313(%rsp)
testb $0x1, 0x3313(%rsp)
jne 0x135e34e
leaq 0x1808(%rsp), %rax
movq %rax, 0x3328(%rsp)
movq 0x3328(%rsp), %rax
movq %rax, 0x4f18(%rsp)
movq 0x4f18(%rsp), %rax
movq %rax, 0x338(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x135e2f1
movq 0x338(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f14(%rsp) # imm = 0xFFFFFFFF
movl 0x4f14(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f10(%rsp)
cmpl $0x1, 0x4f10(%rsp)
jne 0x135e2f1
movq 0x338(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135e2bf
movq 0x338(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135e2bd
jmp 0x135e2ef
movq 0x338(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5658(%rsp)
cmpq $0x0, 0x5658(%rsp)
je 0x135e2ed
movq 0x5658(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x135e2ef
jmp 0x135e2f1
movq 0x338(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135e34c
movq %rax, %rdi
callq 0x678a0
jmp 0x135e34e
leaq 0x1808(%rsp), %rax
movq %rax, 0x34b8(%rsp)
movq 0x34b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x328(%rsp)
leaq 0x1808(%rsp), %rax
movq %rax, 0x31b0(%rsp)
movq 0x31b0(%rsp), %rax
movq %rax, 0x5088(%rsp)
movq 0x5088(%rsp), %rax
movq %rax, 0x330(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x135e43f
movq 0x330(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5084(%rsp) # imm = 0xFFFFFFFF
movl 0x5084(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5080(%rsp)
cmpl $0x1, 0x5080(%rsp)
jne 0x135e43f
movq 0x330(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135e40d
movq 0x330(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135e40b
jmp 0x135e43d
movq 0x330(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55a0(%rsp)
cmpq $0x0, 0x55a0(%rsp)
je 0x135e43b
movq 0x55a0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x135e43d
jmp 0x135e43f
movq 0x330(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135e49a
movq %rax, %rdi
callq 0x678a0
movq 0x328(%rsp), %rax
movq %rax, 0x1850(%rsp)
movl $0x0, 0x1804(%rsp)
movl 0x1804(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jge 0x135e5ff
movq 0x18f0(%rsp), %rax
movl 0x1804(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x35a8(%rsp)
movq 0x35a8(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x17c0(%rsp)
movl $0x0, 0x17bc(%rsp)
movl 0x17bc(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jge 0x135e5e7
movq 0x18a0(%rsp), %rax
movq %rax, 0x35a0(%rsp)
movq 0x35a0(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1740(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x17c0(%rsp), %rsi
leaq 0x1740(%rsp), %rdx
callq 0x1453cc0
vmovaps %zmm0, 0x1700(%rsp)
movq 0x1850(%rsp), %rax
vmovaps 0x1700(%rsp), %zmm0
movq %rax, 0x3b38(%rsp)
vmovaps %zmm0, 0x3ac0(%rsp)
vmovaps 0x3ac0(%rsp), %zmm0
movq 0x3b38(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x18a0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x18a0(%rsp)
movq 0x1850(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1850(%rsp)
movl 0x17bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x17bc(%rsp)
jmp 0x135e50e
jmp 0x135e5e9
movl 0x1804(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1804(%rsp)
jmp 0x135e4b5
jmp 0x135e601
movl 0x18fc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x18fc(%rsp)
jmp 0x135d78b
movl $0x0, 0x2bd4(%rsp)
jmp 0x13640c0
movl 0x2b88(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jne 0x135f5d2
cmpl $0x1, 0x2b84(%rsp)
je 0x135f5d2
cmpl $0x1, 0x2ba4(%rsp)
jne 0x135f5d2
movl 0x2b7c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jne 0x135f5d2
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b7c(%rsp), %ecx
movq 0x2b70(%rsp), %r8
movl 0x2b6c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c20(%rsp)
movq 0x2c20(%rsp), %rcx
movq %rcx, 0x318(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x327(%rsp)
je 0x135e70e
movq 0x318(%rsp), %rax
movq %rax, 0x41c0(%rsp)
movq 0x41c0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x327(%rsp)
movb 0x327(%rsp), %al
testb $0x1, %al
jne 0x135e71b
jmp 0x135e72b
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x13640c0
movl $0x0, 0x16fc(%rsp)
movl 0x16fc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x135f5c2
movq 0x2bc8(%rsp), %rcx
movl 0x16fc(%rsp), %eax
leaq 0x16a8(%rsp), %rdx
movq %rdx, 0x2d28(%rsp)
movq %rcx, 0x2d20(%rsp)
movl %eax, 0x2d1c(%rsp)
movq 0x2d20(%rsp), %rax
movq %rax, 0x310(%rsp)
movb $0x0, 0x2d1b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d1c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x16a8(%rsp), %r10
movq %r10, 0x4a20(%rsp)
movl %r9d, 0x4a1c(%rsp)
movl %r8d, 0x4a18(%rsp)
movl %edi, 0x4a14(%rsp)
movq %rsi, 0x4a08(%rsp)
movq %rdx, 0x4a00(%rsp)
movl %ecx, 0x49fc(%rsp)
movq %rax, 0x49f0(%rsp)
movq 0x4a20(%rsp), %rcx
movq %rcx, 0x308(%rsp)
movq 0x4a08(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4a00(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x49fc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x49f0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4a1c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4a18(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4a14(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c28(%rsp)
movl $0x10, 0x4c24(%rsp)
movq 0x4c28(%rsp), %rax
movslq 0x4c24(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c24(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x310(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x16d0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x135e906
movq 0x310(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x16e8(%rsp)
movb $0x1, 0x2d1b(%rsp)
testb $0x1, 0x2d1b(%rsp)
jne 0x135ea47
leaq 0x16a8(%rsp), %rax
movq %rax, 0x3090(%rsp)
movq 0x3090(%rsp), %rax
movq %rax, 0x52c8(%rsp)
movq 0x52c8(%rsp), %rax
movq %rax, 0x300(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x135e9ea
movq 0x300(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x52c4(%rsp) # imm = 0xFFFFFFFF
movl 0x52c4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x52c0(%rsp)
cmpl $0x1, 0x52c0(%rsp)
jne 0x135e9ea
movq 0x300(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135e9b8
movq 0x300(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135e9b6
jmp 0x135e9e8
movq 0x300(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5480(%rsp)
cmpq $0x0, 0x5480(%rsp)
je 0x135e9e6
movq 0x5480(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x135e9e8
jmp 0x135e9ea
movq 0x300(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135ea45
movq %rax, %rdi
callq 0x678a0
jmp 0x135ea47
leaq 0x16a8(%rsp), %rax
movq %rax, 0x2f50(%rsp)
movq 0x2f50(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2f0(%rsp)
leaq 0x16a8(%rsp), %rax
movq %rax, 0x31b8(%rsp)
movq 0x31b8(%rsp), %rax
movq %rax, 0x5078(%rsp)
movq 0x5078(%rsp), %rax
movq %rax, 0x2f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x135eb38
movq 0x2f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5074(%rsp) # imm = 0xFFFFFFFF
movl 0x5074(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5070(%rsp)
cmpl $0x1, 0x5070(%rsp)
jne 0x135eb38
movq 0x2f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135eb06
movq 0x2f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135eb04
jmp 0x135eb36
movq 0x2f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55a8(%rsp)
cmpq $0x0, 0x55a8(%rsp)
je 0x135eb34
movq 0x55a8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x135eb36
jmp 0x135eb38
movq 0x2f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135eb93
movq %rax, %rdi
callq 0x678a0
movq 0x2f0(%rsp), %rax
movq %rax, 0x16f0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x16fc(%rsp), %eax
leaq 0x1658(%rsp), %rdx
movq %rdx, 0x2d10(%rsp)
movq %rcx, 0x2d08(%rsp)
movl %eax, 0x2d04(%rsp)
movq 0x2d08(%rsp), %rax
movq %rax, 0x2e8(%rsp)
movb $0x0, 0x2d03(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2d04(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1658(%rsp), %r10
movq %r10, 0x4a58(%rsp)
movl %r9d, 0x4a54(%rsp)
movl %r8d, 0x4a50(%rsp)
movl %edi, 0x4a4c(%rsp)
movq %rsi, 0x4a40(%rsp)
movq %rdx, 0x4a38(%rsp)
movl %ecx, 0x4a34(%rsp)
movq %rax, 0x4a28(%rsp)
movq 0x4a58(%rsp), %rcx
movq %rcx, 0x2e0(%rsp)
movq 0x4a40(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4a38(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4a34(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4a28(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4a54(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4a50(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4a4c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c18(%rsp)
movl $0x10, 0x4c14(%rsp)
movq 0x4c18(%rsp), %rax
movslq 0x4c14(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c14(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2e8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1680(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x135ed5f
movq 0x2e8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1698(%rsp)
movb $0x1, 0x2d03(%rsp)
testb $0x1, 0x2d03(%rsp)
jne 0x135eea0
leaq 0x1658(%rsp), %rax
movq %rax, 0x3098(%rsp)
movq 0x3098(%rsp), %rax
movq %rax, 0x52b8(%rsp)
movq 0x52b8(%rsp), %rax
movq %rax, 0x2d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x135ee43
movq 0x2d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x52b4(%rsp) # imm = 0xFFFFFFFF
movl 0x52b4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x52b0(%rsp)
cmpl $0x1, 0x52b0(%rsp)
jne 0x135ee43
movq 0x2d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135ee11
movq 0x2d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135ee0f
jmp 0x135ee41
movq 0x2d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5488(%rsp)
cmpq $0x0, 0x5488(%rsp)
je 0x135ee3f
movq 0x5488(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x135ee41
jmp 0x135ee43
movq 0x2d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135ee9e
movq %rax, %rdi
callq 0x678a0
jmp 0x135eea0
leaq 0x1658(%rsp), %rax
movq %rax, 0x2f48(%rsp)
movq 0x2f48(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2c8(%rsp)
leaq 0x1658(%rsp), %rax
movq %rax, 0x31c0(%rsp)
movq 0x31c0(%rsp), %rax
movq %rax, 0x5068(%rsp)
movq 0x5068(%rsp), %rax
movq %rax, 0x2d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x135ef91
movq 0x2d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5064(%rsp) # imm = 0xFFFFFFFF
movl 0x5064(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5060(%rsp)
cmpl $0x1, 0x5060(%rsp)
jne 0x135ef91
movq 0x2d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135ef5f
movq 0x2d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135ef5d
jmp 0x135ef8f
movq 0x2d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55b0(%rsp)
cmpq $0x0, 0x55b0(%rsp)
je 0x135ef8d
movq 0x55b0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x135ef8f
jmp 0x135ef91
movq 0x2d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135efec
movq %rax, %rdi
callq 0x678a0
movq 0x2c8(%rsp), %rax
movq %rax, 0x16a0(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x16fc(%rsp), %eax
leaq 0x1608(%rsp), %rdx
movq %rdx, 0x3300(%rsp)
movq %rcx, 0x32f8(%rsp)
movl %eax, 0x32f4(%rsp)
movq 0x32f8(%rsp), %rax
movq %rax, 0x2c0(%rsp)
movb $0x0, 0x32f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x32f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1608(%rsp), %r10
movq %r10, 0x44a8(%rsp)
movl %r9d, 0x44a4(%rsp)
movl %r8d, 0x44a0(%rsp)
movl %edi, 0x449c(%rsp)
movq %rsi, 0x4490(%rsp)
movq %rdx, 0x4488(%rsp)
movl %ecx, 0x4484(%rsp)
movq %rax, 0x4478(%rsp)
movq 0x44a8(%rsp), %rcx
movq %rcx, 0x2b8(%rsp)
movq 0x4490(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4488(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4484(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4478(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x44a4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x44a0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x449c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4db8(%rsp)
movl $0x10, 0x4db4(%rsp)
movq 0x4db8(%rsp), %rax
movslq 0x4db4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4db4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2c0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1630(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x135f1b8
movq 0x2c0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1648(%rsp)
movb $0x1, 0x32f3(%rsp)
testb $0x1, 0x32f3(%rsp)
jne 0x135f2f9
leaq 0x1608(%rsp), %rax
movq %rax, 0x3308(%rsp)
movq 0x3308(%rsp), %rax
movq %rax, 0x4f28(%rsp)
movq 0x4f28(%rsp), %rax
movq %rax, 0x2b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x135f29c
movq 0x2b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f24(%rsp) # imm = 0xFFFFFFFF
movl 0x4f24(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f20(%rsp)
cmpl $0x1, 0x4f20(%rsp)
jne 0x135f29c
movq 0x2b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135f26a
movq 0x2b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135f268
jmp 0x135f29a
movq 0x2b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5650(%rsp)
cmpq $0x0, 0x5650(%rsp)
je 0x135f298
movq 0x5650(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x135f29a
jmp 0x135f29c
movq 0x2b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135f2f7
movq %rax, %rdi
callq 0x678a0
jmp 0x135f2f9
leaq 0x1608(%rsp), %rax
movq %rax, 0x34b0(%rsp)
movq 0x34b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2a0(%rsp)
leaq 0x1608(%rsp), %rax
movq %rax, 0x31c8(%rsp)
movq 0x31c8(%rsp), %rax
movq %rax, 0x5058(%rsp)
movq 0x5058(%rsp), %rax
movq %rax, 0x2a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x135f3ea
movq 0x2a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5054(%rsp) # imm = 0xFFFFFFFF
movl 0x5054(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5050(%rsp)
cmpl $0x1, 0x5050(%rsp)
jne 0x135f3ea
movq 0x2a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135f3b8
movq 0x2a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135f3b6
jmp 0x135f3e8
movq 0x2a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55b8(%rsp)
cmpq $0x0, 0x55b8(%rsp)
je 0x135f3e6
movq 0x55b8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x135f3e8
jmp 0x135f3ea
movq 0x2a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135f445
movq %rax, %rdi
callq 0x678a0
movq 0x2a0(%rsp), %rax
movq %rax, 0x1650(%rsp)
movl $0x0, 0x1604(%rsp)
movl 0x1604(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jge 0x135f5aa
movl $0x0, 0x1600(%rsp)
movl 0x1600(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jge 0x135f592
movq 0x16f0(%rsp), %rax
movl 0x1600(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x3598(%rsp)
movq 0x3598(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x15c0(%rsp)
movq 0x16a0(%rsp), %rax
movq %rax, 0x3590(%rsp)
movq 0x3590(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1580(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x15c0(%rsp), %rsi
leaq 0x1580(%rsp), %rdx
callq 0x1453cc0
vmovaps %zmm0, 0x1540(%rsp)
movq 0x1650(%rsp), %rax
vmovaps 0x1540(%rsp), %zmm0
movq %rax, 0x3ab8(%rsp)
vmovaps %zmm0, 0x3a40(%rsp)
vmovaps 0x3a40(%rsp), %zmm0
movq 0x3ab8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x16a0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x16a0(%rsp)
movq 0x1650(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1650(%rsp)
movl 0x1600(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1600(%rsp)
jmp 0x135f47f
jmp 0x135f594
movl 0x1604(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1604(%rsp)
jmp 0x135f460
jmp 0x135f5ac
movl 0x16fc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x16fc(%rsp)
jmp 0x135e736
movl $0x0, 0x2bd4(%rsp)
jmp 0x13640c0
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x14506d0
movl %eax, 0x2bd4(%rsp)
jmp 0x13640c0
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movl 0x2b9c(%rsp), %ecx
movq 0x2b90(%rsp), %r8
movl 0x2b8c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c18(%rsp)
movq 0x2c18(%rsp), %rcx
movq %rcx, 0x290(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x29f(%rsp)
je 0x135f6a6
movq 0x290(%rsp), %rax
movq %rax, 0x41c8(%rsp)
movq 0x41c8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x29f(%rsp)
movb 0x29f(%rsp), %al
testb $0x1, %al
jne 0x135f6b3
jmp 0x135f6c3
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x13640c0
movq 0x2bc0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x136016a
movl $0x0, 0x153c(%rsp)
movl 0x153c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jge 0x136015a
movq 0x2bc8(%rsp), %rcx
movl 0x153c(%rsp), %eax
leaq 0x14e8(%rsp), %rdx
movq %rdx, 0x2cf8(%rsp)
movq %rcx, 0x2cf0(%rsp)
movl %eax, 0x2cec(%rsp)
movq 0x2cf0(%rsp), %rax
movq %rax, 0x288(%rsp)
movb $0x0, 0x2ceb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2cec(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x14e8(%rsp), %r10
movq %r10, 0x4a90(%rsp)
movl %r9d, 0x4a8c(%rsp)
movl %r8d, 0x4a88(%rsp)
movl %edi, 0x4a84(%rsp)
movq %rsi, 0x4a78(%rsp)
movq %rdx, 0x4a70(%rsp)
movl %ecx, 0x4a6c(%rsp)
movq %rax, 0x4a60(%rsp)
movq 0x4a90(%rsp), %rcx
movq %rcx, 0x280(%rsp)
movq 0x4a78(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4a70(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4a6c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4a60(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4a8c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4a88(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4a84(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4c08(%rsp)
movl $0x10, 0x4c04(%rsp)
movq 0x4c08(%rsp), %rax
movslq 0x4c04(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4c04(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x288(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1510(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x135f8b0
movq 0x288(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1528(%rsp)
movb $0x1, 0x2ceb(%rsp)
testb $0x1, 0x2ceb(%rsp)
jne 0x135f9f1
leaq 0x14e8(%rsp), %rax
movq %rax, 0x30a0(%rsp)
movq 0x30a0(%rsp), %rax
movq %rax, 0x52a8(%rsp)
movq 0x52a8(%rsp), %rax
movq %rax, 0x278(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x135f994
movq 0x278(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x52a4(%rsp) # imm = 0xFFFFFFFF
movl 0x52a4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x52a0(%rsp)
cmpl $0x1, 0x52a0(%rsp)
jne 0x135f994
movq 0x278(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135f962
movq 0x278(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135f960
jmp 0x135f992
movq 0x278(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5490(%rsp)
cmpq $0x0, 0x5490(%rsp)
je 0x135f990
movq 0x5490(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x135f992
jmp 0x135f994
movq 0x278(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135f9ef
movq %rax, %rdi
callq 0x678a0
jmp 0x135f9f1
leaq 0x14e8(%rsp), %rax
movq %rax, 0x2f40(%rsp)
movq 0x2f40(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x268(%rsp)
leaq 0x14e8(%rsp), %rax
movq %rax, 0x31d0(%rsp)
movq 0x31d0(%rsp), %rax
movq %rax, 0x5048(%rsp)
movq 0x5048(%rsp), %rax
movq %rax, 0x270(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x135fae2
movq 0x270(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5044(%rsp) # imm = 0xFFFFFFFF
movl 0x5044(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5040(%rsp)
cmpl $0x1, 0x5040(%rsp)
jne 0x135fae2
movq 0x270(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135fab0
movq 0x270(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135faae
jmp 0x135fae0
movq 0x270(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55c0(%rsp)
cmpq $0x0, 0x55c0(%rsp)
je 0x135fade
movq 0x55c0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x135fae0
jmp 0x135fae2
movq 0x270(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135fb3d
movq %rax, %rdi
callq 0x678a0
movq 0x268(%rsp), %rax
movq %rax, 0x1530(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x153c(%rsp), %eax
movq %rcx, 0x4068(%rsp)
movl %eax, 0x4064(%rsp)
movq 0x4068(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x4064(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x14e0(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x153c(%rsp), %eax
leaq 0x1490(%rsp), %rdx
movq %rdx, 0x32e0(%rsp)
movq %rcx, 0x32d8(%rsp)
movl %eax, 0x32d4(%rsp)
movq 0x32d8(%rsp), %rax
movq %rax, 0x260(%rsp)
movb $0x0, 0x32d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x32d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1490(%rsp), %r10
movq %r10, 0x44e0(%rsp)
movl %r9d, 0x44dc(%rsp)
movl %r8d, 0x44d8(%rsp)
movl %edi, 0x44d4(%rsp)
movq %rsi, 0x44c8(%rsp)
movq %rdx, 0x44c0(%rsp)
movl %ecx, 0x44bc(%rsp)
movq %rax, 0x44b0(%rsp)
movq 0x44e0(%rsp), %rcx
movq %rcx, 0x258(%rsp)
movq 0x44c8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x44c0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x44bc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x44b0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x44dc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x44d8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x44d4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4da8(%rsp)
movl $0x10, 0x4da4(%rsp)
movq 0x4da8(%rsp), %rax
movslq 0x4da4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4da4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x260(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x14b8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x135fd52
movq 0x260(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x14d0(%rsp)
movb $0x1, 0x32d3(%rsp)
testb $0x1, 0x32d3(%rsp)
jne 0x135fe93
leaq 0x1490(%rsp), %rax
movq %rax, 0x32e8(%rsp)
movq 0x32e8(%rsp), %rax
movq %rax, 0x4f38(%rsp)
movq 0x4f38(%rsp), %rax
movq %rax, 0x250(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x135fe36
movq 0x250(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f34(%rsp) # imm = 0xFFFFFFFF
movl 0x4f34(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f30(%rsp)
cmpl $0x1, 0x4f30(%rsp)
jne 0x135fe36
movq 0x250(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135fe04
movq 0x250(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135fe02
jmp 0x135fe34
movq 0x250(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5648(%rsp)
cmpq $0x0, 0x5648(%rsp)
je 0x135fe32
movq 0x5648(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x135fe34
jmp 0x135fe36
movq 0x250(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135fe91
movq %rax, %rdi
callq 0x678a0
jmp 0x135fe93
leaq 0x1490(%rsp), %rax
movq %rax, 0x34a8(%rsp)
movq 0x34a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x240(%rsp)
leaq 0x1490(%rsp), %rax
movq %rax, 0x31d8(%rsp)
movq 0x31d8(%rsp), %rax
movq %rax, 0x5038(%rsp)
movq 0x5038(%rsp), %rax
movq %rax, 0x248(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x135ff84
movq 0x248(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5034(%rsp) # imm = 0xFFFFFFFF
movl 0x5034(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5030(%rsp)
cmpl $0x1, 0x5030(%rsp)
jne 0x135ff84
movq 0x248(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x135ff52
movq 0x248(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x135ff50
jmp 0x135ff82
movq 0x248(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55c8(%rsp)
cmpq $0x0, 0x55c8(%rsp)
je 0x135ff80
movq 0x55c8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x135ff82
jmp 0x135ff84
movq 0x248(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x135ffdf
movq %rax, %rdi
callq 0x678a0
movq 0x240(%rsp), %rax
movq %rax, 0x14d8(%rsp)
movl $0x0, 0x148c(%rsp)
movl 0x148c(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jge 0x1360142
movq 0x14e0(%rsp), %rax
movq %rax, 0x3588(%rsp)
movq 0x3588(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1440(%rsp)
movl $0x0, 0x143c(%rsp)
movl 0x143c(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jge 0x1360118
movq 0x1530(%rsp), %rax
movq %rax, 0x3580(%rsp)
movq 0x3580(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x13c0(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x13c0(%rsp), %rsi
leaq 0x1440(%rsp), %rdx
callq 0x1453cc0
vmovaps %zmm0, 0x1380(%rsp)
movq 0x14d8(%rsp), %rax
vmovaps 0x1380(%rsp), %zmm0
movq %rax, 0x3a38(%rsp)
vmovaps %zmm0, 0x39c0(%rsp)
vmovaps 0x39c0(%rsp), %zmm0
movq 0x3a38(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x1530(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1530(%rsp)
movq 0x14d8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x14d8(%rsp)
movl 0x143c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x143c(%rsp)
jmp 0x136003f
movq 0x14e0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x14e0(%rsp)
movl 0x148c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x148c(%rsp)
jmp 0x135fffa
jmp 0x1360144
movl 0x153c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x153c(%rsp)
jmp 0x135f6e0
movl $0x0, 0x2bd4(%rsp)
jmp 0x13640c0
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1360bef
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x13601c5
cmpl $0x1, 0x2b6c(%rsp)
jne 0x13601c5
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x14518e0
movl %eax, 0x2bd4(%rsp)
jmp 0x13640c0
movl $0x0, 0x137c(%rsp)
movl 0x137c(%rsp), %eax
cmpl 0x2b9c(%rsp), %eax
jge 0x1360bdf
movq 0x2bc8(%rsp), %rcx
movl 0x137c(%rsp), %eax
leaq 0x1328(%rsp), %rdx
movq %rdx, 0x2ce0(%rsp)
movq %rcx, 0x2cd8(%rsp)
movl %eax, 0x2cd4(%rsp)
movq 0x2cd8(%rsp), %rax
movq %rax, 0x238(%rsp)
movb $0x0, 0x2cd3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2cd4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1328(%rsp), %r10
movq %r10, 0x4ac8(%rsp)
movl %r9d, 0x4ac4(%rsp)
movl %r8d, 0x4ac0(%rsp)
movl %edi, 0x4abc(%rsp)
movq %rsi, 0x4ab0(%rsp)
movq %rdx, 0x4aa8(%rsp)
movl %ecx, 0x4aa4(%rsp)
movq %rax, 0x4a98(%rsp)
movq 0x4ac8(%rsp), %rcx
movq %rcx, 0x230(%rsp)
movq 0x4ab0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4aa8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4aa4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4a98(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4ac4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4ac0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4abc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4bf8(%rsp)
movl $0x10, 0x4bf4(%rsp)
movq 0x4bf8(%rsp), %rax
movslq 0x4bf4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4bf4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x238(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1350(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13603a0
movq 0x238(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1368(%rsp)
movb $0x1, 0x2cd3(%rsp)
testb $0x1, 0x2cd3(%rsp)
jne 0x13604e1
leaq 0x1328(%rsp), %rax
movq %rax, 0x30a8(%rsp)
movq 0x30a8(%rsp), %rax
movq %rax, 0x5298(%rsp)
movq 0x5298(%rsp), %rax
movq %rax, 0x228(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1360484
movq 0x228(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5294(%rsp) # imm = 0xFFFFFFFF
movl 0x5294(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5290(%rsp)
cmpl $0x1, 0x5290(%rsp)
jne 0x1360484
movq 0x228(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1360452
movq 0x228(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1360450
jmp 0x1360482
movq 0x228(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5498(%rsp)
cmpq $0x0, 0x5498(%rsp)
je 0x1360480
movq 0x5498(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1360482
jmp 0x1360484
movq 0x228(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13604df
movq %rax, %rdi
callq 0x678a0
jmp 0x13604e1
leaq 0x1328(%rsp), %rax
movq %rax, 0x2f38(%rsp)
movq 0x2f38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x218(%rsp)
leaq 0x1328(%rsp), %rax
movq %rax, 0x31e0(%rsp)
movq 0x31e0(%rsp), %rax
movq %rax, 0x5028(%rsp)
movq 0x5028(%rsp), %rax
movq %rax, 0x220(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13605d2
movq 0x220(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5024(%rsp) # imm = 0xFFFFFFFF
movl 0x5024(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5020(%rsp)
cmpl $0x1, 0x5020(%rsp)
jne 0x13605d2
movq 0x220(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13605a0
movq 0x220(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x136059e
jmp 0x13605d0
movq 0x220(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55d0(%rsp)
cmpq $0x0, 0x55d0(%rsp)
je 0x13605ce
movq 0x55d0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13605d0
jmp 0x13605d2
movq 0x220(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136062d
movq %rax, %rdi
callq 0x678a0
movq 0x218(%rsp), %rax
movq %rax, 0x1370(%rsp)
movq 0x2bc0(%rsp), %rax
movq %rax, 0x2f30(%rsp)
movq 0x2f30(%rsp), %rax
movq (%rax), %rax
movl 0x137c(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x3578(%rsp)
movq 0x3578(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x12c0(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x137c(%rsp), %eax
leaq 0x1270(%rsp), %rdx
movq %rdx, 0x32c0(%rsp)
movq %rcx, 0x32b8(%rsp)
movl %eax, 0x32b4(%rsp)
movq 0x32b8(%rsp), %rax
movq %rax, 0x210(%rsp)
movb $0x0, 0x32b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x32b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1270(%rsp), %r10
movq %r10, 0x4518(%rsp)
movl %r9d, 0x4514(%rsp)
movl %r8d, 0x4510(%rsp)
movl %edi, 0x450c(%rsp)
movq %rsi, 0x4500(%rsp)
movq %rdx, 0x44f8(%rsp)
movl %ecx, 0x44f4(%rsp)
movq %rax, 0x44e8(%rsp)
movq 0x4518(%rsp), %rcx
movq %rcx, 0x208(%rsp)
movq 0x4500(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x44f8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x44f4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x44e8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4514(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4510(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x450c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d98(%rsp)
movl $0x10, 0x4d94(%rsp)
movq 0x4d98(%rsp), %rax
movslq 0x4d94(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d94(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x210(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1298(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1360846
movq 0x210(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x12b0(%rsp)
movb $0x1, 0x32b3(%rsp)
testb $0x1, 0x32b3(%rsp)
jne 0x1360987
leaq 0x1270(%rsp), %rax
movq %rax, 0x32c8(%rsp)
movq 0x32c8(%rsp), %rax
movq %rax, 0x4f48(%rsp)
movq 0x4f48(%rsp), %rax
movq %rax, 0x200(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x136092a
movq 0x200(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f44(%rsp) # imm = 0xFFFFFFFF
movl 0x4f44(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f40(%rsp)
cmpl $0x1, 0x4f40(%rsp)
jne 0x136092a
movq 0x200(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13608f8
movq 0x200(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13608f6
jmp 0x1360928
movq 0x200(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5640(%rsp)
cmpq $0x0, 0x5640(%rsp)
je 0x1360926
movq 0x5640(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1360928
jmp 0x136092a
movq 0x200(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1360985
movq %rax, %rdi
callq 0x678a0
jmp 0x1360987
leaq 0x1270(%rsp), %rax
movq %rax, 0x34a0(%rsp)
movq 0x34a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1f0(%rsp)
leaq 0x1270(%rsp), %rax
movq %rax, 0x31e8(%rsp)
movq 0x31e8(%rsp), %rax
movq %rax, 0x5018(%rsp)
movq 0x5018(%rsp), %rax
movq %rax, 0x1f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1360a78
movq 0x1f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5014(%rsp) # imm = 0xFFFFFFFF
movl 0x5014(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5010(%rsp)
cmpl $0x1, 0x5010(%rsp)
jne 0x1360a78
movq 0x1f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1360a46
movq 0x1f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1360a44
jmp 0x1360a76
movq 0x1f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55d8(%rsp)
cmpq $0x0, 0x55d8(%rsp)
je 0x1360a74
movq 0x55d8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1360a76
jmp 0x1360a78
movq 0x1f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1360ad3
movq %rax, %rdi
callq 0x678a0
movq 0x1f0(%rsp), %rax
movq %rax, 0x12b8(%rsp)
movl $0x0, 0x126c(%rsp)
movl 0x126c(%rsp), %eax
cmpl 0x2b98(%rsp), %eax
jge 0x1360bc7
movq 0x1370(%rsp), %rax
movq %rax, 0x3570(%rsp)
movq 0x3570(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1200(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x1200(%rsp), %rsi
leaq 0x12c0(%rsp), %rdx
callq 0x1453cc0
vmovaps %zmm0, 0x11c0(%rsp)
movq 0x12b8(%rsp), %rax
vmovaps 0x11c0(%rsp), %zmm0
movq %rax, 0x39b8(%rsp)
vmovaps %zmm0, 0x3940(%rsp)
vmovaps 0x3940(%rsp), %zmm0
movq 0x39b8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x1370(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1370(%rsp)
movq 0x12b8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x12b8(%rsp)
movl 0x126c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x126c(%rsp)
jmp 0x1360aee
jmp 0x1360bc9
movl 0x137c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x137c(%rsp)
jmp 0x13601d0
movl $0x0, 0x2bd4(%rsp)
jmp 0x13640c0
jmp 0x13640b3
movq 0x2bc8(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x13626ed
movq 0x2bc0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x13617b1
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b80(%rsp), %ecx
movl 0x2b7c(%rsp), %r8d
movq 0x2b70(%rsp), %r9
movl 0x2b6c(%rsp), %r10d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c10(%rsp)
movq 0x2c10(%rsp), %rcx
movq %rcx, 0x1e0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1ef(%rsp)
je 0x1360cc8
movq 0x1e0(%rsp), %rax
movq %rax, 0x41d0(%rsp)
movq 0x41d0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1ef(%rsp)
movb 0x1ef(%rsp), %al
testb $0x1, %al
jne 0x1360cd5
jmp 0x1360ce5
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x13640c0
movl $0x0, 0x11bc(%rsp)
movl 0x11bc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x13617a1
movq 0x2bc8(%rsp), %rcx
movl 0x11bc(%rsp), %eax
movq %rcx, 0x4058(%rsp)
movl %eax, 0x4054(%rsp)
movq 0x4058(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x4054(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x11b0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0x11bc(%rsp), %eax
leaq 0x1160(%rsp), %rdx
movq %rdx, 0x2cc8(%rsp)
movq %rcx, 0x2cc0(%rsp)
movl %eax, 0x2cbc(%rsp)
movq 0x2cc0(%rsp), %rax
movq %rax, 0x1d8(%rsp)
movb $0x0, 0x2cbb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2cbc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1160(%rsp), %r10
movq %r10, 0x4b00(%rsp)
movl %r9d, 0x4afc(%rsp)
movl %r8d, 0x4af8(%rsp)
movl %edi, 0x4af4(%rsp)
movq %rsi, 0x4ae8(%rsp)
movq %rdx, 0x4ae0(%rsp)
movl %ecx, 0x4adc(%rsp)
movq %rax, 0x4ad0(%rsp)
movq 0x4b00(%rsp), %rcx
movq %rcx, 0x1d0(%rsp)
movq 0x4ae8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4ae0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4adc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4ad0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4afc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4af8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4af4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4be8(%rsp)
movl $0x10, 0x4be4(%rsp)
movq 0x4be8(%rsp), %rax
movslq 0x4be4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4be4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x1d8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1188(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1360f09
movq 0x1d8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x11a0(%rsp)
movb $0x1, 0x2cbb(%rsp)
testb $0x1, 0x2cbb(%rsp)
jne 0x136104a
leaq 0x1160(%rsp), %rax
movq %rax, 0x30b0(%rsp)
movq 0x30b0(%rsp), %rax
movq %rax, 0x5288(%rsp)
movq 0x5288(%rsp), %rax
movq %rax, 0x1c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1360fed
movq 0x1c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5284(%rsp) # imm = 0xFFFFFFFF
movl 0x5284(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5280(%rsp)
cmpl $0x1, 0x5280(%rsp)
jne 0x1360fed
movq 0x1c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1360fbb
movq 0x1c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1360fb9
jmp 0x1360feb
movq 0x1c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54a0(%rsp)
cmpq $0x0, 0x54a0(%rsp)
je 0x1360fe9
movq 0x54a0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1360feb
jmp 0x1360fed
movq 0x1c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1361048
movq %rax, %rdi
callq 0x678a0
jmp 0x136104a
leaq 0x1160(%rsp), %rax
movq %rax, 0x2f28(%rsp)
movq 0x2f28(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1b8(%rsp)
leaq 0x1160(%rsp), %rax
movq %rax, 0x31f0(%rsp)
movq 0x31f0(%rsp), %rax
movq %rax, 0x5008(%rsp)
movq 0x5008(%rsp), %rax
movq %rax, 0x1c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x136113b
movq 0x1c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5004(%rsp) # imm = 0xFFFFFFFF
movl 0x5004(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5000(%rsp)
cmpl $0x1, 0x5000(%rsp)
jne 0x136113b
movq 0x1c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1361109
movq 0x1c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1361107
jmp 0x1361139
movq 0x1c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55e0(%rsp)
cmpq $0x0, 0x55e0(%rsp)
je 0x1361137
movq 0x55e0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1361139
jmp 0x136113b
movq 0x1c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1361196
movq %rax, %rdi
callq 0x678a0
movq 0x1b8(%rsp), %rax
movq %rax, 0x11a8(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0x11bc(%rsp), %eax
leaq 0x1110(%rsp), %rdx
movq %rdx, 0x32a0(%rsp)
movq %rcx, 0x3298(%rsp)
movl %eax, 0x3294(%rsp)
movq 0x3298(%rsp), %rax
movq %rax, 0x1b0(%rsp)
movb $0x0, 0x3293(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3294(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1110(%rsp), %r10
movq %r10, 0x4550(%rsp)
movl %r9d, 0x454c(%rsp)
movl %r8d, 0x4548(%rsp)
movl %edi, 0x4544(%rsp)
movq %rsi, 0x4538(%rsp)
movq %rdx, 0x4530(%rsp)
movl %ecx, 0x452c(%rsp)
movq %rax, 0x4520(%rsp)
movq 0x4550(%rsp), %rcx
movq %rcx, 0x1a8(%rsp)
movq 0x4538(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4530(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x452c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4520(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x454c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4548(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4544(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d88(%rsp)
movl $0x10, 0x4d84(%rsp)
movq 0x4d88(%rsp), %rax
movslq 0x4d84(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d84(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x1b0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1138(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1361362
movq 0x1b0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1150(%rsp)
movb $0x1, 0x3293(%rsp)
testb $0x1, 0x3293(%rsp)
jne 0x13614a3
leaq 0x1110(%rsp), %rax
movq %rax, 0x32a8(%rsp)
movq 0x32a8(%rsp), %rax
movq %rax, 0x4f58(%rsp)
movq 0x4f58(%rsp), %rax
movq %rax, 0x1a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1361446
movq 0x1a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f54(%rsp) # imm = 0xFFFFFFFF
movl 0x4f54(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f50(%rsp)
cmpl $0x1, 0x4f50(%rsp)
jne 0x1361446
movq 0x1a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1361414
movq 0x1a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1361412
jmp 0x1361444
movq 0x1a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5638(%rsp)
cmpq $0x0, 0x5638(%rsp)
je 0x1361442
movq 0x5638(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1361444
jmp 0x1361446
movq 0x1a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13614a1
movq %rax, %rdi
callq 0x678a0
jmp 0x13614a3
leaq 0x1110(%rsp), %rax
movq %rax, 0x3498(%rsp)
movq 0x3498(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x190(%rsp)
leaq 0x1110(%rsp), %rax
movq %rax, 0x31f8(%rsp)
movq 0x31f8(%rsp), %rax
movq %rax, 0x4ff8(%rsp)
movq 0x4ff8(%rsp), %rax
movq %rax, 0x198(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1361594
movq 0x198(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4ff4(%rsp) # imm = 0xFFFFFFFF
movl 0x4ff4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4ff0(%rsp)
cmpl $0x1, 0x4ff0(%rsp)
jne 0x1361594
movq 0x198(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1361562
movq 0x198(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1361560
jmp 0x1361592
movq 0x198(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55e8(%rsp)
cmpq $0x0, 0x55e8(%rsp)
je 0x1361590
movq 0x55e8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1361592
jmp 0x1361594
movq 0x198(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13615ef
movq %rax, %rdi
callq 0x678a0
movq 0x190(%rsp), %rax
movq %rax, 0x1158(%rsp)
movl $0x0, 0x110c(%rsp)
movl 0x110c(%rsp), %eax
cmpl 0x2b80(%rsp), %eax
jge 0x1361789
movq 0x11b0(%rsp), %rax
movq %rax, 0x3568(%rsp)
movq 0x3568(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x10c0(%rsp)
movl $0x0, 0x10bc(%rsp)
movl 0x10bc(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jge 0x136175f
movl $0x0, 0x10b8(%rsp)
movl 0x10b8(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jge 0x1361747
movq 0x11a8(%rsp), %rax
movq %rax, 0x3560(%rsp)
movq 0x3560(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x1040(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x10c0(%rsp), %rsi
leaq 0x1040(%rsp), %rdx
callq 0x1453cc0
vmovaps %zmm0, 0x1000(%rsp)
movq 0x1158(%rsp), %rax
vmovaps 0x1000(%rsp), %zmm0
movq %rax, 0x3938(%rsp)
vmovaps %zmm0, 0x38c0(%rsp)
vmovaps 0x38c0(%rsp), %zmm0
movq 0x3938(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x11a8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x11a8(%rsp)
movq 0x1158(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x1158(%rsp)
movl 0x10b8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x10b8(%rsp)
jmp 0x136166e
jmp 0x1361749
movl 0x10bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x10bc(%rsp)
jmp 0x136164f
movq 0x11b0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x11b0(%rsp)
movl 0x110c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x110c(%rsp)
jmp 0x136160a
jmp 0x136178b
movl 0x11bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x11bc(%rsp)
jmp 0x1360cf0
movl $0x0, 0x2bd4(%rsp)
jmp 0x13640c0
movq 0x2bc0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1362318
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b7c(%rsp), %ecx
movq 0x2b70(%rsp), %r8
movl 0x2b6c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c08(%rsp)
movq 0x2c08(%rsp), %rcx
movq %rcx, 0x180(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x18f(%rsp)
je 0x1361866
movq 0x180(%rsp), %rax
movq %rax, 0x41d8(%rsp)
movq 0x41d8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x18f(%rsp)
movb 0x18f(%rsp), %al
testb $0x1, %al
jne 0x1361873
jmp 0x1361883
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x13640c0
movl $0x0, 0xffc(%rsp)
movl 0xffc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x1362308
movq 0x2bc8(%rsp), %rcx
movl 0xffc(%rsp), %eax
movq %rcx, 0x4048(%rsp)
movl %eax, 0x4044(%rsp)
movq 0x4048(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x4044(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xff0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0xffc(%rsp), %eax
leaq 0xfa0(%rsp), %rdx
movq %rdx, 0x2cb0(%rsp)
movq %rcx, 0x2ca8(%rsp)
movl %eax, 0x2ca4(%rsp)
movq 0x2ca8(%rsp), %rax
movq %rax, 0x178(%rsp)
movb $0x0, 0x2ca3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2ca4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xfa0(%rsp), %r10
movq %r10, 0x4b38(%rsp)
movl %r9d, 0x4b34(%rsp)
movl %r8d, 0x4b30(%rsp)
movl %edi, 0x4b2c(%rsp)
movq %rsi, 0x4b20(%rsp)
movq %rdx, 0x4b18(%rsp)
movl %ecx, 0x4b14(%rsp)
movq %rax, 0x4b08(%rsp)
movq 0x4b38(%rsp), %rcx
movq %rcx, 0x170(%rsp)
movq 0x4b20(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4b18(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4b14(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4b08(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4b34(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4b30(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4b2c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4bd8(%rsp)
movl $0x10, 0x4bd4(%rsp)
movq 0x4bd8(%rsp), %rax
movslq 0x4bd4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4bd4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x178(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xfc8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1361aa7
movq 0x178(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xfe0(%rsp)
movb $0x1, 0x2ca3(%rsp)
testb $0x1, 0x2ca3(%rsp)
jne 0x1361be8
leaq 0xfa0(%rsp), %rax
movq %rax, 0x30b8(%rsp)
movq 0x30b8(%rsp), %rax
movq %rax, 0x5278(%rsp)
movq 0x5278(%rsp), %rax
movq %rax, 0x168(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1361b8b
movq 0x168(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5274(%rsp) # imm = 0xFFFFFFFF
movl 0x5274(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5270(%rsp)
cmpl $0x1, 0x5270(%rsp)
jne 0x1361b8b
movq 0x168(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1361b59
movq 0x168(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1361b57
jmp 0x1361b89
movq 0x168(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54a8(%rsp)
cmpq $0x0, 0x54a8(%rsp)
je 0x1361b87
movq 0x54a8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1361b89
jmp 0x1361b8b
movq 0x168(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1361be6
movq %rax, %rdi
callq 0x678a0
jmp 0x1361be8
leaq 0xfa0(%rsp), %rax
movq %rax, 0x2f20(%rsp)
movq 0x2f20(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x158(%rsp)
leaq 0xfa0(%rsp), %rax
movq %rax, 0x3200(%rsp)
movq 0x3200(%rsp), %rax
movq %rax, 0x4fe8(%rsp)
movq 0x4fe8(%rsp), %rax
movq %rax, 0x160(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1361cd9
movq 0x160(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4fe4(%rsp) # imm = 0xFFFFFFFF
movl 0x4fe4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4fe0(%rsp)
cmpl $0x1, 0x4fe0(%rsp)
jne 0x1361cd9
movq 0x160(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1361ca7
movq 0x160(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1361ca5
jmp 0x1361cd7
movq 0x160(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55f0(%rsp)
cmpq $0x0, 0x55f0(%rsp)
je 0x1361cd5
movq 0x55f0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1361cd7
jmp 0x1361cd9
movq 0x160(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1361d34
movq %rax, %rdi
callq 0x678a0
movq 0x158(%rsp), %rax
movq %rax, 0xfe8(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0xffc(%rsp), %eax
leaq 0xf50(%rsp), %rdx
movq %rdx, 0x3280(%rsp)
movq %rcx, 0x3278(%rsp)
movl %eax, 0x3274(%rsp)
movq 0x3278(%rsp), %rax
movq %rax, 0x150(%rsp)
movb $0x0, 0x3273(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3274(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xf50(%rsp), %r10
movq %r10, 0x4588(%rsp)
movl %r9d, 0x4584(%rsp)
movl %r8d, 0x4580(%rsp)
movl %edi, 0x457c(%rsp)
movq %rsi, 0x4570(%rsp)
movq %rdx, 0x4568(%rsp)
movl %ecx, 0x4564(%rsp)
movq %rax, 0x4558(%rsp)
movq 0x4588(%rsp), %rcx
movq %rcx, 0x148(%rsp)
movq 0x4570(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4568(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4564(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4558(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4584(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4580(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x457c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d78(%rsp)
movl $0x10, 0x4d74(%rsp)
movq 0x4d78(%rsp), %rax
movslq 0x4d74(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d74(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x150(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf78(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1361f00
movq 0x150(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xf90(%rsp)
movb $0x1, 0x3273(%rsp)
testb $0x1, 0x3273(%rsp)
jne 0x1362041
leaq 0xf50(%rsp), %rax
movq %rax, 0x3288(%rsp)
movq 0x3288(%rsp), %rax
movq %rax, 0x4f68(%rsp)
movq 0x4f68(%rsp), %rax
movq %rax, 0x140(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1361fe4
movq 0x140(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f64(%rsp) # imm = 0xFFFFFFFF
movl 0x4f64(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f60(%rsp)
cmpl $0x1, 0x4f60(%rsp)
jne 0x1361fe4
movq 0x140(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1361fb2
movq 0x140(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1361fb0
jmp 0x1361fe2
movq 0x140(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5630(%rsp)
cmpq $0x0, 0x5630(%rsp)
je 0x1361fe0
movq 0x5630(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1361fe2
jmp 0x1361fe4
movq 0x140(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136203f
movq %rax, %rdi
callq 0x678a0
jmp 0x1362041
leaq 0xf50(%rsp), %rax
movq %rax, 0x3490(%rsp)
movq 0x3490(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x130(%rsp)
leaq 0xf50(%rsp), %rax
movq %rax, 0x3208(%rsp)
movq 0x3208(%rsp), %rax
movq %rax, 0x4fd8(%rsp)
movq 0x4fd8(%rsp), %rax
movq %rax, 0x138(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1362132
movq 0x138(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4fd4(%rsp) # imm = 0xFFFFFFFF
movl 0x4fd4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4fd0(%rsp)
cmpl $0x1, 0x4fd0(%rsp)
jne 0x1362132
movq 0x138(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1362100
movq 0x138(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13620fe
jmp 0x1362130
movq 0x138(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x55f8(%rsp)
cmpq $0x0, 0x55f8(%rsp)
je 0x136212e
movq 0x55f8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1362130
jmp 0x1362132
movq 0x138(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136218d
movq %rax, %rdi
callq 0x678a0
movq 0x130(%rsp), %rax
movq %rax, 0xf98(%rsp)
movl $0x0, 0xf4c(%rsp)
movl 0xf4c(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jge 0x13622f0
movq 0xff0(%rsp), %rax
movq %rax, 0x3558(%rsp)
movq 0x3558(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xf00(%rsp)
movl $0x0, 0xefc(%rsp)
movl 0xefc(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jge 0x13622c6
movq 0xfe8(%rsp), %rax
movq %rax, 0x3550(%rsp)
movq 0x3550(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xe80(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0xf00(%rsp), %rsi
leaq 0xe80(%rsp), %rdx
callq 0x1453cc0
vmovaps %zmm0, 0xe40(%rsp)
movq 0xf98(%rsp), %rax
vmovaps 0xe40(%rsp), %zmm0
movq %rax, 0x38b8(%rsp)
vmovaps %zmm0, 0x3840(%rsp)
vmovaps 0x3840(%rsp), %zmm0
movq 0x38b8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0xfe8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xfe8(%rsp)
movq 0xf98(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xf98(%rsp)
movl 0xefc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xefc(%rsp)
jmp 0x13621ed
movq 0xff0(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xff0(%rsp)
movl 0xf4c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xf4c(%rsp)
jmp 0x13621a8
jmp 0x13622f2
movl 0xffc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xffc(%rsp)
jmp 0x136188e
movl $0x0, 0x2bd4(%rsp)
jmp 0x13640c0
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movq 0x2b90(%rsp), %rcx
movl 0x2b8c(%rsp), %r8d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2c00(%rsp)
movq 0x2c00(%rsp), %rcx
movq %rcx, 0x120(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x12f(%rsp)
je 0x13623b0
movq 0x120(%rsp), %rax
movq %rax, 0x41e0(%rsp)
movq 0x41e0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x12f(%rsp)
movb 0x12f(%rsp), %al
testb $0x1, %al
jne 0x13623bd
jmp 0x13623cd
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x13640c0
movq 0x2bc0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x136240c
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x14506d0
movl %eax, 0x2bd4(%rsp)
jmp 0x13640c0
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x13626e8
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movl 0x2ba4(%rsp), %edx
movq 0x2b90(%rsp), %rcx
movl 0x2b8c(%rsp), %r8d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2bf8(%rsp)
movq 0x2bf8(%rsp), %rcx
movq %rcx, 0x110(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x11f(%rsp)
je 0x13624b6
movq 0x110(%rsp), %rax
movq %rax, 0x41e8(%rsp)
movq 0x41e8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x11f(%rsp)
movb 0x11f(%rsp), %al
testb $0x1, %al
jne 0x13624c3
jmp 0x13624d3
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x13640c0
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x136251c
cmpl $0x1, 0x2b6c(%rsp)
jne 0x136251c
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x14518e0
movl %eax, 0x2bd4(%rsp)
jmp 0x13640c0
movq 0x2bc8(%rsp), %rax
movq %rax, 0x2f18(%rsp)
movq 0x2f18(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xe38(%rsp)
movq 0x2bc0(%rsp), %rax
movq %rax, 0x2f10(%rsp)
movq 0x2f10(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xe30(%rsp)
movq 0x2bb8(%rsp), %rax
movq %rax, 0x3488(%rsp)
movq 0x3488(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xe28(%rsp)
movl $0x0, 0xe24(%rsp)
movl 0xe24(%rsp), %eax
cmpl 0x2ba4(%rsp), %eax
jge 0x13626d8
movq 0xe30(%rsp), %rax
movq %rax, 0x3548(%rsp)
movq 0x3548(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xdc0(%rsp)
movl $0x0, 0xdbc(%rsp)
movl 0xdbc(%rsp), %eax
cmpl 0x2ba8(%rsp), %eax
jge 0x13626ae
movq 0xe38(%rsp), %rax
movq %rax, 0x3540(%rsp)
movq 0x3540(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xd40(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0xd40(%rsp), %rsi
leaq 0xdc0(%rsp), %rdx
callq 0x1453cc0
vmovaps %zmm0, 0xd00(%rsp)
movq 0xe28(%rsp), %rax
vmovaps 0xd00(%rsp), %zmm0
movq %rax, 0x3838(%rsp)
vmovaps %zmm0, 0x37c0(%rsp)
vmovaps 0x37c0(%rsp), %zmm0
movq 0x3838(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0xe38(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xe38(%rsp)
movq 0xe28(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xe28(%rsp)
movl 0xdbc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdbc(%rsp)
jmp 0x13625d5
movq 0xe30(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xe30(%rsp)
movl 0xe24(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xe24(%rsp)
jmp 0x1362590
movl $0x0, 0x2bd4(%rsp)
jmp 0x13640c0
jmp 0x13640b1
movq 0x2bc8(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x13640af
movq 0x2bc8(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1362748
cmpl $0x1, 0x2b8c(%rsp)
jne 0x1362748
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x1452760
movl %eax, 0x2bd4(%rsp)
jmp 0x13640c0
movq 0x2bc0(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1363251
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b80(%rsp), %ecx
movl 0x2b7c(%rsp), %r8d
movq 0x2b70(%rsp), %r9
movl 0x2b6c(%rsp), %r10d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2bf0(%rsp)
movq 0x2bf0(%rsp), %rcx
movq %rcx, 0x100(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x10f(%rsp)
je 0x136280a
movq 0x100(%rsp), %rax
movq %rax, 0x41f0(%rsp)
movq 0x41f0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x10f(%rsp)
movb 0x10f(%rsp), %al
testb $0x1, %al
jne 0x1362817
jmp 0x1362827
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x13640c0
movl $0x0, 0xcfc(%rsp)
movl 0xcfc(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x1363241
movq 0x2bc8(%rsp), %rax
movq %rax, 0x2f08(%rsp)
movq 0x2f08(%rsp), %rax
movq (%rax), %rax
movl 0xcfc(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x3538(%rsp)
movq 0x3538(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xc80(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0xcfc(%rsp), %eax
leaq 0xc30(%rsp), %rdx
movq %rdx, 0x2c98(%rsp)
movq %rcx, 0x2c90(%rsp)
movl %eax, 0x2c8c(%rsp)
movq 0x2c90(%rsp), %rax
movq %rax, 0xf8(%rsp)
movb $0x0, 0x2c8b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2c8c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xc30(%rsp), %r10
movq %r10, 0x4b70(%rsp)
movl %r9d, 0x4b6c(%rsp)
movl %r8d, 0x4b68(%rsp)
movl %edi, 0x4b64(%rsp)
movq %rsi, 0x4b58(%rsp)
movq %rdx, 0x4b50(%rsp)
movl %ecx, 0x4b4c(%rsp)
movq %rax, 0x4b40(%rsp)
movq 0x4b70(%rsp), %rcx
movq %rcx, 0xf0(%rsp)
movq 0x4b58(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4b50(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4b4c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4b40(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4b6c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4b68(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4b64(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4bc8(%rsp)
movl $0x10, 0x4bc4(%rsp)
movq 0x4bc8(%rsp), %rax
movslq 0x4bc4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4bc4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xf8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc58(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1362a4f
movq 0xf8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xc70(%rsp)
movb $0x1, 0x2c8b(%rsp)
testb $0x1, 0x2c8b(%rsp)
jne 0x1362b90
leaq 0xc30(%rsp), %rax
movq %rax, 0x30c0(%rsp)
movq 0x30c0(%rsp), %rax
movq %rax, 0x5268(%rsp)
movq 0x5268(%rsp), %rax
movq %rax, 0xe8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1362b33
movq 0xe8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5264(%rsp) # imm = 0xFFFFFFFF
movl 0x5264(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5260(%rsp)
cmpl $0x1, 0x5260(%rsp)
jne 0x1362b33
movq 0xe8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1362b01
movq 0xe8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1362aff
jmp 0x1362b31
movq 0xe8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54b0(%rsp)
cmpq $0x0, 0x54b0(%rsp)
je 0x1362b2f
movq 0x54b0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1362b31
jmp 0x1362b33
movq 0xe8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1362b8e
movq %rax, %rdi
callq 0x678a0
jmp 0x1362b90
leaq 0xc30(%rsp), %rax
movq %rax, 0x2f00(%rsp)
movq 0x2f00(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xd8(%rsp)
leaq 0xc30(%rsp), %rax
movq %rax, 0x3210(%rsp)
movq 0x3210(%rsp), %rax
movq %rax, 0x4fc8(%rsp)
movq 0x4fc8(%rsp), %rax
movq %rax, 0xe0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1362c81
movq 0xe0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4fc4(%rsp) # imm = 0xFFFFFFFF
movl 0x4fc4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4fc0(%rsp)
cmpl $0x1, 0x4fc0(%rsp)
jne 0x1362c81
movq 0xe0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1362c4f
movq 0xe0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1362c4d
jmp 0x1362c7f
movq 0xe0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5600(%rsp)
cmpq $0x0, 0x5600(%rsp)
je 0x1362c7d
movq 0x5600(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1362c7f
jmp 0x1362c81
movq 0xe0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1362cdc
movq %rax, %rdi
callq 0x678a0
movq 0xd8(%rsp), %rax
movq %rax, 0xc78(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0xcfc(%rsp), %eax
leaq 0xbe0(%rsp), %rdx
movq %rdx, 0x3260(%rsp)
movq %rcx, 0x3258(%rsp)
movl %eax, 0x3254(%rsp)
movq 0x3258(%rsp), %rax
movq %rax, 0xd0(%rsp)
movb $0x0, 0x3253(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3254(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xbe0(%rsp), %r10
movq %r10, 0x45c0(%rsp)
movl %r9d, 0x45bc(%rsp)
movl %r8d, 0x45b8(%rsp)
movl %edi, 0x45b4(%rsp)
movq %rsi, 0x45a8(%rsp)
movq %rdx, 0x45a0(%rsp)
movl %ecx, 0x459c(%rsp)
movq %rax, 0x4590(%rsp)
movq 0x45c0(%rsp), %rcx
movq %rcx, 0xc8(%rsp)
movq 0x45a8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x45a0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x459c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4590(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x45bc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x45b8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x45b4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d68(%rsp)
movl $0x10, 0x4d64(%rsp)
movq 0x4d68(%rsp), %rax
movslq 0x4d64(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d64(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xd0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc08(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1362ea8
movq 0xd0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xc20(%rsp)
movb $0x1, 0x3253(%rsp)
testb $0x1, 0x3253(%rsp)
jne 0x1362fe9
leaq 0xbe0(%rsp), %rax
movq %rax, 0x3268(%rsp)
movq 0x3268(%rsp), %rax
movq %rax, 0x4f78(%rsp)
movq 0x4f78(%rsp), %rax
movq %rax, 0xc0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1362f8c
movq 0xc0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f74(%rsp) # imm = 0xFFFFFFFF
movl 0x4f74(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f70(%rsp)
cmpl $0x1, 0x4f70(%rsp)
jne 0x1362f8c
movq 0xc0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1362f5a
movq 0xc0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1362f58
jmp 0x1362f8a
movq 0xc0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5628(%rsp)
cmpq $0x0, 0x5628(%rsp)
je 0x1362f88
movq 0x5628(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1362f8a
jmp 0x1362f8c
movq 0xc0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1362fe7
movq %rax, %rdi
callq 0x678a0
jmp 0x1362fe9
leaq 0xbe0(%rsp), %rax
movq %rax, 0x3480(%rsp)
movq 0x3480(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xb0(%rsp)
leaq 0xbe0(%rsp), %rax
movq %rax, 0x3218(%rsp)
movq 0x3218(%rsp), %rax
movq %rax, 0x4fb8(%rsp)
movq 0x4fb8(%rsp), %rax
movq %rax, 0xb8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13630da
movq 0xb8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4fb4(%rsp) # imm = 0xFFFFFFFF
movl 0x4fb4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4fb0(%rsp)
cmpl $0x1, 0x4fb0(%rsp)
jne 0x13630da
movq 0xb8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13630a8
movq 0xb8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13630a6
jmp 0x13630d8
movq 0xb8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5608(%rsp)
cmpq $0x0, 0x5608(%rsp)
je 0x13630d6
movq 0x5608(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13630d8
jmp 0x13630da
movq 0xb8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1363135
movq %rax, %rdi
callq 0x678a0
movq 0xb0(%rsp), %rax
movq %rax, 0xc28(%rsp)
movl $0x0, 0xbdc(%rsp)
movl 0xbdc(%rsp), %eax
cmpl 0x2b78(%rsp), %eax
jge 0x1363229
movq 0xc78(%rsp), %rax
movq %rax, 0x3530(%rsp)
movq 0x3530(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xb80(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0xc80(%rsp), %rsi
leaq 0xb80(%rsp), %rdx
callq 0x1453cc0
vmovaps %zmm0, 0xb40(%rsp)
movq 0xc28(%rsp), %rax
vmovaps 0xb40(%rsp), %zmm0
movq %rax, 0x37b8(%rsp)
vmovaps %zmm0, 0x3740(%rsp)
vmovaps 0x3740(%rsp), %zmm0
movq 0x37b8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0xc78(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xc78(%rsp)
movq 0xc28(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xc28(%rsp)
movl 0xbdc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xbdc(%rsp)
jmp 0x1363150
jmp 0x136322b
movl 0xcfc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xcfc(%rsp)
jmp 0x1362832
movl $0x0, 0x2bd4(%rsp)
jmp 0x13640c0
movq 0x2bc0(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1363d11
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movl 0x2b7c(%rsp), %ecx
movq 0x2b70(%rsp), %r8
movl 0x2b6c(%rsp), %r9d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2be8(%rsp)
movq 0x2be8(%rsp), %rcx
movq %rcx, 0xa0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xaf(%rsp)
je 0x1363306
movq 0xa0(%rsp), %rax
movq %rax, 0x41f8(%rsp)
movq 0x41f8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xaf(%rsp)
movb 0xaf(%rsp), %al
testb $0x1, %al
jne 0x1363313
jmp 0x1363323
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x13640c0
movl $0x0, 0xb3c(%rsp)
movl 0xb3c(%rsp), %eax
cmpl 0x2b7c(%rsp), %eax
jge 0x1363d01
movq 0x2bc8(%rsp), %rax
movq %rax, 0x2ef8(%rsp)
movq 0x2ef8(%rsp), %rax
movq (%rax), %rax
movl 0xb3c(%rsp), %ecx
shll $0x4, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x3528(%rsp)
movq 0x3528(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0xac0(%rsp)
movq 0x2bc0(%rsp), %rcx
movl 0xb3c(%rsp), %eax
leaq 0xa70(%rsp), %rdx
movq %rdx, 0x2c80(%rsp)
movq %rcx, 0x2c78(%rsp)
movl %eax, 0x2c74(%rsp)
movq 0x2c78(%rsp), %rax
movq %rax, 0x98(%rsp)
movb $0x0, 0x2c73(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2c74(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xa70(%rsp), %r10
movq %r10, 0x4ba8(%rsp)
movl %r9d, 0x4ba4(%rsp)
movl %r8d, 0x4ba0(%rsp)
movl %edi, 0x4b9c(%rsp)
movq %rsi, 0x4b90(%rsp)
movq %rdx, 0x4b88(%rsp)
movl %ecx, 0x4b84(%rsp)
movq %rax, 0x4b78(%rsp)
movq 0x4ba8(%rsp), %rcx
movq %rcx, 0x90(%rsp)
movq 0x4b90(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x4b88(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x4b84(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x4b78(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x4ba4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x4ba0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x4b9c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4bb8(%rsp)
movl $0x10, 0x4bb4(%rsp)
movq 0x4bb8(%rsp), %rax
movslq 0x4bb4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4bb4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x98(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xa98(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x136354b
movq 0x98(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xab0(%rsp)
movb $0x1, 0x2c73(%rsp)
testb $0x1, 0x2c73(%rsp)
jne 0x136368c
leaq 0xa70(%rsp), %rax
movq %rax, 0x30c8(%rsp)
movq 0x30c8(%rsp), %rax
movq %rax, 0x5258(%rsp)
movq 0x5258(%rsp), %rax
movq %rax, 0x88(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x136362f
movq 0x88(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x5254(%rsp) # imm = 0xFFFFFFFF
movl 0x5254(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x5250(%rsp)
cmpl $0x1, 0x5250(%rsp)
jne 0x136362f
movq 0x88(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13635fd
movq 0x88(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13635fb
jmp 0x136362d
movq 0x88(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x54b8(%rsp)
cmpq $0x0, 0x54b8(%rsp)
je 0x136362b
movq 0x54b8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x136362d
jmp 0x136362f
movq 0x88(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136368a
movq %rax, %rdi
callq 0x678a0
jmp 0x136368c
leaq 0xa70(%rsp), %rax
movq %rax, 0x2ef0(%rsp)
movq 0x2ef0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x78(%rsp)
leaq 0xa70(%rsp), %rax
movq %rax, 0x3220(%rsp)
movq 0x3220(%rsp), %rax
movq %rax, 0x4fa8(%rsp)
movq 0x4fa8(%rsp), %rax
movq %rax, 0x80(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x136377a
movq 0x80(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4fa4(%rsp) # imm = 0xFFFFFFFF
movl 0x4fa4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4fa0(%rsp)
cmpl $0x1, 0x4fa0(%rsp)
jne 0x136377a
movq 0x80(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1363748
movq 0x80(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1363746
jmp 0x1363778
movq 0x80(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5610(%rsp)
cmpq $0x0, 0x5610(%rsp)
je 0x1363776
movq 0x5610(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1363778
jmp 0x136377a
movq 0x80(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13637d5
movq %rax, %rdi
callq 0x678a0
movq 0x78(%rsp), %rax
movq %rax, 0xab8(%rsp)
movq 0x2bb8(%rsp), %rcx
movl 0xb3c(%rsp), %eax
leaq 0xa20(%rsp), %rdx
movq %rdx, 0x3240(%rsp)
movq %rcx, 0x3238(%rsp)
movl %eax, 0x3234(%rsp)
movq 0x3238(%rsp), %rax
movq %rax, 0x70(%rsp)
movb $0x0, 0x3233(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x3234(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xa20(%rsp), %r10
movq %r10, 0x45f8(%rsp)
movl %r9d, 0x45f4(%rsp)
movl %r8d, 0x45f0(%rsp)
movl %edi, 0x45ec(%rsp)
movq %rsi, 0x45e0(%rsp)
movq %rdx, 0x45d8(%rsp)
movl %ecx, 0x45d4(%rsp)
movq %rax, 0x45c8(%rsp)
movq 0x45f8(%rsp), %rcx
movq %rcx, 0x68(%rsp)
movq 0x45e0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x45d8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x45d4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x45c8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x45f4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x45f0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x45ec(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x4d58(%rsp)
movl $0x10, 0x4d54(%rsp)
movq 0x4d58(%rsp), %rax
movslq 0x4d54(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x4d54(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x70(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xa48(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1363992
movq 0x70(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xa60(%rsp)
movb $0x1, 0x3233(%rsp)
testb $0x1, 0x3233(%rsp)
jne 0x1363ac1
leaq 0xa20(%rsp), %rax
movq %rax, 0x3248(%rsp)
movq 0x3248(%rsp), %rax
movq %rax, 0x4f88(%rsp)
movq 0x4f88(%rsp), %rax
movq %rax, 0x60(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1363a67
movq 0x60(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f84(%rsp) # imm = 0xFFFFFFFF
movl 0x4f84(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f80(%rsp)
cmpl $0x1, 0x4f80(%rsp)
jne 0x1363a67
movq 0x60(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1363a38
movq 0x60(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1363a36
jmp 0x1363a65
movq 0x60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5620(%rsp)
cmpq $0x0, 0x5620(%rsp)
je 0x1363a63
movq 0x5620(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1363a65
jmp 0x1363a67
movq 0x60(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1363abf
movq %rax, %rdi
callq 0x678a0
jmp 0x1363ac1
leaq 0xa20(%rsp), %rax
movq %rax, 0x3478(%rsp)
movq 0x3478(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x50(%rsp)
leaq 0xa20(%rsp), %rax
movq %rax, 0x3228(%rsp)
movq 0x3228(%rsp), %rax
movq %rax, 0x4f98(%rsp)
movq 0x4f98(%rsp), %rax
movq %rax, 0x58(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1363ba0
movq 0x58(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4f94(%rsp) # imm = 0xFFFFFFFF
movl 0x4f94(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4f90(%rsp)
cmpl $0x1, 0x4f90(%rsp)
jne 0x1363ba0
movq 0x58(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1363b71
movq 0x58(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1363b6f
jmp 0x1363b9e
movq 0x58(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5618(%rsp)
cmpq $0x0, 0x5618(%rsp)
je 0x1363b9c
movq 0x5618(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1363b9e
jmp 0x1363ba0
movq 0x58(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1363bf8
movq %rax, %rdi
callq 0x678a0
movq 0x50(%rsp), %rax
movq %rax, 0xa68(%rsp)
movl $0x0, 0xa1c(%rsp)
movl 0xa1c(%rsp), %eax
cmpl 0x2b78(%rsp), %eax
jge 0x1363ce9
movq 0xab8(%rsp), %rax
movq %rax, 0x3520(%rsp)
movq 0x3520(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x9c0(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0xac0(%rsp), %rsi
leaq 0x9c0(%rsp), %rdx
callq 0x1453cc0
vmovaps %zmm0, 0x980(%rsp)
movq 0xa68(%rsp), %rax
vmovaps 0x980(%rsp), %zmm0
movq %rax, 0x3738(%rsp)
vmovaps %zmm0, 0x36c0(%rsp)
vmovaps 0x36c0(%rsp), %zmm0
movq 0x3738(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0xab8(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xab8(%rsp)
movq 0xa68(%rsp), %rax
addq $0x40, %rax
movq %rax, 0xa68(%rsp)
movl 0xa1c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xa1c(%rsp)
jmp 0x1363c10
jmp 0x1363ceb
movl 0xb3c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xb3c(%rsp)
jmp 0x136332e
movl $0x0, 0x2bd4(%rsp)
jmp 0x13640c0
movq 0x2bc0(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1363f95
movq 0x2bb8(%rsp), %rdi
movl 0x2b88(%rsp), %esi
movl 0x2b84(%rsp), %edx
movq 0x2b70(%rsp), %rcx
movl 0x2b6c(%rsp), %r8d
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2be0(%rsp)
movq 0x2be0(%rsp), %rcx
movq %rcx, 0x40(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x4f(%rsp)
je 0x1363daf
movq 0x40(%rsp), %rax
movq %rax, 0x4200(%rsp)
movq 0x4200(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x4f(%rsp)
movb 0x4f(%rsp), %al
testb $0x1, %al
jne 0x1363db9
jmp 0x1363dc9
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x13640c0
movq 0x2bc8(%rsp), %rax
movq %rax, 0x2ee8(%rsp)
movq 0x2ee8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x978(%rsp)
movq 0x2bc0(%rsp), %rax
movq %rax, 0x2ee0(%rsp)
movq 0x2ee0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x970(%rsp)
movq 0x2bb8(%rsp), %rax
movq %rax, 0x3470(%rsp)
movq 0x3470(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x968(%rsp)
movl $0x0, 0x964(%rsp)
movl 0x964(%rsp), %eax
cmpl 0x2b84(%rsp), %eax
jge 0x1363f85
movq 0x978(%rsp), %rax
movq %rax, 0x3518(%rsp)
movq 0x3518(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x900(%rsp)
movl $0x0, 0x8fc(%rsp)
movl 0x8fc(%rsp), %eax
cmpl 0x2b88(%rsp), %eax
jge 0x1363f5b
movq 0x970(%rsp), %rax
movq %rax, 0x3510(%rsp)
movq 0x3510(%rsp), %rax
vmovups (%rax), %zmm0
vmovaps %zmm0, 0x880(%rsp)
leaq 0x2baf(%rsp), %rdi
leaq 0x900(%rsp), %rsi
leaq 0x880(%rsp), %rdx
callq 0x1453cc0
vmovaps %zmm0, 0x840(%rsp)
movq 0x968(%rsp), %rax
vmovaps 0x840(%rsp), %zmm0
movq %rax, 0x36b8(%rsp)
vmovaps %zmm0, 0x3640(%rsp)
vmovaps 0x3640(%rsp), %zmm0
movq 0x36b8(%rsp), %rax
vmovups %zmm0, (%rax)
movq 0x970(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x970(%rsp)
movq 0x968(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x968(%rsp)
movl 0x8fc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x8fc(%rsp)
jmp 0x1363e82
movq 0x978(%rsp), %rax
addq $0x40, %rax
movq %rax, 0x978(%rsp)
movl 0x964(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x964(%rsp)
jmp 0x1363e3d
movl $0x0, 0x2bd4(%rsp)
jmp 0x13640c0
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x13640ad
movq 0x2bb8(%rsp), %rdi
movl 0x2ba8(%rsp), %esi
movq 0x2b90(%rsp), %rdx
movl 0x2b8c(%rsp), %ecx
movq 0x2bb0(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6be00
movq 0x2bb8(%rsp), %rax
movq %rax, 0x2bd8(%rsp)
movq 0x2bd8(%rsp), %rcx
movq %rcx, 0x30(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x3f(%rsp)
je 0x136402b
movq 0x30(%rsp), %rax
movq %rax, 0x4208(%rsp)
movq 0x4208(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x3f(%rsp)
movb 0x3f(%rsp), %al
testb $0x1, %al
jne 0x1364035
jmp 0x1364042
movl $0xffffff9c, 0x2bd4(%rsp) # imm = 0xFFFFFF9C
jmp 0x13640c0
movq 0x2bc0(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1364088
cmpl $0x1, 0x2b6c(%rsp)
jne 0x1364088
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x14518e0
movl %eax, 0x2bd4(%rsp)
jmp 0x13640c0
movq 0x2bc8(%rsp), %rdi
movq 0x2bc0(%rsp), %rsi
movq 0x2bb8(%rsp), %rdx
movq 0x2bb0(%rsp), %rcx
callq 0x14506d0
jmp 0x13640af
jmp 0x13640b1
jmp 0x13640b3
jmp 0x13640b5
movl $0x0, 0x2bd4(%rsp)
movl 0x2bd4(%rsp), %eax
movq %rbp, %rsp
popq %rbp
vzeroupper
retq
nop
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/build_O0/src/layer/x86/binaryop_x86_avx512.cpp
|
2,112,897
|
int ncnn::binary_op_pack8<ncnn::BinaryOp_x86_avx512_functor::binary_op_add>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op_pack8(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int size = w * h * d;
size_t elemsize = a.elemsize;
int elempack = a.elempack;
int w1 = b.w;
int h1 = b.h;
int d1 = b.d;
int channels1 = b.c;
int size1 = w1 * h1 * d1;
size_t elemsize1 = b.elemsize;
int elempack1 = b.elempack;
if (a.dims == 4)
{
if (b.dims == 4)
{
// type 29
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
c.create(w, h, d, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 3)
{
// type 28
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
for (int y = 0; y < h; y++)
{
__m256 _b0 = _mm256_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _outp = op.func_pack8(_p, _b0);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
outptr += 8;
}
ptr1 += 8;
}
}
}
return 0;
}
if (b.dims == 2)
{
// type 27
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
__m256 _b0 = _mm256_loadu_ps(ptr1);
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _outp = op.func_pack8(_p, _b0);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
outptr += 8;
}
}
ptr1 += 8;
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1 && elempack1 == 1)
{
// type 25
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 26
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
__m256 _b0 = _mm256_loadu_ps((const float*)b + q * 8);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _outp = op.func_pack8(_p, _b0);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
outptr += 8;
}
}
return 0;
}
}
else if (a.dims == 3)
{
if (b.dims == 4)
{
// type 23
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
for (int y = 0; y < h1; y++)
{
__m256 _a0 = _mm256_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m256 _p = _mm256_loadu_ps(ptr1);
__m256 _outp = op.func_pack8(_a0, _p);
_mm256_storeu_ps(outptr, _outp);
ptr1 += 8;
outptr += 8;
}
ptr += 8;
}
}
}
return 0;
}
if (b.dims == 3)
{
if (w1 == 1 && h1 == 1 && channels1 == channels)
{
// special type 1
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* b0 = b.channel(q);
float* outptr = c.channel(q);
__m256 _b0 = _mm256_loadu_ps(b0);
for (int i = 0; i < size; i++)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _outp = op.func_pack8(_p, _b0);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
outptr += 8;
}
}
return 0;
}
if (w1 == w && h1 == h && channels1 == 1 && elempack1 == 1)
{
// special type 2
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b;
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _p1 = _mm256_broadcast_ss(ptr1);
__m256 _outp = op.func_pack8(_p, _p1);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
ptr1 += 1;
outptr += 8;
}
}
return 0;
}
if (w == 1 && h == 1 && channels1 == channels)
{
// special type 3
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* a0 = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
__m256 _a0 = _mm256_loadu_ps(a0);
for (int i = 0; i < size1; i++)
{
__m256 _p1 = _mm256_loadu_ps(ptr1);
__m256 _outp = op.func_pack8(_a0, _p1);
_mm256_storeu_ps(outptr, _outp);
ptr1 += 8;
outptr += 8;
}
}
return 0;
}
if (w1 == w && h1 == h && channels == 1 && elempack == 1)
{
// special type 4
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a;
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m256 _p = _mm256_broadcast_ss(ptr);
__m256 _p1 = _mm256_loadu_ps(ptr1);
__m256 _outp = op.func_pack8(_p, _p1);
_mm256_storeu_ps(outptr, _outp);
ptr += 1;
ptr1 += 8;
outptr += 8;
}
}
return 0;
}
if (w != 1 && w1 == 1 && h1 == h && channels1 == channels)
{
// special type 5
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
__m256 _p1 = _mm256_loadu_ps(ptr1 + y * 8);
for (int x = 0; x < w; x++)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _outp = op.func_pack8(_p, _p1);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
outptr += 8;
}
}
}
return 0;
}
if (w1 == w && h != 1 && h1 == 1 && channels1 == channels)
{
// special type 6
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _p1 = _mm256_loadu_ps(ptr1 + x * 8);
__m256 _outp = op.func_pack8(_p, _p1);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
outptr += 8;
}
}
}
return 0;
}
if (w1 != 1 && w == 1 && h1 == h && channels1 == channels)
{
// special type 7
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
__m256 _p = _mm256_loadu_ps(ptr + y * 8);
for (int x = 0; x < w1; x++)
{
__m256 _p1 = _mm256_loadu_ps(ptr1);
__m256 _outp = op.func_pack8(_p, _p1);
_mm256_storeu_ps(outptr, _outp);
ptr1 += 8;
outptr += 8;
}
}
}
return 0;
}
if (w1 == w && h1 != 1 && h == 1 && channels1 == channels)
{
// special type 8
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
__m256 _p = _mm256_loadu_ps(ptr + x * 8);
__m256 _p1 = _mm256_loadu_ps(ptr1);
__m256 _outp = op.func_pack8(_p, _p1);
_mm256_storeu_ps(outptr, _outp);
ptr1 += 8;
outptr += 8;
}
}
}
return 0;
}
// type 19
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 18
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
__m256 _b0 = _mm256_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _outp = op.func_pack8(_p, _b0);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
outptr += 8;
}
ptr1 += 8;
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1 && elempack1 == 1)
{
// type 16
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 17
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
__m256 _b0 = _mm256_loadu_ps((const float*)b + q * 8);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _outp = op.func_pack8(_p, _b0);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
outptr += 8;
}
}
return 0;
}
}
else if (a.dims == 2)
{
if (b.dims == 4)
{
// type 22
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
__m256 _a0 = _mm256_loadu_ps(ptr);
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
__m256 _p = _mm256_loadu_ps(ptr1);
__m256 _outp = op.func_pack8(_a0, _p);
_mm256_storeu_ps(outptr, _outp);
ptr1 += 8;
outptr += 8;
}
}
ptr += 8;
}
}
return 0;
}
if (b.dims == 3)
{
// type 14
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
__m256 _a0 = _mm256_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m256 _p1 = _mm256_loadu_ps(ptr1);
__m256 _outp = op.func_pack8(_a0, _p1);
_mm256_storeu_ps(outptr, _outp);
ptr1 += 8;
outptr += 8;
}
ptr += 8;
}
}
return 0;
}
c.create(w, h, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 13
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
if (b.dims == 1)
{
c.create(w, h, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1 && elempack1 == 1)
{
// type 11
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 12
const float* ptr = a;
const float* ptr1 = b;
float* outptr = c;
for (int y = 0; y < h; y++)
{
__m256 _b0 = _mm256_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _outp = op.func_pack8(_p, _b0);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
outptr += 8;
}
ptr1 += 8;
}
return 0;
}
}
else if (a.dims == 1)
{
if (a.w == 1 && elempack == 1)
{
// type 2 3 4 20
return binary_op_2_3_4_20<Op>(a, b, c, opt);
}
if (b.dims == 4)
{
// type 21
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
__m256 _a0 = _mm256_loadu_ps((const float*)a + q * 8);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m256 _p1 = _mm256_loadu_ps(ptr1);
__m256 _outp = op.func_pack8(_a0, _p1);
_mm256_storeu_ps(outptr, _outp);
ptr1 += 8;
outptr += 8;
}
}
return 0;
}
if (b.dims == 3)
{
// type 9
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
__m256 _a0 = _mm256_loadu_ps((const float*)a + q * 8);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m256 _p1 = _mm256_loadu_ps(ptr1);
__m256 _outp = op.func_pack8(_a0, _p1);
_mm256_storeu_ps(outptr, _outp);
ptr1 += 8;
outptr += 8;
}
}
return 0;
}
if (b.dims == 2)
{
// type 8
c.create(w1, h1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
const float* ptr = a;
const float* ptr1 = b;
float* outptr = c;
for (int y = 0; y < h1; y++)
{
__m256 _a0 = _mm256_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m256 _p1 = _mm256_loadu_ps(ptr1);
__m256 _outp = op.func_pack8(_a0, _p1);
_mm256_storeu_ps(outptr, _outp);
ptr1 += 8;
outptr += 8;
}
ptr += 8;
}
return 0;
}
if (b.dims == 1)
{
c.create(w, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1 && elempack1 == 1)
{
// type 6
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 7
binary_op_7_13_19_29<Op>(a, b, c, opt);
}
}
return 0;
}
|
pushq %rbp
movq %rsp, %rbp
andq $-0x20, %rsp
subq $0x46e0, %rsp # imm = 0x46E0
movq %rdi, 0x2188(%rsp)
movq %rsi, 0x2180(%rsp)
movq %rdx, 0x2178(%rsp)
movq %rcx, 0x2170(%rsp)
movq 0x2188(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x2168(%rsp)
movq 0x2188(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x2164(%rsp)
movq 0x2188(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x2160(%rsp)
movq 0x2188(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x215c(%rsp)
movl 0x2168(%rsp), %eax
imull 0x2164(%rsp), %eax
imull 0x2160(%rsp), %eax
movl %eax, 0x2158(%rsp)
movq 0x2188(%rsp), %rax
movq 0x10(%rax), %rax
movq %rax, 0x2150(%rsp)
movq 0x2188(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x214c(%rsp)
movq 0x2180(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x2148(%rsp)
movq 0x2180(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x2144(%rsp)
movq 0x2180(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x2140(%rsp)
movq 0x2180(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x213c(%rsp)
movl 0x2148(%rsp), %eax
imull 0x2144(%rsp), %eax
imull 0x2140(%rsp), %eax
movl %eax, 0x2138(%rsp)
movq 0x2180(%rsp), %rax
movq 0x10(%rax), %rax
movq %rax, 0x2130(%rsp)
movq 0x2180(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x212c(%rsp)
movq 0x2188(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1366779
movq 0x2180(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1364268
movq 0x2188(%rsp), %rdi
movq 0x2180(%rsp), %rsi
movq 0x2178(%rsp), %rdx
movq 0x2170(%rsp), %rcx
callq 0x143ec80
movl %eax, 0x2194(%rsp)
jmp 0x13735ba
movq 0x2178(%rsp), %rdi
movl 0x2168(%rsp), %esi
movl 0x2164(%rsp), %edx
movl 0x2160(%rsp), %ecx
movl 0x215c(%rsp), %r8d
movq 0x2150(%rsp), %r9
movl 0x214c(%rsp), %r10d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x2178(%rsp), %rax
movq %rax, 0x2228(%rsp)
movq 0x2228(%rsp), %rcx
movq %rcx, 0x810(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x81f(%rsp)
je 0x1364318
movq 0x810(%rsp), %rax
movq %rax, 0x3128(%rsp)
movq 0x3128(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x81f(%rsp)
movb 0x81f(%rsp), %al
testb $0x1, %al
jne 0x1364325
jmp 0x1364335
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x13735ba
movq 0x2180(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x136521d
movl $0x0, 0x2128(%rsp)
movl 0x2128(%rsp), %eax
cmpl 0x215c(%rsp), %eax
jge 0x136520d
movq 0x2188(%rsp), %rcx
movl 0x2128(%rsp), %eax
leaq 0x20d8(%rsp), %rdx
movq %rdx, 0x2498(%rsp)
movq %rcx, 0x2490(%rsp)
movl %eax, 0x248c(%rsp)
movq 0x2490(%rsp), %rax
movq %rax, 0x808(%rsp)
movb $0x0, 0x248b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x248c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x20d8(%rsp), %r10
movq %r10, 0x35e0(%rsp)
movl %r9d, 0x35dc(%rsp)
movl %r8d, 0x35d8(%rsp)
movl %edi, 0x35d4(%rsp)
movq %rsi, 0x35c8(%rsp)
movq %rdx, 0x35c0(%rsp)
movl %ecx, 0x35bc(%rsp)
movq %rax, 0x35b0(%rsp)
movq 0x35e0(%rsp), %rcx
movq %rcx, 0x800(%rsp)
movq 0x35c8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x35c0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x35bc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x35b0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x35dc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x35d8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x35d4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3cf8(%rsp)
movl $0x10, 0x3cf4(%rsp)
movq 0x3cf8(%rsp), %rax
movslq 0x3cf4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cf4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x808(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2100(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1364522
movq 0x808(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2118(%rsp)
movb $0x1, 0x248b(%rsp)
testb $0x1, 0x248b(%rsp)
jne 0x1364663
leaq 0x20d8(%rsp), %rax
movq %rax, 0x25c0(%rsp)
movq 0x25c0(%rsp), %rax
movq %rax, 0x4398(%rsp)
movq 0x4398(%rsp), %rax
movq %rax, 0x7f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1364606
movq 0x7f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4394(%rsp) # imm = 0xFFFFFFFF
movl 0x4394(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4390(%rsp)
cmpl $0x1, 0x4390(%rsp)
jne 0x1364606
movq 0x7f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13645d4
movq 0x7f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13645d2
jmp 0x1364604
movq 0x7f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x43a0(%rsp)
cmpq $0x0, 0x43a0(%rsp)
je 0x1364602
movq 0x43a0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1364604
jmp 0x1364606
movq 0x7f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1364661
movq %rax, %rdi
callq 0x678a0
jmp 0x1364663
leaq 0x20d8(%rsp), %rax
movq %rax, 0x25b8(%rsp)
movq 0x25b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7e8(%rsp)
leaq 0x20d8(%rsp), %rax
movq %rax, 0x2690(%rsp)
movq 0x2690(%rsp), %rax
movq %rax, 0x41f8(%rsp)
movq 0x41f8(%rsp), %rax
movq %rax, 0x7f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1364754
movq 0x7f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41f4(%rsp) # imm = 0xFFFFFFFF
movl 0x41f4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41f0(%rsp)
cmpl $0x1, 0x41f0(%rsp)
jne 0x1364754
movq 0x7f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1364722
movq 0x7f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1364720
jmp 0x1364752
movq 0x7f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4470(%rsp)
cmpq $0x0, 0x4470(%rsp)
je 0x1364750
movq 0x4470(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1364752
jmp 0x1364754
movq 0x7f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13647af
movq %rax, %rdi
callq 0x678a0
movq 0x7e8(%rsp), %rax
movq %rax, 0x2120(%rsp)
movq 0x2180(%rsp), %rcx
movl 0x2128(%rsp), %eax
leaq 0x2088(%rsp), %rdx
movq %rdx, 0x2480(%rsp)
movq %rcx, 0x2478(%rsp)
movl %eax, 0x2474(%rsp)
movq 0x2478(%rsp), %rax
movq %rax, 0x7e0(%rsp)
movb $0x0, 0x2473(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2474(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2088(%rsp), %r10
movq %r10, 0x3618(%rsp)
movl %r9d, 0x3614(%rsp)
movl %r8d, 0x3610(%rsp)
movl %edi, 0x360c(%rsp)
movq %rsi, 0x3600(%rsp)
movq %rdx, 0x35f8(%rsp)
movl %ecx, 0x35f4(%rsp)
movq %rax, 0x35e8(%rsp)
movq 0x3618(%rsp), %rcx
movq %rcx, 0x7d8(%rsp)
movq 0x3600(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x35f8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x35f4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x35e8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3614(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3610(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x360c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ce8(%rsp)
movl $0x10, 0x3ce4(%rsp)
movq 0x3ce8(%rsp), %rax
movslq 0x3ce4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3ce4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7e0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x20b0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x136497b
movq 0x7e0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x20c8(%rsp)
movb $0x1, 0x2473(%rsp)
testb $0x1, 0x2473(%rsp)
jne 0x1364abc
leaq 0x2088(%rsp), %rax
movq %rax, 0x25c8(%rsp)
movq 0x25c8(%rsp), %rax
movq %rax, 0x4388(%rsp)
movq 0x4388(%rsp), %rax
movq %rax, 0x7d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1364a5f
movq 0x7d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4384(%rsp) # imm = 0xFFFFFFFF
movl 0x4384(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4380(%rsp)
cmpl $0x1, 0x4380(%rsp)
jne 0x1364a5f
movq 0x7d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1364a2d
movq 0x7d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1364a2b
jmp 0x1364a5d
movq 0x7d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x43a8(%rsp)
cmpq $0x0, 0x43a8(%rsp)
je 0x1364a5b
movq 0x43a8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1364a5d
jmp 0x1364a5f
movq 0x7d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1364aba
movq %rax, %rdi
callq 0x678a0
jmp 0x1364abc
leaq 0x2088(%rsp), %rax
movq %rax, 0x25b0(%rsp)
movq 0x25b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7c0(%rsp)
leaq 0x2088(%rsp), %rax
movq %rax, 0x2698(%rsp)
movq 0x2698(%rsp), %rax
movq %rax, 0x41e8(%rsp)
movq 0x41e8(%rsp), %rax
movq %rax, 0x7c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1364bad
movq 0x7c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41e4(%rsp) # imm = 0xFFFFFFFF
movl 0x41e4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41e0(%rsp)
cmpl $0x1, 0x41e0(%rsp)
jne 0x1364bad
movq 0x7c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1364b7b
movq 0x7c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1364b79
jmp 0x1364bab
movq 0x7c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4478(%rsp)
cmpq $0x0, 0x4478(%rsp)
je 0x1364ba9
movq 0x4478(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1364bab
jmp 0x1364bad
movq 0x7c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1364c08
movq %rax, %rdi
callq 0x678a0
movq 0x7c0(%rsp), %rax
movq %rax, 0x20d0(%rsp)
movq 0x2178(%rsp), %rcx
movl 0x2128(%rsp), %eax
leaq 0x2038(%rsp), %rdx
movq %rdx, 0x2a20(%rsp)
movq %rcx, 0x2a18(%rsp)
movl %eax, 0x2a14(%rsp)
movq 0x2a18(%rsp), %rax
movq %rax, 0x7b8(%rsp)
movb $0x0, 0x2a13(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2a14(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2038(%rsp), %r10
movq %r10, 0x31f0(%rsp)
movl %r9d, 0x31ec(%rsp)
movl %r8d, 0x31e8(%rsp)
movl %edi, 0x31e4(%rsp)
movq %rsi, 0x31d8(%rsp)
movq %rdx, 0x31d0(%rsp)
movl %ecx, 0x31cc(%rsp)
movq %rax, 0x31c0(%rsp)
movq 0x31f0(%rsp), %rcx
movq %rcx, 0x7b0(%rsp)
movq 0x31d8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x31d0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x31cc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x31c0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x31ec(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x31e8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x31e4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3e18(%rsp)
movl $0x10, 0x3e14(%rsp)
movq 0x3e18(%rsp), %rax
movslq 0x3e14(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3e14(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7b8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2060(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1364dd4
movq 0x7b8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2078(%rsp)
movb $0x1, 0x2a13(%rsp)
testb $0x1, 0x2a13(%rsp)
jne 0x1364f15
leaq 0x2038(%rsp), %rax
movq %rax, 0x2a28(%rsp)
movq 0x2a28(%rsp), %rax
movq %rax, 0x3e28(%rsp)
movq 0x3e28(%rsp), %rax
movq %rax, 0x7a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1364eb8
movq 0x7a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e24(%rsp) # imm = 0xFFFFFFFF
movl 0x3e24(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e20(%rsp)
cmpl $0x1, 0x3e20(%rsp)
jne 0x1364eb8
movq 0x7a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1364e86
movq 0x7a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1364e84
jmp 0x1364eb6
movq 0x7a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4658(%rsp)
cmpq $0x0, 0x4658(%rsp)
je 0x1364eb4
movq 0x4658(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1364eb6
jmp 0x1364eb8
movq 0x7a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1364f13
movq %rax, %rdi
callq 0x678a0
jmp 0x1364f15
leaq 0x2038(%rsp), %rax
movq %rax, 0x2ac8(%rsp)
movq 0x2ac8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x798(%rsp)
leaq 0x2038(%rsp), %rax
movq %rax, 0x26a0(%rsp)
movq 0x26a0(%rsp), %rax
movq %rax, 0x41d8(%rsp)
movq 0x41d8(%rsp), %rax
movq %rax, 0x7a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1365006
movq 0x7a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41d4(%rsp) # imm = 0xFFFFFFFF
movl 0x41d4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41d0(%rsp)
cmpl $0x1, 0x41d0(%rsp)
jne 0x1365006
movq 0x7a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1364fd4
movq 0x7a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1364fd2
jmp 0x1365004
movq 0x7a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4480(%rsp)
cmpq $0x0, 0x4480(%rsp)
je 0x1365002
movq 0x4480(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1365004
jmp 0x1365006
movq 0x7a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1365061
movq %rax, %rdi
callq 0x678a0
movq 0x798(%rsp), %rax
movq %rax, 0x2080(%rsp)
movl $0x0, 0x2034(%rsp)
movl 0x2034(%rsp), %eax
cmpl 0x2160(%rsp), %eax
jge 0x13651f5
movl $0x0, 0x2030(%rsp)
movl 0x2030(%rsp), %eax
cmpl 0x2164(%rsp), %eax
jge 0x13651dd
movq 0x20d0(%rsp), %rax
movq %rax, 0x2c38(%rsp)
movq 0x2c38(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x2000(%rsp)
movl $0x0, 0x1ffc(%rsp)
movl 0x1ffc(%rsp), %eax
cmpl 0x2168(%rsp), %eax
jge 0x13651b3
movq 0x2120(%rsp), %rax
movq %rax, 0x2c30(%rsp)
movq 0x2c30(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1fc0(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0x1fc0(%rsp), %rsi
leaq 0x2000(%rsp), %rdx
callq 0x1453640
vmovaps %ymm0, 0x1fa0(%rsp)
movq 0x2080(%rsp), %rax
vmovaps 0x1fa0(%rsp), %ymm0
movq %rax, 0x3120(%rsp)
vmovaps %ymm0, 0x3100(%rsp)
vmovaps 0x3100(%rsp), %ymm0
movq 0x3120(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x2120(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x2120(%rsp)
movq 0x2080(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x2080(%rsp)
movl 0x1ffc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1ffc(%rsp)
jmp 0x13650df
movq 0x20d0(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x20d0(%rsp)
movl 0x2030(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x2030(%rsp)
jmp 0x136509b
jmp 0x13651df
movl 0x2034(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x2034(%rsp)
jmp 0x136507c
jmp 0x13651f7
movl 0x2128(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x2128(%rsp)
jmp 0x1364352
movl $0x0, 0x2194(%rsp)
jmp 0x13735ba
movq 0x2180(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1365cf5
movl $0x0, 0x1f9c(%rsp)
movl 0x1f9c(%rsp), %eax
cmpl 0x215c(%rsp), %eax
jge 0x1365ce5
movq 0x2188(%rsp), %rcx
movl 0x1f9c(%rsp), %eax
leaq 0x1f48(%rsp), %rdx
movq %rdx, 0x2468(%rsp)
movq %rcx, 0x2460(%rsp)
movl %eax, 0x245c(%rsp)
movq 0x2460(%rsp), %rax
movq %rax, 0x790(%rsp)
movb $0x0, 0x245b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x245c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1f48(%rsp), %r10
movq %r10, 0x3650(%rsp)
movl %r9d, 0x364c(%rsp)
movl %r8d, 0x3648(%rsp)
movl %edi, 0x3644(%rsp)
movq %rsi, 0x3638(%rsp)
movq %rdx, 0x3630(%rsp)
movl %ecx, 0x362c(%rsp)
movq %rax, 0x3620(%rsp)
movq 0x3650(%rsp), %rcx
movq %rcx, 0x788(%rsp)
movq 0x3638(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3630(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x362c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3620(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x364c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3648(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3644(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3cd8(%rsp)
movl $0x10, 0x3cd4(%rsp)
movq 0x3cd8(%rsp), %rax
movslq 0x3cd4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cd4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x790(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1f70(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x136540a
movq 0x790(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1f88(%rsp)
movb $0x1, 0x245b(%rsp)
testb $0x1, 0x245b(%rsp)
jne 0x136554b
leaq 0x1f48(%rsp), %rax
movq %rax, 0x25d0(%rsp)
movq 0x25d0(%rsp), %rax
movq %rax, 0x4378(%rsp)
movq 0x4378(%rsp), %rax
movq %rax, 0x780(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13654ee
movq 0x780(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4374(%rsp) # imm = 0xFFFFFFFF
movl 0x4374(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4370(%rsp)
cmpl $0x1, 0x4370(%rsp)
jne 0x13654ee
movq 0x780(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13654bc
movq 0x780(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13654ba
jmp 0x13654ec
movq 0x780(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x43b0(%rsp)
cmpq $0x0, 0x43b0(%rsp)
je 0x13654ea
movq 0x43b0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13654ec
jmp 0x13654ee
movq 0x780(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1365549
movq %rax, %rdi
callq 0x678a0
jmp 0x136554b
leaq 0x1f48(%rsp), %rax
movq %rax, 0x25a8(%rsp)
movq 0x25a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x770(%rsp)
leaq 0x1f48(%rsp), %rax
movq %rax, 0x26a8(%rsp)
movq 0x26a8(%rsp), %rax
movq %rax, 0x41c8(%rsp)
movq 0x41c8(%rsp), %rax
movq %rax, 0x778(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x136563c
movq 0x778(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41c4(%rsp) # imm = 0xFFFFFFFF
movl 0x41c4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41c0(%rsp)
cmpl $0x1, 0x41c0(%rsp)
jne 0x136563c
movq 0x778(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x136560a
movq 0x778(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1365608
jmp 0x136563a
movq 0x778(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4488(%rsp)
cmpq $0x0, 0x4488(%rsp)
je 0x1365638
movq 0x4488(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x136563a
jmp 0x136563c
movq 0x778(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1365697
movq %rax, %rdi
callq 0x678a0
movq 0x770(%rsp), %rax
movq %rax, 0x1f90(%rsp)
movq 0x2180(%rsp), %rcx
movl 0x1f9c(%rsp), %eax
movq %rcx, 0x2b08(%rsp)
movl %eax, 0x2b04(%rsp)
movq 0x2b08(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2b04(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x1f40(%rsp)
movq 0x2178(%rsp), %rcx
movl 0x1f9c(%rsp), %eax
leaq 0x1ef0(%rsp), %rdx
movq %rdx, 0x2a00(%rsp)
movq %rcx, 0x29f8(%rsp)
movl %eax, 0x29f4(%rsp)
movq 0x29f8(%rsp), %rax
movq %rax, 0x768(%rsp)
movb $0x0, 0x29f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x29f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1ef0(%rsp), %r10
movq %r10, 0x3228(%rsp)
movl %r9d, 0x3224(%rsp)
movl %r8d, 0x3220(%rsp)
movl %edi, 0x321c(%rsp)
movq %rsi, 0x3210(%rsp)
movq %rdx, 0x3208(%rsp)
movl %ecx, 0x3204(%rsp)
movq %rax, 0x31f8(%rsp)
movq 0x3228(%rsp), %rcx
movq %rcx, 0x760(%rsp)
movq 0x3210(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3208(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3204(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x31f8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3224(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3220(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x321c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3e08(%rsp)
movl $0x10, 0x3e04(%rsp)
movq 0x3e08(%rsp), %rax
movslq 0x3e04(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3e04(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x768(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1f18(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13658ac
movq 0x768(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1f30(%rsp)
movb $0x1, 0x29f3(%rsp)
testb $0x1, 0x29f3(%rsp)
jne 0x13659ed
leaq 0x1ef0(%rsp), %rax
movq %rax, 0x2a08(%rsp)
movq 0x2a08(%rsp), %rax
movq %rax, 0x3e38(%rsp)
movq 0x3e38(%rsp), %rax
movq %rax, 0x758(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1365990
movq 0x758(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e34(%rsp) # imm = 0xFFFFFFFF
movl 0x3e34(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e30(%rsp)
cmpl $0x1, 0x3e30(%rsp)
jne 0x1365990
movq 0x758(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x136595e
movq 0x758(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x136595c
jmp 0x136598e
movq 0x758(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4650(%rsp)
cmpq $0x0, 0x4650(%rsp)
je 0x136598c
movq 0x4650(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x136598e
jmp 0x1365990
movq 0x758(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13659eb
movq %rax, %rdi
callq 0x678a0
jmp 0x13659ed
leaq 0x1ef0(%rsp), %rax
movq %rax, 0x2ac0(%rsp)
movq 0x2ac0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x748(%rsp)
leaq 0x1ef0(%rsp), %rax
movq %rax, 0x26b0(%rsp)
movq 0x26b0(%rsp), %rax
movq %rax, 0x41b8(%rsp)
movq 0x41b8(%rsp), %rax
movq %rax, 0x750(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1365ade
movq 0x750(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41b4(%rsp) # imm = 0xFFFFFFFF
movl 0x41b4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41b0(%rsp)
cmpl $0x1, 0x41b0(%rsp)
jne 0x1365ade
movq 0x750(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1365aac
movq 0x750(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1365aaa
jmp 0x1365adc
movq 0x750(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4490(%rsp)
cmpq $0x0, 0x4490(%rsp)
je 0x1365ada
movq 0x4490(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1365adc
jmp 0x1365ade
movq 0x750(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1365b39
movq %rax, %rdi
callq 0x678a0
movq 0x748(%rsp), %rax
movq %rax, 0x1f38(%rsp)
movl $0x0, 0x1eec(%rsp)
movl 0x1eec(%rsp), %eax
cmpl 0x2160(%rsp), %eax
jge 0x1365ccd
movq 0x1f40(%rsp), %rax
movq %rax, 0x2c28(%rsp)
movq 0x2c28(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1ec0(%rsp)
movl $0x0, 0x1ebc(%rsp)
movl 0x1ebc(%rsp), %eax
cmpl 0x2164(%rsp), %eax
jge 0x1365ca3
movl $0x0, 0x1eb8(%rsp)
movl 0x1eb8(%rsp), %eax
cmpl 0x2168(%rsp), %eax
jge 0x1365c8b
movq 0x1f90(%rsp), %rax
movq %rax, 0x2c20(%rsp)
movq 0x2c20(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1e80(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0x1e80(%rsp), %rsi
leaq 0x1ec0(%rsp), %rdx
callq 0x1453640
vmovaps %ymm0, 0x1e60(%rsp)
movq 0x1f38(%rsp), %rax
vmovaps 0x1e60(%rsp), %ymm0
movq %rax, 0x30f8(%rsp)
vmovaps %ymm0, 0x30c0(%rsp)
vmovaps 0x30c0(%rsp), %ymm0
movq 0x30f8(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x1f90(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1f90(%rsp)
movq 0x1f38(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1f38(%rsp)
movl 0x1eb8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1eb8(%rsp)
jmp 0x1365bb7
jmp 0x1365c8d
movl 0x1ebc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1ebc(%rsp)
jmp 0x1365b98
movq 0x1f40(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1f40(%rsp)
movl 0x1eec(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1eec(%rsp)
jmp 0x1365b54
jmp 0x1365ccf
movl 0x1f9c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1f9c(%rsp)
jmp 0x136523a
movl $0x0, 0x2194(%rsp)
jmp 0x13735ba
movq 0x2180(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1366774
movq 0x2180(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1365d50
cmpl $0x1, 0x212c(%rsp)
jne 0x1365d50
movq 0x2188(%rsp), %rdi
movq 0x2180(%rsp), %rsi
movq 0x2178(%rsp), %rdx
movq 0x2170(%rsp), %rcx
callq 0x143fe80
movl %eax, 0x2194(%rsp)
jmp 0x13735ba
movl $0x0, 0x1e5c(%rsp)
movl 0x1e5c(%rsp), %eax
cmpl 0x215c(%rsp), %eax
jge 0x1366764
movq 0x2188(%rsp), %rcx
movl 0x1e5c(%rsp), %eax
leaq 0x1e08(%rsp), %rdx
movq %rdx, 0x2450(%rsp)
movq %rcx, 0x2448(%rsp)
movl %eax, 0x2444(%rsp)
movq 0x2448(%rsp), %rax
movq %rax, 0x740(%rsp)
movb $0x0, 0x2443(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2444(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1e08(%rsp), %r10
movq %r10, 0x3688(%rsp)
movl %r9d, 0x3684(%rsp)
movl %r8d, 0x3680(%rsp)
movl %edi, 0x367c(%rsp)
movq %rsi, 0x3670(%rsp)
movq %rdx, 0x3668(%rsp)
movl %ecx, 0x3664(%rsp)
movq %rax, 0x3658(%rsp)
movq 0x3688(%rsp), %rcx
movq %rcx, 0x738(%rsp)
movq 0x3670(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3668(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3664(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3658(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3684(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3680(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x367c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3cc8(%rsp)
movl $0x10, 0x3cc4(%rsp)
movq 0x3cc8(%rsp), %rax
movslq 0x3cc4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cc4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x740(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1e30(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1365f2b
movq 0x740(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1e48(%rsp)
movb $0x1, 0x2443(%rsp)
testb $0x1, 0x2443(%rsp)
jne 0x136606c
leaq 0x1e08(%rsp), %rax
movq %rax, 0x25d8(%rsp)
movq 0x25d8(%rsp), %rax
movq %rax, 0x4368(%rsp)
movq 0x4368(%rsp), %rax
movq %rax, 0x730(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x136600f
movq 0x730(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4364(%rsp) # imm = 0xFFFFFFFF
movl 0x4364(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4360(%rsp)
cmpl $0x1, 0x4360(%rsp)
jne 0x136600f
movq 0x730(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1365fdd
movq 0x730(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1365fdb
jmp 0x136600d
movq 0x730(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x43b8(%rsp)
cmpq $0x0, 0x43b8(%rsp)
je 0x136600b
movq 0x43b8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x136600d
jmp 0x136600f
movq 0x730(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136606a
movq %rax, %rdi
callq 0x678a0
jmp 0x136606c
leaq 0x1e08(%rsp), %rax
movq %rax, 0x25a0(%rsp)
movq 0x25a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x720(%rsp)
leaq 0x1e08(%rsp), %rax
movq %rax, 0x26b8(%rsp)
movq 0x26b8(%rsp), %rax
movq %rax, 0x41a8(%rsp)
movq 0x41a8(%rsp), %rax
movq %rax, 0x728(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x136615d
movq 0x728(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41a4(%rsp) # imm = 0xFFFFFFFF
movl 0x41a4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41a0(%rsp)
cmpl $0x1, 0x41a0(%rsp)
jne 0x136615d
movq 0x728(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x136612b
movq 0x728(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1366129
jmp 0x136615b
movq 0x728(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4498(%rsp)
cmpq $0x0, 0x4498(%rsp)
je 0x1366159
movq 0x4498(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x136615b
jmp 0x136615d
movq 0x728(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13661b8
movq %rax, %rdi
callq 0x678a0
movq 0x720(%rsp), %rax
movq %rax, 0x1e50(%rsp)
movq 0x2180(%rsp), %rax
movq %rax, 0x2598(%rsp)
movq 0x2598(%rsp), %rax
movq (%rax), %rax
movl 0x1e5c(%rsp), %ecx
shll $0x3, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2c18(%rsp)
movq 0x2c18(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1de0(%rsp)
movq 0x2178(%rsp), %rcx
movl 0x1e5c(%rsp), %eax
leaq 0x1d90(%rsp), %rdx
movq %rdx, 0x29e0(%rsp)
movq %rcx, 0x29d8(%rsp)
movl %eax, 0x29d4(%rsp)
movq 0x29d8(%rsp), %rax
movq %rax, 0x718(%rsp)
movb $0x0, 0x29d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x29d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1d90(%rsp), %r10
movq %r10, 0x3260(%rsp)
movl %r9d, 0x325c(%rsp)
movl %r8d, 0x3258(%rsp)
movl %edi, 0x3254(%rsp)
movq %rsi, 0x3248(%rsp)
movq %rdx, 0x3240(%rsp)
movl %ecx, 0x323c(%rsp)
movq %rax, 0x3230(%rsp)
movq 0x3260(%rsp), %rcx
movq %rcx, 0x710(%rsp)
movq 0x3248(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3240(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x323c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3230(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x325c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3258(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3254(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3df8(%rsp)
movl $0x10, 0x3df4(%rsp)
movq 0x3df8(%rsp), %rax
movslq 0x3df4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3df4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x718(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1db8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13663d0
movq 0x718(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1dd0(%rsp)
movb $0x1, 0x29d3(%rsp)
testb $0x1, 0x29d3(%rsp)
jne 0x1366511
leaq 0x1d90(%rsp), %rax
movq %rax, 0x29e8(%rsp)
movq 0x29e8(%rsp), %rax
movq %rax, 0x3e48(%rsp)
movq 0x3e48(%rsp), %rax
movq %rax, 0x708(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13664b4
movq 0x708(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e44(%rsp) # imm = 0xFFFFFFFF
movl 0x3e44(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e40(%rsp)
cmpl $0x1, 0x3e40(%rsp)
jne 0x13664b4
movq 0x708(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1366482
movq 0x708(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1366480
jmp 0x13664b2
movq 0x708(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4648(%rsp)
cmpq $0x0, 0x4648(%rsp)
je 0x13664b0
movq 0x4648(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13664b2
jmp 0x13664b4
movq 0x708(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136650f
movq %rax, %rdi
callq 0x678a0
jmp 0x1366511
leaq 0x1d90(%rsp), %rax
movq %rax, 0x2ab8(%rsp)
movq 0x2ab8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6f8(%rsp)
leaq 0x1d90(%rsp), %rax
movq %rax, 0x26c0(%rsp)
movq 0x26c0(%rsp), %rax
movq %rax, 0x4198(%rsp)
movq 0x4198(%rsp), %rax
movq %rax, 0x700(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1366602
movq 0x700(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4194(%rsp) # imm = 0xFFFFFFFF
movl 0x4194(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4190(%rsp)
cmpl $0x1, 0x4190(%rsp)
jne 0x1366602
movq 0x700(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13665d0
movq 0x700(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13665ce
jmp 0x1366600
movq 0x700(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44a0(%rsp)
cmpq $0x0, 0x44a0(%rsp)
je 0x13665fe
movq 0x44a0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1366600
jmp 0x1366602
movq 0x700(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136665d
movq %rax, %rdi
callq 0x678a0
movq 0x6f8(%rsp), %rax
movq %rax, 0x1dd8(%rsp)
movl $0x0, 0x1d8c(%rsp)
movl 0x1d8c(%rsp), %eax
cmpl 0x2158(%rsp), %eax
jge 0x136674c
movq 0x1e50(%rsp), %rax
movq %rax, 0x2c10(%rsp)
movq 0x2c10(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1d60(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0x1d60(%rsp), %rsi
leaq 0x1de0(%rsp), %rdx
callq 0x1453640
vmovaps %ymm0, 0x1d40(%rsp)
movq 0x1dd8(%rsp), %rax
vmovaps 0x1d40(%rsp), %ymm0
movq %rax, 0x30b8(%rsp)
vmovaps %ymm0, 0x3080(%rsp)
vmovaps 0x3080(%rsp), %ymm0
movq 0x30b8(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x1e50(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1e50(%rsp)
movq 0x1dd8(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1dd8(%rsp)
movl 0x1d8c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1d8c(%rsp)
jmp 0x1366678
jmp 0x136674e
movl 0x1e5c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1e5c(%rsp)
jmp 0x1365d5b
movl $0x0, 0x2194(%rsp)
jmp 0x13735ba
jmp 0x13735af
movq 0x2188(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1370142
movq 0x2180(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1367740
movq 0x2178(%rsp), %rdi
movl 0x2148(%rsp), %esi
movl 0x2144(%rsp), %edx
movl 0x2140(%rsp), %ecx
movl 0x213c(%rsp), %r8d
movq 0x2130(%rsp), %r9
movl 0x212c(%rsp), %r10d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x2178(%rsp), %rax
movq %rax, 0x2220(%rsp)
movq 0x2220(%rsp), %rcx
movq %rcx, 0x6e8(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x6f7(%rsp)
je 0x136684d
movq 0x6e8(%rsp), %rax
movq %rax, 0x3130(%rsp)
movq 0x3130(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x6f7(%rsp)
movb 0x6f7(%rsp), %al
testb $0x1, %al
jne 0x136685a
jmp 0x136686a
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x13735ba
movl $0x0, 0x1d3c(%rsp)
movl 0x1d3c(%rsp), %eax
cmpl 0x213c(%rsp), %eax
jge 0x1367730
movq 0x2188(%rsp), %rcx
movl 0x1d3c(%rsp), %eax
leaq 0x1ce8(%rsp), %rdx
movq %rdx, 0x2438(%rsp)
movq %rcx, 0x2430(%rsp)
movl %eax, 0x242c(%rsp)
movq 0x2430(%rsp), %rax
movq %rax, 0x6e0(%rsp)
movb $0x0, 0x242b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x242c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1ce8(%rsp), %r10
movq %r10, 0x36c0(%rsp)
movl %r9d, 0x36bc(%rsp)
movl %r8d, 0x36b8(%rsp)
movl %edi, 0x36b4(%rsp)
movq %rsi, 0x36a8(%rsp)
movq %rdx, 0x36a0(%rsp)
movl %ecx, 0x369c(%rsp)
movq %rax, 0x3690(%rsp)
movq 0x36c0(%rsp), %rcx
movq %rcx, 0x6d8(%rsp)
movq 0x36a8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x36a0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x369c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3690(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x36bc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x36b8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x36b4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3cb8(%rsp)
movl $0x10, 0x3cb4(%rsp)
movq 0x3cb8(%rsp), %rax
movslq 0x3cb4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cb4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6e0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1d10(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1366a45
movq 0x6e0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1d28(%rsp)
movb $0x1, 0x242b(%rsp)
testb $0x1, 0x242b(%rsp)
jne 0x1366b86
leaq 0x1ce8(%rsp), %rax
movq %rax, 0x25e0(%rsp)
movq 0x25e0(%rsp), %rax
movq %rax, 0x4358(%rsp)
movq 0x4358(%rsp), %rax
movq %rax, 0x6d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1366b29
movq 0x6d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4354(%rsp) # imm = 0xFFFFFFFF
movl 0x4354(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4350(%rsp)
cmpl $0x1, 0x4350(%rsp)
jne 0x1366b29
movq 0x6d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1366af7
movq 0x6d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1366af5
jmp 0x1366b27
movq 0x6d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x43c0(%rsp)
cmpq $0x0, 0x43c0(%rsp)
je 0x1366b25
movq 0x43c0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1366b27
jmp 0x1366b29
movq 0x6d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1366b84
movq %rax, %rdi
callq 0x678a0
jmp 0x1366b86
leaq 0x1ce8(%rsp), %rax
movq %rax, 0x2590(%rsp)
movq 0x2590(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6c0(%rsp)
leaq 0x1ce8(%rsp), %rax
movq %rax, 0x26c8(%rsp)
movq 0x26c8(%rsp), %rax
movq %rax, 0x4188(%rsp)
movq 0x4188(%rsp), %rax
movq %rax, 0x6c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1366c77
movq 0x6c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4184(%rsp) # imm = 0xFFFFFFFF
movl 0x4184(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4180(%rsp)
cmpl $0x1, 0x4180(%rsp)
jne 0x1366c77
movq 0x6c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1366c45
movq 0x6c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1366c43
jmp 0x1366c75
movq 0x6c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44a8(%rsp)
cmpq $0x0, 0x44a8(%rsp)
je 0x1366c73
movq 0x44a8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1366c75
jmp 0x1366c77
movq 0x6c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1366cd2
movq %rax, %rdi
callq 0x678a0
movq 0x6c0(%rsp), %rax
movq %rax, 0x1d30(%rsp)
movq 0x2180(%rsp), %rcx
movl 0x1d3c(%rsp), %eax
leaq 0x1c98(%rsp), %rdx
movq %rdx, 0x2420(%rsp)
movq %rcx, 0x2418(%rsp)
movl %eax, 0x2414(%rsp)
movq 0x2418(%rsp), %rax
movq %rax, 0x6b8(%rsp)
movb $0x0, 0x2413(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2414(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1c98(%rsp), %r10
movq %r10, 0x36f8(%rsp)
movl %r9d, 0x36f4(%rsp)
movl %r8d, 0x36f0(%rsp)
movl %edi, 0x36ec(%rsp)
movq %rsi, 0x36e0(%rsp)
movq %rdx, 0x36d8(%rsp)
movl %ecx, 0x36d4(%rsp)
movq %rax, 0x36c8(%rsp)
movq 0x36f8(%rsp), %rcx
movq %rcx, 0x6b0(%rsp)
movq 0x36e0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x36d8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x36d4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x36c8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x36f4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x36f0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x36ec(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ca8(%rsp)
movl $0x10, 0x3ca4(%rsp)
movq 0x3ca8(%rsp), %rax
movslq 0x3ca4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3ca4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6b8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1cc0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1366e9e
movq 0x6b8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1cd8(%rsp)
movb $0x1, 0x2413(%rsp)
testb $0x1, 0x2413(%rsp)
jne 0x1366fdf
leaq 0x1c98(%rsp), %rax
movq %rax, 0x25e8(%rsp)
movq 0x25e8(%rsp), %rax
movq %rax, 0x4348(%rsp)
movq 0x4348(%rsp), %rax
movq %rax, 0x6a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1366f82
movq 0x6a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4344(%rsp) # imm = 0xFFFFFFFF
movl 0x4344(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4340(%rsp)
cmpl $0x1, 0x4340(%rsp)
jne 0x1366f82
movq 0x6a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1366f50
movq 0x6a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1366f4e
jmp 0x1366f80
movq 0x6a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x43c8(%rsp)
cmpq $0x0, 0x43c8(%rsp)
je 0x1366f7e
movq 0x43c8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1366f80
jmp 0x1366f82
movq 0x6a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1366fdd
movq %rax, %rdi
callq 0x678a0
jmp 0x1366fdf
leaq 0x1c98(%rsp), %rax
movq %rax, 0x2588(%rsp)
movq 0x2588(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x698(%rsp)
leaq 0x1c98(%rsp), %rax
movq %rax, 0x26d0(%rsp)
movq 0x26d0(%rsp), %rax
movq %rax, 0x4178(%rsp)
movq 0x4178(%rsp), %rax
movq %rax, 0x6a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13670d0
movq 0x6a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4174(%rsp) # imm = 0xFFFFFFFF
movl 0x4174(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4170(%rsp)
cmpl $0x1, 0x4170(%rsp)
jne 0x13670d0
movq 0x6a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x136709e
movq 0x6a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x136709c
jmp 0x13670ce
movq 0x6a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44b0(%rsp)
cmpq $0x0, 0x44b0(%rsp)
je 0x13670cc
movq 0x44b0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13670ce
jmp 0x13670d0
movq 0x6a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136712b
movq %rax, %rdi
callq 0x678a0
movq 0x698(%rsp), %rax
movq %rax, 0x1ce0(%rsp)
movq 0x2178(%rsp), %rcx
movl 0x1d3c(%rsp), %eax
leaq 0x1c48(%rsp), %rdx
movq %rdx, 0x29c0(%rsp)
movq %rcx, 0x29b8(%rsp)
movl %eax, 0x29b4(%rsp)
movq 0x29b8(%rsp), %rax
movq %rax, 0x690(%rsp)
movb $0x0, 0x29b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x29b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1c48(%rsp), %r10
movq %r10, 0x3298(%rsp)
movl %r9d, 0x3294(%rsp)
movl %r8d, 0x3290(%rsp)
movl %edi, 0x328c(%rsp)
movq %rsi, 0x3280(%rsp)
movq %rdx, 0x3278(%rsp)
movl %ecx, 0x3274(%rsp)
movq %rax, 0x3268(%rsp)
movq 0x3298(%rsp), %rcx
movq %rcx, 0x688(%rsp)
movq 0x3280(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3278(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3274(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3268(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3294(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3290(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x328c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3de8(%rsp)
movl $0x10, 0x3de4(%rsp)
movq 0x3de8(%rsp), %rax
movslq 0x3de4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3de4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x690(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1c70(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13672f7
movq 0x690(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1c88(%rsp)
movb $0x1, 0x29b3(%rsp)
testb $0x1, 0x29b3(%rsp)
jne 0x1367438
leaq 0x1c48(%rsp), %rax
movq %rax, 0x29c8(%rsp)
movq 0x29c8(%rsp), %rax
movq %rax, 0x3e58(%rsp)
movq 0x3e58(%rsp), %rax
movq %rax, 0x680(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13673db
movq 0x680(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e54(%rsp) # imm = 0xFFFFFFFF
movl 0x3e54(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e50(%rsp)
cmpl $0x1, 0x3e50(%rsp)
jne 0x13673db
movq 0x680(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13673a9
movq 0x680(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13673a7
jmp 0x13673d9
movq 0x680(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4640(%rsp)
cmpq $0x0, 0x4640(%rsp)
je 0x13673d7
movq 0x4640(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13673d9
jmp 0x13673db
movq 0x680(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1367436
movq %rax, %rdi
callq 0x678a0
jmp 0x1367438
leaq 0x1c48(%rsp), %rax
movq %rax, 0x2ab0(%rsp)
movq 0x2ab0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x670(%rsp)
leaq 0x1c48(%rsp), %rax
movq %rax, 0x26d8(%rsp)
movq 0x26d8(%rsp), %rax
movq %rax, 0x4168(%rsp)
movq 0x4168(%rsp), %rax
movq %rax, 0x678(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1367529
movq 0x678(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4164(%rsp) # imm = 0xFFFFFFFF
movl 0x4164(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4160(%rsp)
cmpl $0x1, 0x4160(%rsp)
jne 0x1367529
movq 0x678(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13674f7
movq 0x678(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13674f5
jmp 0x1367527
movq 0x678(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44b8(%rsp)
cmpq $0x0, 0x44b8(%rsp)
je 0x1367525
movq 0x44b8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1367527
jmp 0x1367529
movq 0x678(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1367584
movq %rax, %rdi
callq 0x678a0
movq 0x670(%rsp), %rax
movq %rax, 0x1c90(%rsp)
movl $0x0, 0x1c44(%rsp)
movl 0x1c44(%rsp), %eax
cmpl 0x2140(%rsp), %eax
jge 0x1367718
movl $0x0, 0x1c40(%rsp)
movl 0x1c40(%rsp), %eax
cmpl 0x2144(%rsp), %eax
jge 0x1367700
movq 0x1d30(%rsp), %rax
movq %rax, 0x2c08(%rsp)
movq 0x2c08(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1c20(%rsp)
movl $0x0, 0x1c1c(%rsp)
movl 0x1c1c(%rsp), %eax
cmpl 0x2148(%rsp), %eax
jge 0x13676d6
movq 0x1ce0(%rsp), %rax
movq %rax, 0x2c00(%rsp)
movq 0x2c00(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1be0(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0x1c20(%rsp), %rsi
leaq 0x1be0(%rsp), %rdx
callq 0x1453640
vmovaps %ymm0, 0x1bc0(%rsp)
movq 0x1c90(%rsp), %rax
vmovaps 0x1bc0(%rsp), %ymm0
movq %rax, 0x3078(%rsp)
vmovaps %ymm0, 0x3040(%rsp)
vmovaps 0x3040(%rsp), %ymm0
movq 0x3078(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x1ce0(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1ce0(%rsp)
movq 0x1c90(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1c90(%rsp)
movl 0x1c1c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c1c(%rsp)
jmp 0x1367602
movq 0x1d30(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1d30(%rsp)
movl 0x1c40(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c40(%rsp)
jmp 0x13675be
jmp 0x1367702
movl 0x1c44(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c44(%rsp)
jmp 0x136759f
jmp 0x136771a
movl 0x1d3c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1d3c(%rsp)
jmp 0x1366875
movl $0x0, 0x2194(%rsp)
jmp 0x13735ba
movq 0x2180(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x136eb5d
cmpl $0x1, 0x2148(%rsp)
jne 0x1368698
cmpl $0x1, 0x2144(%rsp)
jne 0x1368698
movl 0x213c(%rsp), %eax
cmpl 0x215c(%rsp), %eax
jne 0x1368698
movq 0x2178(%rsp), %rdi
movl 0x2168(%rsp), %esi
movl 0x2164(%rsp), %edx
movl 0x215c(%rsp), %ecx
movq 0x2150(%rsp), %r8
movl 0x214c(%rsp), %r9d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2178(%rsp), %rax
movq %rax, 0x2218(%rsp)
movq 0x2218(%rsp), %rcx
movq %rcx, 0x660(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x66f(%rsp)
je 0x1367825
movq 0x660(%rsp), %rax
movq %rax, 0x3138(%rsp)
movq 0x3138(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x66f(%rsp)
movb 0x66f(%rsp), %al
testb $0x1, %al
jne 0x1367832
jmp 0x1367842
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x13735ba
movl $0x0, 0x1bbc(%rsp)
movl 0x1bbc(%rsp), %eax
cmpl 0x215c(%rsp), %eax
jge 0x1368688
movq 0x2188(%rsp), %rcx
movl 0x1bbc(%rsp), %eax
leaq 0x1b68(%rsp), %rdx
movq %rdx, 0x2408(%rsp)
movq %rcx, 0x2400(%rsp)
movl %eax, 0x23fc(%rsp)
movq 0x2400(%rsp), %rax
movq %rax, 0x658(%rsp)
movb $0x0, 0x23fb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x23fc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1b68(%rsp), %r10
movq %r10, 0x3730(%rsp)
movl %r9d, 0x372c(%rsp)
movl %r8d, 0x3728(%rsp)
movl %edi, 0x3724(%rsp)
movq %rsi, 0x3718(%rsp)
movq %rdx, 0x3710(%rsp)
movl %ecx, 0x370c(%rsp)
movq %rax, 0x3700(%rsp)
movq 0x3730(%rsp), %rcx
movq %rcx, 0x650(%rsp)
movq 0x3718(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3710(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x370c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3700(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x372c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3728(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3724(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c98(%rsp)
movl $0x10, 0x3c94(%rsp)
movq 0x3c98(%rsp), %rax
movslq 0x3c94(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c94(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x658(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1b90(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1367a1d
movq 0x658(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1ba8(%rsp)
movb $0x1, 0x23fb(%rsp)
testb $0x1, 0x23fb(%rsp)
jne 0x1367b5e
leaq 0x1b68(%rsp), %rax
movq %rax, 0x25f0(%rsp)
movq 0x25f0(%rsp), %rax
movq %rax, 0x4338(%rsp)
movq 0x4338(%rsp), %rax
movq %rax, 0x648(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1367b01
movq 0x648(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4334(%rsp) # imm = 0xFFFFFFFF
movl 0x4334(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4330(%rsp)
cmpl $0x1, 0x4330(%rsp)
jne 0x1367b01
movq 0x648(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1367acf
movq 0x648(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1367acd
jmp 0x1367aff
movq 0x648(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x43d0(%rsp)
cmpq $0x0, 0x43d0(%rsp)
je 0x1367afd
movq 0x43d0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1367aff
jmp 0x1367b01
movq 0x648(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1367b5c
movq %rax, %rdi
callq 0x678a0
jmp 0x1367b5e
leaq 0x1b68(%rsp), %rax
movq %rax, 0x2580(%rsp)
movq 0x2580(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x638(%rsp)
leaq 0x1b68(%rsp), %rax
movq %rax, 0x26e0(%rsp)
movq 0x26e0(%rsp), %rax
movq %rax, 0x4158(%rsp)
movq 0x4158(%rsp), %rax
movq %rax, 0x640(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1367c4f
movq 0x640(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4154(%rsp) # imm = 0xFFFFFFFF
movl 0x4154(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4150(%rsp)
cmpl $0x1, 0x4150(%rsp)
jne 0x1367c4f
movq 0x640(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1367c1d
movq 0x640(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1367c1b
jmp 0x1367c4d
movq 0x640(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44c0(%rsp)
cmpq $0x0, 0x44c0(%rsp)
je 0x1367c4b
movq 0x44c0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1367c4d
jmp 0x1367c4f
movq 0x640(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1367caa
movq %rax, %rdi
callq 0x678a0
movq 0x638(%rsp), %rax
movq %rax, 0x1bb0(%rsp)
movq 0x2180(%rsp), %rcx
movl 0x1bbc(%rsp), %eax
leaq 0x1b18(%rsp), %rdx
movq %rdx, 0x23f0(%rsp)
movq %rcx, 0x23e8(%rsp)
movl %eax, 0x23e4(%rsp)
movq 0x23e8(%rsp), %rax
movq %rax, 0x630(%rsp)
movb $0x0, 0x23e3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x23e4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1b18(%rsp), %r10
movq %r10, 0x3768(%rsp)
movl %r9d, 0x3764(%rsp)
movl %r8d, 0x3760(%rsp)
movl %edi, 0x375c(%rsp)
movq %rsi, 0x3750(%rsp)
movq %rdx, 0x3748(%rsp)
movl %ecx, 0x3744(%rsp)
movq %rax, 0x3738(%rsp)
movq 0x3768(%rsp), %rcx
movq %rcx, 0x628(%rsp)
movq 0x3750(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3748(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3744(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3738(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3764(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3760(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x375c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c88(%rsp)
movl $0x10, 0x3c84(%rsp)
movq 0x3c88(%rsp), %rax
movslq 0x3c84(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c84(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x630(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1b40(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1367e76
movq 0x630(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1b58(%rsp)
movb $0x1, 0x23e3(%rsp)
testb $0x1, 0x23e3(%rsp)
jne 0x1367fb7
leaq 0x1b18(%rsp), %rax
movq %rax, 0x25f8(%rsp)
movq 0x25f8(%rsp), %rax
movq %rax, 0x4328(%rsp)
movq 0x4328(%rsp), %rax
movq %rax, 0x620(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1367f5a
movq 0x620(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4324(%rsp) # imm = 0xFFFFFFFF
movl 0x4324(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4320(%rsp)
cmpl $0x1, 0x4320(%rsp)
jne 0x1367f5a
movq 0x620(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1367f28
movq 0x620(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1367f26
jmp 0x1367f58
movq 0x620(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x43d8(%rsp)
cmpq $0x0, 0x43d8(%rsp)
je 0x1367f56
movq 0x43d8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1367f58
jmp 0x1367f5a
movq 0x620(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1367fb5
movq %rax, %rdi
callq 0x678a0
jmp 0x1367fb7
leaq 0x1b18(%rsp), %rax
movq %rax, 0x2578(%rsp)
movq 0x2578(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x610(%rsp)
leaq 0x1b18(%rsp), %rax
movq %rax, 0x26e8(%rsp)
movq 0x26e8(%rsp), %rax
movq %rax, 0x4148(%rsp)
movq 0x4148(%rsp), %rax
movq %rax, 0x618(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13680a8
movq 0x618(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4144(%rsp) # imm = 0xFFFFFFFF
movl 0x4144(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4140(%rsp)
cmpl $0x1, 0x4140(%rsp)
jne 0x13680a8
movq 0x618(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1368076
movq 0x618(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1368074
jmp 0x13680a6
movq 0x618(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44c8(%rsp)
cmpq $0x0, 0x44c8(%rsp)
je 0x13680a4
movq 0x44c8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13680a6
jmp 0x13680a8
movq 0x618(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1368103
movq %rax, %rdi
callq 0x678a0
movq 0x610(%rsp), %rax
movq %rax, 0x1b60(%rsp)
movq 0x2178(%rsp), %rcx
movl 0x1bbc(%rsp), %eax
leaq 0x1ac8(%rsp), %rdx
movq %rdx, 0x29a0(%rsp)
movq %rcx, 0x2998(%rsp)
movl %eax, 0x2994(%rsp)
movq 0x2998(%rsp), %rax
movq %rax, 0x608(%rsp)
movb $0x0, 0x2993(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2994(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1ac8(%rsp), %r10
movq %r10, 0x32d0(%rsp)
movl %r9d, 0x32cc(%rsp)
movl %r8d, 0x32c8(%rsp)
movl %edi, 0x32c4(%rsp)
movq %rsi, 0x32b8(%rsp)
movq %rdx, 0x32b0(%rsp)
movl %ecx, 0x32ac(%rsp)
movq %rax, 0x32a0(%rsp)
movq 0x32d0(%rsp), %rcx
movq %rcx, 0x600(%rsp)
movq 0x32b8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x32b0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x32ac(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x32a0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x32cc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x32c8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x32c4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3dd8(%rsp)
movl $0x10, 0x3dd4(%rsp)
movq 0x3dd8(%rsp), %rax
movslq 0x3dd4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3dd4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x608(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1af0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13682cf
movq 0x608(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1b08(%rsp)
movb $0x1, 0x2993(%rsp)
testb $0x1, 0x2993(%rsp)
jne 0x1368410
leaq 0x1ac8(%rsp), %rax
movq %rax, 0x29a8(%rsp)
movq 0x29a8(%rsp), %rax
movq %rax, 0x3e68(%rsp)
movq 0x3e68(%rsp), %rax
movq %rax, 0x5f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13683b3
movq 0x5f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e64(%rsp) # imm = 0xFFFFFFFF
movl 0x3e64(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e60(%rsp)
cmpl $0x1, 0x3e60(%rsp)
jne 0x13683b3
movq 0x5f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1368381
movq 0x5f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x136837f
jmp 0x13683b1
movq 0x5f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4638(%rsp)
cmpq $0x0, 0x4638(%rsp)
je 0x13683af
movq 0x4638(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13683b1
jmp 0x13683b3
movq 0x5f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136840e
movq %rax, %rdi
callq 0x678a0
jmp 0x1368410
leaq 0x1ac8(%rsp), %rax
movq %rax, 0x2aa8(%rsp)
movq 0x2aa8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5e8(%rsp)
leaq 0x1ac8(%rsp), %rax
movq %rax, 0x26f0(%rsp)
movq 0x26f0(%rsp), %rax
movq %rax, 0x4138(%rsp)
movq 0x4138(%rsp), %rax
movq %rax, 0x5f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1368501
movq 0x5f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4134(%rsp) # imm = 0xFFFFFFFF
movl 0x4134(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4130(%rsp)
cmpl $0x1, 0x4130(%rsp)
jne 0x1368501
movq 0x5f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13684cf
movq 0x5f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13684cd
jmp 0x13684ff
movq 0x5f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44d0(%rsp)
cmpq $0x0, 0x44d0(%rsp)
je 0x13684fd
movq 0x44d0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13684ff
jmp 0x1368501
movq 0x5f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136855c
movq %rax, %rdi
callq 0x678a0
movq 0x5e8(%rsp), %rax
movq %rax, 0x1b10(%rsp)
movq 0x1b60(%rsp), %rax
movq %rax, 0x2bf8(%rsp)
movq 0x2bf8(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1aa0(%rsp)
movl $0x0, 0x1a9c(%rsp)
movl 0x1a9c(%rsp), %eax
cmpl 0x2158(%rsp), %eax
jge 0x1368670
movq 0x1bb0(%rsp), %rax
movq %rax, 0x2bf0(%rsp)
movq 0x2bf0(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1a60(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0x1a60(%rsp), %rsi
leaq 0x1aa0(%rsp), %rdx
callq 0x1453640
vmovaps %ymm0, 0x1a40(%rsp)
movq 0x1b10(%rsp), %rax
vmovaps 0x1a40(%rsp), %ymm0
movq %rax, 0x3038(%rsp)
vmovaps %ymm0, 0x3000(%rsp)
vmovaps 0x3000(%rsp), %ymm0
movq 0x3038(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x1bb0(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1bb0(%rsp)
movq 0x1b10(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1b10(%rsp)
movl 0x1a9c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1a9c(%rsp)
jmp 0x136859c
jmp 0x1368672
movl 0x1bbc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1bbc(%rsp)
jmp 0x136784d
movl $0x0, 0x2194(%rsp)
jmp 0x13735ba
movl 0x2148(%rsp), %eax
cmpl 0x2168(%rsp), %eax
jne 0x13691f5
movl 0x2144(%rsp), %eax
cmpl 0x2164(%rsp), %eax
jne 0x13691f5
cmpl $0x1, 0x213c(%rsp)
jne 0x13691f5
cmpl $0x1, 0x212c(%rsp)
jne 0x13691f5
movq 0x2178(%rsp), %rdi
movl 0x2168(%rsp), %esi
movl 0x2164(%rsp), %edx
movl 0x215c(%rsp), %ecx
movq 0x2150(%rsp), %r8
movl 0x214c(%rsp), %r9d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2178(%rsp), %rax
movq %rax, 0x2210(%rsp)
movq 0x2210(%rsp), %rcx
movq %rcx, 0x5d8(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x5e7(%rsp)
je 0x136877f
movq 0x5d8(%rsp), %rax
movq %rax, 0x3140(%rsp)
movq 0x3140(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x5e7(%rsp)
movb 0x5e7(%rsp), %al
testb $0x1, %al
jne 0x136878c
jmp 0x136879c
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x13735ba
movl $0x0, 0x1a3c(%rsp)
movl 0x1a3c(%rsp), %eax
cmpl 0x215c(%rsp), %eax
jge 0x13691e5
movq 0x2188(%rsp), %rcx
movl 0x1a3c(%rsp), %eax
leaq 0x19e8(%rsp), %rdx
movq %rdx, 0x23d8(%rsp)
movq %rcx, 0x23d0(%rsp)
movl %eax, 0x23cc(%rsp)
movq 0x23d0(%rsp), %rax
movq %rax, 0x5d0(%rsp)
movb $0x0, 0x23cb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x23cc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x19e8(%rsp), %r10
movq %r10, 0x37a0(%rsp)
movl %r9d, 0x379c(%rsp)
movl %r8d, 0x3798(%rsp)
movl %edi, 0x3794(%rsp)
movq %rsi, 0x3788(%rsp)
movq %rdx, 0x3780(%rsp)
movl %ecx, 0x377c(%rsp)
movq %rax, 0x3770(%rsp)
movq 0x37a0(%rsp), %rcx
movq %rcx, 0x5c8(%rsp)
movq 0x3788(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3780(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x377c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3770(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x379c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3798(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3794(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c78(%rsp)
movl $0x10, 0x3c74(%rsp)
movq 0x3c78(%rsp), %rax
movslq 0x3c74(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c74(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5d0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1a10(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1368977
movq 0x5d0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1a28(%rsp)
movb $0x1, 0x23cb(%rsp)
testb $0x1, 0x23cb(%rsp)
jne 0x1368ab8
leaq 0x19e8(%rsp), %rax
movq %rax, 0x2600(%rsp)
movq 0x2600(%rsp), %rax
movq %rax, 0x4318(%rsp)
movq 0x4318(%rsp), %rax
movq %rax, 0x5c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1368a5b
movq 0x5c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4314(%rsp) # imm = 0xFFFFFFFF
movl 0x4314(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4310(%rsp)
cmpl $0x1, 0x4310(%rsp)
jne 0x1368a5b
movq 0x5c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1368a29
movq 0x5c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1368a27
jmp 0x1368a59
movq 0x5c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x43e0(%rsp)
cmpq $0x0, 0x43e0(%rsp)
je 0x1368a57
movq 0x43e0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1368a59
jmp 0x1368a5b
movq 0x5c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1368ab6
movq %rax, %rdi
callq 0x678a0
jmp 0x1368ab8
leaq 0x19e8(%rsp), %rax
movq %rax, 0x2570(%rsp)
movq 0x2570(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5b0(%rsp)
leaq 0x19e8(%rsp), %rax
movq %rax, 0x26f8(%rsp)
movq 0x26f8(%rsp), %rax
movq %rax, 0x4128(%rsp)
movq 0x4128(%rsp), %rax
movq %rax, 0x5b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1368ba9
movq 0x5b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4124(%rsp) # imm = 0xFFFFFFFF
movl 0x4124(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4120(%rsp)
cmpl $0x1, 0x4120(%rsp)
jne 0x1368ba9
movq 0x5b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1368b77
movq 0x5b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1368b75
jmp 0x1368ba7
movq 0x5b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44d8(%rsp)
cmpq $0x0, 0x44d8(%rsp)
je 0x1368ba5
movq 0x44d8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1368ba7
jmp 0x1368ba9
movq 0x5b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1368c04
movq %rax, %rdi
callq 0x678a0
movq 0x5b0(%rsp), %rax
movq %rax, 0x1a30(%rsp)
movq 0x2180(%rsp), %rax
movq %rax, 0x2568(%rsp)
movq 0x2568(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x19e0(%rsp)
movq 0x2178(%rsp), %rcx
movl 0x1a3c(%rsp), %eax
leaq 0x1990(%rsp), %rdx
movq %rdx, 0x2980(%rsp)
movq %rcx, 0x2978(%rsp)
movl %eax, 0x2974(%rsp)
movq 0x2978(%rsp), %rax
movq %rax, 0x5a8(%rsp)
movb $0x0, 0x2973(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2974(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1990(%rsp), %r10
movq %r10, 0x3308(%rsp)
movl %r9d, 0x3304(%rsp)
movl %r8d, 0x3300(%rsp)
movl %edi, 0x32fc(%rsp)
movq %rsi, 0x32f0(%rsp)
movq %rdx, 0x32e8(%rsp)
movl %ecx, 0x32e4(%rsp)
movq %rax, 0x32d8(%rsp)
movq 0x3308(%rsp), %rcx
movq %rcx, 0x5a0(%rsp)
movq 0x32f0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x32e8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x32e4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x32d8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3304(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3300(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x32fc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3dc8(%rsp)
movl $0x10, 0x3dc4(%rsp)
movq 0x3dc8(%rsp), %rax
movslq 0x3dc4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3dc4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5a8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x19b8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1368df3
movq 0x5a8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x19d0(%rsp)
movb $0x1, 0x2973(%rsp)
testb $0x1, 0x2973(%rsp)
jne 0x1368f34
leaq 0x1990(%rsp), %rax
movq %rax, 0x2988(%rsp)
movq 0x2988(%rsp), %rax
movq %rax, 0x3e78(%rsp)
movq 0x3e78(%rsp), %rax
movq %rax, 0x598(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1368ed7
movq 0x598(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e74(%rsp) # imm = 0xFFFFFFFF
movl 0x3e74(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e70(%rsp)
cmpl $0x1, 0x3e70(%rsp)
jne 0x1368ed7
movq 0x598(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1368ea5
movq 0x598(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1368ea3
jmp 0x1368ed5
movq 0x598(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4630(%rsp)
cmpq $0x0, 0x4630(%rsp)
je 0x1368ed3
movq 0x4630(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1368ed5
jmp 0x1368ed7
movq 0x598(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1368f32
movq %rax, %rdi
callq 0x678a0
jmp 0x1368f34
leaq 0x1990(%rsp), %rax
movq %rax, 0x2aa0(%rsp)
movq 0x2aa0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x588(%rsp)
leaq 0x1990(%rsp), %rax
movq %rax, 0x2700(%rsp)
movq 0x2700(%rsp), %rax
movq %rax, 0x4118(%rsp)
movq 0x4118(%rsp), %rax
movq %rax, 0x590(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1369025
movq 0x590(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4114(%rsp) # imm = 0xFFFFFFFF
movl 0x4114(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4110(%rsp)
cmpl $0x1, 0x4110(%rsp)
jne 0x1369025
movq 0x590(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1368ff3
movq 0x590(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1368ff1
jmp 0x1369023
movq 0x590(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44e0(%rsp)
cmpq $0x0, 0x44e0(%rsp)
je 0x1369021
movq 0x44e0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1369023
jmp 0x1369025
movq 0x590(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1369080
movq %rax, %rdi
callq 0x678a0
movq 0x588(%rsp), %rax
movq %rax, 0x19d8(%rsp)
movl $0x0, 0x198c(%rsp)
movl 0x198c(%rsp), %eax
cmpl 0x2158(%rsp), %eax
jge 0x13691cd
movq 0x1a30(%rsp), %rax
movq %rax, 0x2be8(%rsp)
movq 0x2be8(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1960(%rsp)
movq 0x19e0(%rsp), %rax
movq %rax, 0x46c8(%rsp)
movq 0x46c8(%rsp), %rax
vmovss (%rax), %xmm0
vmovss %xmm0, 0x46c4(%rsp)
vbroadcastss 0x46c4(%rsp), %ymm0
vmovaps %ymm0, 0x46a0(%rsp)
vmovaps 0x46a0(%rsp), %ymm0
vmovaps %ymm0, 0x1940(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0x1960(%rsp), %rsi
leaq 0x1940(%rsp), %rdx
callq 0x1453640
vmovaps %ymm0, 0x1920(%rsp)
movq 0x19d8(%rsp), %rax
vmovaps 0x1920(%rsp), %ymm0
movq %rax, 0x2ff8(%rsp)
vmovaps %ymm0, 0x2fc0(%rsp)
vmovaps 0x2fc0(%rsp), %ymm0
movq 0x2ff8(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x1a30(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1a30(%rsp)
movq 0x19e0(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x19e0(%rsp)
movq 0x19d8(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x19d8(%rsp)
movl 0x198c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x198c(%rsp)
jmp 0x136909b
jmp 0x13691cf
movl 0x1a3c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1a3c(%rsp)
jmp 0x13687a7
movl $0x0, 0x2194(%rsp)
jmp 0x13735ba
cmpl $0x1, 0x2168(%rsp)
jne 0x136a13b
cmpl $0x1, 0x2164(%rsp)
jne 0x136a13b
movl 0x213c(%rsp), %eax
cmpl 0x215c(%rsp), %eax
jne 0x136a13b
movq 0x2178(%rsp), %rdi
movl 0x2148(%rsp), %esi
movl 0x2144(%rsp), %edx
movl 0x213c(%rsp), %ecx
movq 0x2130(%rsp), %r8
movl 0x212c(%rsp), %r9d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2178(%rsp), %rax
movq %rax, 0x2208(%rsp)
movq 0x2208(%rsp), %rcx
movq %rcx, 0x578(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x587(%rsp)
je 0x13692c8
movq 0x578(%rsp), %rax
movq %rax, 0x3148(%rsp)
movq 0x3148(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x587(%rsp)
movb 0x587(%rsp), %al
testb $0x1, %al
jne 0x13692d5
jmp 0x13692e5
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x13735ba
movl $0x0, 0x191c(%rsp)
movl 0x191c(%rsp), %eax
cmpl 0x213c(%rsp), %eax
jge 0x136a12b
movq 0x2188(%rsp), %rcx
movl 0x191c(%rsp), %eax
leaq 0x18c8(%rsp), %rdx
movq %rdx, 0x23c0(%rsp)
movq %rcx, 0x23b8(%rsp)
movl %eax, 0x23b4(%rsp)
movq 0x23b8(%rsp), %rax
movq %rax, 0x570(%rsp)
movb $0x0, 0x23b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x23b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x18c8(%rsp), %r10
movq %r10, 0x37d8(%rsp)
movl %r9d, 0x37d4(%rsp)
movl %r8d, 0x37d0(%rsp)
movl %edi, 0x37cc(%rsp)
movq %rsi, 0x37c0(%rsp)
movq %rdx, 0x37b8(%rsp)
movl %ecx, 0x37b4(%rsp)
movq %rax, 0x37a8(%rsp)
movq 0x37d8(%rsp), %rcx
movq %rcx, 0x568(%rsp)
movq 0x37c0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x37b8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x37b4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x37a8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x37d4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x37d0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x37cc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c68(%rsp)
movl $0x10, 0x3c64(%rsp)
movq 0x3c68(%rsp), %rax
movslq 0x3c64(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c64(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x570(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x18f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13694c0
movq 0x570(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1908(%rsp)
movb $0x1, 0x23b3(%rsp)
testb $0x1, 0x23b3(%rsp)
jne 0x1369601
leaq 0x18c8(%rsp), %rax
movq %rax, 0x2608(%rsp)
movq 0x2608(%rsp), %rax
movq %rax, 0x4308(%rsp)
movq 0x4308(%rsp), %rax
movq %rax, 0x560(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13695a4
movq 0x560(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4304(%rsp) # imm = 0xFFFFFFFF
movl 0x4304(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4300(%rsp)
cmpl $0x1, 0x4300(%rsp)
jne 0x13695a4
movq 0x560(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1369572
movq 0x560(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1369570
jmp 0x13695a2
movq 0x560(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x43e8(%rsp)
cmpq $0x0, 0x43e8(%rsp)
je 0x13695a0
movq 0x43e8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13695a2
jmp 0x13695a4
movq 0x560(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13695ff
movq %rax, %rdi
callq 0x678a0
jmp 0x1369601
leaq 0x18c8(%rsp), %rax
movq %rax, 0x2560(%rsp)
movq 0x2560(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x550(%rsp)
leaq 0x18c8(%rsp), %rax
movq %rax, 0x2708(%rsp)
movq 0x2708(%rsp), %rax
movq %rax, 0x4108(%rsp)
movq 0x4108(%rsp), %rax
movq %rax, 0x558(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13696f2
movq 0x558(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4104(%rsp) # imm = 0xFFFFFFFF
movl 0x4104(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4100(%rsp)
cmpl $0x1, 0x4100(%rsp)
jne 0x13696f2
movq 0x558(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13696c0
movq 0x558(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13696be
jmp 0x13696f0
movq 0x558(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44e8(%rsp)
cmpq $0x0, 0x44e8(%rsp)
je 0x13696ee
movq 0x44e8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13696f0
jmp 0x13696f2
movq 0x558(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136974d
movq %rax, %rdi
callq 0x678a0
movq 0x550(%rsp), %rax
movq %rax, 0x1910(%rsp)
movq 0x2180(%rsp), %rcx
movl 0x191c(%rsp), %eax
leaq 0x1878(%rsp), %rdx
movq %rdx, 0x23a8(%rsp)
movq %rcx, 0x23a0(%rsp)
movl %eax, 0x239c(%rsp)
movq 0x23a0(%rsp), %rax
movq %rax, 0x548(%rsp)
movb $0x0, 0x239b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x239c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1878(%rsp), %r10
movq %r10, 0x3810(%rsp)
movl %r9d, 0x380c(%rsp)
movl %r8d, 0x3808(%rsp)
movl %edi, 0x3804(%rsp)
movq %rsi, 0x37f8(%rsp)
movq %rdx, 0x37f0(%rsp)
movl %ecx, 0x37ec(%rsp)
movq %rax, 0x37e0(%rsp)
movq 0x3810(%rsp), %rcx
movq %rcx, 0x540(%rsp)
movq 0x37f8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x37f0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x37ec(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x37e0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x380c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3808(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3804(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c58(%rsp)
movl $0x10, 0x3c54(%rsp)
movq 0x3c58(%rsp), %rax
movslq 0x3c54(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c54(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x548(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x18a0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1369919
movq 0x548(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x18b8(%rsp)
movb $0x1, 0x239b(%rsp)
testb $0x1, 0x239b(%rsp)
jne 0x1369a5a
leaq 0x1878(%rsp), %rax
movq %rax, 0x2610(%rsp)
movq 0x2610(%rsp), %rax
movq %rax, 0x42f8(%rsp)
movq 0x42f8(%rsp), %rax
movq %rax, 0x538(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13699fd
movq 0x538(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42f4(%rsp) # imm = 0xFFFFFFFF
movl 0x42f4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42f0(%rsp)
cmpl $0x1, 0x42f0(%rsp)
jne 0x13699fd
movq 0x538(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13699cb
movq 0x538(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13699c9
jmp 0x13699fb
movq 0x538(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x43f0(%rsp)
cmpq $0x0, 0x43f0(%rsp)
je 0x13699f9
movq 0x43f0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13699fb
jmp 0x13699fd
movq 0x538(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1369a58
movq %rax, %rdi
callq 0x678a0
jmp 0x1369a5a
leaq 0x1878(%rsp), %rax
movq %rax, 0x2558(%rsp)
movq 0x2558(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x528(%rsp)
leaq 0x1878(%rsp), %rax
movq %rax, 0x2710(%rsp)
movq 0x2710(%rsp), %rax
movq %rax, 0x40f8(%rsp)
movq 0x40f8(%rsp), %rax
movq %rax, 0x530(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1369b4b
movq 0x530(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40f4(%rsp) # imm = 0xFFFFFFFF
movl 0x40f4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40f0(%rsp)
cmpl $0x1, 0x40f0(%rsp)
jne 0x1369b4b
movq 0x530(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1369b19
movq 0x530(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1369b17
jmp 0x1369b49
movq 0x530(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44f0(%rsp)
cmpq $0x0, 0x44f0(%rsp)
je 0x1369b47
movq 0x44f0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1369b49
jmp 0x1369b4b
movq 0x530(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1369ba6
movq %rax, %rdi
callq 0x678a0
movq 0x528(%rsp), %rax
movq %rax, 0x18c0(%rsp)
movq 0x2178(%rsp), %rcx
movl 0x191c(%rsp), %eax
leaq 0x1828(%rsp), %rdx
movq %rdx, 0x2960(%rsp)
movq %rcx, 0x2958(%rsp)
movl %eax, 0x2954(%rsp)
movq 0x2958(%rsp), %rax
movq %rax, 0x520(%rsp)
movb $0x0, 0x2953(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2954(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1828(%rsp), %r10
movq %r10, 0x3340(%rsp)
movl %r9d, 0x333c(%rsp)
movl %r8d, 0x3338(%rsp)
movl %edi, 0x3334(%rsp)
movq %rsi, 0x3328(%rsp)
movq %rdx, 0x3320(%rsp)
movl %ecx, 0x331c(%rsp)
movq %rax, 0x3310(%rsp)
movq 0x3340(%rsp), %rcx
movq %rcx, 0x518(%rsp)
movq 0x3328(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3320(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x331c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3310(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x333c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3338(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3334(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3db8(%rsp)
movl $0x10, 0x3db4(%rsp)
movq 0x3db8(%rsp), %rax
movslq 0x3db4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3db4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x520(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1850(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1369d72
movq 0x520(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1868(%rsp)
movb $0x1, 0x2953(%rsp)
testb $0x1, 0x2953(%rsp)
jne 0x1369eb3
leaq 0x1828(%rsp), %rax
movq %rax, 0x2968(%rsp)
movq 0x2968(%rsp), %rax
movq %rax, 0x3e88(%rsp)
movq 0x3e88(%rsp), %rax
movq %rax, 0x510(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1369e56
movq 0x510(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e84(%rsp) # imm = 0xFFFFFFFF
movl 0x3e84(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e80(%rsp)
cmpl $0x1, 0x3e80(%rsp)
jne 0x1369e56
movq 0x510(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1369e24
movq 0x510(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1369e22
jmp 0x1369e54
movq 0x510(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4628(%rsp)
cmpq $0x0, 0x4628(%rsp)
je 0x1369e52
movq 0x4628(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1369e54
jmp 0x1369e56
movq 0x510(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1369eb1
movq %rax, %rdi
callq 0x678a0
jmp 0x1369eb3
leaq 0x1828(%rsp), %rax
movq %rax, 0x2a98(%rsp)
movq 0x2a98(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x500(%rsp)
leaq 0x1828(%rsp), %rax
movq %rax, 0x2718(%rsp)
movq 0x2718(%rsp), %rax
movq %rax, 0x40e8(%rsp)
movq 0x40e8(%rsp), %rax
movq %rax, 0x508(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1369fa4
movq 0x508(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40e4(%rsp) # imm = 0xFFFFFFFF
movl 0x40e4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40e0(%rsp)
cmpl $0x1, 0x40e0(%rsp)
jne 0x1369fa4
movq 0x508(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1369f72
movq 0x508(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1369f70
jmp 0x1369fa2
movq 0x508(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44f8(%rsp)
cmpq $0x0, 0x44f8(%rsp)
je 0x1369fa0
movq 0x44f8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1369fa2
jmp 0x1369fa4
movq 0x508(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1369fff
movq %rax, %rdi
callq 0x678a0
movq 0x500(%rsp), %rax
movq %rax, 0x1870(%rsp)
movq 0x1910(%rsp), %rax
movq %rax, 0x2be0(%rsp)
movq 0x2be0(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1800(%rsp)
movl $0x0, 0x17fc(%rsp)
movl 0x17fc(%rsp), %eax
cmpl 0x2138(%rsp), %eax
jge 0x136a113
movq 0x18c0(%rsp), %rax
movq %rax, 0x2bd8(%rsp)
movq 0x2bd8(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x17c0(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0x1800(%rsp), %rsi
leaq 0x17c0(%rsp), %rdx
callq 0x1453640
vmovaps %ymm0, 0x17a0(%rsp)
movq 0x1870(%rsp), %rax
vmovaps 0x17a0(%rsp), %ymm0
movq %rax, 0x2fb8(%rsp)
vmovaps %ymm0, 0x2f80(%rsp)
vmovaps 0x2f80(%rsp), %ymm0
movq 0x2fb8(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x18c0(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x18c0(%rsp)
movq 0x1870(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1870(%rsp)
movl 0x17fc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x17fc(%rsp)
jmp 0x136a03f
jmp 0x136a115
movl 0x191c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x191c(%rsp)
jmp 0x13692f0
movl $0x0, 0x2194(%rsp)
jmp 0x13735ba
movl 0x2148(%rsp), %eax
cmpl 0x2168(%rsp), %eax
jne 0x136ac98
movl 0x2144(%rsp), %eax
cmpl 0x2164(%rsp), %eax
jne 0x136ac98
cmpl $0x1, 0x215c(%rsp)
jne 0x136ac98
cmpl $0x1, 0x214c(%rsp)
jne 0x136ac98
movq 0x2178(%rsp), %rdi
movl 0x2148(%rsp), %esi
movl 0x2144(%rsp), %edx
movl 0x213c(%rsp), %ecx
movq 0x2130(%rsp), %r8
movl 0x212c(%rsp), %r9d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2178(%rsp), %rax
movq %rax, 0x2200(%rsp)
movq 0x2200(%rsp), %rcx
movq %rcx, 0x4f0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x4ff(%rsp)
je 0x136a222
movq 0x4f0(%rsp), %rax
movq %rax, 0x3150(%rsp)
movq 0x3150(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x4ff(%rsp)
movb 0x4ff(%rsp), %al
testb $0x1, %al
jne 0x136a22f
jmp 0x136a23f
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x13735ba
movl $0x0, 0x179c(%rsp)
movl 0x179c(%rsp), %eax
cmpl 0x213c(%rsp), %eax
jge 0x136ac88
movq 0x2188(%rsp), %rax
movq %rax, 0x2550(%rsp)
movq 0x2550(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1790(%rsp)
movq 0x2180(%rsp), %rcx
movl 0x179c(%rsp), %eax
leaq 0x1740(%rsp), %rdx
movq %rdx, 0x2390(%rsp)
movq %rcx, 0x2388(%rsp)
movl %eax, 0x2384(%rsp)
movq 0x2388(%rsp), %rax
movq %rax, 0x4e8(%rsp)
movb $0x0, 0x2383(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2384(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1740(%rsp), %r10
movq %r10, 0x3848(%rsp)
movl %r9d, 0x3844(%rsp)
movl %r8d, 0x3840(%rsp)
movl %edi, 0x383c(%rsp)
movq %rsi, 0x3830(%rsp)
movq %rdx, 0x3828(%rsp)
movl %ecx, 0x3824(%rsp)
movq %rax, 0x3818(%rsp)
movq 0x3848(%rsp), %rcx
movq %rcx, 0x4e0(%rsp)
movq 0x3830(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3828(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3824(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3818(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3844(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3840(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x383c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c48(%rsp)
movl $0x10, 0x3c44(%rsp)
movq 0x3c48(%rsp), %rax
movslq 0x3c44(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c44(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4e8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1768(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x136a43d
movq 0x4e8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1780(%rsp)
movb $0x1, 0x2383(%rsp)
testb $0x1, 0x2383(%rsp)
jne 0x136a57e
leaq 0x1740(%rsp), %rax
movq %rax, 0x2618(%rsp)
movq 0x2618(%rsp), %rax
movq %rax, 0x42e8(%rsp)
movq 0x42e8(%rsp), %rax
movq %rax, 0x4d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x136a521
movq 0x4d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42e4(%rsp) # imm = 0xFFFFFFFF
movl 0x42e4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42e0(%rsp)
cmpl $0x1, 0x42e0(%rsp)
jne 0x136a521
movq 0x4d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x136a4ef
movq 0x4d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x136a4ed
jmp 0x136a51f
movq 0x4d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x43f8(%rsp)
cmpq $0x0, 0x43f8(%rsp)
je 0x136a51d
movq 0x43f8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x136a51f
jmp 0x136a521
movq 0x4d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136a57c
movq %rax, %rdi
callq 0x678a0
jmp 0x136a57e
leaq 0x1740(%rsp), %rax
movq %rax, 0x2548(%rsp)
movq 0x2548(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4c8(%rsp)
leaq 0x1740(%rsp), %rax
movq %rax, 0x2720(%rsp)
movq 0x2720(%rsp), %rax
movq %rax, 0x40d8(%rsp)
movq 0x40d8(%rsp), %rax
movq %rax, 0x4d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x136a66f
movq 0x4d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40d4(%rsp) # imm = 0xFFFFFFFF
movl 0x40d4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40d0(%rsp)
cmpl $0x1, 0x40d0(%rsp)
jne 0x136a66f
movq 0x4d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x136a63d
movq 0x4d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x136a63b
jmp 0x136a66d
movq 0x4d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4500(%rsp)
cmpq $0x0, 0x4500(%rsp)
je 0x136a66b
movq 0x4500(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x136a66d
jmp 0x136a66f
movq 0x4d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136a6ca
movq %rax, %rdi
callq 0x678a0
movq 0x4c8(%rsp), %rax
movq %rax, 0x1788(%rsp)
movq 0x2178(%rsp), %rcx
movl 0x179c(%rsp), %eax
leaq 0x16f0(%rsp), %rdx
movq %rdx, 0x2940(%rsp)
movq %rcx, 0x2938(%rsp)
movl %eax, 0x2934(%rsp)
movq 0x2938(%rsp), %rax
movq %rax, 0x4c0(%rsp)
movb $0x0, 0x2933(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2934(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x16f0(%rsp), %r10
movq %r10, 0x3378(%rsp)
movl %r9d, 0x3374(%rsp)
movl %r8d, 0x3370(%rsp)
movl %edi, 0x336c(%rsp)
movq %rsi, 0x3360(%rsp)
movq %rdx, 0x3358(%rsp)
movl %ecx, 0x3354(%rsp)
movq %rax, 0x3348(%rsp)
movq 0x3378(%rsp), %rcx
movq %rcx, 0x4b8(%rsp)
movq 0x3360(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3358(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3354(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3348(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3374(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3370(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x336c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3da8(%rsp)
movl $0x10, 0x3da4(%rsp)
movq 0x3da8(%rsp), %rax
movslq 0x3da4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3da4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4c0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1718(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x136a896
movq 0x4c0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1730(%rsp)
movb $0x1, 0x2933(%rsp)
testb $0x1, 0x2933(%rsp)
jne 0x136a9d7
leaq 0x16f0(%rsp), %rax
movq %rax, 0x2948(%rsp)
movq 0x2948(%rsp), %rax
movq %rax, 0x3e98(%rsp)
movq 0x3e98(%rsp), %rax
movq %rax, 0x4b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x136a97a
movq 0x4b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e94(%rsp) # imm = 0xFFFFFFFF
movl 0x3e94(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e90(%rsp)
cmpl $0x1, 0x3e90(%rsp)
jne 0x136a97a
movq 0x4b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x136a948
movq 0x4b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x136a946
jmp 0x136a978
movq 0x4b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4620(%rsp)
cmpq $0x0, 0x4620(%rsp)
je 0x136a976
movq 0x4620(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x136a978
jmp 0x136a97a
movq 0x4b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136a9d5
movq %rax, %rdi
callq 0x678a0
jmp 0x136a9d7
leaq 0x16f0(%rsp), %rax
movq %rax, 0x2a90(%rsp)
movq 0x2a90(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4a0(%rsp)
leaq 0x16f0(%rsp), %rax
movq %rax, 0x2728(%rsp)
movq 0x2728(%rsp), %rax
movq %rax, 0x40c8(%rsp)
movq 0x40c8(%rsp), %rax
movq %rax, 0x4a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x136aac8
movq 0x4a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40c4(%rsp) # imm = 0xFFFFFFFF
movl 0x40c4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40c0(%rsp)
cmpl $0x1, 0x40c0(%rsp)
jne 0x136aac8
movq 0x4a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x136aa96
movq 0x4a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x136aa94
jmp 0x136aac6
movq 0x4a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4508(%rsp)
cmpq $0x0, 0x4508(%rsp)
je 0x136aac4
movq 0x4508(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x136aac6
jmp 0x136aac8
movq 0x4a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136ab23
movq %rax, %rdi
callq 0x678a0
movq 0x4a0(%rsp), %rax
movq %rax, 0x1738(%rsp)
movl $0x0, 0x16ec(%rsp)
movl 0x16ec(%rsp), %eax
cmpl 0x2138(%rsp), %eax
jge 0x136ac70
movq 0x1790(%rsp), %rax
movq %rax, 0x4698(%rsp)
movq 0x4698(%rsp), %rax
vmovss (%rax), %xmm0
vmovss %xmm0, 0x4694(%rsp)
vbroadcastss 0x4694(%rsp), %ymm0
vmovaps %ymm0, 0x4660(%rsp)
vmovaps 0x4660(%rsp), %ymm0
vmovaps %ymm0, 0x16c0(%rsp)
movq 0x1788(%rsp), %rax
movq %rax, 0x2bd0(%rsp)
movq 0x2bd0(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x16a0(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0x16c0(%rsp), %rsi
leaq 0x16a0(%rsp), %rdx
callq 0x1453640
vmovaps %ymm0, 0x1680(%rsp)
movq 0x1738(%rsp), %rax
vmovaps 0x1680(%rsp), %ymm0
movq %rax, 0x2f78(%rsp)
vmovaps %ymm0, 0x2f40(%rsp)
vmovaps 0x2f40(%rsp), %ymm0
movq 0x2f78(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x1790(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x1790(%rsp)
movq 0x1788(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1788(%rsp)
movq 0x1738(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1738(%rsp)
movl 0x16ec(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x16ec(%rsp)
jmp 0x136ab3e
jmp 0x136ac72
movl 0x179c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x179c(%rsp)
jmp 0x136a24a
movl $0x0, 0x2194(%rsp)
jmp 0x13735ba
cmpl $0x1, 0x2168(%rsp)
je 0x136bc3d
cmpl $0x1, 0x2148(%rsp)
jne 0x136bc3d
movl 0x2144(%rsp), %eax
cmpl 0x2164(%rsp), %eax
jne 0x136bc3d
movl 0x213c(%rsp), %eax
cmpl 0x215c(%rsp), %eax
jne 0x136bc3d
movq 0x2178(%rsp), %rdi
movl 0x2168(%rsp), %esi
movl 0x2164(%rsp), %edx
movl 0x215c(%rsp), %ecx
movq 0x2150(%rsp), %r8
movl 0x214c(%rsp), %r9d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2178(%rsp), %rax
movq %rax, 0x21f8(%rsp)
movq 0x21f8(%rsp), %rcx
movq %rcx, 0x490(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x49f(%rsp)
je 0x136ad7f
movq 0x490(%rsp), %rax
movq %rax, 0x3158(%rsp)
movq 0x3158(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x49f(%rsp)
movb 0x49f(%rsp), %al
testb $0x1, %al
jne 0x136ad8c
jmp 0x136ad9c
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x13735ba
movl $0x0, 0x167c(%rsp)
movl 0x167c(%rsp), %eax
cmpl 0x213c(%rsp), %eax
jge 0x136bc2d
movq 0x2188(%rsp), %rcx
movl 0x167c(%rsp), %eax
leaq 0x1628(%rsp), %rdx
movq %rdx, 0x2378(%rsp)
movq %rcx, 0x2370(%rsp)
movl %eax, 0x236c(%rsp)
movq 0x2370(%rsp), %rax
movq %rax, 0x488(%rsp)
movb $0x0, 0x236b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x236c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1628(%rsp), %r10
movq %r10, 0x3880(%rsp)
movl %r9d, 0x387c(%rsp)
movl %r8d, 0x3878(%rsp)
movl %edi, 0x3874(%rsp)
movq %rsi, 0x3868(%rsp)
movq %rdx, 0x3860(%rsp)
movl %ecx, 0x385c(%rsp)
movq %rax, 0x3850(%rsp)
movq 0x3880(%rsp), %rcx
movq %rcx, 0x480(%rsp)
movq 0x3868(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3860(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x385c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3850(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x387c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3878(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3874(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c38(%rsp)
movl $0x10, 0x3c34(%rsp)
movq 0x3c38(%rsp), %rax
movslq 0x3c34(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c34(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x488(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1650(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x136af77
movq 0x488(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1668(%rsp)
movb $0x1, 0x236b(%rsp)
testb $0x1, 0x236b(%rsp)
jne 0x136b0b8
leaq 0x1628(%rsp), %rax
movq %rax, 0x2620(%rsp)
movq 0x2620(%rsp), %rax
movq %rax, 0x42d8(%rsp)
movq 0x42d8(%rsp), %rax
movq %rax, 0x478(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x136b05b
movq 0x478(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42d4(%rsp) # imm = 0xFFFFFFFF
movl 0x42d4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42d0(%rsp)
cmpl $0x1, 0x42d0(%rsp)
jne 0x136b05b
movq 0x478(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x136b029
movq 0x478(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x136b027
jmp 0x136b059
movq 0x478(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4400(%rsp)
cmpq $0x0, 0x4400(%rsp)
je 0x136b057
movq 0x4400(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x136b059
jmp 0x136b05b
movq 0x478(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136b0b6
movq %rax, %rdi
callq 0x678a0
jmp 0x136b0b8
leaq 0x1628(%rsp), %rax
movq %rax, 0x2540(%rsp)
movq 0x2540(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x468(%rsp)
leaq 0x1628(%rsp), %rax
movq %rax, 0x2730(%rsp)
movq 0x2730(%rsp), %rax
movq %rax, 0x40b8(%rsp)
movq 0x40b8(%rsp), %rax
movq %rax, 0x470(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x136b1a9
movq 0x470(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40b4(%rsp) # imm = 0xFFFFFFFF
movl 0x40b4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40b0(%rsp)
cmpl $0x1, 0x40b0(%rsp)
jne 0x136b1a9
movq 0x470(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x136b177
movq 0x470(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x136b175
jmp 0x136b1a7
movq 0x470(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4510(%rsp)
cmpq $0x0, 0x4510(%rsp)
je 0x136b1a5
movq 0x4510(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x136b1a7
jmp 0x136b1a9
movq 0x470(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136b204
movq %rax, %rdi
callq 0x678a0
movq 0x468(%rsp), %rax
movq %rax, 0x1670(%rsp)
movq 0x2180(%rsp), %rcx
movl 0x167c(%rsp), %eax
leaq 0x15d8(%rsp), %rdx
movq %rdx, 0x2360(%rsp)
movq %rcx, 0x2358(%rsp)
movl %eax, 0x2354(%rsp)
movq 0x2358(%rsp), %rax
movq %rax, 0x460(%rsp)
movb $0x0, 0x2353(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2354(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x15d8(%rsp), %r10
movq %r10, 0x38b8(%rsp)
movl %r9d, 0x38b4(%rsp)
movl %r8d, 0x38b0(%rsp)
movl %edi, 0x38ac(%rsp)
movq %rsi, 0x38a0(%rsp)
movq %rdx, 0x3898(%rsp)
movl %ecx, 0x3894(%rsp)
movq %rax, 0x3888(%rsp)
movq 0x38b8(%rsp), %rcx
movq %rcx, 0x458(%rsp)
movq 0x38a0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3898(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3894(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3888(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x38b4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x38b0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x38ac(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c28(%rsp)
movl $0x10, 0x3c24(%rsp)
movq 0x3c28(%rsp), %rax
movslq 0x3c24(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c24(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x460(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1600(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x136b3d0
movq 0x460(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1618(%rsp)
movb $0x1, 0x2353(%rsp)
testb $0x1, 0x2353(%rsp)
jne 0x136b511
leaq 0x15d8(%rsp), %rax
movq %rax, 0x2628(%rsp)
movq 0x2628(%rsp), %rax
movq %rax, 0x42c8(%rsp)
movq 0x42c8(%rsp), %rax
movq %rax, 0x450(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x136b4b4
movq 0x450(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42c4(%rsp) # imm = 0xFFFFFFFF
movl 0x42c4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42c0(%rsp)
cmpl $0x1, 0x42c0(%rsp)
jne 0x136b4b4
movq 0x450(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x136b482
movq 0x450(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x136b480
jmp 0x136b4b2
movq 0x450(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4408(%rsp)
cmpq $0x0, 0x4408(%rsp)
je 0x136b4b0
movq 0x4408(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x136b4b2
jmp 0x136b4b4
movq 0x450(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136b50f
movq %rax, %rdi
callq 0x678a0
jmp 0x136b511
leaq 0x15d8(%rsp), %rax
movq %rax, 0x2538(%rsp)
movq 0x2538(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x440(%rsp)
leaq 0x15d8(%rsp), %rax
movq %rax, 0x2738(%rsp)
movq 0x2738(%rsp), %rax
movq %rax, 0x40a8(%rsp)
movq 0x40a8(%rsp), %rax
movq %rax, 0x448(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x136b602
movq 0x448(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40a4(%rsp) # imm = 0xFFFFFFFF
movl 0x40a4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40a0(%rsp)
cmpl $0x1, 0x40a0(%rsp)
jne 0x136b602
movq 0x448(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x136b5d0
movq 0x448(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x136b5ce
jmp 0x136b600
movq 0x448(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4518(%rsp)
cmpq $0x0, 0x4518(%rsp)
je 0x136b5fe
movq 0x4518(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x136b600
jmp 0x136b602
movq 0x448(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136b65d
movq %rax, %rdi
callq 0x678a0
movq 0x440(%rsp), %rax
movq %rax, 0x1620(%rsp)
movq 0x2178(%rsp), %rcx
movl 0x167c(%rsp), %eax
leaq 0x1588(%rsp), %rdx
movq %rdx, 0x2920(%rsp)
movq %rcx, 0x2918(%rsp)
movl %eax, 0x2914(%rsp)
movq 0x2918(%rsp), %rax
movq %rax, 0x438(%rsp)
movb $0x0, 0x2913(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2914(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1588(%rsp), %r10
movq %r10, 0x33b0(%rsp)
movl %r9d, 0x33ac(%rsp)
movl %r8d, 0x33a8(%rsp)
movl %edi, 0x33a4(%rsp)
movq %rsi, 0x3398(%rsp)
movq %rdx, 0x3390(%rsp)
movl %ecx, 0x338c(%rsp)
movq %rax, 0x3380(%rsp)
movq 0x33b0(%rsp), %rcx
movq %rcx, 0x430(%rsp)
movq 0x3398(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3390(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x338c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3380(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x33ac(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x33a8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x33a4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d98(%rsp)
movl $0x10, 0x3d94(%rsp)
movq 0x3d98(%rsp), %rax
movslq 0x3d94(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d94(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x438(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x15b0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x136b829
movq 0x438(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x15c8(%rsp)
movb $0x1, 0x2913(%rsp)
testb $0x1, 0x2913(%rsp)
jne 0x136b96a
leaq 0x1588(%rsp), %rax
movq %rax, 0x2928(%rsp)
movq 0x2928(%rsp), %rax
movq %rax, 0x3ea8(%rsp)
movq 0x3ea8(%rsp), %rax
movq %rax, 0x428(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x136b90d
movq 0x428(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ea4(%rsp) # imm = 0xFFFFFFFF
movl 0x3ea4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ea0(%rsp)
cmpl $0x1, 0x3ea0(%rsp)
jne 0x136b90d
movq 0x428(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x136b8db
movq 0x428(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x136b8d9
jmp 0x136b90b
movq 0x428(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4618(%rsp)
cmpq $0x0, 0x4618(%rsp)
je 0x136b909
movq 0x4618(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x136b90b
jmp 0x136b90d
movq 0x428(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136b968
movq %rax, %rdi
callq 0x678a0
jmp 0x136b96a
leaq 0x1588(%rsp), %rax
movq %rax, 0x2a88(%rsp)
movq 0x2a88(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x418(%rsp)
leaq 0x1588(%rsp), %rax
movq %rax, 0x2740(%rsp)
movq 0x2740(%rsp), %rax
movq %rax, 0x4098(%rsp)
movq 0x4098(%rsp), %rax
movq %rax, 0x420(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x136ba5b
movq 0x420(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4094(%rsp) # imm = 0xFFFFFFFF
movl 0x4094(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4090(%rsp)
cmpl $0x1, 0x4090(%rsp)
jne 0x136ba5b
movq 0x420(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x136ba29
movq 0x420(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x136ba27
jmp 0x136ba59
movq 0x420(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4520(%rsp)
cmpq $0x0, 0x4520(%rsp)
je 0x136ba57
movq 0x4520(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x136ba59
jmp 0x136ba5b
movq 0x420(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136bab6
movq %rax, %rdi
callq 0x678a0
movq 0x418(%rsp), %rax
movq %rax, 0x15d0(%rsp)
movl $0x0, 0x1584(%rsp)
movl 0x1584(%rsp), %eax
cmpl 0x2164(%rsp), %eax
jge 0x136bc15
movq 0x1620(%rsp), %rax
movl 0x1584(%rsp), %ecx
shll $0x3, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2bc8(%rsp)
movq 0x2bc8(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1560(%rsp)
movl $0x0, 0x155c(%rsp)
movl 0x155c(%rsp), %eax
cmpl 0x2168(%rsp), %eax
jge 0x136bbfd
movq 0x1670(%rsp), %rax
movq %rax, 0x2bc0(%rsp)
movq 0x2bc0(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1520(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0x1520(%rsp), %rsi
leaq 0x1560(%rsp), %rdx
callq 0x1453640
vmovaps %ymm0, 0x1500(%rsp)
movq 0x15d0(%rsp), %rax
vmovaps 0x1500(%rsp), %ymm0
movq %rax, 0x2f38(%rsp)
vmovaps %ymm0, 0x2f00(%rsp)
vmovaps 0x2f00(%rsp), %ymm0
movq 0x2f38(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x1670(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1670(%rsp)
movq 0x15d0(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x15d0(%rsp)
movl 0x155c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x155c(%rsp)
jmp 0x136bb29
jmp 0x136bbff
movl 0x1584(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1584(%rsp)
jmp 0x136bad1
jmp 0x136bc17
movl 0x167c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x167c(%rsp)
jmp 0x136ada7
movl $0x0, 0x2194(%rsp)
jmp 0x13735ba
movl 0x2148(%rsp), %eax
cmpl 0x2168(%rsp), %eax
jne 0x136cbe2
cmpl $0x1, 0x2164(%rsp)
je 0x136cbe2
cmpl $0x1, 0x2144(%rsp)
jne 0x136cbe2
movl 0x213c(%rsp), %eax
cmpl 0x215c(%rsp), %eax
jne 0x136cbe2
movq 0x2178(%rsp), %rdi
movl 0x2168(%rsp), %esi
movl 0x2164(%rsp), %edx
movl 0x215c(%rsp), %ecx
movq 0x2150(%rsp), %r8
movl 0x214c(%rsp), %r9d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2178(%rsp), %rax
movq %rax, 0x21f0(%rsp)
movq 0x21f0(%rsp), %rcx
movq %rcx, 0x408(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x417(%rsp)
je 0x136bd24
movq 0x408(%rsp), %rax
movq %rax, 0x3160(%rsp)
movq 0x3160(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x417(%rsp)
movb 0x417(%rsp), %al
testb $0x1, %al
jne 0x136bd31
jmp 0x136bd41
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x13735ba
movl $0x0, 0x14fc(%rsp)
movl 0x14fc(%rsp), %eax
cmpl 0x213c(%rsp), %eax
jge 0x136cbd2
movq 0x2188(%rsp), %rcx
movl 0x14fc(%rsp), %eax
leaq 0x14a8(%rsp), %rdx
movq %rdx, 0x2348(%rsp)
movq %rcx, 0x2340(%rsp)
movl %eax, 0x233c(%rsp)
movq 0x2340(%rsp), %rax
movq %rax, 0x400(%rsp)
movb $0x0, 0x233b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x233c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x14a8(%rsp), %r10
movq %r10, 0x38f0(%rsp)
movl %r9d, 0x38ec(%rsp)
movl %r8d, 0x38e8(%rsp)
movl %edi, 0x38e4(%rsp)
movq %rsi, 0x38d8(%rsp)
movq %rdx, 0x38d0(%rsp)
movl %ecx, 0x38cc(%rsp)
movq %rax, 0x38c0(%rsp)
movq 0x38f0(%rsp), %rcx
movq %rcx, 0x3f8(%rsp)
movq 0x38d8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x38d0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x38cc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x38c0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x38ec(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x38e8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x38e4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c18(%rsp)
movl $0x10, 0x3c14(%rsp)
movq 0x3c18(%rsp), %rax
movslq 0x3c14(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c14(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x400(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x14d0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x136bf1c
movq 0x400(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x14e8(%rsp)
movb $0x1, 0x233b(%rsp)
testb $0x1, 0x233b(%rsp)
jne 0x136c05d
leaq 0x14a8(%rsp), %rax
movq %rax, 0x2630(%rsp)
movq 0x2630(%rsp), %rax
movq %rax, 0x42b8(%rsp)
movq 0x42b8(%rsp), %rax
movq %rax, 0x3f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x136c000
movq 0x3f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42b4(%rsp) # imm = 0xFFFFFFFF
movl 0x42b4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42b0(%rsp)
cmpl $0x1, 0x42b0(%rsp)
jne 0x136c000
movq 0x3f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x136bfce
movq 0x3f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x136bfcc
jmp 0x136bffe
movq 0x3f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4410(%rsp)
cmpq $0x0, 0x4410(%rsp)
je 0x136bffc
movq 0x4410(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x136bffe
jmp 0x136c000
movq 0x3f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136c05b
movq %rax, %rdi
callq 0x678a0
jmp 0x136c05d
leaq 0x14a8(%rsp), %rax
movq %rax, 0x2530(%rsp)
movq 0x2530(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e0(%rsp)
leaq 0x14a8(%rsp), %rax
movq %rax, 0x2748(%rsp)
movq 0x2748(%rsp), %rax
movq %rax, 0x4088(%rsp)
movq 0x4088(%rsp), %rax
movq %rax, 0x3e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x136c14e
movq 0x3e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4084(%rsp) # imm = 0xFFFFFFFF
movl 0x4084(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4080(%rsp)
cmpl $0x1, 0x4080(%rsp)
jne 0x136c14e
movq 0x3e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x136c11c
movq 0x3e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x136c11a
jmp 0x136c14c
movq 0x3e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4528(%rsp)
cmpq $0x0, 0x4528(%rsp)
je 0x136c14a
movq 0x4528(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x136c14c
jmp 0x136c14e
movq 0x3e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136c1a9
movq %rax, %rdi
callq 0x678a0
movq 0x3e0(%rsp), %rax
movq %rax, 0x14f0(%rsp)
movq 0x2180(%rsp), %rcx
movl 0x14fc(%rsp), %eax
leaq 0x1458(%rsp), %rdx
movq %rdx, 0x2330(%rsp)
movq %rcx, 0x2328(%rsp)
movl %eax, 0x2324(%rsp)
movq 0x2328(%rsp), %rax
movq %rax, 0x3d8(%rsp)
movb $0x0, 0x2323(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2324(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1458(%rsp), %r10
movq %r10, 0x3928(%rsp)
movl %r9d, 0x3924(%rsp)
movl %r8d, 0x3920(%rsp)
movl %edi, 0x391c(%rsp)
movq %rsi, 0x3910(%rsp)
movq %rdx, 0x3908(%rsp)
movl %ecx, 0x3904(%rsp)
movq %rax, 0x38f8(%rsp)
movq 0x3928(%rsp), %rcx
movq %rcx, 0x3d0(%rsp)
movq 0x3910(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3908(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3904(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x38f8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3924(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3920(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x391c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c08(%rsp)
movl $0x10, 0x3c04(%rsp)
movq 0x3c08(%rsp), %rax
movslq 0x3c04(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c04(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3d8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1480(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x136c375
movq 0x3d8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1498(%rsp)
movb $0x1, 0x2323(%rsp)
testb $0x1, 0x2323(%rsp)
jne 0x136c4b6
leaq 0x1458(%rsp), %rax
movq %rax, 0x2638(%rsp)
movq 0x2638(%rsp), %rax
movq %rax, 0x42a8(%rsp)
movq 0x42a8(%rsp), %rax
movq %rax, 0x3c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x136c459
movq 0x3c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42a4(%rsp) # imm = 0xFFFFFFFF
movl 0x42a4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42a0(%rsp)
cmpl $0x1, 0x42a0(%rsp)
jne 0x136c459
movq 0x3c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x136c427
movq 0x3c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x136c425
jmp 0x136c457
movq 0x3c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4418(%rsp)
cmpq $0x0, 0x4418(%rsp)
je 0x136c455
movq 0x4418(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x136c457
jmp 0x136c459
movq 0x3c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136c4b4
movq %rax, %rdi
callq 0x678a0
jmp 0x136c4b6
leaq 0x1458(%rsp), %rax
movq %rax, 0x2528(%rsp)
movq 0x2528(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3b8(%rsp)
leaq 0x1458(%rsp), %rax
movq %rax, 0x2750(%rsp)
movq 0x2750(%rsp), %rax
movq %rax, 0x4078(%rsp)
movq 0x4078(%rsp), %rax
movq %rax, 0x3c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x136c5a7
movq 0x3c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4074(%rsp) # imm = 0xFFFFFFFF
movl 0x4074(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4070(%rsp)
cmpl $0x1, 0x4070(%rsp)
jne 0x136c5a7
movq 0x3c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x136c575
movq 0x3c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x136c573
jmp 0x136c5a5
movq 0x3c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4530(%rsp)
cmpq $0x0, 0x4530(%rsp)
je 0x136c5a3
movq 0x4530(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x136c5a5
jmp 0x136c5a7
movq 0x3c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136c602
movq %rax, %rdi
callq 0x678a0
movq 0x3b8(%rsp), %rax
movq %rax, 0x14a0(%rsp)
movq 0x2178(%rsp), %rcx
movl 0x14fc(%rsp), %eax
leaq 0x1408(%rsp), %rdx
movq %rdx, 0x2900(%rsp)
movq %rcx, 0x28f8(%rsp)
movl %eax, 0x28f4(%rsp)
movq 0x28f8(%rsp), %rax
movq %rax, 0x3b0(%rsp)
movb $0x0, 0x28f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x28f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1408(%rsp), %r10
movq %r10, 0x33e8(%rsp)
movl %r9d, 0x33e4(%rsp)
movl %r8d, 0x33e0(%rsp)
movl %edi, 0x33dc(%rsp)
movq %rsi, 0x33d0(%rsp)
movq %rdx, 0x33c8(%rsp)
movl %ecx, 0x33c4(%rsp)
movq %rax, 0x33b8(%rsp)
movq 0x33e8(%rsp), %rcx
movq %rcx, 0x3a8(%rsp)
movq 0x33d0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x33c8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x33c4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x33b8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x33e4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x33e0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x33dc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d88(%rsp)
movl $0x10, 0x3d84(%rsp)
movq 0x3d88(%rsp), %rax
movslq 0x3d84(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d84(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3b0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1430(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x136c7ce
movq 0x3b0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1448(%rsp)
movb $0x1, 0x28f3(%rsp)
testb $0x1, 0x28f3(%rsp)
jne 0x136c90f
leaq 0x1408(%rsp), %rax
movq %rax, 0x2908(%rsp)
movq 0x2908(%rsp), %rax
movq %rax, 0x3eb8(%rsp)
movq 0x3eb8(%rsp), %rax
movq %rax, 0x3a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x136c8b2
movq 0x3a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3eb4(%rsp) # imm = 0xFFFFFFFF
movl 0x3eb4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3eb0(%rsp)
cmpl $0x1, 0x3eb0(%rsp)
jne 0x136c8b2
movq 0x3a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x136c880
movq 0x3a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x136c87e
jmp 0x136c8b0
movq 0x3a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4610(%rsp)
cmpq $0x0, 0x4610(%rsp)
je 0x136c8ae
movq 0x4610(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x136c8b0
jmp 0x136c8b2
movq 0x3a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136c90d
movq %rax, %rdi
callq 0x678a0
jmp 0x136c90f
leaq 0x1408(%rsp), %rax
movq %rax, 0x2a80(%rsp)
movq 0x2a80(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x390(%rsp)
leaq 0x1408(%rsp), %rax
movq %rax, 0x2758(%rsp)
movq 0x2758(%rsp), %rax
movq %rax, 0x4068(%rsp)
movq 0x4068(%rsp), %rax
movq %rax, 0x398(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x136ca00
movq 0x398(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4064(%rsp) # imm = 0xFFFFFFFF
movl 0x4064(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4060(%rsp)
cmpl $0x1, 0x4060(%rsp)
jne 0x136ca00
movq 0x398(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x136c9ce
movq 0x398(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x136c9cc
jmp 0x136c9fe
movq 0x398(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4538(%rsp)
cmpq $0x0, 0x4538(%rsp)
je 0x136c9fc
movq 0x4538(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x136c9fe
jmp 0x136ca00
movq 0x398(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136ca5b
movq %rax, %rdi
callq 0x678a0
movq 0x390(%rsp), %rax
movq %rax, 0x1450(%rsp)
movl $0x0, 0x1404(%rsp)
movl 0x1404(%rsp), %eax
cmpl 0x2164(%rsp), %eax
jge 0x136cbba
movl $0x0, 0x1400(%rsp)
movl 0x1400(%rsp), %eax
cmpl 0x2168(%rsp), %eax
jge 0x136cba2
movq 0x14f0(%rsp), %rax
movq %rax, 0x2bb8(%rsp)
movq 0x2bb8(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x13e0(%rsp)
movq 0x14a0(%rsp), %rax
movl 0x1400(%rsp), %ecx
shll $0x3, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2bb0(%rsp)
movq 0x2bb0(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x13c0(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0x13e0(%rsp), %rsi
leaq 0x13c0(%rsp), %rdx
callq 0x1453640
vmovaps %ymm0, 0x13a0(%rsp)
movq 0x1450(%rsp), %rax
vmovaps 0x13a0(%rsp), %ymm0
movq %rax, 0x2ef8(%rsp)
vmovaps %ymm0, 0x2ec0(%rsp)
vmovaps 0x2ec0(%rsp), %ymm0
movq 0x2ef8(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x14f0(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x14f0(%rsp)
movq 0x1450(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1450(%rsp)
movl 0x1400(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1400(%rsp)
jmp 0x136ca95
jmp 0x136cba4
movl 0x1404(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1404(%rsp)
jmp 0x136ca76
jmp 0x136cbbc
movl 0x14fc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x14fc(%rsp)
jmp 0x136bd4c
movl $0x0, 0x2194(%rsp)
jmp 0x13735ba
cmpl $0x1, 0x2148(%rsp)
je 0x136db87
cmpl $0x1, 0x2168(%rsp)
jne 0x136db87
movl 0x2144(%rsp), %eax
cmpl 0x2164(%rsp), %eax
jne 0x136db87
movl 0x213c(%rsp), %eax
cmpl 0x215c(%rsp), %eax
jne 0x136db87
movq 0x2178(%rsp), %rdi
movl 0x2148(%rsp), %esi
movl 0x2144(%rsp), %edx
movl 0x213c(%rsp), %ecx
movq 0x2130(%rsp), %r8
movl 0x212c(%rsp), %r9d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2178(%rsp), %rax
movq %rax, 0x21e8(%rsp)
movq 0x21e8(%rsp), %rcx
movq %rcx, 0x380(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x38f(%rsp)
je 0x136ccc9
movq 0x380(%rsp), %rax
movq %rax, 0x3168(%rsp)
movq 0x3168(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x38f(%rsp)
movb 0x38f(%rsp), %al
testb $0x1, %al
jne 0x136ccd6
jmp 0x136cce6
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x13735ba
movl $0x0, 0x139c(%rsp)
movl 0x139c(%rsp), %eax
cmpl 0x213c(%rsp), %eax
jge 0x136db77
movq 0x2188(%rsp), %rcx
movl 0x139c(%rsp), %eax
leaq 0x1348(%rsp), %rdx
movq %rdx, 0x2318(%rsp)
movq %rcx, 0x2310(%rsp)
movl %eax, 0x230c(%rsp)
movq 0x2310(%rsp), %rax
movq %rax, 0x378(%rsp)
movb $0x0, 0x230b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x230c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1348(%rsp), %r10
movq %r10, 0x3960(%rsp)
movl %r9d, 0x395c(%rsp)
movl %r8d, 0x3958(%rsp)
movl %edi, 0x3954(%rsp)
movq %rsi, 0x3948(%rsp)
movq %rdx, 0x3940(%rsp)
movl %ecx, 0x393c(%rsp)
movq %rax, 0x3930(%rsp)
movq 0x3960(%rsp), %rcx
movq %rcx, 0x370(%rsp)
movq 0x3948(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3940(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x393c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3930(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x395c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3958(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3954(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3bf8(%rsp)
movl $0x10, 0x3bf4(%rsp)
movq 0x3bf8(%rsp), %rax
movslq 0x3bf4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bf4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x378(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1370(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x136cec1
movq 0x378(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1388(%rsp)
movb $0x1, 0x230b(%rsp)
testb $0x1, 0x230b(%rsp)
jne 0x136d002
leaq 0x1348(%rsp), %rax
movq %rax, 0x2640(%rsp)
movq 0x2640(%rsp), %rax
movq %rax, 0x4298(%rsp)
movq 0x4298(%rsp), %rax
movq %rax, 0x368(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x136cfa5
movq 0x368(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4294(%rsp) # imm = 0xFFFFFFFF
movl 0x4294(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4290(%rsp)
cmpl $0x1, 0x4290(%rsp)
jne 0x136cfa5
movq 0x368(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x136cf73
movq 0x368(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x136cf71
jmp 0x136cfa3
movq 0x368(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4420(%rsp)
cmpq $0x0, 0x4420(%rsp)
je 0x136cfa1
movq 0x4420(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x136cfa3
jmp 0x136cfa5
movq 0x368(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136d000
movq %rax, %rdi
callq 0x678a0
jmp 0x136d002
leaq 0x1348(%rsp), %rax
movq %rax, 0x2520(%rsp)
movq 0x2520(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x358(%rsp)
leaq 0x1348(%rsp), %rax
movq %rax, 0x2760(%rsp)
movq 0x2760(%rsp), %rax
movq %rax, 0x4058(%rsp)
movq 0x4058(%rsp), %rax
movq %rax, 0x360(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x136d0f3
movq 0x360(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4054(%rsp) # imm = 0xFFFFFFFF
movl 0x4054(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4050(%rsp)
cmpl $0x1, 0x4050(%rsp)
jne 0x136d0f3
movq 0x360(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x136d0c1
movq 0x360(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x136d0bf
jmp 0x136d0f1
movq 0x360(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4540(%rsp)
cmpq $0x0, 0x4540(%rsp)
je 0x136d0ef
movq 0x4540(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x136d0f1
jmp 0x136d0f3
movq 0x360(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136d14e
movq %rax, %rdi
callq 0x678a0
movq 0x358(%rsp), %rax
movq %rax, 0x1390(%rsp)
movq 0x2180(%rsp), %rcx
movl 0x139c(%rsp), %eax
leaq 0x12f8(%rsp), %rdx
movq %rdx, 0x2300(%rsp)
movq %rcx, 0x22f8(%rsp)
movl %eax, 0x22f4(%rsp)
movq 0x22f8(%rsp), %rax
movq %rax, 0x350(%rsp)
movb $0x0, 0x22f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x12f8(%rsp), %r10
movq %r10, 0x3998(%rsp)
movl %r9d, 0x3994(%rsp)
movl %r8d, 0x3990(%rsp)
movl %edi, 0x398c(%rsp)
movq %rsi, 0x3980(%rsp)
movq %rdx, 0x3978(%rsp)
movl %ecx, 0x3974(%rsp)
movq %rax, 0x3968(%rsp)
movq 0x3998(%rsp), %rcx
movq %rcx, 0x348(%rsp)
movq 0x3980(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3978(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3974(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3968(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3994(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3990(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x398c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3be8(%rsp)
movl $0x10, 0x3be4(%rsp)
movq 0x3be8(%rsp), %rax
movslq 0x3be4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3be4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x350(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1320(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x136d31a
movq 0x350(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1338(%rsp)
movb $0x1, 0x22f3(%rsp)
testb $0x1, 0x22f3(%rsp)
jne 0x136d45b
leaq 0x12f8(%rsp), %rax
movq %rax, 0x2648(%rsp)
movq 0x2648(%rsp), %rax
movq %rax, 0x4288(%rsp)
movq 0x4288(%rsp), %rax
movq %rax, 0x340(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x136d3fe
movq 0x340(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4284(%rsp) # imm = 0xFFFFFFFF
movl 0x4284(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4280(%rsp)
cmpl $0x1, 0x4280(%rsp)
jne 0x136d3fe
movq 0x340(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x136d3cc
movq 0x340(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x136d3ca
jmp 0x136d3fc
movq 0x340(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4428(%rsp)
cmpq $0x0, 0x4428(%rsp)
je 0x136d3fa
movq 0x4428(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x136d3fc
jmp 0x136d3fe
movq 0x340(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136d459
movq %rax, %rdi
callq 0x678a0
jmp 0x136d45b
leaq 0x12f8(%rsp), %rax
movq %rax, 0x2518(%rsp)
movq 0x2518(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x330(%rsp)
leaq 0x12f8(%rsp), %rax
movq %rax, 0x2768(%rsp)
movq 0x2768(%rsp), %rax
movq %rax, 0x4048(%rsp)
movq 0x4048(%rsp), %rax
movq %rax, 0x338(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x136d54c
movq 0x338(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4044(%rsp) # imm = 0xFFFFFFFF
movl 0x4044(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4040(%rsp)
cmpl $0x1, 0x4040(%rsp)
jne 0x136d54c
movq 0x338(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x136d51a
movq 0x338(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x136d518
jmp 0x136d54a
movq 0x338(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4548(%rsp)
cmpq $0x0, 0x4548(%rsp)
je 0x136d548
movq 0x4548(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x136d54a
jmp 0x136d54c
movq 0x338(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136d5a7
movq %rax, %rdi
callq 0x678a0
movq 0x330(%rsp), %rax
movq %rax, 0x1340(%rsp)
movq 0x2178(%rsp), %rcx
movl 0x139c(%rsp), %eax
leaq 0x12a8(%rsp), %rdx
movq %rdx, 0x28e0(%rsp)
movq %rcx, 0x28d8(%rsp)
movl %eax, 0x28d4(%rsp)
movq 0x28d8(%rsp), %rax
movq %rax, 0x328(%rsp)
movb $0x0, 0x28d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x28d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x12a8(%rsp), %r10
movq %r10, 0x3420(%rsp)
movl %r9d, 0x341c(%rsp)
movl %r8d, 0x3418(%rsp)
movl %edi, 0x3414(%rsp)
movq %rsi, 0x3408(%rsp)
movq %rdx, 0x3400(%rsp)
movl %ecx, 0x33fc(%rsp)
movq %rax, 0x33f0(%rsp)
movq 0x3420(%rsp), %rcx
movq %rcx, 0x320(%rsp)
movq 0x3408(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3400(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x33fc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x33f0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x341c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3418(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3414(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d78(%rsp)
movl $0x10, 0x3d74(%rsp)
movq 0x3d78(%rsp), %rax
movslq 0x3d74(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d74(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x328(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x12d0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x136d773
movq 0x328(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x12e8(%rsp)
movb $0x1, 0x28d3(%rsp)
testb $0x1, 0x28d3(%rsp)
jne 0x136d8b4
leaq 0x12a8(%rsp), %rax
movq %rax, 0x28e8(%rsp)
movq 0x28e8(%rsp), %rax
movq %rax, 0x3ec8(%rsp)
movq 0x3ec8(%rsp), %rax
movq %rax, 0x318(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x136d857
movq 0x318(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ec4(%rsp) # imm = 0xFFFFFFFF
movl 0x3ec4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ec0(%rsp)
cmpl $0x1, 0x3ec0(%rsp)
jne 0x136d857
movq 0x318(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x136d825
movq 0x318(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x136d823
jmp 0x136d855
movq 0x318(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4608(%rsp)
cmpq $0x0, 0x4608(%rsp)
je 0x136d853
movq 0x4608(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x136d855
jmp 0x136d857
movq 0x318(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136d8b2
movq %rax, %rdi
callq 0x678a0
jmp 0x136d8b4
leaq 0x12a8(%rsp), %rax
movq %rax, 0x2a78(%rsp)
movq 0x2a78(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x308(%rsp)
leaq 0x12a8(%rsp), %rax
movq %rax, 0x2770(%rsp)
movq 0x2770(%rsp), %rax
movq %rax, 0x4038(%rsp)
movq 0x4038(%rsp), %rax
movq %rax, 0x310(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x136d9a5
movq 0x310(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4034(%rsp) # imm = 0xFFFFFFFF
movl 0x4034(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4030(%rsp)
cmpl $0x1, 0x4030(%rsp)
jne 0x136d9a5
movq 0x310(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x136d973
movq 0x310(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x136d971
jmp 0x136d9a3
movq 0x310(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4550(%rsp)
cmpq $0x0, 0x4550(%rsp)
je 0x136d9a1
movq 0x4550(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x136d9a3
jmp 0x136d9a5
movq 0x310(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136da00
movq %rax, %rdi
callq 0x678a0
movq 0x308(%rsp), %rax
movq %rax, 0x12f0(%rsp)
movl $0x0, 0x12a4(%rsp)
movl 0x12a4(%rsp), %eax
cmpl 0x2144(%rsp), %eax
jge 0x136db5f
movq 0x1390(%rsp), %rax
movl 0x12a4(%rsp), %ecx
shll $0x3, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2ba8(%rsp)
movq 0x2ba8(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1280(%rsp)
movl $0x0, 0x127c(%rsp)
movl 0x127c(%rsp), %eax
cmpl 0x2148(%rsp), %eax
jge 0x136db47
movq 0x1340(%rsp), %rax
movq %rax, 0x2ba0(%rsp)
movq 0x2ba0(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1240(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0x1280(%rsp), %rsi
leaq 0x1240(%rsp), %rdx
callq 0x1453640
vmovaps %ymm0, 0x1220(%rsp)
movq 0x12f0(%rsp), %rax
vmovaps 0x1220(%rsp), %ymm0
movq %rax, 0x2eb8(%rsp)
vmovaps %ymm0, 0x2e80(%rsp)
vmovaps 0x2e80(%rsp), %ymm0
movq 0x2eb8(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x1340(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1340(%rsp)
movq 0x12f0(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x12f0(%rsp)
movl 0x127c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x127c(%rsp)
jmp 0x136da73
jmp 0x136db49
movl 0x12a4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x12a4(%rsp)
jmp 0x136da1b
jmp 0x136db61
movl 0x139c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x139c(%rsp)
jmp 0x136ccf1
movl $0x0, 0x2194(%rsp)
jmp 0x13735ba
movl 0x2148(%rsp), %eax
cmpl 0x2168(%rsp), %eax
jne 0x136eb2c
cmpl $0x1, 0x2144(%rsp)
je 0x136eb2c
cmpl $0x1, 0x2164(%rsp)
jne 0x136eb2c
movl 0x213c(%rsp), %eax
cmpl 0x215c(%rsp), %eax
jne 0x136eb2c
movq 0x2178(%rsp), %rdi
movl 0x2148(%rsp), %esi
movl 0x2144(%rsp), %edx
movl 0x213c(%rsp), %ecx
movq 0x2130(%rsp), %r8
movl 0x212c(%rsp), %r9d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2178(%rsp), %rax
movq %rax, 0x21e0(%rsp)
movq 0x21e0(%rsp), %rcx
movq %rcx, 0x2f8(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x307(%rsp)
je 0x136dc6e
movq 0x2f8(%rsp), %rax
movq %rax, 0x3170(%rsp)
movq 0x3170(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x307(%rsp)
movb 0x307(%rsp), %al
testb $0x1, %al
jne 0x136dc7b
jmp 0x136dc8b
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x13735ba
movl $0x0, 0x121c(%rsp)
movl 0x121c(%rsp), %eax
cmpl 0x213c(%rsp), %eax
jge 0x136eb1c
movq 0x2188(%rsp), %rcx
movl 0x121c(%rsp), %eax
leaq 0x11c8(%rsp), %rdx
movq %rdx, 0x22e8(%rsp)
movq %rcx, 0x22e0(%rsp)
movl %eax, 0x22dc(%rsp)
movq 0x22e0(%rsp), %rax
movq %rax, 0x2f0(%rsp)
movb $0x0, 0x22db(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22dc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x11c8(%rsp), %r10
movq %r10, 0x39d0(%rsp)
movl %r9d, 0x39cc(%rsp)
movl %r8d, 0x39c8(%rsp)
movl %edi, 0x39c4(%rsp)
movq %rsi, 0x39b8(%rsp)
movq %rdx, 0x39b0(%rsp)
movl %ecx, 0x39ac(%rsp)
movq %rax, 0x39a0(%rsp)
movq 0x39d0(%rsp), %rcx
movq %rcx, 0x2e8(%rsp)
movq 0x39b8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x39b0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x39ac(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x39a0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x39cc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x39c8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x39c4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3bd8(%rsp)
movl $0x10, 0x3bd4(%rsp)
movq 0x3bd8(%rsp), %rax
movslq 0x3bd4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bd4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2f0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x11f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x136de66
movq 0x2f0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1208(%rsp)
movb $0x1, 0x22db(%rsp)
testb $0x1, 0x22db(%rsp)
jne 0x136dfa7
leaq 0x11c8(%rsp), %rax
movq %rax, 0x2650(%rsp)
movq 0x2650(%rsp), %rax
movq %rax, 0x4278(%rsp)
movq 0x4278(%rsp), %rax
movq %rax, 0x2e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x136df4a
movq 0x2e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4274(%rsp) # imm = 0xFFFFFFFF
movl 0x4274(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4270(%rsp)
cmpl $0x1, 0x4270(%rsp)
jne 0x136df4a
movq 0x2e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x136df18
movq 0x2e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x136df16
jmp 0x136df48
movq 0x2e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4430(%rsp)
cmpq $0x0, 0x4430(%rsp)
je 0x136df46
movq 0x4430(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x136df48
jmp 0x136df4a
movq 0x2e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136dfa5
movq %rax, %rdi
callq 0x678a0
jmp 0x136dfa7
leaq 0x11c8(%rsp), %rax
movq %rax, 0x2510(%rsp)
movq 0x2510(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2d0(%rsp)
leaq 0x11c8(%rsp), %rax
movq %rax, 0x2778(%rsp)
movq 0x2778(%rsp), %rax
movq %rax, 0x4028(%rsp)
movq 0x4028(%rsp), %rax
movq %rax, 0x2d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x136e098
movq 0x2d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4024(%rsp) # imm = 0xFFFFFFFF
movl 0x4024(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4020(%rsp)
cmpl $0x1, 0x4020(%rsp)
jne 0x136e098
movq 0x2d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x136e066
movq 0x2d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x136e064
jmp 0x136e096
movq 0x2d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4558(%rsp)
cmpq $0x0, 0x4558(%rsp)
je 0x136e094
movq 0x4558(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x136e096
jmp 0x136e098
movq 0x2d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136e0f3
movq %rax, %rdi
callq 0x678a0
movq 0x2d0(%rsp), %rax
movq %rax, 0x1210(%rsp)
movq 0x2180(%rsp), %rcx
movl 0x121c(%rsp), %eax
leaq 0x1178(%rsp), %rdx
movq %rdx, 0x22d0(%rsp)
movq %rcx, 0x22c8(%rsp)
movl %eax, 0x22c4(%rsp)
movq 0x22c8(%rsp), %rax
movq %rax, 0x2c8(%rsp)
movb $0x0, 0x22c3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22c4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1178(%rsp), %r10
movq %r10, 0x3a08(%rsp)
movl %r9d, 0x3a04(%rsp)
movl %r8d, 0x3a00(%rsp)
movl %edi, 0x39fc(%rsp)
movq %rsi, 0x39f0(%rsp)
movq %rdx, 0x39e8(%rsp)
movl %ecx, 0x39e4(%rsp)
movq %rax, 0x39d8(%rsp)
movq 0x3a08(%rsp), %rcx
movq %rcx, 0x2c0(%rsp)
movq 0x39f0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x39e8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x39e4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x39d8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3a04(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3a00(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x39fc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3bc8(%rsp)
movl $0x10, 0x3bc4(%rsp)
movq 0x3bc8(%rsp), %rax
movslq 0x3bc4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bc4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2c8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x11a0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x136e2bf
movq 0x2c8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x11b8(%rsp)
movb $0x1, 0x22c3(%rsp)
testb $0x1, 0x22c3(%rsp)
jne 0x136e400
leaq 0x1178(%rsp), %rax
movq %rax, 0x2658(%rsp)
movq 0x2658(%rsp), %rax
movq %rax, 0x4268(%rsp)
movq 0x4268(%rsp), %rax
movq %rax, 0x2b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x136e3a3
movq 0x2b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4264(%rsp) # imm = 0xFFFFFFFF
movl 0x4264(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4260(%rsp)
cmpl $0x1, 0x4260(%rsp)
jne 0x136e3a3
movq 0x2b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x136e371
movq 0x2b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x136e36f
jmp 0x136e3a1
movq 0x2b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4438(%rsp)
cmpq $0x0, 0x4438(%rsp)
je 0x136e39f
movq 0x4438(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x136e3a1
jmp 0x136e3a3
movq 0x2b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136e3fe
movq %rax, %rdi
callq 0x678a0
jmp 0x136e400
leaq 0x1178(%rsp), %rax
movq %rax, 0x2508(%rsp)
movq 0x2508(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2a8(%rsp)
leaq 0x1178(%rsp), %rax
movq %rax, 0x2780(%rsp)
movq 0x2780(%rsp), %rax
movq %rax, 0x4018(%rsp)
movq 0x4018(%rsp), %rax
movq %rax, 0x2b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x136e4f1
movq 0x2b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4014(%rsp) # imm = 0xFFFFFFFF
movl 0x4014(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4010(%rsp)
cmpl $0x1, 0x4010(%rsp)
jne 0x136e4f1
movq 0x2b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x136e4bf
movq 0x2b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x136e4bd
jmp 0x136e4ef
movq 0x2b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4560(%rsp)
cmpq $0x0, 0x4560(%rsp)
je 0x136e4ed
movq 0x4560(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x136e4ef
jmp 0x136e4f1
movq 0x2b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136e54c
movq %rax, %rdi
callq 0x678a0
movq 0x2a8(%rsp), %rax
movq %rax, 0x11c0(%rsp)
movq 0x2178(%rsp), %rcx
movl 0x121c(%rsp), %eax
leaq 0x1128(%rsp), %rdx
movq %rdx, 0x28c0(%rsp)
movq %rcx, 0x28b8(%rsp)
movl %eax, 0x28b4(%rsp)
movq 0x28b8(%rsp), %rax
movq %rax, 0x2a0(%rsp)
movb $0x0, 0x28b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x28b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1128(%rsp), %r10
movq %r10, 0x3458(%rsp)
movl %r9d, 0x3454(%rsp)
movl %r8d, 0x3450(%rsp)
movl %edi, 0x344c(%rsp)
movq %rsi, 0x3440(%rsp)
movq %rdx, 0x3438(%rsp)
movl %ecx, 0x3434(%rsp)
movq %rax, 0x3428(%rsp)
movq 0x3458(%rsp), %rcx
movq %rcx, 0x298(%rsp)
movq 0x3440(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3438(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3434(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3428(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3454(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3450(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x344c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d68(%rsp)
movl $0x10, 0x3d64(%rsp)
movq 0x3d68(%rsp), %rax
movslq 0x3d64(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d64(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2a0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1150(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x136e718
movq 0x2a0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1168(%rsp)
movb $0x1, 0x28b3(%rsp)
testb $0x1, 0x28b3(%rsp)
jne 0x136e859
leaq 0x1128(%rsp), %rax
movq %rax, 0x28c8(%rsp)
movq 0x28c8(%rsp), %rax
movq %rax, 0x3ed8(%rsp)
movq 0x3ed8(%rsp), %rax
movq %rax, 0x290(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x136e7fc
movq 0x290(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ed4(%rsp) # imm = 0xFFFFFFFF
movl 0x3ed4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ed0(%rsp)
cmpl $0x1, 0x3ed0(%rsp)
jne 0x136e7fc
movq 0x290(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x136e7ca
movq 0x290(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x136e7c8
jmp 0x136e7fa
movq 0x290(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4600(%rsp)
cmpq $0x0, 0x4600(%rsp)
je 0x136e7f8
movq 0x4600(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x136e7fa
jmp 0x136e7fc
movq 0x290(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136e857
movq %rax, %rdi
callq 0x678a0
jmp 0x136e859
leaq 0x1128(%rsp), %rax
movq %rax, 0x2a70(%rsp)
movq 0x2a70(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x280(%rsp)
leaq 0x1128(%rsp), %rax
movq %rax, 0x2788(%rsp)
movq 0x2788(%rsp), %rax
movq %rax, 0x4008(%rsp)
movq 0x4008(%rsp), %rax
movq %rax, 0x288(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x136e94a
movq 0x288(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4004(%rsp) # imm = 0xFFFFFFFF
movl 0x4004(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4000(%rsp)
cmpl $0x1, 0x4000(%rsp)
jne 0x136e94a
movq 0x288(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x136e918
movq 0x288(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x136e916
jmp 0x136e948
movq 0x288(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4568(%rsp)
cmpq $0x0, 0x4568(%rsp)
je 0x136e946
movq 0x4568(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x136e948
jmp 0x136e94a
movq 0x288(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136e9a5
movq %rax, %rdi
callq 0x678a0
movq 0x280(%rsp), %rax
movq %rax, 0x1170(%rsp)
movl $0x0, 0x1124(%rsp)
movl 0x1124(%rsp), %eax
cmpl 0x2144(%rsp), %eax
jge 0x136eb04
movl $0x0, 0x1120(%rsp)
movl 0x1120(%rsp), %eax
cmpl 0x2148(%rsp), %eax
jge 0x136eaec
movq 0x1210(%rsp), %rax
movl 0x1120(%rsp), %ecx
shll $0x3, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2b98(%rsp)
movq 0x2b98(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1100(%rsp)
movq 0x11c0(%rsp), %rax
movq %rax, 0x2b90(%rsp)
movq 0x2b90(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x10e0(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0x1100(%rsp), %rsi
leaq 0x10e0(%rsp), %rdx
callq 0x1453640
vmovaps %ymm0, 0x10c0(%rsp)
movq 0x1170(%rsp), %rax
vmovaps 0x10c0(%rsp), %ymm0
movq %rax, 0x2e78(%rsp)
vmovaps %ymm0, 0x2e40(%rsp)
vmovaps 0x2e40(%rsp), %ymm0
movq 0x2e78(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x11c0(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x11c0(%rsp)
movq 0x1170(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1170(%rsp)
movl 0x1120(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1120(%rsp)
jmp 0x136e9df
jmp 0x136eaee
movl 0x1124(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1124(%rsp)
jmp 0x136e9c0
jmp 0x136eb06
movl 0x121c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x121c(%rsp)
jmp 0x136dc96
movl $0x0, 0x2194(%rsp)
jmp 0x13735ba
movq 0x2188(%rsp), %rdi
movq 0x2180(%rsp), %rsi
movq 0x2178(%rsp), %rdx
movq 0x2170(%rsp), %rcx
callq 0x143ec80
movl %eax, 0x2194(%rsp)
jmp 0x13735ba
movq 0x2178(%rsp), %rdi
movl 0x2168(%rsp), %esi
movl 0x2164(%rsp), %edx
movl 0x215c(%rsp), %ecx
movq 0x2150(%rsp), %r8
movl 0x214c(%rsp), %r9d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2178(%rsp), %rax
movq %rax, 0x21d8(%rsp)
movq 0x21d8(%rsp), %rcx
movq %rcx, 0x270(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x27f(%rsp)
je 0x136ec00
movq 0x270(%rsp), %rax
movq %rax, 0x3178(%rsp)
movq 0x3178(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x27f(%rsp)
movb 0x27f(%rsp), %al
testb $0x1, %al
jne 0x136ec0d
jmp 0x136ec1d
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x13735ba
movq 0x2180(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x136f6be
movl $0x0, 0x10bc(%rsp)
movl 0x10bc(%rsp), %eax
cmpl 0x215c(%rsp), %eax
jge 0x136f6ae
movq 0x2188(%rsp), %rcx
movl 0x10bc(%rsp), %eax
leaq 0x1068(%rsp), %rdx
movq %rdx, 0x22b8(%rsp)
movq %rcx, 0x22b0(%rsp)
movl %eax, 0x22ac(%rsp)
movq 0x22b0(%rsp), %rax
movq %rax, 0x268(%rsp)
movb $0x0, 0x22ab(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22ac(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1068(%rsp), %r10
movq %r10, 0x3a40(%rsp)
movl %r9d, 0x3a3c(%rsp)
movl %r8d, 0x3a38(%rsp)
movl %edi, 0x3a34(%rsp)
movq %rsi, 0x3a28(%rsp)
movq %rdx, 0x3a20(%rsp)
movl %ecx, 0x3a1c(%rsp)
movq %rax, 0x3a10(%rsp)
movq 0x3a40(%rsp), %rcx
movq %rcx, 0x260(%rsp)
movq 0x3a28(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3a20(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3a1c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3a10(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3a3c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3a38(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3a34(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3bb8(%rsp)
movl $0x10, 0x3bb4(%rsp)
movq 0x3bb8(%rsp), %rax
movslq 0x3bb4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bb4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x268(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1090(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x136ee0a
movq 0x268(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x10a8(%rsp)
movb $0x1, 0x22ab(%rsp)
testb $0x1, 0x22ab(%rsp)
jne 0x136ef4b
leaq 0x1068(%rsp), %rax
movq %rax, 0x2660(%rsp)
movq 0x2660(%rsp), %rax
movq %rax, 0x4258(%rsp)
movq 0x4258(%rsp), %rax
movq %rax, 0x258(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x136eeee
movq 0x258(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4254(%rsp) # imm = 0xFFFFFFFF
movl 0x4254(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4250(%rsp)
cmpl $0x1, 0x4250(%rsp)
jne 0x136eeee
movq 0x258(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x136eebc
movq 0x258(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x136eeba
jmp 0x136eeec
movq 0x258(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4440(%rsp)
cmpq $0x0, 0x4440(%rsp)
je 0x136eeea
movq 0x4440(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x136eeec
jmp 0x136eeee
movq 0x258(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136ef49
movq %rax, %rdi
callq 0x678a0
jmp 0x136ef4b
leaq 0x1068(%rsp), %rax
movq %rax, 0x2500(%rsp)
movq 0x2500(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x248(%rsp)
leaq 0x1068(%rsp), %rax
movq %rax, 0x2790(%rsp)
movq 0x2790(%rsp), %rax
movq %rax, 0x3ff8(%rsp)
movq 0x3ff8(%rsp), %rax
movq %rax, 0x250(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x136f03c
movq 0x250(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ff4(%rsp) # imm = 0xFFFFFFFF
movl 0x3ff4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ff0(%rsp)
cmpl $0x1, 0x3ff0(%rsp)
jne 0x136f03c
movq 0x250(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x136f00a
movq 0x250(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x136f008
jmp 0x136f03a
movq 0x250(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4570(%rsp)
cmpq $0x0, 0x4570(%rsp)
je 0x136f038
movq 0x4570(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x136f03a
jmp 0x136f03c
movq 0x250(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136f097
movq %rax, %rdi
callq 0x678a0
movq 0x248(%rsp), %rax
movq %rax, 0x10b0(%rsp)
movq 0x2180(%rsp), %rcx
movl 0x10bc(%rsp), %eax
movq %rcx, 0x2af8(%rsp)
movl %eax, 0x2af4(%rsp)
movq 0x2af8(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2af4(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x1060(%rsp)
movq 0x2178(%rsp), %rcx
movl 0x10bc(%rsp), %eax
leaq 0x1010(%rsp), %rdx
movq %rdx, 0x28a0(%rsp)
movq %rcx, 0x2898(%rsp)
movl %eax, 0x2894(%rsp)
movq 0x2898(%rsp), %rax
movq %rax, 0x240(%rsp)
movb $0x0, 0x2893(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2894(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1010(%rsp), %r10
movq %r10, 0x3490(%rsp)
movl %r9d, 0x348c(%rsp)
movl %r8d, 0x3488(%rsp)
movl %edi, 0x3484(%rsp)
movq %rsi, 0x3478(%rsp)
movq %rdx, 0x3470(%rsp)
movl %ecx, 0x346c(%rsp)
movq %rax, 0x3460(%rsp)
movq 0x3490(%rsp), %rcx
movq %rcx, 0x238(%rsp)
movq 0x3478(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3470(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x346c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3460(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x348c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3488(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3484(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d58(%rsp)
movl $0x10, 0x3d54(%rsp)
movq 0x3d58(%rsp), %rax
movslq 0x3d54(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d54(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x240(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1038(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x136f2ac
movq 0x240(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1050(%rsp)
movb $0x1, 0x2893(%rsp)
testb $0x1, 0x2893(%rsp)
jne 0x136f3ed
leaq 0x1010(%rsp), %rax
movq %rax, 0x28a8(%rsp)
movq 0x28a8(%rsp), %rax
movq %rax, 0x3ee8(%rsp)
movq 0x3ee8(%rsp), %rax
movq %rax, 0x230(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x136f390
movq 0x230(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ee4(%rsp) # imm = 0xFFFFFFFF
movl 0x3ee4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ee0(%rsp)
cmpl $0x1, 0x3ee0(%rsp)
jne 0x136f390
movq 0x230(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x136f35e
movq 0x230(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x136f35c
jmp 0x136f38e
movq 0x230(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45f8(%rsp)
cmpq $0x0, 0x45f8(%rsp)
je 0x136f38c
movq 0x45f8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x136f38e
jmp 0x136f390
movq 0x230(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136f3eb
movq %rax, %rdi
callq 0x678a0
jmp 0x136f3ed
leaq 0x1010(%rsp), %rax
movq %rax, 0x2a68(%rsp)
movq 0x2a68(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x220(%rsp)
leaq 0x1010(%rsp), %rax
movq %rax, 0x2798(%rsp)
movq 0x2798(%rsp), %rax
movq %rax, 0x3fe8(%rsp)
movq 0x3fe8(%rsp), %rax
movq %rax, 0x228(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x136f4de
movq 0x228(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fe4(%rsp) # imm = 0xFFFFFFFF
movl 0x3fe4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fe0(%rsp)
cmpl $0x1, 0x3fe0(%rsp)
jne 0x136f4de
movq 0x228(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x136f4ac
movq 0x228(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x136f4aa
jmp 0x136f4dc
movq 0x228(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4578(%rsp)
cmpq $0x0, 0x4578(%rsp)
je 0x136f4da
movq 0x4578(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x136f4dc
jmp 0x136f4de
movq 0x228(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136f539
movq %rax, %rdi
callq 0x678a0
movq 0x220(%rsp), %rax
movq %rax, 0x1058(%rsp)
movl $0x0, 0x100c(%rsp)
movl 0x100c(%rsp), %eax
cmpl 0x2164(%rsp), %eax
jge 0x136f696
movq 0x1060(%rsp), %rax
movq %rax, 0x2b88(%rsp)
movq 0x2b88(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0xfe0(%rsp)
movl $0x0, 0xfdc(%rsp)
movl 0xfdc(%rsp), %eax
cmpl 0x2168(%rsp), %eax
jge 0x136f66c
movq 0x10b0(%rsp), %rax
movq %rax, 0x2b80(%rsp)
movq 0x2b80(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0xfa0(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0xfa0(%rsp), %rsi
leaq 0xfe0(%rsp), %rdx
callq 0x1453640
vmovaps %ymm0, 0xf80(%rsp)
movq 0x1058(%rsp), %rax
vmovaps 0xf80(%rsp), %ymm0
movq %rax, 0x2e38(%rsp)
vmovaps %ymm0, 0x2e00(%rsp)
vmovaps 0x2e00(%rsp), %ymm0
movq 0x2e38(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x10b0(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x10b0(%rsp)
movq 0x1058(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1058(%rsp)
movl 0xfdc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xfdc(%rsp)
jmp 0x136f598
movq 0x1060(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1060(%rsp)
movl 0x100c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x100c(%rsp)
jmp 0x136f554
jmp 0x136f698
movl 0x10bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x10bc(%rsp)
jmp 0x136ec3a
movl $0x0, 0x2194(%rsp)
jmp 0x13735ba
movq 0x2180(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x137013d
movq 0x2180(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x136f719
cmpl $0x1, 0x212c(%rsp)
jne 0x136f719
movq 0x2188(%rsp), %rdi
movq 0x2180(%rsp), %rsi
movq 0x2178(%rsp), %rdx
movq 0x2170(%rsp), %rcx
callq 0x143fe80
movl %eax, 0x2194(%rsp)
jmp 0x13735ba
movl $0x0, 0xf7c(%rsp)
movl 0xf7c(%rsp), %eax
cmpl 0x215c(%rsp), %eax
jge 0x137012d
movq 0x2188(%rsp), %rcx
movl 0xf7c(%rsp), %eax
leaq 0xf28(%rsp), %rdx
movq %rdx, 0x22a0(%rsp)
movq %rcx, 0x2298(%rsp)
movl %eax, 0x2294(%rsp)
movq 0x2298(%rsp), %rax
movq %rax, 0x218(%rsp)
movb $0x0, 0x2293(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2294(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xf28(%rsp), %r10
movq %r10, 0x3a78(%rsp)
movl %r9d, 0x3a74(%rsp)
movl %r8d, 0x3a70(%rsp)
movl %edi, 0x3a6c(%rsp)
movq %rsi, 0x3a60(%rsp)
movq %rdx, 0x3a58(%rsp)
movl %ecx, 0x3a54(%rsp)
movq %rax, 0x3a48(%rsp)
movq 0x3a78(%rsp), %rcx
movq %rcx, 0x210(%rsp)
movq 0x3a60(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3a58(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3a54(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3a48(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3a74(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3a70(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3a6c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ba8(%rsp)
movl $0x10, 0x3ba4(%rsp)
movq 0x3ba8(%rsp), %rax
movslq 0x3ba4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3ba4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x218(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf50(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x136f8f4
movq 0x218(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xf68(%rsp)
movb $0x1, 0x2293(%rsp)
testb $0x1, 0x2293(%rsp)
jne 0x136fa35
leaq 0xf28(%rsp), %rax
movq %rax, 0x2668(%rsp)
movq 0x2668(%rsp), %rax
movq %rax, 0x4248(%rsp)
movq 0x4248(%rsp), %rax
movq %rax, 0x208(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x136f9d8
movq 0x208(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4244(%rsp) # imm = 0xFFFFFFFF
movl 0x4244(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4240(%rsp)
cmpl $0x1, 0x4240(%rsp)
jne 0x136f9d8
movq 0x208(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x136f9a6
movq 0x208(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x136f9a4
jmp 0x136f9d6
movq 0x208(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4448(%rsp)
cmpq $0x0, 0x4448(%rsp)
je 0x136f9d4
movq 0x4448(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x136f9d6
jmp 0x136f9d8
movq 0x208(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136fa33
movq %rax, %rdi
callq 0x678a0
jmp 0x136fa35
leaq 0xf28(%rsp), %rax
movq %rax, 0x24f8(%rsp)
movq 0x24f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1f8(%rsp)
leaq 0xf28(%rsp), %rax
movq %rax, 0x27a0(%rsp)
movq 0x27a0(%rsp), %rax
movq %rax, 0x3fd8(%rsp)
movq 0x3fd8(%rsp), %rax
movq %rax, 0x200(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x136fb26
movq 0x200(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fd4(%rsp) # imm = 0xFFFFFFFF
movl 0x3fd4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fd0(%rsp)
cmpl $0x1, 0x3fd0(%rsp)
jne 0x136fb26
movq 0x200(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x136faf4
movq 0x200(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x136faf2
jmp 0x136fb24
movq 0x200(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4580(%rsp)
cmpq $0x0, 0x4580(%rsp)
je 0x136fb22
movq 0x4580(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x136fb24
jmp 0x136fb26
movq 0x200(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136fb81
movq %rax, %rdi
callq 0x678a0
movq 0x1f8(%rsp), %rax
movq %rax, 0xf70(%rsp)
movq 0x2180(%rsp), %rax
movq %rax, 0x24f0(%rsp)
movq 0x24f0(%rsp), %rax
movq (%rax), %rax
movl 0xf7c(%rsp), %ecx
shll $0x3, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2b78(%rsp)
movq 0x2b78(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0xf00(%rsp)
movq 0x2178(%rsp), %rcx
movl 0xf7c(%rsp), %eax
leaq 0xeb0(%rsp), %rdx
movq %rdx, 0x2880(%rsp)
movq %rcx, 0x2878(%rsp)
movl %eax, 0x2874(%rsp)
movq 0x2878(%rsp), %rax
movq %rax, 0x1f0(%rsp)
movb $0x0, 0x2873(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2874(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xeb0(%rsp), %r10
movq %r10, 0x34c8(%rsp)
movl %r9d, 0x34c4(%rsp)
movl %r8d, 0x34c0(%rsp)
movl %edi, 0x34bc(%rsp)
movq %rsi, 0x34b0(%rsp)
movq %rdx, 0x34a8(%rsp)
movl %ecx, 0x34a4(%rsp)
movq %rax, 0x3498(%rsp)
movq 0x34c8(%rsp), %rcx
movq %rcx, 0x1e8(%rsp)
movq 0x34b0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x34a8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x34a4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3498(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x34c4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x34c0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x34bc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d48(%rsp)
movl $0x10, 0x3d44(%rsp)
movq 0x3d48(%rsp), %rax
movslq 0x3d44(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d44(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x1f0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xed8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x136fd99
movq 0x1f0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xef0(%rsp)
movb $0x1, 0x2873(%rsp)
testb $0x1, 0x2873(%rsp)
jne 0x136feda
leaq 0xeb0(%rsp), %rax
movq %rax, 0x2888(%rsp)
movq 0x2888(%rsp), %rax
movq %rax, 0x3ef8(%rsp)
movq 0x3ef8(%rsp), %rax
movq %rax, 0x1e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x136fe7d
movq 0x1e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ef4(%rsp) # imm = 0xFFFFFFFF
movl 0x3ef4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ef0(%rsp)
cmpl $0x1, 0x3ef0(%rsp)
jne 0x136fe7d
movq 0x1e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x136fe4b
movq 0x1e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x136fe49
jmp 0x136fe7b
movq 0x1e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45f0(%rsp)
cmpq $0x0, 0x45f0(%rsp)
je 0x136fe79
movq 0x45f0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x136fe7b
jmp 0x136fe7d
movq 0x1e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x136fed8
movq %rax, %rdi
callq 0x678a0
jmp 0x136feda
leaq 0xeb0(%rsp), %rax
movq %rax, 0x2a60(%rsp)
movq 0x2a60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1d0(%rsp)
leaq 0xeb0(%rsp), %rax
movq %rax, 0x27a8(%rsp)
movq 0x27a8(%rsp), %rax
movq %rax, 0x3fc8(%rsp)
movq 0x3fc8(%rsp), %rax
movq %rax, 0x1d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x136ffcb
movq 0x1d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fc4(%rsp) # imm = 0xFFFFFFFF
movl 0x3fc4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fc0(%rsp)
cmpl $0x1, 0x3fc0(%rsp)
jne 0x136ffcb
movq 0x1d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x136ff99
movq 0x1d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x136ff97
jmp 0x136ffc9
movq 0x1d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4588(%rsp)
cmpq $0x0, 0x4588(%rsp)
je 0x136ffc7
movq 0x4588(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x136ffc9
jmp 0x136ffcb
movq 0x1d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1370026
movq %rax, %rdi
callq 0x678a0
movq 0x1d0(%rsp), %rax
movq %rax, 0xef8(%rsp)
movl $0x0, 0xeac(%rsp)
movl 0xeac(%rsp), %eax
cmpl 0x2158(%rsp), %eax
jge 0x1370115
movq 0xf70(%rsp), %rax
movq %rax, 0x2b70(%rsp)
movq 0x2b70(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0xe80(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0xe80(%rsp), %rsi
leaq 0xf00(%rsp), %rdx
callq 0x1453640
vmovaps %ymm0, 0xe60(%rsp)
movq 0xef8(%rsp), %rax
vmovaps 0xe60(%rsp), %ymm0
movq %rax, 0x2df8(%rsp)
vmovaps %ymm0, 0x2dc0(%rsp)
vmovaps 0x2dc0(%rsp), %ymm0
movq 0x2df8(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0xf70(%rsp), %rax
addq $0x20, %rax
movq %rax, 0xf70(%rsp)
movq 0xef8(%rsp), %rax
addq $0x20, %rax
movq %rax, 0xef8(%rsp)
movl 0xeac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xeac(%rsp)
jmp 0x1370041
jmp 0x1370117
movl 0xf7c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xf7c(%rsp)
jmp 0x136f724
movl $0x0, 0x2194(%rsp)
jmp 0x13735ba
jmp 0x13735ad
movq 0x2188(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1371c29
movq 0x2180(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1370cf9
movq 0x2178(%rsp), %rdi
movl 0x2148(%rsp), %esi
movl 0x2144(%rsp), %edx
movl 0x2140(%rsp), %ecx
movl 0x213c(%rsp), %r8d
movq 0x2130(%rsp), %r9
movl 0x212c(%rsp), %r10d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x2178(%rsp), %rax
movq %rax, 0x21d0(%rsp)
movq 0x21d0(%rsp), %rcx
movq %rcx, 0x1c0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1cf(%rsp)
je 0x1370216
movq 0x1c0(%rsp), %rax
movq %rax, 0x3180(%rsp)
movq 0x3180(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1cf(%rsp)
movb 0x1cf(%rsp), %al
testb $0x1, %al
jne 0x1370223
jmp 0x1370233
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x13735ba
movl $0x0, 0xe5c(%rsp)
movl 0xe5c(%rsp), %eax
cmpl 0x213c(%rsp), %eax
jge 0x1370ce9
movq 0x2188(%rsp), %rcx
movl 0xe5c(%rsp), %eax
movq %rcx, 0x2ae8(%rsp)
movl %eax, 0x2ae4(%rsp)
movq 0x2ae8(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2ae4(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xe50(%rsp)
movq 0x2180(%rsp), %rcx
movl 0xe5c(%rsp), %eax
leaq 0xe00(%rsp), %rdx
movq %rdx, 0x2288(%rsp)
movq %rcx, 0x2280(%rsp)
movl %eax, 0x227c(%rsp)
movq 0x2280(%rsp), %rax
movq %rax, 0x1b8(%rsp)
movb $0x0, 0x227b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x227c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xe00(%rsp), %r10
movq %r10, 0x3ab0(%rsp)
movl %r9d, 0x3aac(%rsp)
movl %r8d, 0x3aa8(%rsp)
movl %edi, 0x3aa4(%rsp)
movq %rsi, 0x3a98(%rsp)
movq %rdx, 0x3a90(%rsp)
movl %ecx, 0x3a8c(%rsp)
movq %rax, 0x3a80(%rsp)
movq 0x3ab0(%rsp), %rcx
movq %rcx, 0x1b0(%rsp)
movq 0x3a98(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3a90(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3a8c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3a80(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3aac(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3aa8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3aa4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b98(%rsp)
movl $0x10, 0x3b94(%rsp)
movq 0x3b98(%rsp), %rax
movslq 0x3b94(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b94(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x1b8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xe28(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1370457
movq 0x1b8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xe40(%rsp)
movb $0x1, 0x227b(%rsp)
testb $0x1, 0x227b(%rsp)
jne 0x1370598
leaq 0xe00(%rsp), %rax
movq %rax, 0x2670(%rsp)
movq 0x2670(%rsp), %rax
movq %rax, 0x4238(%rsp)
movq 0x4238(%rsp), %rax
movq %rax, 0x1a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137053b
movq 0x1a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4234(%rsp) # imm = 0xFFFFFFFF
movl 0x4234(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4230(%rsp)
cmpl $0x1, 0x4230(%rsp)
jne 0x137053b
movq 0x1a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1370509
movq 0x1a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1370507
jmp 0x1370539
movq 0x1a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4450(%rsp)
cmpq $0x0, 0x4450(%rsp)
je 0x1370537
movq 0x4450(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1370539
jmp 0x137053b
movq 0x1a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1370596
movq %rax, %rdi
callq 0x678a0
jmp 0x1370598
leaq 0xe00(%rsp), %rax
movq %rax, 0x24e8(%rsp)
movq 0x24e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x198(%rsp)
leaq 0xe00(%rsp), %rax
movq %rax, 0x27b0(%rsp)
movq 0x27b0(%rsp), %rax
movq %rax, 0x3fb8(%rsp)
movq 0x3fb8(%rsp), %rax
movq %rax, 0x1a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1370689
movq 0x1a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fb4(%rsp) # imm = 0xFFFFFFFF
movl 0x3fb4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fb0(%rsp)
cmpl $0x1, 0x3fb0(%rsp)
jne 0x1370689
movq 0x1a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1370657
movq 0x1a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1370655
jmp 0x1370687
movq 0x1a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4590(%rsp)
cmpq $0x0, 0x4590(%rsp)
je 0x1370685
movq 0x4590(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1370687
jmp 0x1370689
movq 0x1a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13706e4
movq %rax, %rdi
callq 0x678a0
movq 0x198(%rsp), %rax
movq %rax, 0xe48(%rsp)
movq 0x2178(%rsp), %rcx
movl 0xe5c(%rsp), %eax
leaq 0xdb0(%rsp), %rdx
movq %rdx, 0x2860(%rsp)
movq %rcx, 0x2858(%rsp)
movl %eax, 0x2854(%rsp)
movq 0x2858(%rsp), %rax
movq %rax, 0x190(%rsp)
movb $0x0, 0x2853(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2854(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xdb0(%rsp), %r10
movq %r10, 0x3500(%rsp)
movl %r9d, 0x34fc(%rsp)
movl %r8d, 0x34f8(%rsp)
movl %edi, 0x34f4(%rsp)
movq %rsi, 0x34e8(%rsp)
movq %rdx, 0x34e0(%rsp)
movl %ecx, 0x34dc(%rsp)
movq %rax, 0x34d0(%rsp)
movq 0x3500(%rsp), %rcx
movq %rcx, 0x188(%rsp)
movq 0x34e8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x34e0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x34dc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x34d0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x34fc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x34f8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x34f4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d38(%rsp)
movl $0x10, 0x3d34(%rsp)
movq 0x3d38(%rsp), %rax
movslq 0x3d34(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d34(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x190(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xdd8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13708b0
movq 0x190(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xdf0(%rsp)
movb $0x1, 0x2853(%rsp)
testb $0x1, 0x2853(%rsp)
jne 0x13709f1
leaq 0xdb0(%rsp), %rax
movq %rax, 0x2868(%rsp)
movq 0x2868(%rsp), %rax
movq %rax, 0x3f08(%rsp)
movq 0x3f08(%rsp), %rax
movq %rax, 0x180(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1370994
movq 0x180(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f04(%rsp) # imm = 0xFFFFFFFF
movl 0x3f04(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f00(%rsp)
cmpl $0x1, 0x3f00(%rsp)
jne 0x1370994
movq 0x180(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1370962
movq 0x180(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1370960
jmp 0x1370992
movq 0x180(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45e8(%rsp)
cmpq $0x0, 0x45e8(%rsp)
je 0x1370990
movq 0x45e8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1370992
jmp 0x1370994
movq 0x180(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13709ef
movq %rax, %rdi
callq 0x678a0
jmp 0x13709f1
leaq 0xdb0(%rsp), %rax
movq %rax, 0x2a58(%rsp)
movq 0x2a58(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x170(%rsp)
leaq 0xdb0(%rsp), %rax
movq %rax, 0x27b8(%rsp)
movq 0x27b8(%rsp), %rax
movq %rax, 0x3fa8(%rsp)
movq 0x3fa8(%rsp), %rax
movq %rax, 0x178(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1370ae2
movq 0x178(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fa4(%rsp) # imm = 0xFFFFFFFF
movl 0x3fa4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fa0(%rsp)
cmpl $0x1, 0x3fa0(%rsp)
jne 0x1370ae2
movq 0x178(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1370ab0
movq 0x178(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1370aae
jmp 0x1370ae0
movq 0x178(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4598(%rsp)
cmpq $0x0, 0x4598(%rsp)
je 0x1370ade
movq 0x4598(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1370ae0
jmp 0x1370ae2
movq 0x178(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1370b3d
movq %rax, %rdi
callq 0x678a0
movq 0x170(%rsp), %rax
movq %rax, 0xdf8(%rsp)
movl $0x0, 0xdac(%rsp)
movl 0xdac(%rsp), %eax
cmpl 0x2140(%rsp), %eax
jge 0x1370cd1
movq 0xe50(%rsp), %rax
movq %rax, 0x2b68(%rsp)
movq 0x2b68(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0xd80(%rsp)
movl $0x0, 0xd7c(%rsp)
movl 0xd7c(%rsp), %eax
cmpl 0x2144(%rsp), %eax
jge 0x1370ca7
movl $0x0, 0xd78(%rsp)
movl 0xd78(%rsp), %eax
cmpl 0x2148(%rsp), %eax
jge 0x1370c8f
movq 0xe48(%rsp), %rax
movq %rax, 0x2b60(%rsp)
movq 0x2b60(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0xd40(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0xd80(%rsp), %rsi
leaq 0xd40(%rsp), %rdx
callq 0x1453640
vmovaps %ymm0, 0xd20(%rsp)
movq 0xdf8(%rsp), %rax
vmovaps 0xd20(%rsp), %ymm0
movq %rax, 0x2db8(%rsp)
vmovaps %ymm0, 0x2d80(%rsp)
vmovaps 0x2d80(%rsp), %ymm0
movq 0x2db8(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0xe48(%rsp), %rax
addq $0x20, %rax
movq %rax, 0xe48(%rsp)
movq 0xdf8(%rsp), %rax
addq $0x20, %rax
movq %rax, 0xdf8(%rsp)
movl 0xd78(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xd78(%rsp)
jmp 0x1370bbb
jmp 0x1370c91
movl 0xd7c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xd7c(%rsp)
jmp 0x1370b9c
movq 0xe50(%rsp), %rax
addq $0x20, %rax
movq %rax, 0xe50(%rsp)
movl 0xdac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdac(%rsp)
jmp 0x1370b58
jmp 0x1370cd3
movl 0xe5c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xe5c(%rsp)
jmp 0x137023e
movl $0x0, 0x2194(%rsp)
jmp 0x13735ba
movq 0x2180(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x137185a
movq 0x2178(%rsp), %rdi
movl 0x2148(%rsp), %esi
movl 0x2144(%rsp), %edx
movl 0x213c(%rsp), %ecx
movq 0x2130(%rsp), %r8
movl 0x212c(%rsp), %r9d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2178(%rsp), %rax
movq %rax, 0x21c8(%rsp)
movq 0x21c8(%rsp), %rcx
movq %rcx, 0x160(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x16f(%rsp)
je 0x1370dae
movq 0x160(%rsp), %rax
movq %rax, 0x3188(%rsp)
movq 0x3188(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x16f(%rsp)
movb 0x16f(%rsp), %al
testb $0x1, %al
jne 0x1370dbb
jmp 0x1370dcb
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x13735ba
movl $0x0, 0xd1c(%rsp)
movl 0xd1c(%rsp), %eax
cmpl 0x213c(%rsp), %eax
jge 0x137184a
movq 0x2188(%rsp), %rcx
movl 0xd1c(%rsp), %eax
movq %rcx, 0x2ad8(%rsp)
movl %eax, 0x2ad4(%rsp)
movq 0x2ad8(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2ad4(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xd10(%rsp)
movq 0x2180(%rsp), %rcx
movl 0xd1c(%rsp), %eax
leaq 0xcc0(%rsp), %rdx
movq %rdx, 0x2270(%rsp)
movq %rcx, 0x2268(%rsp)
movl %eax, 0x2264(%rsp)
movq 0x2268(%rsp), %rax
movq %rax, 0x158(%rsp)
movb $0x0, 0x2263(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2264(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xcc0(%rsp), %r10
movq %r10, 0x3ae8(%rsp)
movl %r9d, 0x3ae4(%rsp)
movl %r8d, 0x3ae0(%rsp)
movl %edi, 0x3adc(%rsp)
movq %rsi, 0x3ad0(%rsp)
movq %rdx, 0x3ac8(%rsp)
movl %ecx, 0x3ac4(%rsp)
movq %rax, 0x3ab8(%rsp)
movq 0x3ae8(%rsp), %rcx
movq %rcx, 0x150(%rsp)
movq 0x3ad0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3ac8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3ac4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3ab8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3ae4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3ae0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3adc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b88(%rsp)
movl $0x10, 0x3b84(%rsp)
movq 0x3b88(%rsp), %rax
movslq 0x3b84(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b84(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x158(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xce8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1370fef
movq 0x158(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd00(%rsp)
movb $0x1, 0x2263(%rsp)
testb $0x1, 0x2263(%rsp)
jne 0x1371130
leaq 0xcc0(%rsp), %rax
movq %rax, 0x2678(%rsp)
movq 0x2678(%rsp), %rax
movq %rax, 0x4228(%rsp)
movq 0x4228(%rsp), %rax
movq %rax, 0x148(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13710d3
movq 0x148(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4224(%rsp) # imm = 0xFFFFFFFF
movl 0x4224(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4220(%rsp)
cmpl $0x1, 0x4220(%rsp)
jne 0x13710d3
movq 0x148(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13710a1
movq 0x148(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x137109f
jmp 0x13710d1
movq 0x148(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4458(%rsp)
cmpq $0x0, 0x4458(%rsp)
je 0x13710cf
movq 0x4458(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13710d1
jmp 0x13710d3
movq 0x148(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x137112e
movq %rax, %rdi
callq 0x678a0
jmp 0x1371130
leaq 0xcc0(%rsp), %rax
movq %rax, 0x24e0(%rsp)
movq 0x24e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x138(%rsp)
leaq 0xcc0(%rsp), %rax
movq %rax, 0x27c0(%rsp)
movq 0x27c0(%rsp), %rax
movq %rax, 0x3f98(%rsp)
movq 0x3f98(%rsp), %rax
movq %rax, 0x140(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1371221
movq 0x140(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f94(%rsp) # imm = 0xFFFFFFFF
movl 0x3f94(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f90(%rsp)
cmpl $0x1, 0x3f90(%rsp)
jne 0x1371221
movq 0x140(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13711ef
movq 0x140(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13711ed
jmp 0x137121f
movq 0x140(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45a0(%rsp)
cmpq $0x0, 0x45a0(%rsp)
je 0x137121d
movq 0x45a0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x137121f
jmp 0x1371221
movq 0x140(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x137127c
movq %rax, %rdi
callq 0x678a0
movq 0x138(%rsp), %rax
movq %rax, 0xd08(%rsp)
movq 0x2178(%rsp), %rcx
movl 0xd1c(%rsp), %eax
leaq 0xc70(%rsp), %rdx
movq %rdx, 0x2840(%rsp)
movq %rcx, 0x2838(%rsp)
movl %eax, 0x2834(%rsp)
movq 0x2838(%rsp), %rax
movq %rax, 0x130(%rsp)
movb $0x0, 0x2833(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2834(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xc70(%rsp), %r10
movq %r10, 0x3538(%rsp)
movl %r9d, 0x3534(%rsp)
movl %r8d, 0x3530(%rsp)
movl %edi, 0x352c(%rsp)
movq %rsi, 0x3520(%rsp)
movq %rdx, 0x3518(%rsp)
movl %ecx, 0x3514(%rsp)
movq %rax, 0x3508(%rsp)
movq 0x3538(%rsp), %rcx
movq %rcx, 0x128(%rsp)
movq 0x3520(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3518(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3514(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3508(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3534(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3530(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x352c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d28(%rsp)
movl $0x10, 0x3d24(%rsp)
movq 0x3d28(%rsp), %rax
movslq 0x3d24(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d24(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x130(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc98(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1371448
movq 0x130(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xcb0(%rsp)
movb $0x1, 0x2833(%rsp)
testb $0x1, 0x2833(%rsp)
jne 0x1371589
leaq 0xc70(%rsp), %rax
movq %rax, 0x2848(%rsp)
movq 0x2848(%rsp), %rax
movq %rax, 0x3f18(%rsp)
movq 0x3f18(%rsp), %rax
movq %rax, 0x120(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137152c
movq 0x120(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f14(%rsp) # imm = 0xFFFFFFFF
movl 0x3f14(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f10(%rsp)
cmpl $0x1, 0x3f10(%rsp)
jne 0x137152c
movq 0x120(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13714fa
movq 0x120(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13714f8
jmp 0x137152a
movq 0x120(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45e0(%rsp)
cmpq $0x0, 0x45e0(%rsp)
je 0x1371528
movq 0x45e0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x137152a
jmp 0x137152c
movq 0x120(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1371587
movq %rax, %rdi
callq 0x678a0
jmp 0x1371589
leaq 0xc70(%rsp), %rax
movq %rax, 0x2a50(%rsp)
movq 0x2a50(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x110(%rsp)
leaq 0xc70(%rsp), %rax
movq %rax, 0x27c8(%rsp)
movq 0x27c8(%rsp), %rax
movq %rax, 0x3f88(%rsp)
movq 0x3f88(%rsp), %rax
movq %rax, 0x118(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137167a
movq 0x118(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f84(%rsp) # imm = 0xFFFFFFFF
movl 0x3f84(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f80(%rsp)
cmpl $0x1, 0x3f80(%rsp)
jne 0x137167a
movq 0x118(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1371648
movq 0x118(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1371646
jmp 0x1371678
movq 0x118(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45a8(%rsp)
cmpq $0x0, 0x45a8(%rsp)
je 0x1371676
movq 0x45a8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1371678
jmp 0x137167a
movq 0x118(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13716d5
movq %rax, %rdi
callq 0x678a0
movq 0x110(%rsp), %rax
movq %rax, 0xcb8(%rsp)
movl $0x0, 0xc6c(%rsp)
movl 0xc6c(%rsp), %eax
cmpl 0x2144(%rsp), %eax
jge 0x1371832
movq 0xd10(%rsp), %rax
movq %rax, 0x2b58(%rsp)
movq 0x2b58(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0xc40(%rsp)
movl $0x0, 0xc3c(%rsp)
movl 0xc3c(%rsp), %eax
cmpl 0x2148(%rsp), %eax
jge 0x1371808
movq 0xd08(%rsp), %rax
movq %rax, 0x2b50(%rsp)
movq 0x2b50(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0xc00(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0xc40(%rsp), %rsi
leaq 0xc00(%rsp), %rdx
callq 0x1453640
vmovaps %ymm0, 0xbe0(%rsp)
movq 0xcb8(%rsp), %rax
vmovaps 0xbe0(%rsp), %ymm0
movq %rax, 0x2d78(%rsp)
vmovaps %ymm0, 0x2d40(%rsp)
vmovaps 0x2d40(%rsp), %ymm0
movq 0x2d78(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0xd08(%rsp), %rax
addq $0x20, %rax
movq %rax, 0xd08(%rsp)
movq 0xcb8(%rsp), %rax
addq $0x20, %rax
movq %rax, 0xcb8(%rsp)
movl 0xc3c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xc3c(%rsp)
jmp 0x1371734
movq 0xd10(%rsp), %rax
addq $0x20, %rax
movq %rax, 0xd10(%rsp)
movl 0xc6c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xc6c(%rsp)
jmp 0x13716f0
jmp 0x1371834
movl 0xd1c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xd1c(%rsp)
jmp 0x1370dd6
movl $0x0, 0x2194(%rsp)
jmp 0x13735ba
movq 0x2178(%rsp), %rdi
movl 0x2168(%rsp), %esi
movl 0x2164(%rsp), %edx
movq 0x2150(%rsp), %rcx
movl 0x214c(%rsp), %r8d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x2178(%rsp), %rax
movq %rax, 0x21c0(%rsp)
movq 0x21c0(%rsp), %rcx
movq %rcx, 0x100(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x10f(%rsp)
je 0x13718f2
movq 0x100(%rsp), %rax
movq %rax, 0x3190(%rsp)
movq 0x3190(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x10f(%rsp)
movb 0x10f(%rsp), %al
testb $0x1, %al
jne 0x13718ff
jmp 0x137190f
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x13735ba
movq 0x2180(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x137194e
movq 0x2188(%rsp), %rdi
movq 0x2180(%rsp), %rsi
movq 0x2178(%rsp), %rdx
movq 0x2170(%rsp), %rcx
callq 0x143ec80
movl %eax, 0x2194(%rsp)
jmp 0x13735ba
movq 0x2180(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1371c24
movq 0x2178(%rsp), %rdi
movl 0x2168(%rsp), %esi
movl 0x2164(%rsp), %edx
movq 0x2150(%rsp), %rcx
movl 0x214c(%rsp), %r8d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x2178(%rsp), %rax
movq %rax, 0x21b8(%rsp)
movq 0x21b8(%rsp), %rcx
movq %rcx, 0xf0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xff(%rsp)
je 0x13719f8
movq 0xf0(%rsp), %rax
movq %rax, 0x3198(%rsp)
movq 0x3198(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xff(%rsp)
movb 0xff(%rsp), %al
testb $0x1, %al
jne 0x1371a05
jmp 0x1371a15
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x13735ba
movq 0x2180(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1371a5e
cmpl $0x1, 0x212c(%rsp)
jne 0x1371a5e
movq 0x2188(%rsp), %rdi
movq 0x2180(%rsp), %rsi
movq 0x2178(%rsp), %rdx
movq 0x2170(%rsp), %rcx
callq 0x143fe80
movl %eax, 0x2194(%rsp)
jmp 0x13735ba
movq 0x2188(%rsp), %rax
movq %rax, 0x24d8(%rsp)
movq 0x24d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xbd8(%rsp)
movq 0x2180(%rsp), %rax
movq %rax, 0x24d0(%rsp)
movq 0x24d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xbd0(%rsp)
movq 0x2178(%rsp), %rax
movq %rax, 0x2a48(%rsp)
movq 0x2a48(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xbc8(%rsp)
movl $0x0, 0xbc4(%rsp)
movl 0xbc4(%rsp), %eax
cmpl 0x2164(%rsp), %eax
jge 0x1371c14
movq 0xbd0(%rsp), %rax
movq %rax, 0x2b48(%rsp)
movq 0x2b48(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0xba0(%rsp)
movl $0x0, 0xb9c(%rsp)
movl 0xb9c(%rsp), %eax
cmpl 0x2168(%rsp), %eax
jge 0x1371bea
movq 0xbd8(%rsp), %rax
movq %rax, 0x2b40(%rsp)
movq 0x2b40(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0xb60(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0xb60(%rsp), %rsi
leaq 0xba0(%rsp), %rdx
callq 0x1453640
vmovaps %ymm0, 0xb40(%rsp)
movq 0xbc8(%rsp), %rax
vmovaps 0xb40(%rsp), %ymm0
movq %rax, 0x2d38(%rsp)
vmovaps %ymm0, 0x2d00(%rsp)
vmovaps 0x2d00(%rsp), %ymm0
movq 0x2d38(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0xbd8(%rsp), %rax
addq $0x20, %rax
movq %rax, 0xbd8(%rsp)
movq 0xbc8(%rsp), %rax
addq $0x20, %rax
movq %rax, 0xbc8(%rsp)
movl 0xb9c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xb9c(%rsp)
jmp 0x1371b16
movq 0xbd0(%rsp), %rax
addq $0x20, %rax
movq %rax, 0xbd0(%rsp)
movl 0xbc4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xbc4(%rsp)
jmp 0x1371ad2
movl $0x0, 0x2194(%rsp)
jmp 0x13735ba
jmp 0x13735ab
movq 0x2188(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x13735a9
movq 0x2188(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1371c84
cmpl $0x1, 0x214c(%rsp)
jne 0x1371c84
movq 0x2188(%rsp), %rdi
movq 0x2180(%rsp), %rsi
movq 0x2178(%rsp), %rdx
movq 0x2170(%rsp), %rcx
callq 0x1440d00
movl %eax, 0x2194(%rsp)
jmp 0x13735ba
movq 0x2180(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1372787
movq 0x2178(%rsp), %rdi
movl 0x2148(%rsp), %esi
movl 0x2144(%rsp), %edx
movl 0x2140(%rsp), %ecx
movl 0x213c(%rsp), %r8d
movq 0x2130(%rsp), %r9
movl 0x212c(%rsp), %r10d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x2178(%rsp), %rax
movq %rax, 0x21b0(%rsp)
movq 0x21b0(%rsp), %rcx
movq %rcx, 0xe0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xef(%rsp)
je 0x1371d46
movq 0xe0(%rsp), %rax
movq %rax, 0x31a0(%rsp)
movq 0x31a0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xef(%rsp)
movb 0xef(%rsp), %al
testb $0x1, %al
jne 0x1371d53
jmp 0x1371d63
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x13735ba
movl $0x0, 0xb3c(%rsp)
movl 0xb3c(%rsp), %eax
cmpl 0x213c(%rsp), %eax
jge 0x1372777
movq 0x2188(%rsp), %rax
movq %rax, 0x24c8(%rsp)
movq 0x24c8(%rsp), %rax
movq (%rax), %rax
movl 0xb3c(%rsp), %ecx
shll $0x3, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2b38(%rsp)
movq 0x2b38(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0xb00(%rsp)
movq 0x2180(%rsp), %rcx
movl 0xb3c(%rsp), %eax
leaq 0xab0(%rsp), %rdx
movq %rdx, 0x2258(%rsp)
movq %rcx, 0x2250(%rsp)
movl %eax, 0x224c(%rsp)
movq 0x2250(%rsp), %rax
movq %rax, 0xd8(%rsp)
movb $0x0, 0x224b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x224c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xab0(%rsp), %r10
movq %r10, 0x3b20(%rsp)
movl %r9d, 0x3b1c(%rsp)
movl %r8d, 0x3b18(%rsp)
movl %edi, 0x3b14(%rsp)
movq %rsi, 0x3b08(%rsp)
movq %rdx, 0x3b00(%rsp)
movl %ecx, 0x3afc(%rsp)
movq %rax, 0x3af0(%rsp)
movq 0x3b20(%rsp), %rcx
movq %rcx, 0xd0(%rsp)
movq 0x3b08(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3b00(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3afc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3af0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3b1c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3b18(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3b14(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b78(%rsp)
movl $0x10, 0x3b74(%rsp)
movq 0x3b78(%rsp), %rax
movslq 0x3b74(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b74(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xd8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xad8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1371f8a
movq 0xd8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xaf0(%rsp)
movb $0x1, 0x224b(%rsp)
testb $0x1, 0x224b(%rsp)
jne 0x13720cb
leaq 0xab0(%rsp), %rax
movq %rax, 0x2680(%rsp)
movq 0x2680(%rsp), %rax
movq %rax, 0x4218(%rsp)
movq 0x4218(%rsp), %rax
movq %rax, 0xc8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137206e
movq 0xc8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4214(%rsp) # imm = 0xFFFFFFFF
movl 0x4214(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4210(%rsp)
cmpl $0x1, 0x4210(%rsp)
jne 0x137206e
movq 0xc8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x137203c
movq 0xc8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x137203a
jmp 0x137206c
movq 0xc8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4460(%rsp)
cmpq $0x0, 0x4460(%rsp)
je 0x137206a
movq 0x4460(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x137206c
jmp 0x137206e
movq 0xc8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13720c9
movq %rax, %rdi
callq 0x678a0
jmp 0x13720cb
leaq 0xab0(%rsp), %rax
movq %rax, 0x24c0(%rsp)
movq 0x24c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xb8(%rsp)
leaq 0xab0(%rsp), %rax
movq %rax, 0x27d0(%rsp)
movq 0x27d0(%rsp), %rax
movq %rax, 0x3f78(%rsp)
movq 0x3f78(%rsp), %rax
movq %rax, 0xc0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13721bc
movq 0xc0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f74(%rsp) # imm = 0xFFFFFFFF
movl 0x3f74(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f70(%rsp)
cmpl $0x1, 0x3f70(%rsp)
jne 0x13721bc
movq 0xc0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x137218a
movq 0xc0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1372188
jmp 0x13721ba
movq 0xc0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45b0(%rsp)
cmpq $0x0, 0x45b0(%rsp)
je 0x13721b8
movq 0x45b0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13721ba
jmp 0x13721bc
movq 0xc0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1372217
movq %rax, %rdi
callq 0x678a0
movq 0xb8(%rsp), %rax
movq %rax, 0xaf8(%rsp)
movq 0x2178(%rsp), %rcx
movl 0xb3c(%rsp), %eax
leaq 0xa60(%rsp), %rdx
movq %rdx, 0x2820(%rsp)
movq %rcx, 0x2818(%rsp)
movl %eax, 0x2814(%rsp)
movq 0x2818(%rsp), %rax
movq %rax, 0xb0(%rsp)
movb $0x0, 0x2813(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2814(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xa60(%rsp), %r10
movq %r10, 0x3570(%rsp)
movl %r9d, 0x356c(%rsp)
movl %r8d, 0x3568(%rsp)
movl %edi, 0x3564(%rsp)
movq %rsi, 0x3558(%rsp)
movq %rdx, 0x3550(%rsp)
movl %ecx, 0x354c(%rsp)
movq %rax, 0x3540(%rsp)
movq 0x3570(%rsp), %rcx
movq %rcx, 0xa8(%rsp)
movq 0x3558(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3550(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x354c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3540(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x356c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3568(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3564(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d18(%rsp)
movl $0x10, 0x3d14(%rsp)
movq 0x3d18(%rsp), %rax
movslq 0x3d14(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d14(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xb0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xa88(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13723e3
movq 0xb0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xaa0(%rsp)
movb $0x1, 0x2813(%rsp)
testb $0x1, 0x2813(%rsp)
jne 0x1372524
leaq 0xa60(%rsp), %rax
movq %rax, 0x2828(%rsp)
movq 0x2828(%rsp), %rax
movq %rax, 0x3f28(%rsp)
movq 0x3f28(%rsp), %rax
movq %rax, 0xa0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13724c7
movq 0xa0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f24(%rsp) # imm = 0xFFFFFFFF
movl 0x3f24(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f20(%rsp)
cmpl $0x1, 0x3f20(%rsp)
jne 0x13724c7
movq 0xa0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1372495
movq 0xa0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1372493
jmp 0x13724c5
movq 0xa0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45d8(%rsp)
cmpq $0x0, 0x45d8(%rsp)
je 0x13724c3
movq 0x45d8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13724c5
jmp 0x13724c7
movq 0xa0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1372522
movq %rax, %rdi
callq 0x678a0
jmp 0x1372524
leaq 0xa60(%rsp), %rax
movq %rax, 0x2a40(%rsp)
movq 0x2a40(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x90(%rsp)
leaq 0xa60(%rsp), %rax
movq %rax, 0x27d8(%rsp)
movq 0x27d8(%rsp), %rax
movq %rax, 0x3f68(%rsp)
movq 0x3f68(%rsp), %rax
movq %rax, 0x98(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1372615
movq 0x98(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f64(%rsp) # imm = 0xFFFFFFFF
movl 0x3f64(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f60(%rsp)
cmpl $0x1, 0x3f60(%rsp)
jne 0x1372615
movq 0x98(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13725e3
movq 0x98(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13725e1
jmp 0x1372613
movq 0x98(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45b8(%rsp)
cmpq $0x0, 0x45b8(%rsp)
je 0x1372611
movq 0x45b8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1372613
jmp 0x1372615
movq 0x98(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1372670
movq %rax, %rdi
callq 0x678a0
movq 0x90(%rsp), %rax
movq %rax, 0xaa8(%rsp)
movl $0x0, 0xa5c(%rsp)
movl 0xa5c(%rsp), %eax
cmpl 0x2138(%rsp), %eax
jge 0x137275f
movq 0xaf8(%rsp), %rax
movq %rax, 0x2b30(%rsp)
movq 0x2b30(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0xa20(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0xb00(%rsp), %rsi
leaq 0xa20(%rsp), %rdx
callq 0x1453640
vmovaps %ymm0, 0xa00(%rsp)
movq 0xaa8(%rsp), %rax
vmovaps 0xa00(%rsp), %ymm0
movq %rax, 0x2cf8(%rsp)
vmovaps %ymm0, 0x2cc0(%rsp)
vmovaps 0x2cc0(%rsp), %ymm0
movq 0x2cf8(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0xaf8(%rsp), %rax
addq $0x20, %rax
movq %rax, 0xaf8(%rsp)
movq 0xaa8(%rsp), %rax
addq $0x20, %rax
movq %rax, 0xaa8(%rsp)
movl 0xa5c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xa5c(%rsp)
jmp 0x137268b
jmp 0x1372761
movl 0xb3c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xb3c(%rsp)
jmp 0x1371d6e
movl $0x0, 0x2194(%rsp)
jmp 0x13735ba
movq 0x2180(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1373211
movq 0x2178(%rsp), %rdi
movl 0x2148(%rsp), %esi
movl 0x2144(%rsp), %edx
movl 0x213c(%rsp), %ecx
movq 0x2130(%rsp), %r8
movl 0x212c(%rsp), %r9d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2178(%rsp), %rax
movq %rax, 0x21a8(%rsp)
movq 0x21a8(%rsp), %rcx
movq %rcx, 0x80(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x8f(%rsp)
je 0x137283c
movq 0x80(%rsp), %rax
movq %rax, 0x31a8(%rsp)
movq 0x31a8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x8f(%rsp)
movb 0x8f(%rsp), %al
testb $0x1, %al
jne 0x1372849
jmp 0x1372859
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x13735ba
movl $0x0, 0x9fc(%rsp)
movl 0x9fc(%rsp), %eax
cmpl 0x213c(%rsp), %eax
jge 0x1373201
movq 0x2188(%rsp), %rax
movq %rax, 0x24b8(%rsp)
movq 0x24b8(%rsp), %rax
movq (%rax), %rax
movl 0x9fc(%rsp), %ecx
shll $0x3, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2b28(%rsp)
movq 0x2b28(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x9c0(%rsp)
movq 0x2180(%rsp), %rcx
movl 0x9fc(%rsp), %eax
leaq 0x970(%rsp), %rdx
movq %rdx, 0x2240(%rsp)
movq %rcx, 0x2238(%rsp)
movl %eax, 0x2234(%rsp)
movq 0x2238(%rsp), %rax
movq %rax, 0x78(%rsp)
movb $0x0, 0x2233(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2234(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x970(%rsp), %r10
movq %r10, 0x3b58(%rsp)
movl %r9d, 0x3b54(%rsp)
movl %r8d, 0x3b50(%rsp)
movl %edi, 0x3b4c(%rsp)
movq %rsi, 0x3b40(%rsp)
movq %rdx, 0x3b38(%rsp)
movl %ecx, 0x3b34(%rsp)
movq %rax, 0x3b28(%rsp)
movq 0x3b58(%rsp), %rcx
movq %rcx, 0x70(%rsp)
movq 0x3b40(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3b38(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3b34(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3b28(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3b54(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3b50(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3b4c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b68(%rsp)
movl $0x10, 0x3b64(%rsp)
movq 0x3b68(%rsp), %rax
movslq 0x3b64(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b64(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x78(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x998(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1372a74
movq 0x78(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x9b0(%rsp)
movb $0x1, 0x2233(%rsp)
testb $0x1, 0x2233(%rsp)
jne 0x1372ba3
leaq 0x970(%rsp), %rax
movq %rax, 0x2688(%rsp)
movq 0x2688(%rsp), %rax
movq %rax, 0x4208(%rsp)
movq 0x4208(%rsp), %rax
movq %rax, 0x68(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1372b49
movq 0x68(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4204(%rsp) # imm = 0xFFFFFFFF
movl 0x4204(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4200(%rsp)
cmpl $0x1, 0x4200(%rsp)
jne 0x1372b49
movq 0x68(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1372b1a
movq 0x68(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1372b18
jmp 0x1372b47
movq 0x68(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4468(%rsp)
cmpq $0x0, 0x4468(%rsp)
je 0x1372b45
movq 0x4468(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1372b47
jmp 0x1372b49
movq 0x68(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1372ba1
movq %rax, %rdi
callq 0x678a0
jmp 0x1372ba3
leaq 0x970(%rsp), %rax
movq %rax, 0x24b0(%rsp)
movq 0x24b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x58(%rsp)
leaq 0x970(%rsp), %rax
movq %rax, 0x27e0(%rsp)
movq 0x27e0(%rsp), %rax
movq %rax, 0x3f58(%rsp)
movq 0x3f58(%rsp), %rax
movq %rax, 0x60(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1372c82
movq 0x60(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f54(%rsp) # imm = 0xFFFFFFFF
movl 0x3f54(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f50(%rsp)
cmpl $0x1, 0x3f50(%rsp)
jne 0x1372c82
movq 0x60(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1372c53
movq 0x60(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1372c51
jmp 0x1372c80
movq 0x60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45c0(%rsp)
cmpq $0x0, 0x45c0(%rsp)
je 0x1372c7e
movq 0x45c0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1372c80
jmp 0x1372c82
movq 0x60(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1372cda
movq %rax, %rdi
callq 0x678a0
movq 0x58(%rsp), %rax
movq %rax, 0x9b8(%rsp)
movq 0x2178(%rsp), %rcx
movl 0x9fc(%rsp), %eax
leaq 0x920(%rsp), %rdx
movq %rdx, 0x2800(%rsp)
movq %rcx, 0x27f8(%rsp)
movl %eax, 0x27f4(%rsp)
movq 0x27f8(%rsp), %rax
movq %rax, 0x50(%rsp)
movb $0x0, 0x27f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x27f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x920(%rsp), %r10
movq %r10, 0x35a8(%rsp)
movl %r9d, 0x35a4(%rsp)
movl %r8d, 0x35a0(%rsp)
movl %edi, 0x359c(%rsp)
movq %rsi, 0x3590(%rsp)
movq %rdx, 0x3588(%rsp)
movl %ecx, 0x3584(%rsp)
movq %rax, 0x3578(%rsp)
movq 0x35a8(%rsp), %rcx
movq %rcx, 0x48(%rsp)
movq 0x3590(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3588(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3584(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3578(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x35a4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x35a0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x359c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d08(%rsp)
movl $0x10, 0x3d04(%rsp)
movq 0x3d08(%rsp), %rax
movslq 0x3d04(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d04(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x50(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x948(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1372e97
movq 0x50(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x960(%rsp)
movb $0x1, 0x27f3(%rsp)
testb $0x1, 0x27f3(%rsp)
jne 0x1372fc6
leaq 0x920(%rsp), %rax
movq %rax, 0x2808(%rsp)
movq 0x2808(%rsp), %rax
movq %rax, 0x3f38(%rsp)
movq 0x3f38(%rsp), %rax
movq %rax, 0x40(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1372f6c
movq 0x40(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f34(%rsp) # imm = 0xFFFFFFFF
movl 0x3f34(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f30(%rsp)
cmpl $0x1, 0x3f30(%rsp)
jne 0x1372f6c
movq 0x40(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1372f3d
movq 0x40(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1372f3b
jmp 0x1372f6a
movq 0x40(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45d0(%rsp)
cmpq $0x0, 0x45d0(%rsp)
je 0x1372f68
movq 0x45d0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1372f6a
jmp 0x1372f6c
movq 0x40(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1372fc4
movq %rax, %rdi
callq 0x678a0
jmp 0x1372fc6
leaq 0x920(%rsp), %rax
movq %rax, 0x2a38(%rsp)
movq 0x2a38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x30(%rsp)
leaq 0x920(%rsp), %rax
movq %rax, 0x27e8(%rsp)
movq 0x27e8(%rsp), %rax
movq %rax, 0x3f48(%rsp)
movq 0x3f48(%rsp), %rax
movq %rax, 0x38(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13730a5
movq 0x38(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f44(%rsp) # imm = 0xFFFFFFFF
movl 0x3f44(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f40(%rsp)
cmpl $0x1, 0x3f40(%rsp)
jne 0x13730a5
movq 0x38(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1373076
movq 0x38(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1373074
jmp 0x13730a3
movq 0x38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45c8(%rsp)
cmpq $0x0, 0x45c8(%rsp)
je 0x13730a1
movq 0x45c8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13730a3
jmp 0x13730a5
movq 0x38(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13730fd
movq %rax, %rdi
callq 0x678a0
movq 0x30(%rsp), %rax
movq %rax, 0x968(%rsp)
movl $0x0, 0x91c(%rsp)
movl 0x91c(%rsp), %eax
cmpl 0x2138(%rsp), %eax
jge 0x13731e9
movq 0x9b8(%rsp), %rax
movq %rax, 0x2b20(%rsp)
movq 0x2b20(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x8e0(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0x9c0(%rsp), %rsi
leaq 0x8e0(%rsp), %rdx
callq 0x1453640
vmovaps %ymm0, 0x8c0(%rsp)
movq 0x968(%rsp), %rax
vmovaps 0x8c0(%rsp), %ymm0
movq %rax, 0x2cb8(%rsp)
vmovaps %ymm0, 0x2c80(%rsp)
vmovaps 0x2c80(%rsp), %ymm0
movq 0x2cb8(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x9b8(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x9b8(%rsp)
movq 0x968(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x968(%rsp)
movl 0x91c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x91c(%rsp)
jmp 0x1373115
jmp 0x13731eb
movl 0x9fc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x9fc(%rsp)
jmp 0x1372864
movl $0x0, 0x2194(%rsp)
jmp 0x13735ba
movq 0x2180(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x137348f
movq 0x2178(%rsp), %rdi
movl 0x2148(%rsp), %esi
movl 0x2144(%rsp), %edx
movq 0x2130(%rsp), %rcx
movl 0x212c(%rsp), %r8d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x2178(%rsp), %rax
movq %rax, 0x21a0(%rsp)
movq 0x21a0(%rsp), %rcx
movq %rcx, 0x20(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x2f(%rsp)
je 0x13732af
movq 0x20(%rsp), %rax
movq %rax, 0x31b0(%rsp)
movq 0x31b0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x2f(%rsp)
movb 0x2f(%rsp), %al
testb $0x1, %al
jne 0x13732b9
jmp 0x13732c9
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x13735ba
movq 0x2188(%rsp), %rax
movq %rax, 0x24a8(%rsp)
movq 0x24a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8b8(%rsp)
movq 0x2180(%rsp), %rax
movq %rax, 0x24a0(%rsp)
movq 0x24a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8b0(%rsp)
movq 0x2178(%rsp), %rax
movq %rax, 0x2a30(%rsp)
movq 0x2a30(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8a8(%rsp)
movl $0x0, 0x8a4(%rsp)
movl 0x8a4(%rsp), %eax
cmpl 0x2144(%rsp), %eax
jge 0x137347f
movq 0x8b8(%rsp), %rax
movq %rax, 0x2b18(%rsp)
movq 0x2b18(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x880(%rsp)
movl $0x0, 0x87c(%rsp)
movl 0x87c(%rsp), %eax
cmpl 0x2148(%rsp), %eax
jge 0x1373455
movq 0x8b0(%rsp), %rax
movq %rax, 0x2b10(%rsp)
movq 0x2b10(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x840(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0x880(%rsp), %rsi
leaq 0x840(%rsp), %rdx
callq 0x1453640
vmovaps %ymm0, 0x820(%rsp)
movq 0x8a8(%rsp), %rax
vmovaps 0x820(%rsp), %ymm0
movq %rax, 0x2c78(%rsp)
vmovaps %ymm0, 0x2c40(%rsp)
vmovaps 0x2c40(%rsp), %ymm0
movq 0x2c78(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x8b0(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x8b0(%rsp)
movq 0x8a8(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x8a8(%rsp)
movl 0x87c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x87c(%rsp)
jmp 0x1373381
movq 0x8b8(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x8b8(%rsp)
movl 0x8a4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x8a4(%rsp)
jmp 0x137333d
movl $0x0, 0x2194(%rsp)
jmp 0x13735ba
movq 0x2180(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x13735a7
movq 0x2178(%rsp), %rdi
movl 0x2168(%rsp), %esi
movq 0x2150(%rsp), %rdx
movl 0x214c(%rsp), %ecx
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6be00
movq 0x2178(%rsp), %rax
movq %rax, 0x2198(%rsp)
movq 0x2198(%rsp), %rcx
movq %rcx, 0x10(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1f(%rsp)
je 0x1373525
movq 0x10(%rsp), %rax
movq %rax, 0x31b8(%rsp)
movq 0x31b8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1f(%rsp)
movb 0x1f(%rsp), %al
testb $0x1, %al
jne 0x137352f
jmp 0x137353c
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x13735ba
movq 0x2180(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1373582
cmpl $0x1, 0x212c(%rsp)
jne 0x1373582
movq 0x2188(%rsp), %rdi
movq 0x2180(%rsp), %rsi
movq 0x2178(%rsp), %rdx
movq 0x2170(%rsp), %rcx
callq 0x143fe80
movl %eax, 0x2194(%rsp)
jmp 0x13735ba
movq 0x2188(%rsp), %rdi
movq 0x2180(%rsp), %rsi
movq 0x2178(%rsp), %rdx
movq 0x2170(%rsp), %rcx
callq 0x143ec80
jmp 0x13735a9
jmp 0x13735ab
jmp 0x13735ad
jmp 0x13735af
movl $0x0, 0x2194(%rsp)
movl 0x2194(%rsp), %eax
movq %rbp, %rsp
popq %rbp
vzeroupper
retq
nopl (%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/build_O0/src/layer/x86/binaryop_x86_avx512.cpp
|
2,112,898
|
int ncnn::binary_op_pack8<ncnn::BinaryOp_x86_avx512_functor::binary_op_sub>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op_pack8(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int size = w * h * d;
size_t elemsize = a.elemsize;
int elempack = a.elempack;
int w1 = b.w;
int h1 = b.h;
int d1 = b.d;
int channels1 = b.c;
int size1 = w1 * h1 * d1;
size_t elemsize1 = b.elemsize;
int elempack1 = b.elempack;
if (a.dims == 4)
{
if (b.dims == 4)
{
// type 29
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
c.create(w, h, d, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 3)
{
// type 28
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
for (int y = 0; y < h; y++)
{
__m256 _b0 = _mm256_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _outp = op.func_pack8(_p, _b0);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
outptr += 8;
}
ptr1 += 8;
}
}
}
return 0;
}
if (b.dims == 2)
{
// type 27
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
__m256 _b0 = _mm256_loadu_ps(ptr1);
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _outp = op.func_pack8(_p, _b0);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
outptr += 8;
}
}
ptr1 += 8;
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1 && elempack1 == 1)
{
// type 25
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 26
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
__m256 _b0 = _mm256_loadu_ps((const float*)b + q * 8);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _outp = op.func_pack8(_p, _b0);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
outptr += 8;
}
}
return 0;
}
}
else if (a.dims == 3)
{
if (b.dims == 4)
{
// type 23
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
for (int y = 0; y < h1; y++)
{
__m256 _a0 = _mm256_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m256 _p = _mm256_loadu_ps(ptr1);
__m256 _outp = op.func_pack8(_a0, _p);
_mm256_storeu_ps(outptr, _outp);
ptr1 += 8;
outptr += 8;
}
ptr += 8;
}
}
}
return 0;
}
if (b.dims == 3)
{
if (w1 == 1 && h1 == 1 && channels1 == channels)
{
// special type 1
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* b0 = b.channel(q);
float* outptr = c.channel(q);
__m256 _b0 = _mm256_loadu_ps(b0);
for (int i = 0; i < size; i++)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _outp = op.func_pack8(_p, _b0);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
outptr += 8;
}
}
return 0;
}
if (w1 == w && h1 == h && channels1 == 1 && elempack1 == 1)
{
// special type 2
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b;
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _p1 = _mm256_broadcast_ss(ptr1);
__m256 _outp = op.func_pack8(_p, _p1);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
ptr1 += 1;
outptr += 8;
}
}
return 0;
}
if (w == 1 && h == 1 && channels1 == channels)
{
// special type 3
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* a0 = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
__m256 _a0 = _mm256_loadu_ps(a0);
for (int i = 0; i < size1; i++)
{
__m256 _p1 = _mm256_loadu_ps(ptr1);
__m256 _outp = op.func_pack8(_a0, _p1);
_mm256_storeu_ps(outptr, _outp);
ptr1 += 8;
outptr += 8;
}
}
return 0;
}
if (w1 == w && h1 == h && channels == 1 && elempack == 1)
{
// special type 4
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a;
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m256 _p = _mm256_broadcast_ss(ptr);
__m256 _p1 = _mm256_loadu_ps(ptr1);
__m256 _outp = op.func_pack8(_p, _p1);
_mm256_storeu_ps(outptr, _outp);
ptr += 1;
ptr1 += 8;
outptr += 8;
}
}
return 0;
}
if (w != 1 && w1 == 1 && h1 == h && channels1 == channels)
{
// special type 5
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
__m256 _p1 = _mm256_loadu_ps(ptr1 + y * 8);
for (int x = 0; x < w; x++)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _outp = op.func_pack8(_p, _p1);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
outptr += 8;
}
}
}
return 0;
}
if (w1 == w && h != 1 && h1 == 1 && channels1 == channels)
{
// special type 6
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _p1 = _mm256_loadu_ps(ptr1 + x * 8);
__m256 _outp = op.func_pack8(_p, _p1);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
outptr += 8;
}
}
}
return 0;
}
if (w1 != 1 && w == 1 && h1 == h && channels1 == channels)
{
// special type 7
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
__m256 _p = _mm256_loadu_ps(ptr + y * 8);
for (int x = 0; x < w1; x++)
{
__m256 _p1 = _mm256_loadu_ps(ptr1);
__m256 _outp = op.func_pack8(_p, _p1);
_mm256_storeu_ps(outptr, _outp);
ptr1 += 8;
outptr += 8;
}
}
}
return 0;
}
if (w1 == w && h1 != 1 && h == 1 && channels1 == channels)
{
// special type 8
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
__m256 _p = _mm256_loadu_ps(ptr + x * 8);
__m256 _p1 = _mm256_loadu_ps(ptr1);
__m256 _outp = op.func_pack8(_p, _p1);
_mm256_storeu_ps(outptr, _outp);
ptr1 += 8;
outptr += 8;
}
}
}
return 0;
}
// type 19
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 18
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
__m256 _b0 = _mm256_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _outp = op.func_pack8(_p, _b0);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
outptr += 8;
}
ptr1 += 8;
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1 && elempack1 == 1)
{
// type 16
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 17
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
__m256 _b0 = _mm256_loadu_ps((const float*)b + q * 8);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _outp = op.func_pack8(_p, _b0);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
outptr += 8;
}
}
return 0;
}
}
else if (a.dims == 2)
{
if (b.dims == 4)
{
// type 22
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
__m256 _a0 = _mm256_loadu_ps(ptr);
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
__m256 _p = _mm256_loadu_ps(ptr1);
__m256 _outp = op.func_pack8(_a0, _p);
_mm256_storeu_ps(outptr, _outp);
ptr1 += 8;
outptr += 8;
}
}
ptr += 8;
}
}
return 0;
}
if (b.dims == 3)
{
// type 14
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
__m256 _a0 = _mm256_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m256 _p1 = _mm256_loadu_ps(ptr1);
__m256 _outp = op.func_pack8(_a0, _p1);
_mm256_storeu_ps(outptr, _outp);
ptr1 += 8;
outptr += 8;
}
ptr += 8;
}
}
return 0;
}
c.create(w, h, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 13
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
if (b.dims == 1)
{
c.create(w, h, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1 && elempack1 == 1)
{
// type 11
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 12
const float* ptr = a;
const float* ptr1 = b;
float* outptr = c;
for (int y = 0; y < h; y++)
{
__m256 _b0 = _mm256_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _outp = op.func_pack8(_p, _b0);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
outptr += 8;
}
ptr1 += 8;
}
return 0;
}
}
else if (a.dims == 1)
{
if (a.w == 1 && elempack == 1)
{
// type 2 3 4 20
return binary_op_2_3_4_20<Op>(a, b, c, opt);
}
if (b.dims == 4)
{
// type 21
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
__m256 _a0 = _mm256_loadu_ps((const float*)a + q * 8);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m256 _p1 = _mm256_loadu_ps(ptr1);
__m256 _outp = op.func_pack8(_a0, _p1);
_mm256_storeu_ps(outptr, _outp);
ptr1 += 8;
outptr += 8;
}
}
return 0;
}
if (b.dims == 3)
{
// type 9
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
__m256 _a0 = _mm256_loadu_ps((const float*)a + q * 8);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m256 _p1 = _mm256_loadu_ps(ptr1);
__m256 _outp = op.func_pack8(_a0, _p1);
_mm256_storeu_ps(outptr, _outp);
ptr1 += 8;
outptr += 8;
}
}
return 0;
}
if (b.dims == 2)
{
// type 8
c.create(w1, h1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
const float* ptr = a;
const float* ptr1 = b;
float* outptr = c;
for (int y = 0; y < h1; y++)
{
__m256 _a0 = _mm256_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m256 _p1 = _mm256_loadu_ps(ptr1);
__m256 _outp = op.func_pack8(_a0, _p1);
_mm256_storeu_ps(outptr, _outp);
ptr1 += 8;
outptr += 8;
}
ptr += 8;
}
return 0;
}
if (b.dims == 1)
{
c.create(w, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1 && elempack1 == 1)
{
// type 6
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 7
binary_op_7_13_19_29<Op>(a, b, c, opt);
}
}
return 0;
}
|
pushq %rbp
movq %rsp, %rbp
andq $-0x20, %rsp
subq $0x46e0, %rsp # imm = 0x46E0
movq %rdi, 0x2188(%rsp)
movq %rsi, 0x2180(%rsp)
movq %rdx, 0x2178(%rsp)
movq %rcx, 0x2170(%rsp)
movq 0x2188(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x2168(%rsp)
movq 0x2188(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x2164(%rsp)
movq 0x2188(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x2160(%rsp)
movq 0x2188(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x215c(%rsp)
movl 0x2168(%rsp), %eax
imull 0x2164(%rsp), %eax
imull 0x2160(%rsp), %eax
movl %eax, 0x2158(%rsp)
movq 0x2188(%rsp), %rax
movq 0x10(%rax), %rax
movq %rax, 0x2150(%rsp)
movq 0x2188(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x214c(%rsp)
movq 0x2180(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x2148(%rsp)
movq 0x2180(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x2144(%rsp)
movq 0x2180(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x2140(%rsp)
movq 0x2180(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x213c(%rsp)
movl 0x2148(%rsp), %eax
imull 0x2144(%rsp), %eax
imull 0x2140(%rsp), %eax
movl %eax, 0x2138(%rsp)
movq 0x2180(%rsp), %rax
movq 0x10(%rax), %rax
movq %rax, 0x2130(%rsp)
movq 0x2180(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x212c(%rsp)
movq 0x2188(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1375c79
movq 0x2180(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1373768
movq 0x2188(%rsp), %rdi
movq 0x2180(%rsp), %rsi
movq 0x2178(%rsp), %rdx
movq 0x2170(%rsp), %rcx
callq 0x1441b80
movl %eax, 0x2194(%rsp)
jmp 0x1382aba
movq 0x2178(%rsp), %rdi
movl 0x2168(%rsp), %esi
movl 0x2164(%rsp), %edx
movl 0x2160(%rsp), %ecx
movl 0x215c(%rsp), %r8d
movq 0x2150(%rsp), %r9
movl 0x214c(%rsp), %r10d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x2178(%rsp), %rax
movq %rax, 0x2228(%rsp)
movq 0x2228(%rsp), %rcx
movq %rcx, 0x810(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x81f(%rsp)
je 0x1373818
movq 0x810(%rsp), %rax
movq %rax, 0x3128(%rsp)
movq 0x3128(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x81f(%rsp)
movb 0x81f(%rsp), %al
testb $0x1, %al
jne 0x1373825
jmp 0x1373835
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x1382aba
movq 0x2180(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x137471d
movl $0x0, 0x2128(%rsp)
movl 0x2128(%rsp), %eax
cmpl 0x215c(%rsp), %eax
jge 0x137470d
movq 0x2188(%rsp), %rcx
movl 0x2128(%rsp), %eax
leaq 0x20d8(%rsp), %rdx
movq %rdx, 0x2498(%rsp)
movq %rcx, 0x2490(%rsp)
movl %eax, 0x248c(%rsp)
movq 0x2490(%rsp), %rax
movq %rax, 0x808(%rsp)
movb $0x0, 0x248b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x248c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x20d8(%rsp), %r10
movq %r10, 0x35e0(%rsp)
movl %r9d, 0x35dc(%rsp)
movl %r8d, 0x35d8(%rsp)
movl %edi, 0x35d4(%rsp)
movq %rsi, 0x35c8(%rsp)
movq %rdx, 0x35c0(%rsp)
movl %ecx, 0x35bc(%rsp)
movq %rax, 0x35b0(%rsp)
movq 0x35e0(%rsp), %rcx
movq %rcx, 0x800(%rsp)
movq 0x35c8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x35c0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x35bc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x35b0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x35dc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x35d8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x35d4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3cf8(%rsp)
movl $0x10, 0x3cf4(%rsp)
movq 0x3cf8(%rsp), %rax
movslq 0x3cf4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cf4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x808(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2100(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1373a22
movq 0x808(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2118(%rsp)
movb $0x1, 0x248b(%rsp)
testb $0x1, 0x248b(%rsp)
jne 0x1373b63
leaq 0x20d8(%rsp), %rax
movq %rax, 0x25c0(%rsp)
movq 0x25c0(%rsp), %rax
movq %rax, 0x4398(%rsp)
movq 0x4398(%rsp), %rax
movq %rax, 0x7f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1373b06
movq 0x7f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4394(%rsp) # imm = 0xFFFFFFFF
movl 0x4394(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4390(%rsp)
cmpl $0x1, 0x4390(%rsp)
jne 0x1373b06
movq 0x7f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1373ad4
movq 0x7f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1373ad2
jmp 0x1373b04
movq 0x7f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x43a0(%rsp)
cmpq $0x0, 0x43a0(%rsp)
je 0x1373b02
movq 0x43a0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1373b04
jmp 0x1373b06
movq 0x7f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1373b61
movq %rax, %rdi
callq 0x678a0
jmp 0x1373b63
leaq 0x20d8(%rsp), %rax
movq %rax, 0x25b8(%rsp)
movq 0x25b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7e8(%rsp)
leaq 0x20d8(%rsp), %rax
movq %rax, 0x2690(%rsp)
movq 0x2690(%rsp), %rax
movq %rax, 0x41f8(%rsp)
movq 0x41f8(%rsp), %rax
movq %rax, 0x7f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1373c54
movq 0x7f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41f4(%rsp) # imm = 0xFFFFFFFF
movl 0x41f4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41f0(%rsp)
cmpl $0x1, 0x41f0(%rsp)
jne 0x1373c54
movq 0x7f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1373c22
movq 0x7f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1373c20
jmp 0x1373c52
movq 0x7f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4470(%rsp)
cmpq $0x0, 0x4470(%rsp)
je 0x1373c50
movq 0x4470(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1373c52
jmp 0x1373c54
movq 0x7f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1373caf
movq %rax, %rdi
callq 0x678a0
movq 0x7e8(%rsp), %rax
movq %rax, 0x2120(%rsp)
movq 0x2180(%rsp), %rcx
movl 0x2128(%rsp), %eax
leaq 0x2088(%rsp), %rdx
movq %rdx, 0x2480(%rsp)
movq %rcx, 0x2478(%rsp)
movl %eax, 0x2474(%rsp)
movq 0x2478(%rsp), %rax
movq %rax, 0x7e0(%rsp)
movb $0x0, 0x2473(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2474(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2088(%rsp), %r10
movq %r10, 0x3618(%rsp)
movl %r9d, 0x3614(%rsp)
movl %r8d, 0x3610(%rsp)
movl %edi, 0x360c(%rsp)
movq %rsi, 0x3600(%rsp)
movq %rdx, 0x35f8(%rsp)
movl %ecx, 0x35f4(%rsp)
movq %rax, 0x35e8(%rsp)
movq 0x3618(%rsp), %rcx
movq %rcx, 0x7d8(%rsp)
movq 0x3600(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x35f8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x35f4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x35e8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3614(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3610(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x360c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ce8(%rsp)
movl $0x10, 0x3ce4(%rsp)
movq 0x3ce8(%rsp), %rax
movslq 0x3ce4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3ce4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7e0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x20b0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1373e7b
movq 0x7e0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x20c8(%rsp)
movb $0x1, 0x2473(%rsp)
testb $0x1, 0x2473(%rsp)
jne 0x1373fbc
leaq 0x2088(%rsp), %rax
movq %rax, 0x25c8(%rsp)
movq 0x25c8(%rsp), %rax
movq %rax, 0x4388(%rsp)
movq 0x4388(%rsp), %rax
movq %rax, 0x7d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1373f5f
movq 0x7d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4384(%rsp) # imm = 0xFFFFFFFF
movl 0x4384(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4380(%rsp)
cmpl $0x1, 0x4380(%rsp)
jne 0x1373f5f
movq 0x7d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1373f2d
movq 0x7d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1373f2b
jmp 0x1373f5d
movq 0x7d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x43a8(%rsp)
cmpq $0x0, 0x43a8(%rsp)
je 0x1373f5b
movq 0x43a8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1373f5d
jmp 0x1373f5f
movq 0x7d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1373fba
movq %rax, %rdi
callq 0x678a0
jmp 0x1373fbc
leaq 0x2088(%rsp), %rax
movq %rax, 0x25b0(%rsp)
movq 0x25b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7c0(%rsp)
leaq 0x2088(%rsp), %rax
movq %rax, 0x2698(%rsp)
movq 0x2698(%rsp), %rax
movq %rax, 0x41e8(%rsp)
movq 0x41e8(%rsp), %rax
movq %rax, 0x7c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13740ad
movq 0x7c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41e4(%rsp) # imm = 0xFFFFFFFF
movl 0x41e4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41e0(%rsp)
cmpl $0x1, 0x41e0(%rsp)
jne 0x13740ad
movq 0x7c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x137407b
movq 0x7c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1374079
jmp 0x13740ab
movq 0x7c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4478(%rsp)
cmpq $0x0, 0x4478(%rsp)
je 0x13740a9
movq 0x4478(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13740ab
jmp 0x13740ad
movq 0x7c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1374108
movq %rax, %rdi
callq 0x678a0
movq 0x7c0(%rsp), %rax
movq %rax, 0x20d0(%rsp)
movq 0x2178(%rsp), %rcx
movl 0x2128(%rsp), %eax
leaq 0x2038(%rsp), %rdx
movq %rdx, 0x2a20(%rsp)
movq %rcx, 0x2a18(%rsp)
movl %eax, 0x2a14(%rsp)
movq 0x2a18(%rsp), %rax
movq %rax, 0x7b8(%rsp)
movb $0x0, 0x2a13(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2a14(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2038(%rsp), %r10
movq %r10, 0x31f0(%rsp)
movl %r9d, 0x31ec(%rsp)
movl %r8d, 0x31e8(%rsp)
movl %edi, 0x31e4(%rsp)
movq %rsi, 0x31d8(%rsp)
movq %rdx, 0x31d0(%rsp)
movl %ecx, 0x31cc(%rsp)
movq %rax, 0x31c0(%rsp)
movq 0x31f0(%rsp), %rcx
movq %rcx, 0x7b0(%rsp)
movq 0x31d8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x31d0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x31cc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x31c0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x31ec(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x31e8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x31e4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3e18(%rsp)
movl $0x10, 0x3e14(%rsp)
movq 0x3e18(%rsp), %rax
movslq 0x3e14(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3e14(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7b8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2060(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13742d4
movq 0x7b8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2078(%rsp)
movb $0x1, 0x2a13(%rsp)
testb $0x1, 0x2a13(%rsp)
jne 0x1374415
leaq 0x2038(%rsp), %rax
movq %rax, 0x2a28(%rsp)
movq 0x2a28(%rsp), %rax
movq %rax, 0x3e28(%rsp)
movq 0x3e28(%rsp), %rax
movq %rax, 0x7a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13743b8
movq 0x7a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e24(%rsp) # imm = 0xFFFFFFFF
movl 0x3e24(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e20(%rsp)
cmpl $0x1, 0x3e20(%rsp)
jne 0x13743b8
movq 0x7a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1374386
movq 0x7a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1374384
jmp 0x13743b6
movq 0x7a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4658(%rsp)
cmpq $0x0, 0x4658(%rsp)
je 0x13743b4
movq 0x4658(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13743b6
jmp 0x13743b8
movq 0x7a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1374413
movq %rax, %rdi
callq 0x678a0
jmp 0x1374415
leaq 0x2038(%rsp), %rax
movq %rax, 0x2ac8(%rsp)
movq 0x2ac8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x798(%rsp)
leaq 0x2038(%rsp), %rax
movq %rax, 0x26a0(%rsp)
movq 0x26a0(%rsp), %rax
movq %rax, 0x41d8(%rsp)
movq 0x41d8(%rsp), %rax
movq %rax, 0x7a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1374506
movq 0x7a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41d4(%rsp) # imm = 0xFFFFFFFF
movl 0x41d4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41d0(%rsp)
cmpl $0x1, 0x41d0(%rsp)
jne 0x1374506
movq 0x7a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13744d4
movq 0x7a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13744d2
jmp 0x1374504
movq 0x7a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4480(%rsp)
cmpq $0x0, 0x4480(%rsp)
je 0x1374502
movq 0x4480(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1374504
jmp 0x1374506
movq 0x7a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1374561
movq %rax, %rdi
callq 0x678a0
movq 0x798(%rsp), %rax
movq %rax, 0x2080(%rsp)
movl $0x0, 0x2034(%rsp)
movl 0x2034(%rsp), %eax
cmpl 0x2160(%rsp), %eax
jge 0x13746f5
movl $0x0, 0x2030(%rsp)
movl 0x2030(%rsp), %eax
cmpl 0x2164(%rsp), %eax
jge 0x13746dd
movq 0x20d0(%rsp), %rax
movq %rax, 0x2c38(%rsp)
movq 0x2c38(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x2000(%rsp)
movl $0x0, 0x1ffc(%rsp)
movl 0x1ffc(%rsp), %eax
cmpl 0x2168(%rsp), %eax
jge 0x13746b3
movq 0x2120(%rsp), %rax
movq %rax, 0x2c30(%rsp)
movq 0x2c30(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1fc0(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0x1fc0(%rsp), %rsi
leaq 0x2000(%rsp), %rdx
callq 0x1453760
vmovaps %ymm0, 0x1fa0(%rsp)
movq 0x2080(%rsp), %rax
vmovaps 0x1fa0(%rsp), %ymm0
movq %rax, 0x3120(%rsp)
vmovaps %ymm0, 0x3100(%rsp)
vmovaps 0x3100(%rsp), %ymm0
movq 0x3120(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x2120(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x2120(%rsp)
movq 0x2080(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x2080(%rsp)
movl 0x1ffc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1ffc(%rsp)
jmp 0x13745df
movq 0x20d0(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x20d0(%rsp)
movl 0x2030(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x2030(%rsp)
jmp 0x137459b
jmp 0x13746df
movl 0x2034(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x2034(%rsp)
jmp 0x137457c
jmp 0x13746f7
movl 0x2128(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x2128(%rsp)
jmp 0x1373852
movl $0x0, 0x2194(%rsp)
jmp 0x1382aba
movq 0x2180(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x13751f5
movl $0x0, 0x1f9c(%rsp)
movl 0x1f9c(%rsp), %eax
cmpl 0x215c(%rsp), %eax
jge 0x13751e5
movq 0x2188(%rsp), %rcx
movl 0x1f9c(%rsp), %eax
leaq 0x1f48(%rsp), %rdx
movq %rdx, 0x2468(%rsp)
movq %rcx, 0x2460(%rsp)
movl %eax, 0x245c(%rsp)
movq 0x2460(%rsp), %rax
movq %rax, 0x790(%rsp)
movb $0x0, 0x245b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x245c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1f48(%rsp), %r10
movq %r10, 0x3650(%rsp)
movl %r9d, 0x364c(%rsp)
movl %r8d, 0x3648(%rsp)
movl %edi, 0x3644(%rsp)
movq %rsi, 0x3638(%rsp)
movq %rdx, 0x3630(%rsp)
movl %ecx, 0x362c(%rsp)
movq %rax, 0x3620(%rsp)
movq 0x3650(%rsp), %rcx
movq %rcx, 0x788(%rsp)
movq 0x3638(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3630(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x362c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3620(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x364c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3648(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3644(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3cd8(%rsp)
movl $0x10, 0x3cd4(%rsp)
movq 0x3cd8(%rsp), %rax
movslq 0x3cd4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cd4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x790(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1f70(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x137490a
movq 0x790(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1f88(%rsp)
movb $0x1, 0x245b(%rsp)
testb $0x1, 0x245b(%rsp)
jne 0x1374a4b
leaq 0x1f48(%rsp), %rax
movq %rax, 0x25d0(%rsp)
movq 0x25d0(%rsp), %rax
movq %rax, 0x4378(%rsp)
movq 0x4378(%rsp), %rax
movq %rax, 0x780(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13749ee
movq 0x780(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4374(%rsp) # imm = 0xFFFFFFFF
movl 0x4374(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4370(%rsp)
cmpl $0x1, 0x4370(%rsp)
jne 0x13749ee
movq 0x780(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13749bc
movq 0x780(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13749ba
jmp 0x13749ec
movq 0x780(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x43b0(%rsp)
cmpq $0x0, 0x43b0(%rsp)
je 0x13749ea
movq 0x43b0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13749ec
jmp 0x13749ee
movq 0x780(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1374a49
movq %rax, %rdi
callq 0x678a0
jmp 0x1374a4b
leaq 0x1f48(%rsp), %rax
movq %rax, 0x25a8(%rsp)
movq 0x25a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x770(%rsp)
leaq 0x1f48(%rsp), %rax
movq %rax, 0x26a8(%rsp)
movq 0x26a8(%rsp), %rax
movq %rax, 0x41c8(%rsp)
movq 0x41c8(%rsp), %rax
movq %rax, 0x778(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1374b3c
movq 0x778(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41c4(%rsp) # imm = 0xFFFFFFFF
movl 0x41c4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41c0(%rsp)
cmpl $0x1, 0x41c0(%rsp)
jne 0x1374b3c
movq 0x778(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1374b0a
movq 0x778(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1374b08
jmp 0x1374b3a
movq 0x778(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4488(%rsp)
cmpq $0x0, 0x4488(%rsp)
je 0x1374b38
movq 0x4488(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1374b3a
jmp 0x1374b3c
movq 0x778(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1374b97
movq %rax, %rdi
callq 0x678a0
movq 0x770(%rsp), %rax
movq %rax, 0x1f90(%rsp)
movq 0x2180(%rsp), %rcx
movl 0x1f9c(%rsp), %eax
movq %rcx, 0x2b08(%rsp)
movl %eax, 0x2b04(%rsp)
movq 0x2b08(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2b04(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x1f40(%rsp)
movq 0x2178(%rsp), %rcx
movl 0x1f9c(%rsp), %eax
leaq 0x1ef0(%rsp), %rdx
movq %rdx, 0x2a00(%rsp)
movq %rcx, 0x29f8(%rsp)
movl %eax, 0x29f4(%rsp)
movq 0x29f8(%rsp), %rax
movq %rax, 0x768(%rsp)
movb $0x0, 0x29f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x29f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1ef0(%rsp), %r10
movq %r10, 0x3228(%rsp)
movl %r9d, 0x3224(%rsp)
movl %r8d, 0x3220(%rsp)
movl %edi, 0x321c(%rsp)
movq %rsi, 0x3210(%rsp)
movq %rdx, 0x3208(%rsp)
movl %ecx, 0x3204(%rsp)
movq %rax, 0x31f8(%rsp)
movq 0x3228(%rsp), %rcx
movq %rcx, 0x760(%rsp)
movq 0x3210(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3208(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3204(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x31f8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3224(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3220(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x321c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3e08(%rsp)
movl $0x10, 0x3e04(%rsp)
movq 0x3e08(%rsp), %rax
movslq 0x3e04(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3e04(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x768(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1f18(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1374dac
movq 0x768(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1f30(%rsp)
movb $0x1, 0x29f3(%rsp)
testb $0x1, 0x29f3(%rsp)
jne 0x1374eed
leaq 0x1ef0(%rsp), %rax
movq %rax, 0x2a08(%rsp)
movq 0x2a08(%rsp), %rax
movq %rax, 0x3e38(%rsp)
movq 0x3e38(%rsp), %rax
movq %rax, 0x758(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1374e90
movq 0x758(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e34(%rsp) # imm = 0xFFFFFFFF
movl 0x3e34(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e30(%rsp)
cmpl $0x1, 0x3e30(%rsp)
jne 0x1374e90
movq 0x758(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1374e5e
movq 0x758(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1374e5c
jmp 0x1374e8e
movq 0x758(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4650(%rsp)
cmpq $0x0, 0x4650(%rsp)
je 0x1374e8c
movq 0x4650(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1374e8e
jmp 0x1374e90
movq 0x758(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1374eeb
movq %rax, %rdi
callq 0x678a0
jmp 0x1374eed
leaq 0x1ef0(%rsp), %rax
movq %rax, 0x2ac0(%rsp)
movq 0x2ac0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x748(%rsp)
leaq 0x1ef0(%rsp), %rax
movq %rax, 0x26b0(%rsp)
movq 0x26b0(%rsp), %rax
movq %rax, 0x41b8(%rsp)
movq 0x41b8(%rsp), %rax
movq %rax, 0x750(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1374fde
movq 0x750(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41b4(%rsp) # imm = 0xFFFFFFFF
movl 0x41b4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41b0(%rsp)
cmpl $0x1, 0x41b0(%rsp)
jne 0x1374fde
movq 0x750(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1374fac
movq 0x750(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1374faa
jmp 0x1374fdc
movq 0x750(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4490(%rsp)
cmpq $0x0, 0x4490(%rsp)
je 0x1374fda
movq 0x4490(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1374fdc
jmp 0x1374fde
movq 0x750(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1375039
movq %rax, %rdi
callq 0x678a0
movq 0x748(%rsp), %rax
movq %rax, 0x1f38(%rsp)
movl $0x0, 0x1eec(%rsp)
movl 0x1eec(%rsp), %eax
cmpl 0x2160(%rsp), %eax
jge 0x13751cd
movq 0x1f40(%rsp), %rax
movq %rax, 0x2c28(%rsp)
movq 0x2c28(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1ec0(%rsp)
movl $0x0, 0x1ebc(%rsp)
movl 0x1ebc(%rsp), %eax
cmpl 0x2164(%rsp), %eax
jge 0x13751a3
movl $0x0, 0x1eb8(%rsp)
movl 0x1eb8(%rsp), %eax
cmpl 0x2168(%rsp), %eax
jge 0x137518b
movq 0x1f90(%rsp), %rax
movq %rax, 0x2c20(%rsp)
movq 0x2c20(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1e80(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0x1e80(%rsp), %rsi
leaq 0x1ec0(%rsp), %rdx
callq 0x1453760
vmovaps %ymm0, 0x1e60(%rsp)
movq 0x1f38(%rsp), %rax
vmovaps 0x1e60(%rsp), %ymm0
movq %rax, 0x30f8(%rsp)
vmovaps %ymm0, 0x30c0(%rsp)
vmovaps 0x30c0(%rsp), %ymm0
movq 0x30f8(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x1f90(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1f90(%rsp)
movq 0x1f38(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1f38(%rsp)
movl 0x1eb8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1eb8(%rsp)
jmp 0x13750b7
jmp 0x137518d
movl 0x1ebc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1ebc(%rsp)
jmp 0x1375098
movq 0x1f40(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1f40(%rsp)
movl 0x1eec(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1eec(%rsp)
jmp 0x1375054
jmp 0x13751cf
movl 0x1f9c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1f9c(%rsp)
jmp 0x137473a
movl $0x0, 0x2194(%rsp)
jmp 0x1382aba
movq 0x2180(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1375c74
movq 0x2180(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1375250
cmpl $0x1, 0x212c(%rsp)
jne 0x1375250
movq 0x2188(%rsp), %rdi
movq 0x2180(%rsp), %rsi
movq 0x2178(%rsp), %rdx
movq 0x2170(%rsp), %rcx
callq 0x1442d90
movl %eax, 0x2194(%rsp)
jmp 0x1382aba
movl $0x0, 0x1e5c(%rsp)
movl 0x1e5c(%rsp), %eax
cmpl 0x215c(%rsp), %eax
jge 0x1375c64
movq 0x2188(%rsp), %rcx
movl 0x1e5c(%rsp), %eax
leaq 0x1e08(%rsp), %rdx
movq %rdx, 0x2450(%rsp)
movq %rcx, 0x2448(%rsp)
movl %eax, 0x2444(%rsp)
movq 0x2448(%rsp), %rax
movq %rax, 0x740(%rsp)
movb $0x0, 0x2443(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2444(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1e08(%rsp), %r10
movq %r10, 0x3688(%rsp)
movl %r9d, 0x3684(%rsp)
movl %r8d, 0x3680(%rsp)
movl %edi, 0x367c(%rsp)
movq %rsi, 0x3670(%rsp)
movq %rdx, 0x3668(%rsp)
movl %ecx, 0x3664(%rsp)
movq %rax, 0x3658(%rsp)
movq 0x3688(%rsp), %rcx
movq %rcx, 0x738(%rsp)
movq 0x3670(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3668(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3664(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3658(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3684(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3680(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x367c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3cc8(%rsp)
movl $0x10, 0x3cc4(%rsp)
movq 0x3cc8(%rsp), %rax
movslq 0x3cc4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cc4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x740(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1e30(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x137542b
movq 0x740(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1e48(%rsp)
movb $0x1, 0x2443(%rsp)
testb $0x1, 0x2443(%rsp)
jne 0x137556c
leaq 0x1e08(%rsp), %rax
movq %rax, 0x25d8(%rsp)
movq 0x25d8(%rsp), %rax
movq %rax, 0x4368(%rsp)
movq 0x4368(%rsp), %rax
movq %rax, 0x730(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137550f
movq 0x730(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4364(%rsp) # imm = 0xFFFFFFFF
movl 0x4364(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4360(%rsp)
cmpl $0x1, 0x4360(%rsp)
jne 0x137550f
movq 0x730(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13754dd
movq 0x730(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13754db
jmp 0x137550d
movq 0x730(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x43b8(%rsp)
cmpq $0x0, 0x43b8(%rsp)
je 0x137550b
movq 0x43b8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x137550d
jmp 0x137550f
movq 0x730(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x137556a
movq %rax, %rdi
callq 0x678a0
jmp 0x137556c
leaq 0x1e08(%rsp), %rax
movq %rax, 0x25a0(%rsp)
movq 0x25a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x720(%rsp)
leaq 0x1e08(%rsp), %rax
movq %rax, 0x26b8(%rsp)
movq 0x26b8(%rsp), %rax
movq %rax, 0x41a8(%rsp)
movq 0x41a8(%rsp), %rax
movq %rax, 0x728(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137565d
movq 0x728(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41a4(%rsp) # imm = 0xFFFFFFFF
movl 0x41a4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41a0(%rsp)
cmpl $0x1, 0x41a0(%rsp)
jne 0x137565d
movq 0x728(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x137562b
movq 0x728(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1375629
jmp 0x137565b
movq 0x728(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4498(%rsp)
cmpq $0x0, 0x4498(%rsp)
je 0x1375659
movq 0x4498(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x137565b
jmp 0x137565d
movq 0x728(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13756b8
movq %rax, %rdi
callq 0x678a0
movq 0x720(%rsp), %rax
movq %rax, 0x1e50(%rsp)
movq 0x2180(%rsp), %rax
movq %rax, 0x2598(%rsp)
movq 0x2598(%rsp), %rax
movq (%rax), %rax
movl 0x1e5c(%rsp), %ecx
shll $0x3, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2c18(%rsp)
movq 0x2c18(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1de0(%rsp)
movq 0x2178(%rsp), %rcx
movl 0x1e5c(%rsp), %eax
leaq 0x1d90(%rsp), %rdx
movq %rdx, 0x29e0(%rsp)
movq %rcx, 0x29d8(%rsp)
movl %eax, 0x29d4(%rsp)
movq 0x29d8(%rsp), %rax
movq %rax, 0x718(%rsp)
movb $0x0, 0x29d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x29d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1d90(%rsp), %r10
movq %r10, 0x3260(%rsp)
movl %r9d, 0x325c(%rsp)
movl %r8d, 0x3258(%rsp)
movl %edi, 0x3254(%rsp)
movq %rsi, 0x3248(%rsp)
movq %rdx, 0x3240(%rsp)
movl %ecx, 0x323c(%rsp)
movq %rax, 0x3230(%rsp)
movq 0x3260(%rsp), %rcx
movq %rcx, 0x710(%rsp)
movq 0x3248(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3240(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x323c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3230(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x325c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3258(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3254(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3df8(%rsp)
movl $0x10, 0x3df4(%rsp)
movq 0x3df8(%rsp), %rax
movslq 0x3df4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3df4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x718(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1db8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13758d0
movq 0x718(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1dd0(%rsp)
movb $0x1, 0x29d3(%rsp)
testb $0x1, 0x29d3(%rsp)
jne 0x1375a11
leaq 0x1d90(%rsp), %rax
movq %rax, 0x29e8(%rsp)
movq 0x29e8(%rsp), %rax
movq %rax, 0x3e48(%rsp)
movq 0x3e48(%rsp), %rax
movq %rax, 0x708(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13759b4
movq 0x708(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e44(%rsp) # imm = 0xFFFFFFFF
movl 0x3e44(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e40(%rsp)
cmpl $0x1, 0x3e40(%rsp)
jne 0x13759b4
movq 0x708(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1375982
movq 0x708(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1375980
jmp 0x13759b2
movq 0x708(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4648(%rsp)
cmpq $0x0, 0x4648(%rsp)
je 0x13759b0
movq 0x4648(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13759b2
jmp 0x13759b4
movq 0x708(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1375a0f
movq %rax, %rdi
callq 0x678a0
jmp 0x1375a11
leaq 0x1d90(%rsp), %rax
movq %rax, 0x2ab8(%rsp)
movq 0x2ab8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6f8(%rsp)
leaq 0x1d90(%rsp), %rax
movq %rax, 0x26c0(%rsp)
movq 0x26c0(%rsp), %rax
movq %rax, 0x4198(%rsp)
movq 0x4198(%rsp), %rax
movq %rax, 0x700(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1375b02
movq 0x700(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4194(%rsp) # imm = 0xFFFFFFFF
movl 0x4194(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4190(%rsp)
cmpl $0x1, 0x4190(%rsp)
jne 0x1375b02
movq 0x700(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1375ad0
movq 0x700(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1375ace
jmp 0x1375b00
movq 0x700(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44a0(%rsp)
cmpq $0x0, 0x44a0(%rsp)
je 0x1375afe
movq 0x44a0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1375b00
jmp 0x1375b02
movq 0x700(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1375b5d
movq %rax, %rdi
callq 0x678a0
movq 0x6f8(%rsp), %rax
movq %rax, 0x1dd8(%rsp)
movl $0x0, 0x1d8c(%rsp)
movl 0x1d8c(%rsp), %eax
cmpl 0x2158(%rsp), %eax
jge 0x1375c4c
movq 0x1e50(%rsp), %rax
movq %rax, 0x2c10(%rsp)
movq 0x2c10(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1d60(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0x1d60(%rsp), %rsi
leaq 0x1de0(%rsp), %rdx
callq 0x1453760
vmovaps %ymm0, 0x1d40(%rsp)
movq 0x1dd8(%rsp), %rax
vmovaps 0x1d40(%rsp), %ymm0
movq %rax, 0x30b8(%rsp)
vmovaps %ymm0, 0x3080(%rsp)
vmovaps 0x3080(%rsp), %ymm0
movq 0x30b8(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x1e50(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1e50(%rsp)
movq 0x1dd8(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1dd8(%rsp)
movl 0x1d8c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1d8c(%rsp)
jmp 0x1375b78
jmp 0x1375c4e
movl 0x1e5c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1e5c(%rsp)
jmp 0x137525b
movl $0x0, 0x2194(%rsp)
jmp 0x1382aba
jmp 0x1382aaf
movq 0x2188(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x137f642
movq 0x2180(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1376c40
movq 0x2178(%rsp), %rdi
movl 0x2148(%rsp), %esi
movl 0x2144(%rsp), %edx
movl 0x2140(%rsp), %ecx
movl 0x213c(%rsp), %r8d
movq 0x2130(%rsp), %r9
movl 0x212c(%rsp), %r10d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x2178(%rsp), %rax
movq %rax, 0x2220(%rsp)
movq 0x2220(%rsp), %rcx
movq %rcx, 0x6e8(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x6f7(%rsp)
je 0x1375d4d
movq 0x6e8(%rsp), %rax
movq %rax, 0x3130(%rsp)
movq 0x3130(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x6f7(%rsp)
movb 0x6f7(%rsp), %al
testb $0x1, %al
jne 0x1375d5a
jmp 0x1375d6a
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x1382aba
movl $0x0, 0x1d3c(%rsp)
movl 0x1d3c(%rsp), %eax
cmpl 0x213c(%rsp), %eax
jge 0x1376c30
movq 0x2188(%rsp), %rcx
movl 0x1d3c(%rsp), %eax
leaq 0x1ce8(%rsp), %rdx
movq %rdx, 0x2438(%rsp)
movq %rcx, 0x2430(%rsp)
movl %eax, 0x242c(%rsp)
movq 0x2430(%rsp), %rax
movq %rax, 0x6e0(%rsp)
movb $0x0, 0x242b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x242c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1ce8(%rsp), %r10
movq %r10, 0x36c0(%rsp)
movl %r9d, 0x36bc(%rsp)
movl %r8d, 0x36b8(%rsp)
movl %edi, 0x36b4(%rsp)
movq %rsi, 0x36a8(%rsp)
movq %rdx, 0x36a0(%rsp)
movl %ecx, 0x369c(%rsp)
movq %rax, 0x3690(%rsp)
movq 0x36c0(%rsp), %rcx
movq %rcx, 0x6d8(%rsp)
movq 0x36a8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x36a0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x369c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3690(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x36bc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x36b8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x36b4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3cb8(%rsp)
movl $0x10, 0x3cb4(%rsp)
movq 0x3cb8(%rsp), %rax
movslq 0x3cb4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cb4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6e0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1d10(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1375f45
movq 0x6e0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1d28(%rsp)
movb $0x1, 0x242b(%rsp)
testb $0x1, 0x242b(%rsp)
jne 0x1376086
leaq 0x1ce8(%rsp), %rax
movq %rax, 0x25e0(%rsp)
movq 0x25e0(%rsp), %rax
movq %rax, 0x4358(%rsp)
movq 0x4358(%rsp), %rax
movq %rax, 0x6d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1376029
movq 0x6d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4354(%rsp) # imm = 0xFFFFFFFF
movl 0x4354(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4350(%rsp)
cmpl $0x1, 0x4350(%rsp)
jne 0x1376029
movq 0x6d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1375ff7
movq 0x6d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1375ff5
jmp 0x1376027
movq 0x6d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x43c0(%rsp)
cmpq $0x0, 0x43c0(%rsp)
je 0x1376025
movq 0x43c0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1376027
jmp 0x1376029
movq 0x6d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1376084
movq %rax, %rdi
callq 0x678a0
jmp 0x1376086
leaq 0x1ce8(%rsp), %rax
movq %rax, 0x2590(%rsp)
movq 0x2590(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6c0(%rsp)
leaq 0x1ce8(%rsp), %rax
movq %rax, 0x26c8(%rsp)
movq 0x26c8(%rsp), %rax
movq %rax, 0x4188(%rsp)
movq 0x4188(%rsp), %rax
movq %rax, 0x6c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1376177
movq 0x6c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4184(%rsp) # imm = 0xFFFFFFFF
movl 0x4184(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4180(%rsp)
cmpl $0x1, 0x4180(%rsp)
jne 0x1376177
movq 0x6c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1376145
movq 0x6c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1376143
jmp 0x1376175
movq 0x6c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44a8(%rsp)
cmpq $0x0, 0x44a8(%rsp)
je 0x1376173
movq 0x44a8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1376175
jmp 0x1376177
movq 0x6c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13761d2
movq %rax, %rdi
callq 0x678a0
movq 0x6c0(%rsp), %rax
movq %rax, 0x1d30(%rsp)
movq 0x2180(%rsp), %rcx
movl 0x1d3c(%rsp), %eax
leaq 0x1c98(%rsp), %rdx
movq %rdx, 0x2420(%rsp)
movq %rcx, 0x2418(%rsp)
movl %eax, 0x2414(%rsp)
movq 0x2418(%rsp), %rax
movq %rax, 0x6b8(%rsp)
movb $0x0, 0x2413(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2414(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1c98(%rsp), %r10
movq %r10, 0x36f8(%rsp)
movl %r9d, 0x36f4(%rsp)
movl %r8d, 0x36f0(%rsp)
movl %edi, 0x36ec(%rsp)
movq %rsi, 0x36e0(%rsp)
movq %rdx, 0x36d8(%rsp)
movl %ecx, 0x36d4(%rsp)
movq %rax, 0x36c8(%rsp)
movq 0x36f8(%rsp), %rcx
movq %rcx, 0x6b0(%rsp)
movq 0x36e0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x36d8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x36d4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x36c8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x36f4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x36f0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x36ec(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ca8(%rsp)
movl $0x10, 0x3ca4(%rsp)
movq 0x3ca8(%rsp), %rax
movslq 0x3ca4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3ca4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6b8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1cc0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x137639e
movq 0x6b8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1cd8(%rsp)
movb $0x1, 0x2413(%rsp)
testb $0x1, 0x2413(%rsp)
jne 0x13764df
leaq 0x1c98(%rsp), %rax
movq %rax, 0x25e8(%rsp)
movq 0x25e8(%rsp), %rax
movq %rax, 0x4348(%rsp)
movq 0x4348(%rsp), %rax
movq %rax, 0x6a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1376482
movq 0x6a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4344(%rsp) # imm = 0xFFFFFFFF
movl 0x4344(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4340(%rsp)
cmpl $0x1, 0x4340(%rsp)
jne 0x1376482
movq 0x6a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1376450
movq 0x6a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x137644e
jmp 0x1376480
movq 0x6a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x43c8(%rsp)
cmpq $0x0, 0x43c8(%rsp)
je 0x137647e
movq 0x43c8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1376480
jmp 0x1376482
movq 0x6a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13764dd
movq %rax, %rdi
callq 0x678a0
jmp 0x13764df
leaq 0x1c98(%rsp), %rax
movq %rax, 0x2588(%rsp)
movq 0x2588(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x698(%rsp)
leaq 0x1c98(%rsp), %rax
movq %rax, 0x26d0(%rsp)
movq 0x26d0(%rsp), %rax
movq %rax, 0x4178(%rsp)
movq 0x4178(%rsp), %rax
movq %rax, 0x6a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13765d0
movq 0x6a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4174(%rsp) # imm = 0xFFFFFFFF
movl 0x4174(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4170(%rsp)
cmpl $0x1, 0x4170(%rsp)
jne 0x13765d0
movq 0x6a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x137659e
movq 0x6a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x137659c
jmp 0x13765ce
movq 0x6a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44b0(%rsp)
cmpq $0x0, 0x44b0(%rsp)
je 0x13765cc
movq 0x44b0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13765ce
jmp 0x13765d0
movq 0x6a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x137662b
movq %rax, %rdi
callq 0x678a0
movq 0x698(%rsp), %rax
movq %rax, 0x1ce0(%rsp)
movq 0x2178(%rsp), %rcx
movl 0x1d3c(%rsp), %eax
leaq 0x1c48(%rsp), %rdx
movq %rdx, 0x29c0(%rsp)
movq %rcx, 0x29b8(%rsp)
movl %eax, 0x29b4(%rsp)
movq 0x29b8(%rsp), %rax
movq %rax, 0x690(%rsp)
movb $0x0, 0x29b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x29b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1c48(%rsp), %r10
movq %r10, 0x3298(%rsp)
movl %r9d, 0x3294(%rsp)
movl %r8d, 0x3290(%rsp)
movl %edi, 0x328c(%rsp)
movq %rsi, 0x3280(%rsp)
movq %rdx, 0x3278(%rsp)
movl %ecx, 0x3274(%rsp)
movq %rax, 0x3268(%rsp)
movq 0x3298(%rsp), %rcx
movq %rcx, 0x688(%rsp)
movq 0x3280(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3278(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3274(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3268(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3294(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3290(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x328c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3de8(%rsp)
movl $0x10, 0x3de4(%rsp)
movq 0x3de8(%rsp), %rax
movslq 0x3de4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3de4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x690(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1c70(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13767f7
movq 0x690(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1c88(%rsp)
movb $0x1, 0x29b3(%rsp)
testb $0x1, 0x29b3(%rsp)
jne 0x1376938
leaq 0x1c48(%rsp), %rax
movq %rax, 0x29c8(%rsp)
movq 0x29c8(%rsp), %rax
movq %rax, 0x3e58(%rsp)
movq 0x3e58(%rsp), %rax
movq %rax, 0x680(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13768db
movq 0x680(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e54(%rsp) # imm = 0xFFFFFFFF
movl 0x3e54(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e50(%rsp)
cmpl $0x1, 0x3e50(%rsp)
jne 0x13768db
movq 0x680(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13768a9
movq 0x680(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13768a7
jmp 0x13768d9
movq 0x680(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4640(%rsp)
cmpq $0x0, 0x4640(%rsp)
je 0x13768d7
movq 0x4640(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13768d9
jmp 0x13768db
movq 0x680(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1376936
movq %rax, %rdi
callq 0x678a0
jmp 0x1376938
leaq 0x1c48(%rsp), %rax
movq %rax, 0x2ab0(%rsp)
movq 0x2ab0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x670(%rsp)
leaq 0x1c48(%rsp), %rax
movq %rax, 0x26d8(%rsp)
movq 0x26d8(%rsp), %rax
movq %rax, 0x4168(%rsp)
movq 0x4168(%rsp), %rax
movq %rax, 0x678(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1376a29
movq 0x678(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4164(%rsp) # imm = 0xFFFFFFFF
movl 0x4164(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4160(%rsp)
cmpl $0x1, 0x4160(%rsp)
jne 0x1376a29
movq 0x678(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13769f7
movq 0x678(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13769f5
jmp 0x1376a27
movq 0x678(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44b8(%rsp)
cmpq $0x0, 0x44b8(%rsp)
je 0x1376a25
movq 0x44b8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1376a27
jmp 0x1376a29
movq 0x678(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1376a84
movq %rax, %rdi
callq 0x678a0
movq 0x670(%rsp), %rax
movq %rax, 0x1c90(%rsp)
movl $0x0, 0x1c44(%rsp)
movl 0x1c44(%rsp), %eax
cmpl 0x2140(%rsp), %eax
jge 0x1376c18
movl $0x0, 0x1c40(%rsp)
movl 0x1c40(%rsp), %eax
cmpl 0x2144(%rsp), %eax
jge 0x1376c00
movq 0x1d30(%rsp), %rax
movq %rax, 0x2c08(%rsp)
movq 0x2c08(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1c20(%rsp)
movl $0x0, 0x1c1c(%rsp)
movl 0x1c1c(%rsp), %eax
cmpl 0x2148(%rsp), %eax
jge 0x1376bd6
movq 0x1ce0(%rsp), %rax
movq %rax, 0x2c00(%rsp)
movq 0x2c00(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1be0(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0x1c20(%rsp), %rsi
leaq 0x1be0(%rsp), %rdx
callq 0x1453760
vmovaps %ymm0, 0x1bc0(%rsp)
movq 0x1c90(%rsp), %rax
vmovaps 0x1bc0(%rsp), %ymm0
movq %rax, 0x3078(%rsp)
vmovaps %ymm0, 0x3040(%rsp)
vmovaps 0x3040(%rsp), %ymm0
movq 0x3078(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x1ce0(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1ce0(%rsp)
movq 0x1c90(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1c90(%rsp)
movl 0x1c1c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c1c(%rsp)
jmp 0x1376b02
movq 0x1d30(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1d30(%rsp)
movl 0x1c40(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c40(%rsp)
jmp 0x1376abe
jmp 0x1376c02
movl 0x1c44(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c44(%rsp)
jmp 0x1376a9f
jmp 0x1376c1a
movl 0x1d3c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1d3c(%rsp)
jmp 0x1375d75
movl $0x0, 0x2194(%rsp)
jmp 0x1382aba
movq 0x2180(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x137e05d
cmpl $0x1, 0x2148(%rsp)
jne 0x1377b98
cmpl $0x1, 0x2144(%rsp)
jne 0x1377b98
movl 0x213c(%rsp), %eax
cmpl 0x215c(%rsp), %eax
jne 0x1377b98
movq 0x2178(%rsp), %rdi
movl 0x2168(%rsp), %esi
movl 0x2164(%rsp), %edx
movl 0x215c(%rsp), %ecx
movq 0x2150(%rsp), %r8
movl 0x214c(%rsp), %r9d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2178(%rsp), %rax
movq %rax, 0x2218(%rsp)
movq 0x2218(%rsp), %rcx
movq %rcx, 0x660(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x66f(%rsp)
je 0x1376d25
movq 0x660(%rsp), %rax
movq %rax, 0x3138(%rsp)
movq 0x3138(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x66f(%rsp)
movb 0x66f(%rsp), %al
testb $0x1, %al
jne 0x1376d32
jmp 0x1376d42
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x1382aba
movl $0x0, 0x1bbc(%rsp)
movl 0x1bbc(%rsp), %eax
cmpl 0x215c(%rsp), %eax
jge 0x1377b88
movq 0x2188(%rsp), %rcx
movl 0x1bbc(%rsp), %eax
leaq 0x1b68(%rsp), %rdx
movq %rdx, 0x2408(%rsp)
movq %rcx, 0x2400(%rsp)
movl %eax, 0x23fc(%rsp)
movq 0x2400(%rsp), %rax
movq %rax, 0x658(%rsp)
movb $0x0, 0x23fb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x23fc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1b68(%rsp), %r10
movq %r10, 0x3730(%rsp)
movl %r9d, 0x372c(%rsp)
movl %r8d, 0x3728(%rsp)
movl %edi, 0x3724(%rsp)
movq %rsi, 0x3718(%rsp)
movq %rdx, 0x3710(%rsp)
movl %ecx, 0x370c(%rsp)
movq %rax, 0x3700(%rsp)
movq 0x3730(%rsp), %rcx
movq %rcx, 0x650(%rsp)
movq 0x3718(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3710(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x370c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3700(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x372c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3728(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3724(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c98(%rsp)
movl $0x10, 0x3c94(%rsp)
movq 0x3c98(%rsp), %rax
movslq 0x3c94(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c94(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x658(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1b90(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1376f1d
movq 0x658(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1ba8(%rsp)
movb $0x1, 0x23fb(%rsp)
testb $0x1, 0x23fb(%rsp)
jne 0x137705e
leaq 0x1b68(%rsp), %rax
movq %rax, 0x25f0(%rsp)
movq 0x25f0(%rsp), %rax
movq %rax, 0x4338(%rsp)
movq 0x4338(%rsp), %rax
movq %rax, 0x648(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1377001
movq 0x648(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4334(%rsp) # imm = 0xFFFFFFFF
movl 0x4334(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4330(%rsp)
cmpl $0x1, 0x4330(%rsp)
jne 0x1377001
movq 0x648(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1376fcf
movq 0x648(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1376fcd
jmp 0x1376fff
movq 0x648(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x43d0(%rsp)
cmpq $0x0, 0x43d0(%rsp)
je 0x1376ffd
movq 0x43d0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1376fff
jmp 0x1377001
movq 0x648(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x137705c
movq %rax, %rdi
callq 0x678a0
jmp 0x137705e
leaq 0x1b68(%rsp), %rax
movq %rax, 0x2580(%rsp)
movq 0x2580(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x638(%rsp)
leaq 0x1b68(%rsp), %rax
movq %rax, 0x26e0(%rsp)
movq 0x26e0(%rsp), %rax
movq %rax, 0x4158(%rsp)
movq 0x4158(%rsp), %rax
movq %rax, 0x640(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137714f
movq 0x640(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4154(%rsp) # imm = 0xFFFFFFFF
movl 0x4154(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4150(%rsp)
cmpl $0x1, 0x4150(%rsp)
jne 0x137714f
movq 0x640(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x137711d
movq 0x640(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x137711b
jmp 0x137714d
movq 0x640(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44c0(%rsp)
cmpq $0x0, 0x44c0(%rsp)
je 0x137714b
movq 0x44c0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x137714d
jmp 0x137714f
movq 0x640(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13771aa
movq %rax, %rdi
callq 0x678a0
movq 0x638(%rsp), %rax
movq %rax, 0x1bb0(%rsp)
movq 0x2180(%rsp), %rcx
movl 0x1bbc(%rsp), %eax
leaq 0x1b18(%rsp), %rdx
movq %rdx, 0x23f0(%rsp)
movq %rcx, 0x23e8(%rsp)
movl %eax, 0x23e4(%rsp)
movq 0x23e8(%rsp), %rax
movq %rax, 0x630(%rsp)
movb $0x0, 0x23e3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x23e4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1b18(%rsp), %r10
movq %r10, 0x3768(%rsp)
movl %r9d, 0x3764(%rsp)
movl %r8d, 0x3760(%rsp)
movl %edi, 0x375c(%rsp)
movq %rsi, 0x3750(%rsp)
movq %rdx, 0x3748(%rsp)
movl %ecx, 0x3744(%rsp)
movq %rax, 0x3738(%rsp)
movq 0x3768(%rsp), %rcx
movq %rcx, 0x628(%rsp)
movq 0x3750(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3748(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3744(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3738(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3764(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3760(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x375c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c88(%rsp)
movl $0x10, 0x3c84(%rsp)
movq 0x3c88(%rsp), %rax
movslq 0x3c84(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c84(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x630(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1b40(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1377376
movq 0x630(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1b58(%rsp)
movb $0x1, 0x23e3(%rsp)
testb $0x1, 0x23e3(%rsp)
jne 0x13774b7
leaq 0x1b18(%rsp), %rax
movq %rax, 0x25f8(%rsp)
movq 0x25f8(%rsp), %rax
movq %rax, 0x4328(%rsp)
movq 0x4328(%rsp), %rax
movq %rax, 0x620(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137745a
movq 0x620(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4324(%rsp) # imm = 0xFFFFFFFF
movl 0x4324(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4320(%rsp)
cmpl $0x1, 0x4320(%rsp)
jne 0x137745a
movq 0x620(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1377428
movq 0x620(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1377426
jmp 0x1377458
movq 0x620(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x43d8(%rsp)
cmpq $0x0, 0x43d8(%rsp)
je 0x1377456
movq 0x43d8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1377458
jmp 0x137745a
movq 0x620(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13774b5
movq %rax, %rdi
callq 0x678a0
jmp 0x13774b7
leaq 0x1b18(%rsp), %rax
movq %rax, 0x2578(%rsp)
movq 0x2578(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x610(%rsp)
leaq 0x1b18(%rsp), %rax
movq %rax, 0x26e8(%rsp)
movq 0x26e8(%rsp), %rax
movq %rax, 0x4148(%rsp)
movq 0x4148(%rsp), %rax
movq %rax, 0x618(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13775a8
movq 0x618(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4144(%rsp) # imm = 0xFFFFFFFF
movl 0x4144(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4140(%rsp)
cmpl $0x1, 0x4140(%rsp)
jne 0x13775a8
movq 0x618(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1377576
movq 0x618(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1377574
jmp 0x13775a6
movq 0x618(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44c8(%rsp)
cmpq $0x0, 0x44c8(%rsp)
je 0x13775a4
movq 0x44c8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13775a6
jmp 0x13775a8
movq 0x618(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1377603
movq %rax, %rdi
callq 0x678a0
movq 0x610(%rsp), %rax
movq %rax, 0x1b60(%rsp)
movq 0x2178(%rsp), %rcx
movl 0x1bbc(%rsp), %eax
leaq 0x1ac8(%rsp), %rdx
movq %rdx, 0x29a0(%rsp)
movq %rcx, 0x2998(%rsp)
movl %eax, 0x2994(%rsp)
movq 0x2998(%rsp), %rax
movq %rax, 0x608(%rsp)
movb $0x0, 0x2993(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2994(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1ac8(%rsp), %r10
movq %r10, 0x32d0(%rsp)
movl %r9d, 0x32cc(%rsp)
movl %r8d, 0x32c8(%rsp)
movl %edi, 0x32c4(%rsp)
movq %rsi, 0x32b8(%rsp)
movq %rdx, 0x32b0(%rsp)
movl %ecx, 0x32ac(%rsp)
movq %rax, 0x32a0(%rsp)
movq 0x32d0(%rsp), %rcx
movq %rcx, 0x600(%rsp)
movq 0x32b8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x32b0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x32ac(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x32a0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x32cc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x32c8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x32c4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3dd8(%rsp)
movl $0x10, 0x3dd4(%rsp)
movq 0x3dd8(%rsp), %rax
movslq 0x3dd4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3dd4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x608(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1af0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13777cf
movq 0x608(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1b08(%rsp)
movb $0x1, 0x2993(%rsp)
testb $0x1, 0x2993(%rsp)
jne 0x1377910
leaq 0x1ac8(%rsp), %rax
movq %rax, 0x29a8(%rsp)
movq 0x29a8(%rsp), %rax
movq %rax, 0x3e68(%rsp)
movq 0x3e68(%rsp), %rax
movq %rax, 0x5f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13778b3
movq 0x5f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e64(%rsp) # imm = 0xFFFFFFFF
movl 0x3e64(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e60(%rsp)
cmpl $0x1, 0x3e60(%rsp)
jne 0x13778b3
movq 0x5f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1377881
movq 0x5f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x137787f
jmp 0x13778b1
movq 0x5f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4638(%rsp)
cmpq $0x0, 0x4638(%rsp)
je 0x13778af
movq 0x4638(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13778b1
jmp 0x13778b3
movq 0x5f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x137790e
movq %rax, %rdi
callq 0x678a0
jmp 0x1377910
leaq 0x1ac8(%rsp), %rax
movq %rax, 0x2aa8(%rsp)
movq 0x2aa8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5e8(%rsp)
leaq 0x1ac8(%rsp), %rax
movq %rax, 0x26f0(%rsp)
movq 0x26f0(%rsp), %rax
movq %rax, 0x4138(%rsp)
movq 0x4138(%rsp), %rax
movq %rax, 0x5f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1377a01
movq 0x5f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4134(%rsp) # imm = 0xFFFFFFFF
movl 0x4134(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4130(%rsp)
cmpl $0x1, 0x4130(%rsp)
jne 0x1377a01
movq 0x5f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13779cf
movq 0x5f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13779cd
jmp 0x13779ff
movq 0x5f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44d0(%rsp)
cmpq $0x0, 0x44d0(%rsp)
je 0x13779fd
movq 0x44d0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13779ff
jmp 0x1377a01
movq 0x5f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1377a5c
movq %rax, %rdi
callq 0x678a0
movq 0x5e8(%rsp), %rax
movq %rax, 0x1b10(%rsp)
movq 0x1b60(%rsp), %rax
movq %rax, 0x2bf8(%rsp)
movq 0x2bf8(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1aa0(%rsp)
movl $0x0, 0x1a9c(%rsp)
movl 0x1a9c(%rsp), %eax
cmpl 0x2158(%rsp), %eax
jge 0x1377b70
movq 0x1bb0(%rsp), %rax
movq %rax, 0x2bf0(%rsp)
movq 0x2bf0(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1a60(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0x1a60(%rsp), %rsi
leaq 0x1aa0(%rsp), %rdx
callq 0x1453760
vmovaps %ymm0, 0x1a40(%rsp)
movq 0x1b10(%rsp), %rax
vmovaps 0x1a40(%rsp), %ymm0
movq %rax, 0x3038(%rsp)
vmovaps %ymm0, 0x3000(%rsp)
vmovaps 0x3000(%rsp), %ymm0
movq 0x3038(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x1bb0(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1bb0(%rsp)
movq 0x1b10(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1b10(%rsp)
movl 0x1a9c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1a9c(%rsp)
jmp 0x1377a9c
jmp 0x1377b72
movl 0x1bbc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1bbc(%rsp)
jmp 0x1376d4d
movl $0x0, 0x2194(%rsp)
jmp 0x1382aba
movl 0x2148(%rsp), %eax
cmpl 0x2168(%rsp), %eax
jne 0x13786f5
movl 0x2144(%rsp), %eax
cmpl 0x2164(%rsp), %eax
jne 0x13786f5
cmpl $0x1, 0x213c(%rsp)
jne 0x13786f5
cmpl $0x1, 0x212c(%rsp)
jne 0x13786f5
movq 0x2178(%rsp), %rdi
movl 0x2168(%rsp), %esi
movl 0x2164(%rsp), %edx
movl 0x215c(%rsp), %ecx
movq 0x2150(%rsp), %r8
movl 0x214c(%rsp), %r9d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2178(%rsp), %rax
movq %rax, 0x2210(%rsp)
movq 0x2210(%rsp), %rcx
movq %rcx, 0x5d8(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x5e7(%rsp)
je 0x1377c7f
movq 0x5d8(%rsp), %rax
movq %rax, 0x3140(%rsp)
movq 0x3140(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x5e7(%rsp)
movb 0x5e7(%rsp), %al
testb $0x1, %al
jne 0x1377c8c
jmp 0x1377c9c
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x1382aba
movl $0x0, 0x1a3c(%rsp)
movl 0x1a3c(%rsp), %eax
cmpl 0x215c(%rsp), %eax
jge 0x13786e5
movq 0x2188(%rsp), %rcx
movl 0x1a3c(%rsp), %eax
leaq 0x19e8(%rsp), %rdx
movq %rdx, 0x23d8(%rsp)
movq %rcx, 0x23d0(%rsp)
movl %eax, 0x23cc(%rsp)
movq 0x23d0(%rsp), %rax
movq %rax, 0x5d0(%rsp)
movb $0x0, 0x23cb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x23cc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x19e8(%rsp), %r10
movq %r10, 0x37a0(%rsp)
movl %r9d, 0x379c(%rsp)
movl %r8d, 0x3798(%rsp)
movl %edi, 0x3794(%rsp)
movq %rsi, 0x3788(%rsp)
movq %rdx, 0x3780(%rsp)
movl %ecx, 0x377c(%rsp)
movq %rax, 0x3770(%rsp)
movq 0x37a0(%rsp), %rcx
movq %rcx, 0x5c8(%rsp)
movq 0x3788(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3780(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x377c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3770(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x379c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3798(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3794(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c78(%rsp)
movl $0x10, 0x3c74(%rsp)
movq 0x3c78(%rsp), %rax
movslq 0x3c74(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c74(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5d0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1a10(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1377e77
movq 0x5d0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1a28(%rsp)
movb $0x1, 0x23cb(%rsp)
testb $0x1, 0x23cb(%rsp)
jne 0x1377fb8
leaq 0x19e8(%rsp), %rax
movq %rax, 0x2600(%rsp)
movq 0x2600(%rsp), %rax
movq %rax, 0x4318(%rsp)
movq 0x4318(%rsp), %rax
movq %rax, 0x5c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1377f5b
movq 0x5c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4314(%rsp) # imm = 0xFFFFFFFF
movl 0x4314(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4310(%rsp)
cmpl $0x1, 0x4310(%rsp)
jne 0x1377f5b
movq 0x5c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1377f29
movq 0x5c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1377f27
jmp 0x1377f59
movq 0x5c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x43e0(%rsp)
cmpq $0x0, 0x43e0(%rsp)
je 0x1377f57
movq 0x43e0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1377f59
jmp 0x1377f5b
movq 0x5c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1377fb6
movq %rax, %rdi
callq 0x678a0
jmp 0x1377fb8
leaq 0x19e8(%rsp), %rax
movq %rax, 0x2570(%rsp)
movq 0x2570(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5b0(%rsp)
leaq 0x19e8(%rsp), %rax
movq %rax, 0x26f8(%rsp)
movq 0x26f8(%rsp), %rax
movq %rax, 0x4128(%rsp)
movq 0x4128(%rsp), %rax
movq %rax, 0x5b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13780a9
movq 0x5b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4124(%rsp) # imm = 0xFFFFFFFF
movl 0x4124(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4120(%rsp)
cmpl $0x1, 0x4120(%rsp)
jne 0x13780a9
movq 0x5b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1378077
movq 0x5b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1378075
jmp 0x13780a7
movq 0x5b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44d8(%rsp)
cmpq $0x0, 0x44d8(%rsp)
je 0x13780a5
movq 0x44d8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13780a7
jmp 0x13780a9
movq 0x5b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1378104
movq %rax, %rdi
callq 0x678a0
movq 0x5b0(%rsp), %rax
movq %rax, 0x1a30(%rsp)
movq 0x2180(%rsp), %rax
movq %rax, 0x2568(%rsp)
movq 0x2568(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x19e0(%rsp)
movq 0x2178(%rsp), %rcx
movl 0x1a3c(%rsp), %eax
leaq 0x1990(%rsp), %rdx
movq %rdx, 0x2980(%rsp)
movq %rcx, 0x2978(%rsp)
movl %eax, 0x2974(%rsp)
movq 0x2978(%rsp), %rax
movq %rax, 0x5a8(%rsp)
movb $0x0, 0x2973(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2974(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1990(%rsp), %r10
movq %r10, 0x3308(%rsp)
movl %r9d, 0x3304(%rsp)
movl %r8d, 0x3300(%rsp)
movl %edi, 0x32fc(%rsp)
movq %rsi, 0x32f0(%rsp)
movq %rdx, 0x32e8(%rsp)
movl %ecx, 0x32e4(%rsp)
movq %rax, 0x32d8(%rsp)
movq 0x3308(%rsp), %rcx
movq %rcx, 0x5a0(%rsp)
movq 0x32f0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x32e8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x32e4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x32d8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3304(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3300(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x32fc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3dc8(%rsp)
movl $0x10, 0x3dc4(%rsp)
movq 0x3dc8(%rsp), %rax
movslq 0x3dc4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3dc4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5a8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x19b8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13782f3
movq 0x5a8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x19d0(%rsp)
movb $0x1, 0x2973(%rsp)
testb $0x1, 0x2973(%rsp)
jne 0x1378434
leaq 0x1990(%rsp), %rax
movq %rax, 0x2988(%rsp)
movq 0x2988(%rsp), %rax
movq %rax, 0x3e78(%rsp)
movq 0x3e78(%rsp), %rax
movq %rax, 0x598(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13783d7
movq 0x598(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e74(%rsp) # imm = 0xFFFFFFFF
movl 0x3e74(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e70(%rsp)
cmpl $0x1, 0x3e70(%rsp)
jne 0x13783d7
movq 0x598(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13783a5
movq 0x598(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13783a3
jmp 0x13783d5
movq 0x598(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4630(%rsp)
cmpq $0x0, 0x4630(%rsp)
je 0x13783d3
movq 0x4630(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13783d5
jmp 0x13783d7
movq 0x598(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1378432
movq %rax, %rdi
callq 0x678a0
jmp 0x1378434
leaq 0x1990(%rsp), %rax
movq %rax, 0x2aa0(%rsp)
movq 0x2aa0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x588(%rsp)
leaq 0x1990(%rsp), %rax
movq %rax, 0x2700(%rsp)
movq 0x2700(%rsp), %rax
movq %rax, 0x4118(%rsp)
movq 0x4118(%rsp), %rax
movq %rax, 0x590(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1378525
movq 0x590(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4114(%rsp) # imm = 0xFFFFFFFF
movl 0x4114(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4110(%rsp)
cmpl $0x1, 0x4110(%rsp)
jne 0x1378525
movq 0x590(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13784f3
movq 0x590(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13784f1
jmp 0x1378523
movq 0x590(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44e0(%rsp)
cmpq $0x0, 0x44e0(%rsp)
je 0x1378521
movq 0x44e0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1378523
jmp 0x1378525
movq 0x590(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1378580
movq %rax, %rdi
callq 0x678a0
movq 0x588(%rsp), %rax
movq %rax, 0x19d8(%rsp)
movl $0x0, 0x198c(%rsp)
movl 0x198c(%rsp), %eax
cmpl 0x2158(%rsp), %eax
jge 0x13786cd
movq 0x1a30(%rsp), %rax
movq %rax, 0x2be8(%rsp)
movq 0x2be8(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1960(%rsp)
movq 0x19e0(%rsp), %rax
movq %rax, 0x46c8(%rsp)
movq 0x46c8(%rsp), %rax
vmovss (%rax), %xmm0
vmovss %xmm0, 0x46c4(%rsp)
vbroadcastss 0x46c4(%rsp), %ymm0
vmovaps %ymm0, 0x46a0(%rsp)
vmovaps 0x46a0(%rsp), %ymm0
vmovaps %ymm0, 0x1940(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0x1960(%rsp), %rsi
leaq 0x1940(%rsp), %rdx
callq 0x1453760
vmovaps %ymm0, 0x1920(%rsp)
movq 0x19d8(%rsp), %rax
vmovaps 0x1920(%rsp), %ymm0
movq %rax, 0x2ff8(%rsp)
vmovaps %ymm0, 0x2fc0(%rsp)
vmovaps 0x2fc0(%rsp), %ymm0
movq 0x2ff8(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x1a30(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1a30(%rsp)
movq 0x19e0(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x19e0(%rsp)
movq 0x19d8(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x19d8(%rsp)
movl 0x198c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x198c(%rsp)
jmp 0x137859b
jmp 0x13786cf
movl 0x1a3c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1a3c(%rsp)
jmp 0x1377ca7
movl $0x0, 0x2194(%rsp)
jmp 0x1382aba
cmpl $0x1, 0x2168(%rsp)
jne 0x137963b
cmpl $0x1, 0x2164(%rsp)
jne 0x137963b
movl 0x213c(%rsp), %eax
cmpl 0x215c(%rsp), %eax
jne 0x137963b
movq 0x2178(%rsp), %rdi
movl 0x2148(%rsp), %esi
movl 0x2144(%rsp), %edx
movl 0x213c(%rsp), %ecx
movq 0x2130(%rsp), %r8
movl 0x212c(%rsp), %r9d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2178(%rsp), %rax
movq %rax, 0x2208(%rsp)
movq 0x2208(%rsp), %rcx
movq %rcx, 0x578(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x587(%rsp)
je 0x13787c8
movq 0x578(%rsp), %rax
movq %rax, 0x3148(%rsp)
movq 0x3148(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x587(%rsp)
movb 0x587(%rsp), %al
testb $0x1, %al
jne 0x13787d5
jmp 0x13787e5
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x1382aba
movl $0x0, 0x191c(%rsp)
movl 0x191c(%rsp), %eax
cmpl 0x213c(%rsp), %eax
jge 0x137962b
movq 0x2188(%rsp), %rcx
movl 0x191c(%rsp), %eax
leaq 0x18c8(%rsp), %rdx
movq %rdx, 0x23c0(%rsp)
movq %rcx, 0x23b8(%rsp)
movl %eax, 0x23b4(%rsp)
movq 0x23b8(%rsp), %rax
movq %rax, 0x570(%rsp)
movb $0x0, 0x23b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x23b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x18c8(%rsp), %r10
movq %r10, 0x37d8(%rsp)
movl %r9d, 0x37d4(%rsp)
movl %r8d, 0x37d0(%rsp)
movl %edi, 0x37cc(%rsp)
movq %rsi, 0x37c0(%rsp)
movq %rdx, 0x37b8(%rsp)
movl %ecx, 0x37b4(%rsp)
movq %rax, 0x37a8(%rsp)
movq 0x37d8(%rsp), %rcx
movq %rcx, 0x568(%rsp)
movq 0x37c0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x37b8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x37b4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x37a8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x37d4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x37d0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x37cc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c68(%rsp)
movl $0x10, 0x3c64(%rsp)
movq 0x3c68(%rsp), %rax
movslq 0x3c64(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c64(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x570(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x18f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13789c0
movq 0x570(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1908(%rsp)
movb $0x1, 0x23b3(%rsp)
testb $0x1, 0x23b3(%rsp)
jne 0x1378b01
leaq 0x18c8(%rsp), %rax
movq %rax, 0x2608(%rsp)
movq 0x2608(%rsp), %rax
movq %rax, 0x4308(%rsp)
movq 0x4308(%rsp), %rax
movq %rax, 0x560(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1378aa4
movq 0x560(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4304(%rsp) # imm = 0xFFFFFFFF
movl 0x4304(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4300(%rsp)
cmpl $0x1, 0x4300(%rsp)
jne 0x1378aa4
movq 0x560(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1378a72
movq 0x560(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1378a70
jmp 0x1378aa2
movq 0x560(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x43e8(%rsp)
cmpq $0x0, 0x43e8(%rsp)
je 0x1378aa0
movq 0x43e8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1378aa2
jmp 0x1378aa4
movq 0x560(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1378aff
movq %rax, %rdi
callq 0x678a0
jmp 0x1378b01
leaq 0x18c8(%rsp), %rax
movq %rax, 0x2560(%rsp)
movq 0x2560(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x550(%rsp)
leaq 0x18c8(%rsp), %rax
movq %rax, 0x2708(%rsp)
movq 0x2708(%rsp), %rax
movq %rax, 0x4108(%rsp)
movq 0x4108(%rsp), %rax
movq %rax, 0x558(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1378bf2
movq 0x558(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4104(%rsp) # imm = 0xFFFFFFFF
movl 0x4104(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4100(%rsp)
cmpl $0x1, 0x4100(%rsp)
jne 0x1378bf2
movq 0x558(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1378bc0
movq 0x558(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1378bbe
jmp 0x1378bf0
movq 0x558(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44e8(%rsp)
cmpq $0x0, 0x44e8(%rsp)
je 0x1378bee
movq 0x44e8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1378bf0
jmp 0x1378bf2
movq 0x558(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1378c4d
movq %rax, %rdi
callq 0x678a0
movq 0x550(%rsp), %rax
movq %rax, 0x1910(%rsp)
movq 0x2180(%rsp), %rcx
movl 0x191c(%rsp), %eax
leaq 0x1878(%rsp), %rdx
movq %rdx, 0x23a8(%rsp)
movq %rcx, 0x23a0(%rsp)
movl %eax, 0x239c(%rsp)
movq 0x23a0(%rsp), %rax
movq %rax, 0x548(%rsp)
movb $0x0, 0x239b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x239c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1878(%rsp), %r10
movq %r10, 0x3810(%rsp)
movl %r9d, 0x380c(%rsp)
movl %r8d, 0x3808(%rsp)
movl %edi, 0x3804(%rsp)
movq %rsi, 0x37f8(%rsp)
movq %rdx, 0x37f0(%rsp)
movl %ecx, 0x37ec(%rsp)
movq %rax, 0x37e0(%rsp)
movq 0x3810(%rsp), %rcx
movq %rcx, 0x540(%rsp)
movq 0x37f8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x37f0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x37ec(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x37e0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x380c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3808(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3804(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c58(%rsp)
movl $0x10, 0x3c54(%rsp)
movq 0x3c58(%rsp), %rax
movslq 0x3c54(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c54(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x548(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x18a0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1378e19
movq 0x548(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x18b8(%rsp)
movb $0x1, 0x239b(%rsp)
testb $0x1, 0x239b(%rsp)
jne 0x1378f5a
leaq 0x1878(%rsp), %rax
movq %rax, 0x2610(%rsp)
movq 0x2610(%rsp), %rax
movq %rax, 0x42f8(%rsp)
movq 0x42f8(%rsp), %rax
movq %rax, 0x538(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1378efd
movq 0x538(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42f4(%rsp) # imm = 0xFFFFFFFF
movl 0x42f4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42f0(%rsp)
cmpl $0x1, 0x42f0(%rsp)
jne 0x1378efd
movq 0x538(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1378ecb
movq 0x538(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1378ec9
jmp 0x1378efb
movq 0x538(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x43f0(%rsp)
cmpq $0x0, 0x43f0(%rsp)
je 0x1378ef9
movq 0x43f0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1378efb
jmp 0x1378efd
movq 0x538(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1378f58
movq %rax, %rdi
callq 0x678a0
jmp 0x1378f5a
leaq 0x1878(%rsp), %rax
movq %rax, 0x2558(%rsp)
movq 0x2558(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x528(%rsp)
leaq 0x1878(%rsp), %rax
movq %rax, 0x2710(%rsp)
movq 0x2710(%rsp), %rax
movq %rax, 0x40f8(%rsp)
movq 0x40f8(%rsp), %rax
movq %rax, 0x530(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137904b
movq 0x530(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40f4(%rsp) # imm = 0xFFFFFFFF
movl 0x40f4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40f0(%rsp)
cmpl $0x1, 0x40f0(%rsp)
jne 0x137904b
movq 0x530(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1379019
movq 0x530(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1379017
jmp 0x1379049
movq 0x530(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44f0(%rsp)
cmpq $0x0, 0x44f0(%rsp)
je 0x1379047
movq 0x44f0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1379049
jmp 0x137904b
movq 0x530(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13790a6
movq %rax, %rdi
callq 0x678a0
movq 0x528(%rsp), %rax
movq %rax, 0x18c0(%rsp)
movq 0x2178(%rsp), %rcx
movl 0x191c(%rsp), %eax
leaq 0x1828(%rsp), %rdx
movq %rdx, 0x2960(%rsp)
movq %rcx, 0x2958(%rsp)
movl %eax, 0x2954(%rsp)
movq 0x2958(%rsp), %rax
movq %rax, 0x520(%rsp)
movb $0x0, 0x2953(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2954(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1828(%rsp), %r10
movq %r10, 0x3340(%rsp)
movl %r9d, 0x333c(%rsp)
movl %r8d, 0x3338(%rsp)
movl %edi, 0x3334(%rsp)
movq %rsi, 0x3328(%rsp)
movq %rdx, 0x3320(%rsp)
movl %ecx, 0x331c(%rsp)
movq %rax, 0x3310(%rsp)
movq 0x3340(%rsp), %rcx
movq %rcx, 0x518(%rsp)
movq 0x3328(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3320(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x331c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3310(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x333c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3338(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3334(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3db8(%rsp)
movl $0x10, 0x3db4(%rsp)
movq 0x3db8(%rsp), %rax
movslq 0x3db4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3db4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x520(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1850(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1379272
movq 0x520(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1868(%rsp)
movb $0x1, 0x2953(%rsp)
testb $0x1, 0x2953(%rsp)
jne 0x13793b3
leaq 0x1828(%rsp), %rax
movq %rax, 0x2968(%rsp)
movq 0x2968(%rsp), %rax
movq %rax, 0x3e88(%rsp)
movq 0x3e88(%rsp), %rax
movq %rax, 0x510(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1379356
movq 0x510(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e84(%rsp) # imm = 0xFFFFFFFF
movl 0x3e84(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e80(%rsp)
cmpl $0x1, 0x3e80(%rsp)
jne 0x1379356
movq 0x510(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1379324
movq 0x510(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1379322
jmp 0x1379354
movq 0x510(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4628(%rsp)
cmpq $0x0, 0x4628(%rsp)
je 0x1379352
movq 0x4628(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1379354
jmp 0x1379356
movq 0x510(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13793b1
movq %rax, %rdi
callq 0x678a0
jmp 0x13793b3
leaq 0x1828(%rsp), %rax
movq %rax, 0x2a98(%rsp)
movq 0x2a98(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x500(%rsp)
leaq 0x1828(%rsp), %rax
movq %rax, 0x2718(%rsp)
movq 0x2718(%rsp), %rax
movq %rax, 0x40e8(%rsp)
movq 0x40e8(%rsp), %rax
movq %rax, 0x508(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13794a4
movq 0x508(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40e4(%rsp) # imm = 0xFFFFFFFF
movl 0x40e4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40e0(%rsp)
cmpl $0x1, 0x40e0(%rsp)
jne 0x13794a4
movq 0x508(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1379472
movq 0x508(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1379470
jmp 0x13794a2
movq 0x508(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44f8(%rsp)
cmpq $0x0, 0x44f8(%rsp)
je 0x13794a0
movq 0x44f8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13794a2
jmp 0x13794a4
movq 0x508(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13794ff
movq %rax, %rdi
callq 0x678a0
movq 0x500(%rsp), %rax
movq %rax, 0x1870(%rsp)
movq 0x1910(%rsp), %rax
movq %rax, 0x2be0(%rsp)
movq 0x2be0(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1800(%rsp)
movl $0x0, 0x17fc(%rsp)
movl 0x17fc(%rsp), %eax
cmpl 0x2138(%rsp), %eax
jge 0x1379613
movq 0x18c0(%rsp), %rax
movq %rax, 0x2bd8(%rsp)
movq 0x2bd8(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x17c0(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0x1800(%rsp), %rsi
leaq 0x17c0(%rsp), %rdx
callq 0x1453760
vmovaps %ymm0, 0x17a0(%rsp)
movq 0x1870(%rsp), %rax
vmovaps 0x17a0(%rsp), %ymm0
movq %rax, 0x2fb8(%rsp)
vmovaps %ymm0, 0x2f80(%rsp)
vmovaps 0x2f80(%rsp), %ymm0
movq 0x2fb8(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x18c0(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x18c0(%rsp)
movq 0x1870(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1870(%rsp)
movl 0x17fc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x17fc(%rsp)
jmp 0x137953f
jmp 0x1379615
movl 0x191c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x191c(%rsp)
jmp 0x13787f0
movl $0x0, 0x2194(%rsp)
jmp 0x1382aba
movl 0x2148(%rsp), %eax
cmpl 0x2168(%rsp), %eax
jne 0x137a198
movl 0x2144(%rsp), %eax
cmpl 0x2164(%rsp), %eax
jne 0x137a198
cmpl $0x1, 0x215c(%rsp)
jne 0x137a198
cmpl $0x1, 0x214c(%rsp)
jne 0x137a198
movq 0x2178(%rsp), %rdi
movl 0x2148(%rsp), %esi
movl 0x2144(%rsp), %edx
movl 0x213c(%rsp), %ecx
movq 0x2130(%rsp), %r8
movl 0x212c(%rsp), %r9d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2178(%rsp), %rax
movq %rax, 0x2200(%rsp)
movq 0x2200(%rsp), %rcx
movq %rcx, 0x4f0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x4ff(%rsp)
je 0x1379722
movq 0x4f0(%rsp), %rax
movq %rax, 0x3150(%rsp)
movq 0x3150(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x4ff(%rsp)
movb 0x4ff(%rsp), %al
testb $0x1, %al
jne 0x137972f
jmp 0x137973f
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x1382aba
movl $0x0, 0x179c(%rsp)
movl 0x179c(%rsp), %eax
cmpl 0x213c(%rsp), %eax
jge 0x137a188
movq 0x2188(%rsp), %rax
movq %rax, 0x2550(%rsp)
movq 0x2550(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1790(%rsp)
movq 0x2180(%rsp), %rcx
movl 0x179c(%rsp), %eax
leaq 0x1740(%rsp), %rdx
movq %rdx, 0x2390(%rsp)
movq %rcx, 0x2388(%rsp)
movl %eax, 0x2384(%rsp)
movq 0x2388(%rsp), %rax
movq %rax, 0x4e8(%rsp)
movb $0x0, 0x2383(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2384(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1740(%rsp), %r10
movq %r10, 0x3848(%rsp)
movl %r9d, 0x3844(%rsp)
movl %r8d, 0x3840(%rsp)
movl %edi, 0x383c(%rsp)
movq %rsi, 0x3830(%rsp)
movq %rdx, 0x3828(%rsp)
movl %ecx, 0x3824(%rsp)
movq %rax, 0x3818(%rsp)
movq 0x3848(%rsp), %rcx
movq %rcx, 0x4e0(%rsp)
movq 0x3830(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3828(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3824(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3818(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3844(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3840(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x383c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c48(%rsp)
movl $0x10, 0x3c44(%rsp)
movq 0x3c48(%rsp), %rax
movslq 0x3c44(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c44(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4e8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1768(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x137993d
movq 0x4e8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1780(%rsp)
movb $0x1, 0x2383(%rsp)
testb $0x1, 0x2383(%rsp)
jne 0x1379a7e
leaq 0x1740(%rsp), %rax
movq %rax, 0x2618(%rsp)
movq 0x2618(%rsp), %rax
movq %rax, 0x42e8(%rsp)
movq 0x42e8(%rsp), %rax
movq %rax, 0x4d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1379a21
movq 0x4d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42e4(%rsp) # imm = 0xFFFFFFFF
movl 0x42e4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42e0(%rsp)
cmpl $0x1, 0x42e0(%rsp)
jne 0x1379a21
movq 0x4d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13799ef
movq 0x4d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13799ed
jmp 0x1379a1f
movq 0x4d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x43f8(%rsp)
cmpq $0x0, 0x43f8(%rsp)
je 0x1379a1d
movq 0x43f8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1379a1f
jmp 0x1379a21
movq 0x4d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1379a7c
movq %rax, %rdi
callq 0x678a0
jmp 0x1379a7e
leaq 0x1740(%rsp), %rax
movq %rax, 0x2548(%rsp)
movq 0x2548(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4c8(%rsp)
leaq 0x1740(%rsp), %rax
movq %rax, 0x2720(%rsp)
movq 0x2720(%rsp), %rax
movq %rax, 0x40d8(%rsp)
movq 0x40d8(%rsp), %rax
movq %rax, 0x4d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1379b6f
movq 0x4d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40d4(%rsp) # imm = 0xFFFFFFFF
movl 0x40d4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40d0(%rsp)
cmpl $0x1, 0x40d0(%rsp)
jne 0x1379b6f
movq 0x4d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1379b3d
movq 0x4d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1379b3b
jmp 0x1379b6d
movq 0x4d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4500(%rsp)
cmpq $0x0, 0x4500(%rsp)
je 0x1379b6b
movq 0x4500(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1379b6d
jmp 0x1379b6f
movq 0x4d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1379bca
movq %rax, %rdi
callq 0x678a0
movq 0x4c8(%rsp), %rax
movq %rax, 0x1788(%rsp)
movq 0x2178(%rsp), %rcx
movl 0x179c(%rsp), %eax
leaq 0x16f0(%rsp), %rdx
movq %rdx, 0x2940(%rsp)
movq %rcx, 0x2938(%rsp)
movl %eax, 0x2934(%rsp)
movq 0x2938(%rsp), %rax
movq %rax, 0x4c0(%rsp)
movb $0x0, 0x2933(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2934(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x16f0(%rsp), %r10
movq %r10, 0x3378(%rsp)
movl %r9d, 0x3374(%rsp)
movl %r8d, 0x3370(%rsp)
movl %edi, 0x336c(%rsp)
movq %rsi, 0x3360(%rsp)
movq %rdx, 0x3358(%rsp)
movl %ecx, 0x3354(%rsp)
movq %rax, 0x3348(%rsp)
movq 0x3378(%rsp), %rcx
movq %rcx, 0x4b8(%rsp)
movq 0x3360(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3358(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3354(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3348(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3374(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3370(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x336c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3da8(%rsp)
movl $0x10, 0x3da4(%rsp)
movq 0x3da8(%rsp), %rax
movslq 0x3da4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3da4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4c0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1718(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1379d96
movq 0x4c0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1730(%rsp)
movb $0x1, 0x2933(%rsp)
testb $0x1, 0x2933(%rsp)
jne 0x1379ed7
leaq 0x16f0(%rsp), %rax
movq %rax, 0x2948(%rsp)
movq 0x2948(%rsp), %rax
movq %rax, 0x3e98(%rsp)
movq 0x3e98(%rsp), %rax
movq %rax, 0x4b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1379e7a
movq 0x4b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e94(%rsp) # imm = 0xFFFFFFFF
movl 0x3e94(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e90(%rsp)
cmpl $0x1, 0x3e90(%rsp)
jne 0x1379e7a
movq 0x4b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1379e48
movq 0x4b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1379e46
jmp 0x1379e78
movq 0x4b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4620(%rsp)
cmpq $0x0, 0x4620(%rsp)
je 0x1379e76
movq 0x4620(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1379e78
jmp 0x1379e7a
movq 0x4b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1379ed5
movq %rax, %rdi
callq 0x678a0
jmp 0x1379ed7
leaq 0x16f0(%rsp), %rax
movq %rax, 0x2a90(%rsp)
movq 0x2a90(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4a0(%rsp)
leaq 0x16f0(%rsp), %rax
movq %rax, 0x2728(%rsp)
movq 0x2728(%rsp), %rax
movq %rax, 0x40c8(%rsp)
movq 0x40c8(%rsp), %rax
movq %rax, 0x4a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1379fc8
movq 0x4a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40c4(%rsp) # imm = 0xFFFFFFFF
movl 0x40c4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40c0(%rsp)
cmpl $0x1, 0x40c0(%rsp)
jne 0x1379fc8
movq 0x4a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1379f96
movq 0x4a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1379f94
jmp 0x1379fc6
movq 0x4a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4508(%rsp)
cmpq $0x0, 0x4508(%rsp)
je 0x1379fc4
movq 0x4508(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1379fc6
jmp 0x1379fc8
movq 0x4a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x137a023
movq %rax, %rdi
callq 0x678a0
movq 0x4a0(%rsp), %rax
movq %rax, 0x1738(%rsp)
movl $0x0, 0x16ec(%rsp)
movl 0x16ec(%rsp), %eax
cmpl 0x2138(%rsp), %eax
jge 0x137a170
movq 0x1790(%rsp), %rax
movq %rax, 0x4698(%rsp)
movq 0x4698(%rsp), %rax
vmovss (%rax), %xmm0
vmovss %xmm0, 0x4694(%rsp)
vbroadcastss 0x4694(%rsp), %ymm0
vmovaps %ymm0, 0x4660(%rsp)
vmovaps 0x4660(%rsp), %ymm0
vmovaps %ymm0, 0x16c0(%rsp)
movq 0x1788(%rsp), %rax
movq %rax, 0x2bd0(%rsp)
movq 0x2bd0(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x16a0(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0x16c0(%rsp), %rsi
leaq 0x16a0(%rsp), %rdx
callq 0x1453760
vmovaps %ymm0, 0x1680(%rsp)
movq 0x1738(%rsp), %rax
vmovaps 0x1680(%rsp), %ymm0
movq %rax, 0x2f78(%rsp)
vmovaps %ymm0, 0x2f40(%rsp)
vmovaps 0x2f40(%rsp), %ymm0
movq 0x2f78(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x1790(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x1790(%rsp)
movq 0x1788(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1788(%rsp)
movq 0x1738(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1738(%rsp)
movl 0x16ec(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x16ec(%rsp)
jmp 0x137a03e
jmp 0x137a172
movl 0x179c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x179c(%rsp)
jmp 0x137974a
movl $0x0, 0x2194(%rsp)
jmp 0x1382aba
cmpl $0x1, 0x2168(%rsp)
je 0x137b13d
cmpl $0x1, 0x2148(%rsp)
jne 0x137b13d
movl 0x2144(%rsp), %eax
cmpl 0x2164(%rsp), %eax
jne 0x137b13d
movl 0x213c(%rsp), %eax
cmpl 0x215c(%rsp), %eax
jne 0x137b13d
movq 0x2178(%rsp), %rdi
movl 0x2168(%rsp), %esi
movl 0x2164(%rsp), %edx
movl 0x215c(%rsp), %ecx
movq 0x2150(%rsp), %r8
movl 0x214c(%rsp), %r9d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2178(%rsp), %rax
movq %rax, 0x21f8(%rsp)
movq 0x21f8(%rsp), %rcx
movq %rcx, 0x490(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x49f(%rsp)
je 0x137a27f
movq 0x490(%rsp), %rax
movq %rax, 0x3158(%rsp)
movq 0x3158(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x49f(%rsp)
movb 0x49f(%rsp), %al
testb $0x1, %al
jne 0x137a28c
jmp 0x137a29c
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x1382aba
movl $0x0, 0x167c(%rsp)
movl 0x167c(%rsp), %eax
cmpl 0x213c(%rsp), %eax
jge 0x137b12d
movq 0x2188(%rsp), %rcx
movl 0x167c(%rsp), %eax
leaq 0x1628(%rsp), %rdx
movq %rdx, 0x2378(%rsp)
movq %rcx, 0x2370(%rsp)
movl %eax, 0x236c(%rsp)
movq 0x2370(%rsp), %rax
movq %rax, 0x488(%rsp)
movb $0x0, 0x236b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x236c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1628(%rsp), %r10
movq %r10, 0x3880(%rsp)
movl %r9d, 0x387c(%rsp)
movl %r8d, 0x3878(%rsp)
movl %edi, 0x3874(%rsp)
movq %rsi, 0x3868(%rsp)
movq %rdx, 0x3860(%rsp)
movl %ecx, 0x385c(%rsp)
movq %rax, 0x3850(%rsp)
movq 0x3880(%rsp), %rcx
movq %rcx, 0x480(%rsp)
movq 0x3868(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3860(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x385c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3850(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x387c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3878(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3874(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c38(%rsp)
movl $0x10, 0x3c34(%rsp)
movq 0x3c38(%rsp), %rax
movslq 0x3c34(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c34(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x488(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1650(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x137a477
movq 0x488(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1668(%rsp)
movb $0x1, 0x236b(%rsp)
testb $0x1, 0x236b(%rsp)
jne 0x137a5b8
leaq 0x1628(%rsp), %rax
movq %rax, 0x2620(%rsp)
movq 0x2620(%rsp), %rax
movq %rax, 0x42d8(%rsp)
movq 0x42d8(%rsp), %rax
movq %rax, 0x478(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137a55b
movq 0x478(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42d4(%rsp) # imm = 0xFFFFFFFF
movl 0x42d4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42d0(%rsp)
cmpl $0x1, 0x42d0(%rsp)
jne 0x137a55b
movq 0x478(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x137a529
movq 0x478(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x137a527
jmp 0x137a559
movq 0x478(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4400(%rsp)
cmpq $0x0, 0x4400(%rsp)
je 0x137a557
movq 0x4400(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x137a559
jmp 0x137a55b
movq 0x478(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x137a5b6
movq %rax, %rdi
callq 0x678a0
jmp 0x137a5b8
leaq 0x1628(%rsp), %rax
movq %rax, 0x2540(%rsp)
movq 0x2540(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x468(%rsp)
leaq 0x1628(%rsp), %rax
movq %rax, 0x2730(%rsp)
movq 0x2730(%rsp), %rax
movq %rax, 0x40b8(%rsp)
movq 0x40b8(%rsp), %rax
movq %rax, 0x470(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137a6a9
movq 0x470(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40b4(%rsp) # imm = 0xFFFFFFFF
movl 0x40b4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40b0(%rsp)
cmpl $0x1, 0x40b0(%rsp)
jne 0x137a6a9
movq 0x470(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x137a677
movq 0x470(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x137a675
jmp 0x137a6a7
movq 0x470(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4510(%rsp)
cmpq $0x0, 0x4510(%rsp)
je 0x137a6a5
movq 0x4510(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x137a6a7
jmp 0x137a6a9
movq 0x470(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x137a704
movq %rax, %rdi
callq 0x678a0
movq 0x468(%rsp), %rax
movq %rax, 0x1670(%rsp)
movq 0x2180(%rsp), %rcx
movl 0x167c(%rsp), %eax
leaq 0x15d8(%rsp), %rdx
movq %rdx, 0x2360(%rsp)
movq %rcx, 0x2358(%rsp)
movl %eax, 0x2354(%rsp)
movq 0x2358(%rsp), %rax
movq %rax, 0x460(%rsp)
movb $0x0, 0x2353(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2354(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x15d8(%rsp), %r10
movq %r10, 0x38b8(%rsp)
movl %r9d, 0x38b4(%rsp)
movl %r8d, 0x38b0(%rsp)
movl %edi, 0x38ac(%rsp)
movq %rsi, 0x38a0(%rsp)
movq %rdx, 0x3898(%rsp)
movl %ecx, 0x3894(%rsp)
movq %rax, 0x3888(%rsp)
movq 0x38b8(%rsp), %rcx
movq %rcx, 0x458(%rsp)
movq 0x38a0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3898(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3894(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3888(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x38b4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x38b0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x38ac(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c28(%rsp)
movl $0x10, 0x3c24(%rsp)
movq 0x3c28(%rsp), %rax
movslq 0x3c24(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c24(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x460(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1600(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x137a8d0
movq 0x460(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1618(%rsp)
movb $0x1, 0x2353(%rsp)
testb $0x1, 0x2353(%rsp)
jne 0x137aa11
leaq 0x15d8(%rsp), %rax
movq %rax, 0x2628(%rsp)
movq 0x2628(%rsp), %rax
movq %rax, 0x42c8(%rsp)
movq 0x42c8(%rsp), %rax
movq %rax, 0x450(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137a9b4
movq 0x450(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42c4(%rsp) # imm = 0xFFFFFFFF
movl 0x42c4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42c0(%rsp)
cmpl $0x1, 0x42c0(%rsp)
jne 0x137a9b4
movq 0x450(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x137a982
movq 0x450(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x137a980
jmp 0x137a9b2
movq 0x450(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4408(%rsp)
cmpq $0x0, 0x4408(%rsp)
je 0x137a9b0
movq 0x4408(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x137a9b2
jmp 0x137a9b4
movq 0x450(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x137aa0f
movq %rax, %rdi
callq 0x678a0
jmp 0x137aa11
leaq 0x15d8(%rsp), %rax
movq %rax, 0x2538(%rsp)
movq 0x2538(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x440(%rsp)
leaq 0x15d8(%rsp), %rax
movq %rax, 0x2738(%rsp)
movq 0x2738(%rsp), %rax
movq %rax, 0x40a8(%rsp)
movq 0x40a8(%rsp), %rax
movq %rax, 0x448(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137ab02
movq 0x448(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40a4(%rsp) # imm = 0xFFFFFFFF
movl 0x40a4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40a0(%rsp)
cmpl $0x1, 0x40a0(%rsp)
jne 0x137ab02
movq 0x448(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x137aad0
movq 0x448(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x137aace
jmp 0x137ab00
movq 0x448(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4518(%rsp)
cmpq $0x0, 0x4518(%rsp)
je 0x137aafe
movq 0x4518(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x137ab00
jmp 0x137ab02
movq 0x448(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x137ab5d
movq %rax, %rdi
callq 0x678a0
movq 0x440(%rsp), %rax
movq %rax, 0x1620(%rsp)
movq 0x2178(%rsp), %rcx
movl 0x167c(%rsp), %eax
leaq 0x1588(%rsp), %rdx
movq %rdx, 0x2920(%rsp)
movq %rcx, 0x2918(%rsp)
movl %eax, 0x2914(%rsp)
movq 0x2918(%rsp), %rax
movq %rax, 0x438(%rsp)
movb $0x0, 0x2913(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2914(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1588(%rsp), %r10
movq %r10, 0x33b0(%rsp)
movl %r9d, 0x33ac(%rsp)
movl %r8d, 0x33a8(%rsp)
movl %edi, 0x33a4(%rsp)
movq %rsi, 0x3398(%rsp)
movq %rdx, 0x3390(%rsp)
movl %ecx, 0x338c(%rsp)
movq %rax, 0x3380(%rsp)
movq 0x33b0(%rsp), %rcx
movq %rcx, 0x430(%rsp)
movq 0x3398(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3390(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x338c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3380(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x33ac(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x33a8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x33a4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d98(%rsp)
movl $0x10, 0x3d94(%rsp)
movq 0x3d98(%rsp), %rax
movslq 0x3d94(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d94(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x438(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x15b0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x137ad29
movq 0x438(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x15c8(%rsp)
movb $0x1, 0x2913(%rsp)
testb $0x1, 0x2913(%rsp)
jne 0x137ae6a
leaq 0x1588(%rsp), %rax
movq %rax, 0x2928(%rsp)
movq 0x2928(%rsp), %rax
movq %rax, 0x3ea8(%rsp)
movq 0x3ea8(%rsp), %rax
movq %rax, 0x428(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137ae0d
movq 0x428(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ea4(%rsp) # imm = 0xFFFFFFFF
movl 0x3ea4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ea0(%rsp)
cmpl $0x1, 0x3ea0(%rsp)
jne 0x137ae0d
movq 0x428(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x137addb
movq 0x428(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x137add9
jmp 0x137ae0b
movq 0x428(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4618(%rsp)
cmpq $0x0, 0x4618(%rsp)
je 0x137ae09
movq 0x4618(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x137ae0b
jmp 0x137ae0d
movq 0x428(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x137ae68
movq %rax, %rdi
callq 0x678a0
jmp 0x137ae6a
leaq 0x1588(%rsp), %rax
movq %rax, 0x2a88(%rsp)
movq 0x2a88(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x418(%rsp)
leaq 0x1588(%rsp), %rax
movq %rax, 0x2740(%rsp)
movq 0x2740(%rsp), %rax
movq %rax, 0x4098(%rsp)
movq 0x4098(%rsp), %rax
movq %rax, 0x420(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137af5b
movq 0x420(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4094(%rsp) # imm = 0xFFFFFFFF
movl 0x4094(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4090(%rsp)
cmpl $0x1, 0x4090(%rsp)
jne 0x137af5b
movq 0x420(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x137af29
movq 0x420(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x137af27
jmp 0x137af59
movq 0x420(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4520(%rsp)
cmpq $0x0, 0x4520(%rsp)
je 0x137af57
movq 0x4520(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x137af59
jmp 0x137af5b
movq 0x420(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x137afb6
movq %rax, %rdi
callq 0x678a0
movq 0x418(%rsp), %rax
movq %rax, 0x15d0(%rsp)
movl $0x0, 0x1584(%rsp)
movl 0x1584(%rsp), %eax
cmpl 0x2164(%rsp), %eax
jge 0x137b115
movq 0x1620(%rsp), %rax
movl 0x1584(%rsp), %ecx
shll $0x3, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2bc8(%rsp)
movq 0x2bc8(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1560(%rsp)
movl $0x0, 0x155c(%rsp)
movl 0x155c(%rsp), %eax
cmpl 0x2168(%rsp), %eax
jge 0x137b0fd
movq 0x1670(%rsp), %rax
movq %rax, 0x2bc0(%rsp)
movq 0x2bc0(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1520(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0x1520(%rsp), %rsi
leaq 0x1560(%rsp), %rdx
callq 0x1453760
vmovaps %ymm0, 0x1500(%rsp)
movq 0x15d0(%rsp), %rax
vmovaps 0x1500(%rsp), %ymm0
movq %rax, 0x2f38(%rsp)
vmovaps %ymm0, 0x2f00(%rsp)
vmovaps 0x2f00(%rsp), %ymm0
movq 0x2f38(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x1670(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1670(%rsp)
movq 0x15d0(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x15d0(%rsp)
movl 0x155c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x155c(%rsp)
jmp 0x137b029
jmp 0x137b0ff
movl 0x1584(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1584(%rsp)
jmp 0x137afd1
jmp 0x137b117
movl 0x167c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x167c(%rsp)
jmp 0x137a2a7
movl $0x0, 0x2194(%rsp)
jmp 0x1382aba
movl 0x2148(%rsp), %eax
cmpl 0x2168(%rsp), %eax
jne 0x137c0e2
cmpl $0x1, 0x2164(%rsp)
je 0x137c0e2
cmpl $0x1, 0x2144(%rsp)
jne 0x137c0e2
movl 0x213c(%rsp), %eax
cmpl 0x215c(%rsp), %eax
jne 0x137c0e2
movq 0x2178(%rsp), %rdi
movl 0x2168(%rsp), %esi
movl 0x2164(%rsp), %edx
movl 0x215c(%rsp), %ecx
movq 0x2150(%rsp), %r8
movl 0x214c(%rsp), %r9d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2178(%rsp), %rax
movq %rax, 0x21f0(%rsp)
movq 0x21f0(%rsp), %rcx
movq %rcx, 0x408(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x417(%rsp)
je 0x137b224
movq 0x408(%rsp), %rax
movq %rax, 0x3160(%rsp)
movq 0x3160(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x417(%rsp)
movb 0x417(%rsp), %al
testb $0x1, %al
jne 0x137b231
jmp 0x137b241
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x1382aba
movl $0x0, 0x14fc(%rsp)
movl 0x14fc(%rsp), %eax
cmpl 0x213c(%rsp), %eax
jge 0x137c0d2
movq 0x2188(%rsp), %rcx
movl 0x14fc(%rsp), %eax
leaq 0x14a8(%rsp), %rdx
movq %rdx, 0x2348(%rsp)
movq %rcx, 0x2340(%rsp)
movl %eax, 0x233c(%rsp)
movq 0x2340(%rsp), %rax
movq %rax, 0x400(%rsp)
movb $0x0, 0x233b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x233c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x14a8(%rsp), %r10
movq %r10, 0x38f0(%rsp)
movl %r9d, 0x38ec(%rsp)
movl %r8d, 0x38e8(%rsp)
movl %edi, 0x38e4(%rsp)
movq %rsi, 0x38d8(%rsp)
movq %rdx, 0x38d0(%rsp)
movl %ecx, 0x38cc(%rsp)
movq %rax, 0x38c0(%rsp)
movq 0x38f0(%rsp), %rcx
movq %rcx, 0x3f8(%rsp)
movq 0x38d8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x38d0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x38cc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x38c0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x38ec(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x38e8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x38e4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c18(%rsp)
movl $0x10, 0x3c14(%rsp)
movq 0x3c18(%rsp), %rax
movslq 0x3c14(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c14(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x400(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x14d0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x137b41c
movq 0x400(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x14e8(%rsp)
movb $0x1, 0x233b(%rsp)
testb $0x1, 0x233b(%rsp)
jne 0x137b55d
leaq 0x14a8(%rsp), %rax
movq %rax, 0x2630(%rsp)
movq 0x2630(%rsp), %rax
movq %rax, 0x42b8(%rsp)
movq 0x42b8(%rsp), %rax
movq %rax, 0x3f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137b500
movq 0x3f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42b4(%rsp) # imm = 0xFFFFFFFF
movl 0x42b4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42b0(%rsp)
cmpl $0x1, 0x42b0(%rsp)
jne 0x137b500
movq 0x3f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x137b4ce
movq 0x3f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x137b4cc
jmp 0x137b4fe
movq 0x3f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4410(%rsp)
cmpq $0x0, 0x4410(%rsp)
je 0x137b4fc
movq 0x4410(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x137b4fe
jmp 0x137b500
movq 0x3f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x137b55b
movq %rax, %rdi
callq 0x678a0
jmp 0x137b55d
leaq 0x14a8(%rsp), %rax
movq %rax, 0x2530(%rsp)
movq 0x2530(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e0(%rsp)
leaq 0x14a8(%rsp), %rax
movq %rax, 0x2748(%rsp)
movq 0x2748(%rsp), %rax
movq %rax, 0x4088(%rsp)
movq 0x4088(%rsp), %rax
movq %rax, 0x3e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137b64e
movq 0x3e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4084(%rsp) # imm = 0xFFFFFFFF
movl 0x4084(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4080(%rsp)
cmpl $0x1, 0x4080(%rsp)
jne 0x137b64e
movq 0x3e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x137b61c
movq 0x3e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x137b61a
jmp 0x137b64c
movq 0x3e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4528(%rsp)
cmpq $0x0, 0x4528(%rsp)
je 0x137b64a
movq 0x4528(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x137b64c
jmp 0x137b64e
movq 0x3e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x137b6a9
movq %rax, %rdi
callq 0x678a0
movq 0x3e0(%rsp), %rax
movq %rax, 0x14f0(%rsp)
movq 0x2180(%rsp), %rcx
movl 0x14fc(%rsp), %eax
leaq 0x1458(%rsp), %rdx
movq %rdx, 0x2330(%rsp)
movq %rcx, 0x2328(%rsp)
movl %eax, 0x2324(%rsp)
movq 0x2328(%rsp), %rax
movq %rax, 0x3d8(%rsp)
movb $0x0, 0x2323(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2324(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1458(%rsp), %r10
movq %r10, 0x3928(%rsp)
movl %r9d, 0x3924(%rsp)
movl %r8d, 0x3920(%rsp)
movl %edi, 0x391c(%rsp)
movq %rsi, 0x3910(%rsp)
movq %rdx, 0x3908(%rsp)
movl %ecx, 0x3904(%rsp)
movq %rax, 0x38f8(%rsp)
movq 0x3928(%rsp), %rcx
movq %rcx, 0x3d0(%rsp)
movq 0x3910(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3908(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3904(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x38f8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3924(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3920(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x391c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c08(%rsp)
movl $0x10, 0x3c04(%rsp)
movq 0x3c08(%rsp), %rax
movslq 0x3c04(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c04(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3d8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1480(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x137b875
movq 0x3d8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1498(%rsp)
movb $0x1, 0x2323(%rsp)
testb $0x1, 0x2323(%rsp)
jne 0x137b9b6
leaq 0x1458(%rsp), %rax
movq %rax, 0x2638(%rsp)
movq 0x2638(%rsp), %rax
movq %rax, 0x42a8(%rsp)
movq 0x42a8(%rsp), %rax
movq %rax, 0x3c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137b959
movq 0x3c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42a4(%rsp) # imm = 0xFFFFFFFF
movl 0x42a4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42a0(%rsp)
cmpl $0x1, 0x42a0(%rsp)
jne 0x137b959
movq 0x3c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x137b927
movq 0x3c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x137b925
jmp 0x137b957
movq 0x3c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4418(%rsp)
cmpq $0x0, 0x4418(%rsp)
je 0x137b955
movq 0x4418(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x137b957
jmp 0x137b959
movq 0x3c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x137b9b4
movq %rax, %rdi
callq 0x678a0
jmp 0x137b9b6
leaq 0x1458(%rsp), %rax
movq %rax, 0x2528(%rsp)
movq 0x2528(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3b8(%rsp)
leaq 0x1458(%rsp), %rax
movq %rax, 0x2750(%rsp)
movq 0x2750(%rsp), %rax
movq %rax, 0x4078(%rsp)
movq 0x4078(%rsp), %rax
movq %rax, 0x3c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137baa7
movq 0x3c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4074(%rsp) # imm = 0xFFFFFFFF
movl 0x4074(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4070(%rsp)
cmpl $0x1, 0x4070(%rsp)
jne 0x137baa7
movq 0x3c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x137ba75
movq 0x3c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x137ba73
jmp 0x137baa5
movq 0x3c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4530(%rsp)
cmpq $0x0, 0x4530(%rsp)
je 0x137baa3
movq 0x4530(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x137baa5
jmp 0x137baa7
movq 0x3c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x137bb02
movq %rax, %rdi
callq 0x678a0
movq 0x3b8(%rsp), %rax
movq %rax, 0x14a0(%rsp)
movq 0x2178(%rsp), %rcx
movl 0x14fc(%rsp), %eax
leaq 0x1408(%rsp), %rdx
movq %rdx, 0x2900(%rsp)
movq %rcx, 0x28f8(%rsp)
movl %eax, 0x28f4(%rsp)
movq 0x28f8(%rsp), %rax
movq %rax, 0x3b0(%rsp)
movb $0x0, 0x28f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x28f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1408(%rsp), %r10
movq %r10, 0x33e8(%rsp)
movl %r9d, 0x33e4(%rsp)
movl %r8d, 0x33e0(%rsp)
movl %edi, 0x33dc(%rsp)
movq %rsi, 0x33d0(%rsp)
movq %rdx, 0x33c8(%rsp)
movl %ecx, 0x33c4(%rsp)
movq %rax, 0x33b8(%rsp)
movq 0x33e8(%rsp), %rcx
movq %rcx, 0x3a8(%rsp)
movq 0x33d0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x33c8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x33c4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x33b8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x33e4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x33e0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x33dc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d88(%rsp)
movl $0x10, 0x3d84(%rsp)
movq 0x3d88(%rsp), %rax
movslq 0x3d84(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d84(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3b0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1430(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x137bcce
movq 0x3b0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1448(%rsp)
movb $0x1, 0x28f3(%rsp)
testb $0x1, 0x28f3(%rsp)
jne 0x137be0f
leaq 0x1408(%rsp), %rax
movq %rax, 0x2908(%rsp)
movq 0x2908(%rsp), %rax
movq %rax, 0x3eb8(%rsp)
movq 0x3eb8(%rsp), %rax
movq %rax, 0x3a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137bdb2
movq 0x3a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3eb4(%rsp) # imm = 0xFFFFFFFF
movl 0x3eb4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3eb0(%rsp)
cmpl $0x1, 0x3eb0(%rsp)
jne 0x137bdb2
movq 0x3a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x137bd80
movq 0x3a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x137bd7e
jmp 0x137bdb0
movq 0x3a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4610(%rsp)
cmpq $0x0, 0x4610(%rsp)
je 0x137bdae
movq 0x4610(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x137bdb0
jmp 0x137bdb2
movq 0x3a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x137be0d
movq %rax, %rdi
callq 0x678a0
jmp 0x137be0f
leaq 0x1408(%rsp), %rax
movq %rax, 0x2a80(%rsp)
movq 0x2a80(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x390(%rsp)
leaq 0x1408(%rsp), %rax
movq %rax, 0x2758(%rsp)
movq 0x2758(%rsp), %rax
movq %rax, 0x4068(%rsp)
movq 0x4068(%rsp), %rax
movq %rax, 0x398(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137bf00
movq 0x398(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4064(%rsp) # imm = 0xFFFFFFFF
movl 0x4064(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4060(%rsp)
cmpl $0x1, 0x4060(%rsp)
jne 0x137bf00
movq 0x398(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x137bece
movq 0x398(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x137becc
jmp 0x137befe
movq 0x398(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4538(%rsp)
cmpq $0x0, 0x4538(%rsp)
je 0x137befc
movq 0x4538(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x137befe
jmp 0x137bf00
movq 0x398(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x137bf5b
movq %rax, %rdi
callq 0x678a0
movq 0x390(%rsp), %rax
movq %rax, 0x1450(%rsp)
movl $0x0, 0x1404(%rsp)
movl 0x1404(%rsp), %eax
cmpl 0x2164(%rsp), %eax
jge 0x137c0ba
movl $0x0, 0x1400(%rsp)
movl 0x1400(%rsp), %eax
cmpl 0x2168(%rsp), %eax
jge 0x137c0a2
movq 0x14f0(%rsp), %rax
movq %rax, 0x2bb8(%rsp)
movq 0x2bb8(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x13e0(%rsp)
movq 0x14a0(%rsp), %rax
movl 0x1400(%rsp), %ecx
shll $0x3, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2bb0(%rsp)
movq 0x2bb0(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x13c0(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0x13e0(%rsp), %rsi
leaq 0x13c0(%rsp), %rdx
callq 0x1453760
vmovaps %ymm0, 0x13a0(%rsp)
movq 0x1450(%rsp), %rax
vmovaps 0x13a0(%rsp), %ymm0
movq %rax, 0x2ef8(%rsp)
vmovaps %ymm0, 0x2ec0(%rsp)
vmovaps 0x2ec0(%rsp), %ymm0
movq 0x2ef8(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x14f0(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x14f0(%rsp)
movq 0x1450(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1450(%rsp)
movl 0x1400(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1400(%rsp)
jmp 0x137bf95
jmp 0x137c0a4
movl 0x1404(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1404(%rsp)
jmp 0x137bf76
jmp 0x137c0bc
movl 0x14fc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x14fc(%rsp)
jmp 0x137b24c
movl $0x0, 0x2194(%rsp)
jmp 0x1382aba
cmpl $0x1, 0x2148(%rsp)
je 0x137d087
cmpl $0x1, 0x2168(%rsp)
jne 0x137d087
movl 0x2144(%rsp), %eax
cmpl 0x2164(%rsp), %eax
jne 0x137d087
movl 0x213c(%rsp), %eax
cmpl 0x215c(%rsp), %eax
jne 0x137d087
movq 0x2178(%rsp), %rdi
movl 0x2148(%rsp), %esi
movl 0x2144(%rsp), %edx
movl 0x213c(%rsp), %ecx
movq 0x2130(%rsp), %r8
movl 0x212c(%rsp), %r9d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2178(%rsp), %rax
movq %rax, 0x21e8(%rsp)
movq 0x21e8(%rsp), %rcx
movq %rcx, 0x380(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x38f(%rsp)
je 0x137c1c9
movq 0x380(%rsp), %rax
movq %rax, 0x3168(%rsp)
movq 0x3168(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x38f(%rsp)
movb 0x38f(%rsp), %al
testb $0x1, %al
jne 0x137c1d6
jmp 0x137c1e6
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x1382aba
movl $0x0, 0x139c(%rsp)
movl 0x139c(%rsp), %eax
cmpl 0x213c(%rsp), %eax
jge 0x137d077
movq 0x2188(%rsp), %rcx
movl 0x139c(%rsp), %eax
leaq 0x1348(%rsp), %rdx
movq %rdx, 0x2318(%rsp)
movq %rcx, 0x2310(%rsp)
movl %eax, 0x230c(%rsp)
movq 0x2310(%rsp), %rax
movq %rax, 0x378(%rsp)
movb $0x0, 0x230b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x230c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1348(%rsp), %r10
movq %r10, 0x3960(%rsp)
movl %r9d, 0x395c(%rsp)
movl %r8d, 0x3958(%rsp)
movl %edi, 0x3954(%rsp)
movq %rsi, 0x3948(%rsp)
movq %rdx, 0x3940(%rsp)
movl %ecx, 0x393c(%rsp)
movq %rax, 0x3930(%rsp)
movq 0x3960(%rsp), %rcx
movq %rcx, 0x370(%rsp)
movq 0x3948(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3940(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x393c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3930(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x395c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3958(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3954(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3bf8(%rsp)
movl $0x10, 0x3bf4(%rsp)
movq 0x3bf8(%rsp), %rax
movslq 0x3bf4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bf4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x378(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1370(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x137c3c1
movq 0x378(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1388(%rsp)
movb $0x1, 0x230b(%rsp)
testb $0x1, 0x230b(%rsp)
jne 0x137c502
leaq 0x1348(%rsp), %rax
movq %rax, 0x2640(%rsp)
movq 0x2640(%rsp), %rax
movq %rax, 0x4298(%rsp)
movq 0x4298(%rsp), %rax
movq %rax, 0x368(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137c4a5
movq 0x368(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4294(%rsp) # imm = 0xFFFFFFFF
movl 0x4294(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4290(%rsp)
cmpl $0x1, 0x4290(%rsp)
jne 0x137c4a5
movq 0x368(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x137c473
movq 0x368(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x137c471
jmp 0x137c4a3
movq 0x368(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4420(%rsp)
cmpq $0x0, 0x4420(%rsp)
je 0x137c4a1
movq 0x4420(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x137c4a3
jmp 0x137c4a5
movq 0x368(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x137c500
movq %rax, %rdi
callq 0x678a0
jmp 0x137c502
leaq 0x1348(%rsp), %rax
movq %rax, 0x2520(%rsp)
movq 0x2520(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x358(%rsp)
leaq 0x1348(%rsp), %rax
movq %rax, 0x2760(%rsp)
movq 0x2760(%rsp), %rax
movq %rax, 0x4058(%rsp)
movq 0x4058(%rsp), %rax
movq %rax, 0x360(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137c5f3
movq 0x360(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4054(%rsp) # imm = 0xFFFFFFFF
movl 0x4054(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4050(%rsp)
cmpl $0x1, 0x4050(%rsp)
jne 0x137c5f3
movq 0x360(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x137c5c1
movq 0x360(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x137c5bf
jmp 0x137c5f1
movq 0x360(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4540(%rsp)
cmpq $0x0, 0x4540(%rsp)
je 0x137c5ef
movq 0x4540(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x137c5f1
jmp 0x137c5f3
movq 0x360(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x137c64e
movq %rax, %rdi
callq 0x678a0
movq 0x358(%rsp), %rax
movq %rax, 0x1390(%rsp)
movq 0x2180(%rsp), %rcx
movl 0x139c(%rsp), %eax
leaq 0x12f8(%rsp), %rdx
movq %rdx, 0x2300(%rsp)
movq %rcx, 0x22f8(%rsp)
movl %eax, 0x22f4(%rsp)
movq 0x22f8(%rsp), %rax
movq %rax, 0x350(%rsp)
movb $0x0, 0x22f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x12f8(%rsp), %r10
movq %r10, 0x3998(%rsp)
movl %r9d, 0x3994(%rsp)
movl %r8d, 0x3990(%rsp)
movl %edi, 0x398c(%rsp)
movq %rsi, 0x3980(%rsp)
movq %rdx, 0x3978(%rsp)
movl %ecx, 0x3974(%rsp)
movq %rax, 0x3968(%rsp)
movq 0x3998(%rsp), %rcx
movq %rcx, 0x348(%rsp)
movq 0x3980(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3978(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3974(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3968(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3994(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3990(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x398c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3be8(%rsp)
movl $0x10, 0x3be4(%rsp)
movq 0x3be8(%rsp), %rax
movslq 0x3be4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3be4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x350(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1320(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x137c81a
movq 0x350(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1338(%rsp)
movb $0x1, 0x22f3(%rsp)
testb $0x1, 0x22f3(%rsp)
jne 0x137c95b
leaq 0x12f8(%rsp), %rax
movq %rax, 0x2648(%rsp)
movq 0x2648(%rsp), %rax
movq %rax, 0x4288(%rsp)
movq 0x4288(%rsp), %rax
movq %rax, 0x340(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137c8fe
movq 0x340(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4284(%rsp) # imm = 0xFFFFFFFF
movl 0x4284(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4280(%rsp)
cmpl $0x1, 0x4280(%rsp)
jne 0x137c8fe
movq 0x340(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x137c8cc
movq 0x340(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x137c8ca
jmp 0x137c8fc
movq 0x340(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4428(%rsp)
cmpq $0x0, 0x4428(%rsp)
je 0x137c8fa
movq 0x4428(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x137c8fc
jmp 0x137c8fe
movq 0x340(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x137c959
movq %rax, %rdi
callq 0x678a0
jmp 0x137c95b
leaq 0x12f8(%rsp), %rax
movq %rax, 0x2518(%rsp)
movq 0x2518(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x330(%rsp)
leaq 0x12f8(%rsp), %rax
movq %rax, 0x2768(%rsp)
movq 0x2768(%rsp), %rax
movq %rax, 0x4048(%rsp)
movq 0x4048(%rsp), %rax
movq %rax, 0x338(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137ca4c
movq 0x338(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4044(%rsp) # imm = 0xFFFFFFFF
movl 0x4044(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4040(%rsp)
cmpl $0x1, 0x4040(%rsp)
jne 0x137ca4c
movq 0x338(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x137ca1a
movq 0x338(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x137ca18
jmp 0x137ca4a
movq 0x338(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4548(%rsp)
cmpq $0x0, 0x4548(%rsp)
je 0x137ca48
movq 0x4548(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x137ca4a
jmp 0x137ca4c
movq 0x338(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x137caa7
movq %rax, %rdi
callq 0x678a0
movq 0x330(%rsp), %rax
movq %rax, 0x1340(%rsp)
movq 0x2178(%rsp), %rcx
movl 0x139c(%rsp), %eax
leaq 0x12a8(%rsp), %rdx
movq %rdx, 0x28e0(%rsp)
movq %rcx, 0x28d8(%rsp)
movl %eax, 0x28d4(%rsp)
movq 0x28d8(%rsp), %rax
movq %rax, 0x328(%rsp)
movb $0x0, 0x28d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x28d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x12a8(%rsp), %r10
movq %r10, 0x3420(%rsp)
movl %r9d, 0x341c(%rsp)
movl %r8d, 0x3418(%rsp)
movl %edi, 0x3414(%rsp)
movq %rsi, 0x3408(%rsp)
movq %rdx, 0x3400(%rsp)
movl %ecx, 0x33fc(%rsp)
movq %rax, 0x33f0(%rsp)
movq 0x3420(%rsp), %rcx
movq %rcx, 0x320(%rsp)
movq 0x3408(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3400(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x33fc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x33f0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x341c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3418(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3414(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d78(%rsp)
movl $0x10, 0x3d74(%rsp)
movq 0x3d78(%rsp), %rax
movslq 0x3d74(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d74(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x328(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x12d0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x137cc73
movq 0x328(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x12e8(%rsp)
movb $0x1, 0x28d3(%rsp)
testb $0x1, 0x28d3(%rsp)
jne 0x137cdb4
leaq 0x12a8(%rsp), %rax
movq %rax, 0x28e8(%rsp)
movq 0x28e8(%rsp), %rax
movq %rax, 0x3ec8(%rsp)
movq 0x3ec8(%rsp), %rax
movq %rax, 0x318(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137cd57
movq 0x318(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ec4(%rsp) # imm = 0xFFFFFFFF
movl 0x3ec4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ec0(%rsp)
cmpl $0x1, 0x3ec0(%rsp)
jne 0x137cd57
movq 0x318(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x137cd25
movq 0x318(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x137cd23
jmp 0x137cd55
movq 0x318(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4608(%rsp)
cmpq $0x0, 0x4608(%rsp)
je 0x137cd53
movq 0x4608(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x137cd55
jmp 0x137cd57
movq 0x318(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x137cdb2
movq %rax, %rdi
callq 0x678a0
jmp 0x137cdb4
leaq 0x12a8(%rsp), %rax
movq %rax, 0x2a78(%rsp)
movq 0x2a78(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x308(%rsp)
leaq 0x12a8(%rsp), %rax
movq %rax, 0x2770(%rsp)
movq 0x2770(%rsp), %rax
movq %rax, 0x4038(%rsp)
movq 0x4038(%rsp), %rax
movq %rax, 0x310(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137cea5
movq 0x310(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4034(%rsp) # imm = 0xFFFFFFFF
movl 0x4034(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4030(%rsp)
cmpl $0x1, 0x4030(%rsp)
jne 0x137cea5
movq 0x310(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x137ce73
movq 0x310(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x137ce71
jmp 0x137cea3
movq 0x310(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4550(%rsp)
cmpq $0x0, 0x4550(%rsp)
je 0x137cea1
movq 0x4550(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x137cea3
jmp 0x137cea5
movq 0x310(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x137cf00
movq %rax, %rdi
callq 0x678a0
movq 0x308(%rsp), %rax
movq %rax, 0x12f0(%rsp)
movl $0x0, 0x12a4(%rsp)
movl 0x12a4(%rsp), %eax
cmpl 0x2144(%rsp), %eax
jge 0x137d05f
movq 0x1390(%rsp), %rax
movl 0x12a4(%rsp), %ecx
shll $0x3, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2ba8(%rsp)
movq 0x2ba8(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1280(%rsp)
movl $0x0, 0x127c(%rsp)
movl 0x127c(%rsp), %eax
cmpl 0x2148(%rsp), %eax
jge 0x137d047
movq 0x1340(%rsp), %rax
movq %rax, 0x2ba0(%rsp)
movq 0x2ba0(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1240(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0x1280(%rsp), %rsi
leaq 0x1240(%rsp), %rdx
callq 0x1453760
vmovaps %ymm0, 0x1220(%rsp)
movq 0x12f0(%rsp), %rax
vmovaps 0x1220(%rsp), %ymm0
movq %rax, 0x2eb8(%rsp)
vmovaps %ymm0, 0x2e80(%rsp)
vmovaps 0x2e80(%rsp), %ymm0
movq 0x2eb8(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x1340(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1340(%rsp)
movq 0x12f0(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x12f0(%rsp)
movl 0x127c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x127c(%rsp)
jmp 0x137cf73
jmp 0x137d049
movl 0x12a4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x12a4(%rsp)
jmp 0x137cf1b
jmp 0x137d061
movl 0x139c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x139c(%rsp)
jmp 0x137c1f1
movl $0x0, 0x2194(%rsp)
jmp 0x1382aba
movl 0x2148(%rsp), %eax
cmpl 0x2168(%rsp), %eax
jne 0x137e02c
cmpl $0x1, 0x2144(%rsp)
je 0x137e02c
cmpl $0x1, 0x2164(%rsp)
jne 0x137e02c
movl 0x213c(%rsp), %eax
cmpl 0x215c(%rsp), %eax
jne 0x137e02c
movq 0x2178(%rsp), %rdi
movl 0x2148(%rsp), %esi
movl 0x2144(%rsp), %edx
movl 0x213c(%rsp), %ecx
movq 0x2130(%rsp), %r8
movl 0x212c(%rsp), %r9d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2178(%rsp), %rax
movq %rax, 0x21e0(%rsp)
movq 0x21e0(%rsp), %rcx
movq %rcx, 0x2f8(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x307(%rsp)
je 0x137d16e
movq 0x2f8(%rsp), %rax
movq %rax, 0x3170(%rsp)
movq 0x3170(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x307(%rsp)
movb 0x307(%rsp), %al
testb $0x1, %al
jne 0x137d17b
jmp 0x137d18b
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x1382aba
movl $0x0, 0x121c(%rsp)
movl 0x121c(%rsp), %eax
cmpl 0x213c(%rsp), %eax
jge 0x137e01c
movq 0x2188(%rsp), %rcx
movl 0x121c(%rsp), %eax
leaq 0x11c8(%rsp), %rdx
movq %rdx, 0x22e8(%rsp)
movq %rcx, 0x22e0(%rsp)
movl %eax, 0x22dc(%rsp)
movq 0x22e0(%rsp), %rax
movq %rax, 0x2f0(%rsp)
movb $0x0, 0x22db(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22dc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x11c8(%rsp), %r10
movq %r10, 0x39d0(%rsp)
movl %r9d, 0x39cc(%rsp)
movl %r8d, 0x39c8(%rsp)
movl %edi, 0x39c4(%rsp)
movq %rsi, 0x39b8(%rsp)
movq %rdx, 0x39b0(%rsp)
movl %ecx, 0x39ac(%rsp)
movq %rax, 0x39a0(%rsp)
movq 0x39d0(%rsp), %rcx
movq %rcx, 0x2e8(%rsp)
movq 0x39b8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x39b0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x39ac(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x39a0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x39cc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x39c8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x39c4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3bd8(%rsp)
movl $0x10, 0x3bd4(%rsp)
movq 0x3bd8(%rsp), %rax
movslq 0x3bd4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bd4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2f0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x11f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x137d366
movq 0x2f0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1208(%rsp)
movb $0x1, 0x22db(%rsp)
testb $0x1, 0x22db(%rsp)
jne 0x137d4a7
leaq 0x11c8(%rsp), %rax
movq %rax, 0x2650(%rsp)
movq 0x2650(%rsp), %rax
movq %rax, 0x4278(%rsp)
movq 0x4278(%rsp), %rax
movq %rax, 0x2e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137d44a
movq 0x2e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4274(%rsp) # imm = 0xFFFFFFFF
movl 0x4274(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4270(%rsp)
cmpl $0x1, 0x4270(%rsp)
jne 0x137d44a
movq 0x2e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x137d418
movq 0x2e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x137d416
jmp 0x137d448
movq 0x2e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4430(%rsp)
cmpq $0x0, 0x4430(%rsp)
je 0x137d446
movq 0x4430(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x137d448
jmp 0x137d44a
movq 0x2e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x137d4a5
movq %rax, %rdi
callq 0x678a0
jmp 0x137d4a7
leaq 0x11c8(%rsp), %rax
movq %rax, 0x2510(%rsp)
movq 0x2510(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2d0(%rsp)
leaq 0x11c8(%rsp), %rax
movq %rax, 0x2778(%rsp)
movq 0x2778(%rsp), %rax
movq %rax, 0x4028(%rsp)
movq 0x4028(%rsp), %rax
movq %rax, 0x2d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137d598
movq 0x2d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4024(%rsp) # imm = 0xFFFFFFFF
movl 0x4024(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4020(%rsp)
cmpl $0x1, 0x4020(%rsp)
jne 0x137d598
movq 0x2d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x137d566
movq 0x2d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x137d564
jmp 0x137d596
movq 0x2d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4558(%rsp)
cmpq $0x0, 0x4558(%rsp)
je 0x137d594
movq 0x4558(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x137d596
jmp 0x137d598
movq 0x2d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x137d5f3
movq %rax, %rdi
callq 0x678a0
movq 0x2d0(%rsp), %rax
movq %rax, 0x1210(%rsp)
movq 0x2180(%rsp), %rcx
movl 0x121c(%rsp), %eax
leaq 0x1178(%rsp), %rdx
movq %rdx, 0x22d0(%rsp)
movq %rcx, 0x22c8(%rsp)
movl %eax, 0x22c4(%rsp)
movq 0x22c8(%rsp), %rax
movq %rax, 0x2c8(%rsp)
movb $0x0, 0x22c3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22c4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1178(%rsp), %r10
movq %r10, 0x3a08(%rsp)
movl %r9d, 0x3a04(%rsp)
movl %r8d, 0x3a00(%rsp)
movl %edi, 0x39fc(%rsp)
movq %rsi, 0x39f0(%rsp)
movq %rdx, 0x39e8(%rsp)
movl %ecx, 0x39e4(%rsp)
movq %rax, 0x39d8(%rsp)
movq 0x3a08(%rsp), %rcx
movq %rcx, 0x2c0(%rsp)
movq 0x39f0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x39e8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x39e4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x39d8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3a04(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3a00(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x39fc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3bc8(%rsp)
movl $0x10, 0x3bc4(%rsp)
movq 0x3bc8(%rsp), %rax
movslq 0x3bc4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bc4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2c8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x11a0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x137d7bf
movq 0x2c8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x11b8(%rsp)
movb $0x1, 0x22c3(%rsp)
testb $0x1, 0x22c3(%rsp)
jne 0x137d900
leaq 0x1178(%rsp), %rax
movq %rax, 0x2658(%rsp)
movq 0x2658(%rsp), %rax
movq %rax, 0x4268(%rsp)
movq 0x4268(%rsp), %rax
movq %rax, 0x2b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137d8a3
movq 0x2b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4264(%rsp) # imm = 0xFFFFFFFF
movl 0x4264(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4260(%rsp)
cmpl $0x1, 0x4260(%rsp)
jne 0x137d8a3
movq 0x2b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x137d871
movq 0x2b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x137d86f
jmp 0x137d8a1
movq 0x2b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4438(%rsp)
cmpq $0x0, 0x4438(%rsp)
je 0x137d89f
movq 0x4438(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x137d8a1
jmp 0x137d8a3
movq 0x2b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x137d8fe
movq %rax, %rdi
callq 0x678a0
jmp 0x137d900
leaq 0x1178(%rsp), %rax
movq %rax, 0x2508(%rsp)
movq 0x2508(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2a8(%rsp)
leaq 0x1178(%rsp), %rax
movq %rax, 0x2780(%rsp)
movq 0x2780(%rsp), %rax
movq %rax, 0x4018(%rsp)
movq 0x4018(%rsp), %rax
movq %rax, 0x2b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137d9f1
movq 0x2b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4014(%rsp) # imm = 0xFFFFFFFF
movl 0x4014(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4010(%rsp)
cmpl $0x1, 0x4010(%rsp)
jne 0x137d9f1
movq 0x2b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x137d9bf
movq 0x2b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x137d9bd
jmp 0x137d9ef
movq 0x2b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4560(%rsp)
cmpq $0x0, 0x4560(%rsp)
je 0x137d9ed
movq 0x4560(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x137d9ef
jmp 0x137d9f1
movq 0x2b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x137da4c
movq %rax, %rdi
callq 0x678a0
movq 0x2a8(%rsp), %rax
movq %rax, 0x11c0(%rsp)
movq 0x2178(%rsp), %rcx
movl 0x121c(%rsp), %eax
leaq 0x1128(%rsp), %rdx
movq %rdx, 0x28c0(%rsp)
movq %rcx, 0x28b8(%rsp)
movl %eax, 0x28b4(%rsp)
movq 0x28b8(%rsp), %rax
movq %rax, 0x2a0(%rsp)
movb $0x0, 0x28b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x28b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1128(%rsp), %r10
movq %r10, 0x3458(%rsp)
movl %r9d, 0x3454(%rsp)
movl %r8d, 0x3450(%rsp)
movl %edi, 0x344c(%rsp)
movq %rsi, 0x3440(%rsp)
movq %rdx, 0x3438(%rsp)
movl %ecx, 0x3434(%rsp)
movq %rax, 0x3428(%rsp)
movq 0x3458(%rsp), %rcx
movq %rcx, 0x298(%rsp)
movq 0x3440(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3438(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3434(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3428(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3454(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3450(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x344c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d68(%rsp)
movl $0x10, 0x3d64(%rsp)
movq 0x3d68(%rsp), %rax
movslq 0x3d64(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d64(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2a0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1150(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x137dc18
movq 0x2a0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1168(%rsp)
movb $0x1, 0x28b3(%rsp)
testb $0x1, 0x28b3(%rsp)
jne 0x137dd59
leaq 0x1128(%rsp), %rax
movq %rax, 0x28c8(%rsp)
movq 0x28c8(%rsp), %rax
movq %rax, 0x3ed8(%rsp)
movq 0x3ed8(%rsp), %rax
movq %rax, 0x290(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137dcfc
movq 0x290(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ed4(%rsp) # imm = 0xFFFFFFFF
movl 0x3ed4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ed0(%rsp)
cmpl $0x1, 0x3ed0(%rsp)
jne 0x137dcfc
movq 0x290(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x137dcca
movq 0x290(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x137dcc8
jmp 0x137dcfa
movq 0x290(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4600(%rsp)
cmpq $0x0, 0x4600(%rsp)
je 0x137dcf8
movq 0x4600(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x137dcfa
jmp 0x137dcfc
movq 0x290(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x137dd57
movq %rax, %rdi
callq 0x678a0
jmp 0x137dd59
leaq 0x1128(%rsp), %rax
movq %rax, 0x2a70(%rsp)
movq 0x2a70(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x280(%rsp)
leaq 0x1128(%rsp), %rax
movq %rax, 0x2788(%rsp)
movq 0x2788(%rsp), %rax
movq %rax, 0x4008(%rsp)
movq 0x4008(%rsp), %rax
movq %rax, 0x288(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137de4a
movq 0x288(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4004(%rsp) # imm = 0xFFFFFFFF
movl 0x4004(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4000(%rsp)
cmpl $0x1, 0x4000(%rsp)
jne 0x137de4a
movq 0x288(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x137de18
movq 0x288(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x137de16
jmp 0x137de48
movq 0x288(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4568(%rsp)
cmpq $0x0, 0x4568(%rsp)
je 0x137de46
movq 0x4568(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x137de48
jmp 0x137de4a
movq 0x288(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x137dea5
movq %rax, %rdi
callq 0x678a0
movq 0x280(%rsp), %rax
movq %rax, 0x1170(%rsp)
movl $0x0, 0x1124(%rsp)
movl 0x1124(%rsp), %eax
cmpl 0x2144(%rsp), %eax
jge 0x137e004
movl $0x0, 0x1120(%rsp)
movl 0x1120(%rsp), %eax
cmpl 0x2148(%rsp), %eax
jge 0x137dfec
movq 0x1210(%rsp), %rax
movl 0x1120(%rsp), %ecx
shll $0x3, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2b98(%rsp)
movq 0x2b98(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1100(%rsp)
movq 0x11c0(%rsp), %rax
movq %rax, 0x2b90(%rsp)
movq 0x2b90(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x10e0(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0x1100(%rsp), %rsi
leaq 0x10e0(%rsp), %rdx
callq 0x1453760
vmovaps %ymm0, 0x10c0(%rsp)
movq 0x1170(%rsp), %rax
vmovaps 0x10c0(%rsp), %ymm0
movq %rax, 0x2e78(%rsp)
vmovaps %ymm0, 0x2e40(%rsp)
vmovaps 0x2e40(%rsp), %ymm0
movq 0x2e78(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x11c0(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x11c0(%rsp)
movq 0x1170(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1170(%rsp)
movl 0x1120(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1120(%rsp)
jmp 0x137dedf
jmp 0x137dfee
movl 0x1124(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1124(%rsp)
jmp 0x137dec0
jmp 0x137e006
movl 0x121c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x121c(%rsp)
jmp 0x137d196
movl $0x0, 0x2194(%rsp)
jmp 0x1382aba
movq 0x2188(%rsp), %rdi
movq 0x2180(%rsp), %rsi
movq 0x2178(%rsp), %rdx
movq 0x2170(%rsp), %rcx
callq 0x1441b80
movl %eax, 0x2194(%rsp)
jmp 0x1382aba
movq 0x2178(%rsp), %rdi
movl 0x2168(%rsp), %esi
movl 0x2164(%rsp), %edx
movl 0x215c(%rsp), %ecx
movq 0x2150(%rsp), %r8
movl 0x214c(%rsp), %r9d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2178(%rsp), %rax
movq %rax, 0x21d8(%rsp)
movq 0x21d8(%rsp), %rcx
movq %rcx, 0x270(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x27f(%rsp)
je 0x137e100
movq 0x270(%rsp), %rax
movq %rax, 0x3178(%rsp)
movq 0x3178(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x27f(%rsp)
movb 0x27f(%rsp), %al
testb $0x1, %al
jne 0x137e10d
jmp 0x137e11d
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x1382aba
movq 0x2180(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x137ebbe
movl $0x0, 0x10bc(%rsp)
movl 0x10bc(%rsp), %eax
cmpl 0x215c(%rsp), %eax
jge 0x137ebae
movq 0x2188(%rsp), %rcx
movl 0x10bc(%rsp), %eax
leaq 0x1068(%rsp), %rdx
movq %rdx, 0x22b8(%rsp)
movq %rcx, 0x22b0(%rsp)
movl %eax, 0x22ac(%rsp)
movq 0x22b0(%rsp), %rax
movq %rax, 0x268(%rsp)
movb $0x0, 0x22ab(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22ac(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1068(%rsp), %r10
movq %r10, 0x3a40(%rsp)
movl %r9d, 0x3a3c(%rsp)
movl %r8d, 0x3a38(%rsp)
movl %edi, 0x3a34(%rsp)
movq %rsi, 0x3a28(%rsp)
movq %rdx, 0x3a20(%rsp)
movl %ecx, 0x3a1c(%rsp)
movq %rax, 0x3a10(%rsp)
movq 0x3a40(%rsp), %rcx
movq %rcx, 0x260(%rsp)
movq 0x3a28(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3a20(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3a1c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3a10(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3a3c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3a38(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3a34(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3bb8(%rsp)
movl $0x10, 0x3bb4(%rsp)
movq 0x3bb8(%rsp), %rax
movslq 0x3bb4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bb4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x268(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1090(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x137e30a
movq 0x268(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x10a8(%rsp)
movb $0x1, 0x22ab(%rsp)
testb $0x1, 0x22ab(%rsp)
jne 0x137e44b
leaq 0x1068(%rsp), %rax
movq %rax, 0x2660(%rsp)
movq 0x2660(%rsp), %rax
movq %rax, 0x4258(%rsp)
movq 0x4258(%rsp), %rax
movq %rax, 0x258(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137e3ee
movq 0x258(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4254(%rsp) # imm = 0xFFFFFFFF
movl 0x4254(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4250(%rsp)
cmpl $0x1, 0x4250(%rsp)
jne 0x137e3ee
movq 0x258(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x137e3bc
movq 0x258(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x137e3ba
jmp 0x137e3ec
movq 0x258(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4440(%rsp)
cmpq $0x0, 0x4440(%rsp)
je 0x137e3ea
movq 0x4440(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x137e3ec
jmp 0x137e3ee
movq 0x258(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x137e449
movq %rax, %rdi
callq 0x678a0
jmp 0x137e44b
leaq 0x1068(%rsp), %rax
movq %rax, 0x2500(%rsp)
movq 0x2500(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x248(%rsp)
leaq 0x1068(%rsp), %rax
movq %rax, 0x2790(%rsp)
movq 0x2790(%rsp), %rax
movq %rax, 0x3ff8(%rsp)
movq 0x3ff8(%rsp), %rax
movq %rax, 0x250(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137e53c
movq 0x250(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ff4(%rsp) # imm = 0xFFFFFFFF
movl 0x3ff4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ff0(%rsp)
cmpl $0x1, 0x3ff0(%rsp)
jne 0x137e53c
movq 0x250(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x137e50a
movq 0x250(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x137e508
jmp 0x137e53a
movq 0x250(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4570(%rsp)
cmpq $0x0, 0x4570(%rsp)
je 0x137e538
movq 0x4570(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x137e53a
jmp 0x137e53c
movq 0x250(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x137e597
movq %rax, %rdi
callq 0x678a0
movq 0x248(%rsp), %rax
movq %rax, 0x10b0(%rsp)
movq 0x2180(%rsp), %rcx
movl 0x10bc(%rsp), %eax
movq %rcx, 0x2af8(%rsp)
movl %eax, 0x2af4(%rsp)
movq 0x2af8(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2af4(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x1060(%rsp)
movq 0x2178(%rsp), %rcx
movl 0x10bc(%rsp), %eax
leaq 0x1010(%rsp), %rdx
movq %rdx, 0x28a0(%rsp)
movq %rcx, 0x2898(%rsp)
movl %eax, 0x2894(%rsp)
movq 0x2898(%rsp), %rax
movq %rax, 0x240(%rsp)
movb $0x0, 0x2893(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2894(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1010(%rsp), %r10
movq %r10, 0x3490(%rsp)
movl %r9d, 0x348c(%rsp)
movl %r8d, 0x3488(%rsp)
movl %edi, 0x3484(%rsp)
movq %rsi, 0x3478(%rsp)
movq %rdx, 0x3470(%rsp)
movl %ecx, 0x346c(%rsp)
movq %rax, 0x3460(%rsp)
movq 0x3490(%rsp), %rcx
movq %rcx, 0x238(%rsp)
movq 0x3478(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3470(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x346c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3460(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x348c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3488(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3484(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d58(%rsp)
movl $0x10, 0x3d54(%rsp)
movq 0x3d58(%rsp), %rax
movslq 0x3d54(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d54(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x240(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1038(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x137e7ac
movq 0x240(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1050(%rsp)
movb $0x1, 0x2893(%rsp)
testb $0x1, 0x2893(%rsp)
jne 0x137e8ed
leaq 0x1010(%rsp), %rax
movq %rax, 0x28a8(%rsp)
movq 0x28a8(%rsp), %rax
movq %rax, 0x3ee8(%rsp)
movq 0x3ee8(%rsp), %rax
movq %rax, 0x230(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137e890
movq 0x230(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ee4(%rsp) # imm = 0xFFFFFFFF
movl 0x3ee4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ee0(%rsp)
cmpl $0x1, 0x3ee0(%rsp)
jne 0x137e890
movq 0x230(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x137e85e
movq 0x230(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x137e85c
jmp 0x137e88e
movq 0x230(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45f8(%rsp)
cmpq $0x0, 0x45f8(%rsp)
je 0x137e88c
movq 0x45f8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x137e88e
jmp 0x137e890
movq 0x230(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x137e8eb
movq %rax, %rdi
callq 0x678a0
jmp 0x137e8ed
leaq 0x1010(%rsp), %rax
movq %rax, 0x2a68(%rsp)
movq 0x2a68(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x220(%rsp)
leaq 0x1010(%rsp), %rax
movq %rax, 0x2798(%rsp)
movq 0x2798(%rsp), %rax
movq %rax, 0x3fe8(%rsp)
movq 0x3fe8(%rsp), %rax
movq %rax, 0x228(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137e9de
movq 0x228(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fe4(%rsp) # imm = 0xFFFFFFFF
movl 0x3fe4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fe0(%rsp)
cmpl $0x1, 0x3fe0(%rsp)
jne 0x137e9de
movq 0x228(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x137e9ac
movq 0x228(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x137e9aa
jmp 0x137e9dc
movq 0x228(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4578(%rsp)
cmpq $0x0, 0x4578(%rsp)
je 0x137e9da
movq 0x4578(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x137e9dc
jmp 0x137e9de
movq 0x228(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x137ea39
movq %rax, %rdi
callq 0x678a0
movq 0x220(%rsp), %rax
movq %rax, 0x1058(%rsp)
movl $0x0, 0x100c(%rsp)
movl 0x100c(%rsp), %eax
cmpl 0x2164(%rsp), %eax
jge 0x137eb96
movq 0x1060(%rsp), %rax
movq %rax, 0x2b88(%rsp)
movq 0x2b88(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0xfe0(%rsp)
movl $0x0, 0xfdc(%rsp)
movl 0xfdc(%rsp), %eax
cmpl 0x2168(%rsp), %eax
jge 0x137eb6c
movq 0x10b0(%rsp), %rax
movq %rax, 0x2b80(%rsp)
movq 0x2b80(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0xfa0(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0xfa0(%rsp), %rsi
leaq 0xfe0(%rsp), %rdx
callq 0x1453760
vmovaps %ymm0, 0xf80(%rsp)
movq 0x1058(%rsp), %rax
vmovaps 0xf80(%rsp), %ymm0
movq %rax, 0x2e38(%rsp)
vmovaps %ymm0, 0x2e00(%rsp)
vmovaps 0x2e00(%rsp), %ymm0
movq 0x2e38(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x10b0(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x10b0(%rsp)
movq 0x1058(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1058(%rsp)
movl 0xfdc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xfdc(%rsp)
jmp 0x137ea98
movq 0x1060(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1060(%rsp)
movl 0x100c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x100c(%rsp)
jmp 0x137ea54
jmp 0x137eb98
movl 0x10bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x10bc(%rsp)
jmp 0x137e13a
movl $0x0, 0x2194(%rsp)
jmp 0x1382aba
movq 0x2180(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x137f63d
movq 0x2180(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x137ec19
cmpl $0x1, 0x212c(%rsp)
jne 0x137ec19
movq 0x2188(%rsp), %rdi
movq 0x2180(%rsp), %rsi
movq 0x2178(%rsp), %rdx
movq 0x2170(%rsp), %rcx
callq 0x1442d90
movl %eax, 0x2194(%rsp)
jmp 0x1382aba
movl $0x0, 0xf7c(%rsp)
movl 0xf7c(%rsp), %eax
cmpl 0x215c(%rsp), %eax
jge 0x137f62d
movq 0x2188(%rsp), %rcx
movl 0xf7c(%rsp), %eax
leaq 0xf28(%rsp), %rdx
movq %rdx, 0x22a0(%rsp)
movq %rcx, 0x2298(%rsp)
movl %eax, 0x2294(%rsp)
movq 0x2298(%rsp), %rax
movq %rax, 0x218(%rsp)
movb $0x0, 0x2293(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2294(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xf28(%rsp), %r10
movq %r10, 0x3a78(%rsp)
movl %r9d, 0x3a74(%rsp)
movl %r8d, 0x3a70(%rsp)
movl %edi, 0x3a6c(%rsp)
movq %rsi, 0x3a60(%rsp)
movq %rdx, 0x3a58(%rsp)
movl %ecx, 0x3a54(%rsp)
movq %rax, 0x3a48(%rsp)
movq 0x3a78(%rsp), %rcx
movq %rcx, 0x210(%rsp)
movq 0x3a60(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3a58(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3a54(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3a48(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3a74(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3a70(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3a6c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ba8(%rsp)
movl $0x10, 0x3ba4(%rsp)
movq 0x3ba8(%rsp), %rax
movslq 0x3ba4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3ba4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x218(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf50(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x137edf4
movq 0x218(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xf68(%rsp)
movb $0x1, 0x2293(%rsp)
testb $0x1, 0x2293(%rsp)
jne 0x137ef35
leaq 0xf28(%rsp), %rax
movq %rax, 0x2668(%rsp)
movq 0x2668(%rsp), %rax
movq %rax, 0x4248(%rsp)
movq 0x4248(%rsp), %rax
movq %rax, 0x208(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137eed8
movq 0x208(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4244(%rsp) # imm = 0xFFFFFFFF
movl 0x4244(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4240(%rsp)
cmpl $0x1, 0x4240(%rsp)
jne 0x137eed8
movq 0x208(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x137eea6
movq 0x208(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x137eea4
jmp 0x137eed6
movq 0x208(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4448(%rsp)
cmpq $0x0, 0x4448(%rsp)
je 0x137eed4
movq 0x4448(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x137eed6
jmp 0x137eed8
movq 0x208(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x137ef33
movq %rax, %rdi
callq 0x678a0
jmp 0x137ef35
leaq 0xf28(%rsp), %rax
movq %rax, 0x24f8(%rsp)
movq 0x24f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1f8(%rsp)
leaq 0xf28(%rsp), %rax
movq %rax, 0x27a0(%rsp)
movq 0x27a0(%rsp), %rax
movq %rax, 0x3fd8(%rsp)
movq 0x3fd8(%rsp), %rax
movq %rax, 0x200(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137f026
movq 0x200(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fd4(%rsp) # imm = 0xFFFFFFFF
movl 0x3fd4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fd0(%rsp)
cmpl $0x1, 0x3fd0(%rsp)
jne 0x137f026
movq 0x200(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x137eff4
movq 0x200(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x137eff2
jmp 0x137f024
movq 0x200(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4580(%rsp)
cmpq $0x0, 0x4580(%rsp)
je 0x137f022
movq 0x4580(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x137f024
jmp 0x137f026
movq 0x200(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x137f081
movq %rax, %rdi
callq 0x678a0
movq 0x1f8(%rsp), %rax
movq %rax, 0xf70(%rsp)
movq 0x2180(%rsp), %rax
movq %rax, 0x24f0(%rsp)
movq 0x24f0(%rsp), %rax
movq (%rax), %rax
movl 0xf7c(%rsp), %ecx
shll $0x3, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2b78(%rsp)
movq 0x2b78(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0xf00(%rsp)
movq 0x2178(%rsp), %rcx
movl 0xf7c(%rsp), %eax
leaq 0xeb0(%rsp), %rdx
movq %rdx, 0x2880(%rsp)
movq %rcx, 0x2878(%rsp)
movl %eax, 0x2874(%rsp)
movq 0x2878(%rsp), %rax
movq %rax, 0x1f0(%rsp)
movb $0x0, 0x2873(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2874(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xeb0(%rsp), %r10
movq %r10, 0x34c8(%rsp)
movl %r9d, 0x34c4(%rsp)
movl %r8d, 0x34c0(%rsp)
movl %edi, 0x34bc(%rsp)
movq %rsi, 0x34b0(%rsp)
movq %rdx, 0x34a8(%rsp)
movl %ecx, 0x34a4(%rsp)
movq %rax, 0x3498(%rsp)
movq 0x34c8(%rsp), %rcx
movq %rcx, 0x1e8(%rsp)
movq 0x34b0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x34a8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x34a4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3498(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x34c4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x34c0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x34bc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d48(%rsp)
movl $0x10, 0x3d44(%rsp)
movq 0x3d48(%rsp), %rax
movslq 0x3d44(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d44(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x1f0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xed8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x137f299
movq 0x1f0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xef0(%rsp)
movb $0x1, 0x2873(%rsp)
testb $0x1, 0x2873(%rsp)
jne 0x137f3da
leaq 0xeb0(%rsp), %rax
movq %rax, 0x2888(%rsp)
movq 0x2888(%rsp), %rax
movq %rax, 0x3ef8(%rsp)
movq 0x3ef8(%rsp), %rax
movq %rax, 0x1e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137f37d
movq 0x1e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ef4(%rsp) # imm = 0xFFFFFFFF
movl 0x3ef4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ef0(%rsp)
cmpl $0x1, 0x3ef0(%rsp)
jne 0x137f37d
movq 0x1e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x137f34b
movq 0x1e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x137f349
jmp 0x137f37b
movq 0x1e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45f0(%rsp)
cmpq $0x0, 0x45f0(%rsp)
je 0x137f379
movq 0x45f0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x137f37b
jmp 0x137f37d
movq 0x1e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x137f3d8
movq %rax, %rdi
callq 0x678a0
jmp 0x137f3da
leaq 0xeb0(%rsp), %rax
movq %rax, 0x2a60(%rsp)
movq 0x2a60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1d0(%rsp)
leaq 0xeb0(%rsp), %rax
movq %rax, 0x27a8(%rsp)
movq 0x27a8(%rsp), %rax
movq %rax, 0x3fc8(%rsp)
movq 0x3fc8(%rsp), %rax
movq %rax, 0x1d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137f4cb
movq 0x1d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fc4(%rsp) # imm = 0xFFFFFFFF
movl 0x3fc4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fc0(%rsp)
cmpl $0x1, 0x3fc0(%rsp)
jne 0x137f4cb
movq 0x1d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x137f499
movq 0x1d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x137f497
jmp 0x137f4c9
movq 0x1d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4588(%rsp)
cmpq $0x0, 0x4588(%rsp)
je 0x137f4c7
movq 0x4588(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x137f4c9
jmp 0x137f4cb
movq 0x1d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x137f526
movq %rax, %rdi
callq 0x678a0
movq 0x1d0(%rsp), %rax
movq %rax, 0xef8(%rsp)
movl $0x0, 0xeac(%rsp)
movl 0xeac(%rsp), %eax
cmpl 0x2158(%rsp), %eax
jge 0x137f615
movq 0xf70(%rsp), %rax
movq %rax, 0x2b70(%rsp)
movq 0x2b70(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0xe80(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0xe80(%rsp), %rsi
leaq 0xf00(%rsp), %rdx
callq 0x1453760
vmovaps %ymm0, 0xe60(%rsp)
movq 0xef8(%rsp), %rax
vmovaps 0xe60(%rsp), %ymm0
movq %rax, 0x2df8(%rsp)
vmovaps %ymm0, 0x2dc0(%rsp)
vmovaps 0x2dc0(%rsp), %ymm0
movq 0x2df8(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0xf70(%rsp), %rax
addq $0x20, %rax
movq %rax, 0xf70(%rsp)
movq 0xef8(%rsp), %rax
addq $0x20, %rax
movq %rax, 0xef8(%rsp)
movl 0xeac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xeac(%rsp)
jmp 0x137f541
jmp 0x137f617
movl 0xf7c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xf7c(%rsp)
jmp 0x137ec24
movl $0x0, 0x2194(%rsp)
jmp 0x1382aba
jmp 0x1382aad
movq 0x2188(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1381129
movq 0x2180(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x13801f9
movq 0x2178(%rsp), %rdi
movl 0x2148(%rsp), %esi
movl 0x2144(%rsp), %edx
movl 0x2140(%rsp), %ecx
movl 0x213c(%rsp), %r8d
movq 0x2130(%rsp), %r9
movl 0x212c(%rsp), %r10d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x2178(%rsp), %rax
movq %rax, 0x21d0(%rsp)
movq 0x21d0(%rsp), %rcx
movq %rcx, 0x1c0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1cf(%rsp)
je 0x137f716
movq 0x1c0(%rsp), %rax
movq %rax, 0x3180(%rsp)
movq 0x3180(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1cf(%rsp)
movb 0x1cf(%rsp), %al
testb $0x1, %al
jne 0x137f723
jmp 0x137f733
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x1382aba
movl $0x0, 0xe5c(%rsp)
movl 0xe5c(%rsp), %eax
cmpl 0x213c(%rsp), %eax
jge 0x13801e9
movq 0x2188(%rsp), %rcx
movl 0xe5c(%rsp), %eax
movq %rcx, 0x2ae8(%rsp)
movl %eax, 0x2ae4(%rsp)
movq 0x2ae8(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2ae4(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xe50(%rsp)
movq 0x2180(%rsp), %rcx
movl 0xe5c(%rsp), %eax
leaq 0xe00(%rsp), %rdx
movq %rdx, 0x2288(%rsp)
movq %rcx, 0x2280(%rsp)
movl %eax, 0x227c(%rsp)
movq 0x2280(%rsp), %rax
movq %rax, 0x1b8(%rsp)
movb $0x0, 0x227b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x227c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xe00(%rsp), %r10
movq %r10, 0x3ab0(%rsp)
movl %r9d, 0x3aac(%rsp)
movl %r8d, 0x3aa8(%rsp)
movl %edi, 0x3aa4(%rsp)
movq %rsi, 0x3a98(%rsp)
movq %rdx, 0x3a90(%rsp)
movl %ecx, 0x3a8c(%rsp)
movq %rax, 0x3a80(%rsp)
movq 0x3ab0(%rsp), %rcx
movq %rcx, 0x1b0(%rsp)
movq 0x3a98(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3a90(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3a8c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3a80(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3aac(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3aa8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3aa4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b98(%rsp)
movl $0x10, 0x3b94(%rsp)
movq 0x3b98(%rsp), %rax
movslq 0x3b94(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b94(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x1b8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xe28(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x137f957
movq 0x1b8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xe40(%rsp)
movb $0x1, 0x227b(%rsp)
testb $0x1, 0x227b(%rsp)
jne 0x137fa98
leaq 0xe00(%rsp), %rax
movq %rax, 0x2670(%rsp)
movq 0x2670(%rsp), %rax
movq %rax, 0x4238(%rsp)
movq 0x4238(%rsp), %rax
movq %rax, 0x1a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137fa3b
movq 0x1a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4234(%rsp) # imm = 0xFFFFFFFF
movl 0x4234(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4230(%rsp)
cmpl $0x1, 0x4230(%rsp)
jne 0x137fa3b
movq 0x1a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x137fa09
movq 0x1a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x137fa07
jmp 0x137fa39
movq 0x1a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4450(%rsp)
cmpq $0x0, 0x4450(%rsp)
je 0x137fa37
movq 0x4450(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x137fa39
jmp 0x137fa3b
movq 0x1a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x137fa96
movq %rax, %rdi
callq 0x678a0
jmp 0x137fa98
leaq 0xe00(%rsp), %rax
movq %rax, 0x24e8(%rsp)
movq 0x24e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x198(%rsp)
leaq 0xe00(%rsp), %rax
movq %rax, 0x27b0(%rsp)
movq 0x27b0(%rsp), %rax
movq %rax, 0x3fb8(%rsp)
movq 0x3fb8(%rsp), %rax
movq %rax, 0x1a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137fb89
movq 0x1a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fb4(%rsp) # imm = 0xFFFFFFFF
movl 0x3fb4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fb0(%rsp)
cmpl $0x1, 0x3fb0(%rsp)
jne 0x137fb89
movq 0x1a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x137fb57
movq 0x1a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x137fb55
jmp 0x137fb87
movq 0x1a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4590(%rsp)
cmpq $0x0, 0x4590(%rsp)
je 0x137fb85
movq 0x4590(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x137fb87
jmp 0x137fb89
movq 0x1a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x137fbe4
movq %rax, %rdi
callq 0x678a0
movq 0x198(%rsp), %rax
movq %rax, 0xe48(%rsp)
movq 0x2178(%rsp), %rcx
movl 0xe5c(%rsp), %eax
leaq 0xdb0(%rsp), %rdx
movq %rdx, 0x2860(%rsp)
movq %rcx, 0x2858(%rsp)
movl %eax, 0x2854(%rsp)
movq 0x2858(%rsp), %rax
movq %rax, 0x190(%rsp)
movb $0x0, 0x2853(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2854(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xdb0(%rsp), %r10
movq %r10, 0x3500(%rsp)
movl %r9d, 0x34fc(%rsp)
movl %r8d, 0x34f8(%rsp)
movl %edi, 0x34f4(%rsp)
movq %rsi, 0x34e8(%rsp)
movq %rdx, 0x34e0(%rsp)
movl %ecx, 0x34dc(%rsp)
movq %rax, 0x34d0(%rsp)
movq 0x3500(%rsp), %rcx
movq %rcx, 0x188(%rsp)
movq 0x34e8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x34e0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x34dc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x34d0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x34fc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x34f8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x34f4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d38(%rsp)
movl $0x10, 0x3d34(%rsp)
movq 0x3d38(%rsp), %rax
movslq 0x3d34(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d34(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x190(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xdd8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x137fdb0
movq 0x190(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xdf0(%rsp)
movb $0x1, 0x2853(%rsp)
testb $0x1, 0x2853(%rsp)
jne 0x137fef1
leaq 0xdb0(%rsp), %rax
movq %rax, 0x2868(%rsp)
movq 0x2868(%rsp), %rax
movq %rax, 0x3f08(%rsp)
movq 0x3f08(%rsp), %rax
movq %rax, 0x180(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137fe94
movq 0x180(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f04(%rsp) # imm = 0xFFFFFFFF
movl 0x3f04(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f00(%rsp)
cmpl $0x1, 0x3f00(%rsp)
jne 0x137fe94
movq 0x180(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x137fe62
movq 0x180(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x137fe60
jmp 0x137fe92
movq 0x180(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45e8(%rsp)
cmpq $0x0, 0x45e8(%rsp)
je 0x137fe90
movq 0x45e8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x137fe92
jmp 0x137fe94
movq 0x180(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x137feef
movq %rax, %rdi
callq 0x678a0
jmp 0x137fef1
leaq 0xdb0(%rsp), %rax
movq %rax, 0x2a58(%rsp)
movq 0x2a58(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x170(%rsp)
leaq 0xdb0(%rsp), %rax
movq %rax, 0x27b8(%rsp)
movq 0x27b8(%rsp), %rax
movq %rax, 0x3fa8(%rsp)
movq 0x3fa8(%rsp), %rax
movq %rax, 0x178(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x137ffe2
movq 0x178(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fa4(%rsp) # imm = 0xFFFFFFFF
movl 0x3fa4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fa0(%rsp)
cmpl $0x1, 0x3fa0(%rsp)
jne 0x137ffe2
movq 0x178(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x137ffb0
movq 0x178(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x137ffae
jmp 0x137ffe0
movq 0x178(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4598(%rsp)
cmpq $0x0, 0x4598(%rsp)
je 0x137ffde
movq 0x4598(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x137ffe0
jmp 0x137ffe2
movq 0x178(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x138003d
movq %rax, %rdi
callq 0x678a0
movq 0x170(%rsp), %rax
movq %rax, 0xdf8(%rsp)
movl $0x0, 0xdac(%rsp)
movl 0xdac(%rsp), %eax
cmpl 0x2140(%rsp), %eax
jge 0x13801d1
movq 0xe50(%rsp), %rax
movq %rax, 0x2b68(%rsp)
movq 0x2b68(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0xd80(%rsp)
movl $0x0, 0xd7c(%rsp)
movl 0xd7c(%rsp), %eax
cmpl 0x2144(%rsp), %eax
jge 0x13801a7
movl $0x0, 0xd78(%rsp)
movl 0xd78(%rsp), %eax
cmpl 0x2148(%rsp), %eax
jge 0x138018f
movq 0xe48(%rsp), %rax
movq %rax, 0x2b60(%rsp)
movq 0x2b60(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0xd40(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0xd80(%rsp), %rsi
leaq 0xd40(%rsp), %rdx
callq 0x1453760
vmovaps %ymm0, 0xd20(%rsp)
movq 0xdf8(%rsp), %rax
vmovaps 0xd20(%rsp), %ymm0
movq %rax, 0x2db8(%rsp)
vmovaps %ymm0, 0x2d80(%rsp)
vmovaps 0x2d80(%rsp), %ymm0
movq 0x2db8(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0xe48(%rsp), %rax
addq $0x20, %rax
movq %rax, 0xe48(%rsp)
movq 0xdf8(%rsp), %rax
addq $0x20, %rax
movq %rax, 0xdf8(%rsp)
movl 0xd78(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xd78(%rsp)
jmp 0x13800bb
jmp 0x1380191
movl 0xd7c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xd7c(%rsp)
jmp 0x138009c
movq 0xe50(%rsp), %rax
addq $0x20, %rax
movq %rax, 0xe50(%rsp)
movl 0xdac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdac(%rsp)
jmp 0x1380058
jmp 0x13801d3
movl 0xe5c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xe5c(%rsp)
jmp 0x137f73e
movl $0x0, 0x2194(%rsp)
jmp 0x1382aba
movq 0x2180(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1380d5a
movq 0x2178(%rsp), %rdi
movl 0x2148(%rsp), %esi
movl 0x2144(%rsp), %edx
movl 0x213c(%rsp), %ecx
movq 0x2130(%rsp), %r8
movl 0x212c(%rsp), %r9d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2178(%rsp), %rax
movq %rax, 0x21c8(%rsp)
movq 0x21c8(%rsp), %rcx
movq %rcx, 0x160(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x16f(%rsp)
je 0x13802ae
movq 0x160(%rsp), %rax
movq %rax, 0x3188(%rsp)
movq 0x3188(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x16f(%rsp)
movb 0x16f(%rsp), %al
testb $0x1, %al
jne 0x13802bb
jmp 0x13802cb
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x1382aba
movl $0x0, 0xd1c(%rsp)
movl 0xd1c(%rsp), %eax
cmpl 0x213c(%rsp), %eax
jge 0x1380d4a
movq 0x2188(%rsp), %rcx
movl 0xd1c(%rsp), %eax
movq %rcx, 0x2ad8(%rsp)
movl %eax, 0x2ad4(%rsp)
movq 0x2ad8(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2ad4(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xd10(%rsp)
movq 0x2180(%rsp), %rcx
movl 0xd1c(%rsp), %eax
leaq 0xcc0(%rsp), %rdx
movq %rdx, 0x2270(%rsp)
movq %rcx, 0x2268(%rsp)
movl %eax, 0x2264(%rsp)
movq 0x2268(%rsp), %rax
movq %rax, 0x158(%rsp)
movb $0x0, 0x2263(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2264(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xcc0(%rsp), %r10
movq %r10, 0x3ae8(%rsp)
movl %r9d, 0x3ae4(%rsp)
movl %r8d, 0x3ae0(%rsp)
movl %edi, 0x3adc(%rsp)
movq %rsi, 0x3ad0(%rsp)
movq %rdx, 0x3ac8(%rsp)
movl %ecx, 0x3ac4(%rsp)
movq %rax, 0x3ab8(%rsp)
movq 0x3ae8(%rsp), %rcx
movq %rcx, 0x150(%rsp)
movq 0x3ad0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3ac8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3ac4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3ab8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3ae4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3ae0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3adc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b88(%rsp)
movl $0x10, 0x3b84(%rsp)
movq 0x3b88(%rsp), %rax
movslq 0x3b84(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b84(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x158(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xce8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13804ef
movq 0x158(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd00(%rsp)
movb $0x1, 0x2263(%rsp)
testb $0x1, 0x2263(%rsp)
jne 0x1380630
leaq 0xcc0(%rsp), %rax
movq %rax, 0x2678(%rsp)
movq 0x2678(%rsp), %rax
movq %rax, 0x4228(%rsp)
movq 0x4228(%rsp), %rax
movq %rax, 0x148(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13805d3
movq 0x148(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4224(%rsp) # imm = 0xFFFFFFFF
movl 0x4224(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4220(%rsp)
cmpl $0x1, 0x4220(%rsp)
jne 0x13805d3
movq 0x148(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13805a1
movq 0x148(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x138059f
jmp 0x13805d1
movq 0x148(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4458(%rsp)
cmpq $0x0, 0x4458(%rsp)
je 0x13805cf
movq 0x4458(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13805d1
jmp 0x13805d3
movq 0x148(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x138062e
movq %rax, %rdi
callq 0x678a0
jmp 0x1380630
leaq 0xcc0(%rsp), %rax
movq %rax, 0x24e0(%rsp)
movq 0x24e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x138(%rsp)
leaq 0xcc0(%rsp), %rax
movq %rax, 0x27c0(%rsp)
movq 0x27c0(%rsp), %rax
movq %rax, 0x3f98(%rsp)
movq 0x3f98(%rsp), %rax
movq %rax, 0x140(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1380721
movq 0x140(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f94(%rsp) # imm = 0xFFFFFFFF
movl 0x3f94(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f90(%rsp)
cmpl $0x1, 0x3f90(%rsp)
jne 0x1380721
movq 0x140(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13806ef
movq 0x140(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13806ed
jmp 0x138071f
movq 0x140(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45a0(%rsp)
cmpq $0x0, 0x45a0(%rsp)
je 0x138071d
movq 0x45a0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x138071f
jmp 0x1380721
movq 0x140(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x138077c
movq %rax, %rdi
callq 0x678a0
movq 0x138(%rsp), %rax
movq %rax, 0xd08(%rsp)
movq 0x2178(%rsp), %rcx
movl 0xd1c(%rsp), %eax
leaq 0xc70(%rsp), %rdx
movq %rdx, 0x2840(%rsp)
movq %rcx, 0x2838(%rsp)
movl %eax, 0x2834(%rsp)
movq 0x2838(%rsp), %rax
movq %rax, 0x130(%rsp)
movb $0x0, 0x2833(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2834(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xc70(%rsp), %r10
movq %r10, 0x3538(%rsp)
movl %r9d, 0x3534(%rsp)
movl %r8d, 0x3530(%rsp)
movl %edi, 0x352c(%rsp)
movq %rsi, 0x3520(%rsp)
movq %rdx, 0x3518(%rsp)
movl %ecx, 0x3514(%rsp)
movq %rax, 0x3508(%rsp)
movq 0x3538(%rsp), %rcx
movq %rcx, 0x128(%rsp)
movq 0x3520(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3518(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3514(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3508(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3534(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3530(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x352c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d28(%rsp)
movl $0x10, 0x3d24(%rsp)
movq 0x3d28(%rsp), %rax
movslq 0x3d24(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d24(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x130(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc98(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1380948
movq 0x130(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xcb0(%rsp)
movb $0x1, 0x2833(%rsp)
testb $0x1, 0x2833(%rsp)
jne 0x1380a89
leaq 0xc70(%rsp), %rax
movq %rax, 0x2848(%rsp)
movq 0x2848(%rsp), %rax
movq %rax, 0x3f18(%rsp)
movq 0x3f18(%rsp), %rax
movq %rax, 0x120(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1380a2c
movq 0x120(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f14(%rsp) # imm = 0xFFFFFFFF
movl 0x3f14(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f10(%rsp)
cmpl $0x1, 0x3f10(%rsp)
jne 0x1380a2c
movq 0x120(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13809fa
movq 0x120(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13809f8
jmp 0x1380a2a
movq 0x120(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45e0(%rsp)
cmpq $0x0, 0x45e0(%rsp)
je 0x1380a28
movq 0x45e0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1380a2a
jmp 0x1380a2c
movq 0x120(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1380a87
movq %rax, %rdi
callq 0x678a0
jmp 0x1380a89
leaq 0xc70(%rsp), %rax
movq %rax, 0x2a50(%rsp)
movq 0x2a50(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x110(%rsp)
leaq 0xc70(%rsp), %rax
movq %rax, 0x27c8(%rsp)
movq 0x27c8(%rsp), %rax
movq %rax, 0x3f88(%rsp)
movq 0x3f88(%rsp), %rax
movq %rax, 0x118(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1380b7a
movq 0x118(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f84(%rsp) # imm = 0xFFFFFFFF
movl 0x3f84(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f80(%rsp)
cmpl $0x1, 0x3f80(%rsp)
jne 0x1380b7a
movq 0x118(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1380b48
movq 0x118(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1380b46
jmp 0x1380b78
movq 0x118(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45a8(%rsp)
cmpq $0x0, 0x45a8(%rsp)
je 0x1380b76
movq 0x45a8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1380b78
jmp 0x1380b7a
movq 0x118(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1380bd5
movq %rax, %rdi
callq 0x678a0
movq 0x110(%rsp), %rax
movq %rax, 0xcb8(%rsp)
movl $0x0, 0xc6c(%rsp)
movl 0xc6c(%rsp), %eax
cmpl 0x2144(%rsp), %eax
jge 0x1380d32
movq 0xd10(%rsp), %rax
movq %rax, 0x2b58(%rsp)
movq 0x2b58(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0xc40(%rsp)
movl $0x0, 0xc3c(%rsp)
movl 0xc3c(%rsp), %eax
cmpl 0x2148(%rsp), %eax
jge 0x1380d08
movq 0xd08(%rsp), %rax
movq %rax, 0x2b50(%rsp)
movq 0x2b50(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0xc00(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0xc40(%rsp), %rsi
leaq 0xc00(%rsp), %rdx
callq 0x1453760
vmovaps %ymm0, 0xbe0(%rsp)
movq 0xcb8(%rsp), %rax
vmovaps 0xbe0(%rsp), %ymm0
movq %rax, 0x2d78(%rsp)
vmovaps %ymm0, 0x2d40(%rsp)
vmovaps 0x2d40(%rsp), %ymm0
movq 0x2d78(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0xd08(%rsp), %rax
addq $0x20, %rax
movq %rax, 0xd08(%rsp)
movq 0xcb8(%rsp), %rax
addq $0x20, %rax
movq %rax, 0xcb8(%rsp)
movl 0xc3c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xc3c(%rsp)
jmp 0x1380c34
movq 0xd10(%rsp), %rax
addq $0x20, %rax
movq %rax, 0xd10(%rsp)
movl 0xc6c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xc6c(%rsp)
jmp 0x1380bf0
jmp 0x1380d34
movl 0xd1c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xd1c(%rsp)
jmp 0x13802d6
movl $0x0, 0x2194(%rsp)
jmp 0x1382aba
movq 0x2178(%rsp), %rdi
movl 0x2168(%rsp), %esi
movl 0x2164(%rsp), %edx
movq 0x2150(%rsp), %rcx
movl 0x214c(%rsp), %r8d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x2178(%rsp), %rax
movq %rax, 0x21c0(%rsp)
movq 0x21c0(%rsp), %rcx
movq %rcx, 0x100(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x10f(%rsp)
je 0x1380df2
movq 0x100(%rsp), %rax
movq %rax, 0x3190(%rsp)
movq 0x3190(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x10f(%rsp)
movb 0x10f(%rsp), %al
testb $0x1, %al
jne 0x1380dff
jmp 0x1380e0f
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x1382aba
movq 0x2180(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1380e4e
movq 0x2188(%rsp), %rdi
movq 0x2180(%rsp), %rsi
movq 0x2178(%rsp), %rdx
movq 0x2170(%rsp), %rcx
callq 0x1441b80
movl %eax, 0x2194(%rsp)
jmp 0x1382aba
movq 0x2180(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1381124
movq 0x2178(%rsp), %rdi
movl 0x2168(%rsp), %esi
movl 0x2164(%rsp), %edx
movq 0x2150(%rsp), %rcx
movl 0x214c(%rsp), %r8d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x2178(%rsp), %rax
movq %rax, 0x21b8(%rsp)
movq 0x21b8(%rsp), %rcx
movq %rcx, 0xf0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xff(%rsp)
je 0x1380ef8
movq 0xf0(%rsp), %rax
movq %rax, 0x3198(%rsp)
movq 0x3198(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xff(%rsp)
movb 0xff(%rsp), %al
testb $0x1, %al
jne 0x1380f05
jmp 0x1380f15
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x1382aba
movq 0x2180(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1380f5e
cmpl $0x1, 0x212c(%rsp)
jne 0x1380f5e
movq 0x2188(%rsp), %rdi
movq 0x2180(%rsp), %rsi
movq 0x2178(%rsp), %rdx
movq 0x2170(%rsp), %rcx
callq 0x1442d90
movl %eax, 0x2194(%rsp)
jmp 0x1382aba
movq 0x2188(%rsp), %rax
movq %rax, 0x24d8(%rsp)
movq 0x24d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xbd8(%rsp)
movq 0x2180(%rsp), %rax
movq %rax, 0x24d0(%rsp)
movq 0x24d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xbd0(%rsp)
movq 0x2178(%rsp), %rax
movq %rax, 0x2a48(%rsp)
movq 0x2a48(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xbc8(%rsp)
movl $0x0, 0xbc4(%rsp)
movl 0xbc4(%rsp), %eax
cmpl 0x2164(%rsp), %eax
jge 0x1381114
movq 0xbd0(%rsp), %rax
movq %rax, 0x2b48(%rsp)
movq 0x2b48(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0xba0(%rsp)
movl $0x0, 0xb9c(%rsp)
movl 0xb9c(%rsp), %eax
cmpl 0x2168(%rsp), %eax
jge 0x13810ea
movq 0xbd8(%rsp), %rax
movq %rax, 0x2b40(%rsp)
movq 0x2b40(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0xb60(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0xb60(%rsp), %rsi
leaq 0xba0(%rsp), %rdx
callq 0x1453760
vmovaps %ymm0, 0xb40(%rsp)
movq 0xbc8(%rsp), %rax
vmovaps 0xb40(%rsp), %ymm0
movq %rax, 0x2d38(%rsp)
vmovaps %ymm0, 0x2d00(%rsp)
vmovaps 0x2d00(%rsp), %ymm0
movq 0x2d38(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0xbd8(%rsp), %rax
addq $0x20, %rax
movq %rax, 0xbd8(%rsp)
movq 0xbc8(%rsp), %rax
addq $0x20, %rax
movq %rax, 0xbc8(%rsp)
movl 0xb9c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xb9c(%rsp)
jmp 0x1381016
movq 0xbd0(%rsp), %rax
addq $0x20, %rax
movq %rax, 0xbd0(%rsp)
movl 0xbc4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xbc4(%rsp)
jmp 0x1380fd2
movl $0x0, 0x2194(%rsp)
jmp 0x1382aba
jmp 0x1382aab
movq 0x2188(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1382aa9
movq 0x2188(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1381184
cmpl $0x1, 0x214c(%rsp)
jne 0x1381184
movq 0x2188(%rsp), %rdi
movq 0x2180(%rsp), %rsi
movq 0x2178(%rsp), %rdx
movq 0x2170(%rsp), %rcx
callq 0x1443c10
movl %eax, 0x2194(%rsp)
jmp 0x1382aba
movq 0x2180(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1381c87
movq 0x2178(%rsp), %rdi
movl 0x2148(%rsp), %esi
movl 0x2144(%rsp), %edx
movl 0x2140(%rsp), %ecx
movl 0x213c(%rsp), %r8d
movq 0x2130(%rsp), %r9
movl 0x212c(%rsp), %r10d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x2178(%rsp), %rax
movq %rax, 0x21b0(%rsp)
movq 0x21b0(%rsp), %rcx
movq %rcx, 0xe0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xef(%rsp)
je 0x1381246
movq 0xe0(%rsp), %rax
movq %rax, 0x31a0(%rsp)
movq 0x31a0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xef(%rsp)
movb 0xef(%rsp), %al
testb $0x1, %al
jne 0x1381253
jmp 0x1381263
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x1382aba
movl $0x0, 0xb3c(%rsp)
movl 0xb3c(%rsp), %eax
cmpl 0x213c(%rsp), %eax
jge 0x1381c77
movq 0x2188(%rsp), %rax
movq %rax, 0x24c8(%rsp)
movq 0x24c8(%rsp), %rax
movq (%rax), %rax
movl 0xb3c(%rsp), %ecx
shll $0x3, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2b38(%rsp)
movq 0x2b38(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0xb00(%rsp)
movq 0x2180(%rsp), %rcx
movl 0xb3c(%rsp), %eax
leaq 0xab0(%rsp), %rdx
movq %rdx, 0x2258(%rsp)
movq %rcx, 0x2250(%rsp)
movl %eax, 0x224c(%rsp)
movq 0x2250(%rsp), %rax
movq %rax, 0xd8(%rsp)
movb $0x0, 0x224b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x224c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xab0(%rsp), %r10
movq %r10, 0x3b20(%rsp)
movl %r9d, 0x3b1c(%rsp)
movl %r8d, 0x3b18(%rsp)
movl %edi, 0x3b14(%rsp)
movq %rsi, 0x3b08(%rsp)
movq %rdx, 0x3b00(%rsp)
movl %ecx, 0x3afc(%rsp)
movq %rax, 0x3af0(%rsp)
movq 0x3b20(%rsp), %rcx
movq %rcx, 0xd0(%rsp)
movq 0x3b08(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3b00(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3afc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3af0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3b1c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3b18(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3b14(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b78(%rsp)
movl $0x10, 0x3b74(%rsp)
movq 0x3b78(%rsp), %rax
movslq 0x3b74(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b74(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xd8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xad8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x138148a
movq 0xd8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xaf0(%rsp)
movb $0x1, 0x224b(%rsp)
testb $0x1, 0x224b(%rsp)
jne 0x13815cb
leaq 0xab0(%rsp), %rax
movq %rax, 0x2680(%rsp)
movq 0x2680(%rsp), %rax
movq %rax, 0x4218(%rsp)
movq 0x4218(%rsp), %rax
movq %rax, 0xc8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138156e
movq 0xc8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4214(%rsp) # imm = 0xFFFFFFFF
movl 0x4214(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4210(%rsp)
cmpl $0x1, 0x4210(%rsp)
jne 0x138156e
movq 0xc8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138153c
movq 0xc8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x138153a
jmp 0x138156c
movq 0xc8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4460(%rsp)
cmpq $0x0, 0x4460(%rsp)
je 0x138156a
movq 0x4460(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x138156c
jmp 0x138156e
movq 0xc8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13815c9
movq %rax, %rdi
callq 0x678a0
jmp 0x13815cb
leaq 0xab0(%rsp), %rax
movq %rax, 0x24c0(%rsp)
movq 0x24c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xb8(%rsp)
leaq 0xab0(%rsp), %rax
movq %rax, 0x27d0(%rsp)
movq 0x27d0(%rsp), %rax
movq %rax, 0x3f78(%rsp)
movq 0x3f78(%rsp), %rax
movq %rax, 0xc0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13816bc
movq 0xc0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f74(%rsp) # imm = 0xFFFFFFFF
movl 0x3f74(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f70(%rsp)
cmpl $0x1, 0x3f70(%rsp)
jne 0x13816bc
movq 0xc0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138168a
movq 0xc0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1381688
jmp 0x13816ba
movq 0xc0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45b0(%rsp)
cmpq $0x0, 0x45b0(%rsp)
je 0x13816b8
movq 0x45b0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13816ba
jmp 0x13816bc
movq 0xc0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1381717
movq %rax, %rdi
callq 0x678a0
movq 0xb8(%rsp), %rax
movq %rax, 0xaf8(%rsp)
movq 0x2178(%rsp), %rcx
movl 0xb3c(%rsp), %eax
leaq 0xa60(%rsp), %rdx
movq %rdx, 0x2820(%rsp)
movq %rcx, 0x2818(%rsp)
movl %eax, 0x2814(%rsp)
movq 0x2818(%rsp), %rax
movq %rax, 0xb0(%rsp)
movb $0x0, 0x2813(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2814(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xa60(%rsp), %r10
movq %r10, 0x3570(%rsp)
movl %r9d, 0x356c(%rsp)
movl %r8d, 0x3568(%rsp)
movl %edi, 0x3564(%rsp)
movq %rsi, 0x3558(%rsp)
movq %rdx, 0x3550(%rsp)
movl %ecx, 0x354c(%rsp)
movq %rax, 0x3540(%rsp)
movq 0x3570(%rsp), %rcx
movq %rcx, 0xa8(%rsp)
movq 0x3558(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3550(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x354c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3540(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x356c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3568(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3564(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d18(%rsp)
movl $0x10, 0x3d14(%rsp)
movq 0x3d18(%rsp), %rax
movslq 0x3d14(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d14(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xb0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xa88(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13818e3
movq 0xb0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xaa0(%rsp)
movb $0x1, 0x2813(%rsp)
testb $0x1, 0x2813(%rsp)
jne 0x1381a24
leaq 0xa60(%rsp), %rax
movq %rax, 0x2828(%rsp)
movq 0x2828(%rsp), %rax
movq %rax, 0x3f28(%rsp)
movq 0x3f28(%rsp), %rax
movq %rax, 0xa0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13819c7
movq 0xa0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f24(%rsp) # imm = 0xFFFFFFFF
movl 0x3f24(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f20(%rsp)
cmpl $0x1, 0x3f20(%rsp)
jne 0x13819c7
movq 0xa0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1381995
movq 0xa0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1381993
jmp 0x13819c5
movq 0xa0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45d8(%rsp)
cmpq $0x0, 0x45d8(%rsp)
je 0x13819c3
movq 0x45d8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13819c5
jmp 0x13819c7
movq 0xa0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1381a22
movq %rax, %rdi
callq 0x678a0
jmp 0x1381a24
leaq 0xa60(%rsp), %rax
movq %rax, 0x2a40(%rsp)
movq 0x2a40(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x90(%rsp)
leaq 0xa60(%rsp), %rax
movq %rax, 0x27d8(%rsp)
movq 0x27d8(%rsp), %rax
movq %rax, 0x3f68(%rsp)
movq 0x3f68(%rsp), %rax
movq %rax, 0x98(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1381b15
movq 0x98(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f64(%rsp) # imm = 0xFFFFFFFF
movl 0x3f64(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f60(%rsp)
cmpl $0x1, 0x3f60(%rsp)
jne 0x1381b15
movq 0x98(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1381ae3
movq 0x98(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1381ae1
jmp 0x1381b13
movq 0x98(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45b8(%rsp)
cmpq $0x0, 0x45b8(%rsp)
je 0x1381b11
movq 0x45b8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1381b13
jmp 0x1381b15
movq 0x98(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1381b70
movq %rax, %rdi
callq 0x678a0
movq 0x90(%rsp), %rax
movq %rax, 0xaa8(%rsp)
movl $0x0, 0xa5c(%rsp)
movl 0xa5c(%rsp), %eax
cmpl 0x2138(%rsp), %eax
jge 0x1381c5f
movq 0xaf8(%rsp), %rax
movq %rax, 0x2b30(%rsp)
movq 0x2b30(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0xa20(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0xb00(%rsp), %rsi
leaq 0xa20(%rsp), %rdx
callq 0x1453760
vmovaps %ymm0, 0xa00(%rsp)
movq 0xaa8(%rsp), %rax
vmovaps 0xa00(%rsp), %ymm0
movq %rax, 0x2cf8(%rsp)
vmovaps %ymm0, 0x2cc0(%rsp)
vmovaps 0x2cc0(%rsp), %ymm0
movq 0x2cf8(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0xaf8(%rsp), %rax
addq $0x20, %rax
movq %rax, 0xaf8(%rsp)
movq 0xaa8(%rsp), %rax
addq $0x20, %rax
movq %rax, 0xaa8(%rsp)
movl 0xa5c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xa5c(%rsp)
jmp 0x1381b8b
jmp 0x1381c61
movl 0xb3c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xb3c(%rsp)
jmp 0x138126e
movl $0x0, 0x2194(%rsp)
jmp 0x1382aba
movq 0x2180(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1382711
movq 0x2178(%rsp), %rdi
movl 0x2148(%rsp), %esi
movl 0x2144(%rsp), %edx
movl 0x213c(%rsp), %ecx
movq 0x2130(%rsp), %r8
movl 0x212c(%rsp), %r9d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2178(%rsp), %rax
movq %rax, 0x21a8(%rsp)
movq 0x21a8(%rsp), %rcx
movq %rcx, 0x80(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x8f(%rsp)
je 0x1381d3c
movq 0x80(%rsp), %rax
movq %rax, 0x31a8(%rsp)
movq 0x31a8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x8f(%rsp)
movb 0x8f(%rsp), %al
testb $0x1, %al
jne 0x1381d49
jmp 0x1381d59
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x1382aba
movl $0x0, 0x9fc(%rsp)
movl 0x9fc(%rsp), %eax
cmpl 0x213c(%rsp), %eax
jge 0x1382701
movq 0x2188(%rsp), %rax
movq %rax, 0x24b8(%rsp)
movq 0x24b8(%rsp), %rax
movq (%rax), %rax
movl 0x9fc(%rsp), %ecx
shll $0x3, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2b28(%rsp)
movq 0x2b28(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x9c0(%rsp)
movq 0x2180(%rsp), %rcx
movl 0x9fc(%rsp), %eax
leaq 0x970(%rsp), %rdx
movq %rdx, 0x2240(%rsp)
movq %rcx, 0x2238(%rsp)
movl %eax, 0x2234(%rsp)
movq 0x2238(%rsp), %rax
movq %rax, 0x78(%rsp)
movb $0x0, 0x2233(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2234(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x970(%rsp), %r10
movq %r10, 0x3b58(%rsp)
movl %r9d, 0x3b54(%rsp)
movl %r8d, 0x3b50(%rsp)
movl %edi, 0x3b4c(%rsp)
movq %rsi, 0x3b40(%rsp)
movq %rdx, 0x3b38(%rsp)
movl %ecx, 0x3b34(%rsp)
movq %rax, 0x3b28(%rsp)
movq 0x3b58(%rsp), %rcx
movq %rcx, 0x70(%rsp)
movq 0x3b40(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3b38(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3b34(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3b28(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3b54(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3b50(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3b4c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b68(%rsp)
movl $0x10, 0x3b64(%rsp)
movq 0x3b68(%rsp), %rax
movslq 0x3b64(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b64(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x78(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x998(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1381f74
movq 0x78(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x9b0(%rsp)
movb $0x1, 0x2233(%rsp)
testb $0x1, 0x2233(%rsp)
jne 0x13820a3
leaq 0x970(%rsp), %rax
movq %rax, 0x2688(%rsp)
movq 0x2688(%rsp), %rax
movq %rax, 0x4208(%rsp)
movq 0x4208(%rsp), %rax
movq %rax, 0x68(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1382049
movq 0x68(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4204(%rsp) # imm = 0xFFFFFFFF
movl 0x4204(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4200(%rsp)
cmpl $0x1, 0x4200(%rsp)
jne 0x1382049
movq 0x68(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138201a
movq 0x68(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1382018
jmp 0x1382047
movq 0x68(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4468(%rsp)
cmpq $0x0, 0x4468(%rsp)
je 0x1382045
movq 0x4468(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1382047
jmp 0x1382049
movq 0x68(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13820a1
movq %rax, %rdi
callq 0x678a0
jmp 0x13820a3
leaq 0x970(%rsp), %rax
movq %rax, 0x24b0(%rsp)
movq 0x24b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x58(%rsp)
leaq 0x970(%rsp), %rax
movq %rax, 0x27e0(%rsp)
movq 0x27e0(%rsp), %rax
movq %rax, 0x3f58(%rsp)
movq 0x3f58(%rsp), %rax
movq %rax, 0x60(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1382182
movq 0x60(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f54(%rsp) # imm = 0xFFFFFFFF
movl 0x3f54(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f50(%rsp)
cmpl $0x1, 0x3f50(%rsp)
jne 0x1382182
movq 0x60(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1382153
movq 0x60(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1382151
jmp 0x1382180
movq 0x60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45c0(%rsp)
cmpq $0x0, 0x45c0(%rsp)
je 0x138217e
movq 0x45c0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1382180
jmp 0x1382182
movq 0x60(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13821da
movq %rax, %rdi
callq 0x678a0
movq 0x58(%rsp), %rax
movq %rax, 0x9b8(%rsp)
movq 0x2178(%rsp), %rcx
movl 0x9fc(%rsp), %eax
leaq 0x920(%rsp), %rdx
movq %rdx, 0x2800(%rsp)
movq %rcx, 0x27f8(%rsp)
movl %eax, 0x27f4(%rsp)
movq 0x27f8(%rsp), %rax
movq %rax, 0x50(%rsp)
movb $0x0, 0x27f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x27f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x920(%rsp), %r10
movq %r10, 0x35a8(%rsp)
movl %r9d, 0x35a4(%rsp)
movl %r8d, 0x35a0(%rsp)
movl %edi, 0x359c(%rsp)
movq %rsi, 0x3590(%rsp)
movq %rdx, 0x3588(%rsp)
movl %ecx, 0x3584(%rsp)
movq %rax, 0x3578(%rsp)
movq 0x35a8(%rsp), %rcx
movq %rcx, 0x48(%rsp)
movq 0x3590(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3588(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3584(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3578(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x35a4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x35a0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x359c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d08(%rsp)
movl $0x10, 0x3d04(%rsp)
movq 0x3d08(%rsp), %rax
movslq 0x3d04(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d04(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x50(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x948(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1382397
movq 0x50(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x960(%rsp)
movb $0x1, 0x27f3(%rsp)
testb $0x1, 0x27f3(%rsp)
jne 0x13824c6
leaq 0x920(%rsp), %rax
movq %rax, 0x2808(%rsp)
movq 0x2808(%rsp), %rax
movq %rax, 0x3f38(%rsp)
movq 0x3f38(%rsp), %rax
movq %rax, 0x40(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138246c
movq 0x40(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f34(%rsp) # imm = 0xFFFFFFFF
movl 0x3f34(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f30(%rsp)
cmpl $0x1, 0x3f30(%rsp)
jne 0x138246c
movq 0x40(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138243d
movq 0x40(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x138243b
jmp 0x138246a
movq 0x40(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45d0(%rsp)
cmpq $0x0, 0x45d0(%rsp)
je 0x1382468
movq 0x45d0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x138246a
jmp 0x138246c
movq 0x40(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13824c4
movq %rax, %rdi
callq 0x678a0
jmp 0x13824c6
leaq 0x920(%rsp), %rax
movq %rax, 0x2a38(%rsp)
movq 0x2a38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x30(%rsp)
leaq 0x920(%rsp), %rax
movq %rax, 0x27e8(%rsp)
movq 0x27e8(%rsp), %rax
movq %rax, 0x3f48(%rsp)
movq 0x3f48(%rsp), %rax
movq %rax, 0x38(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13825a5
movq 0x38(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f44(%rsp) # imm = 0xFFFFFFFF
movl 0x3f44(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f40(%rsp)
cmpl $0x1, 0x3f40(%rsp)
jne 0x13825a5
movq 0x38(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1382576
movq 0x38(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1382574
jmp 0x13825a3
movq 0x38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45c8(%rsp)
cmpq $0x0, 0x45c8(%rsp)
je 0x13825a1
movq 0x45c8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13825a3
jmp 0x13825a5
movq 0x38(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13825fd
movq %rax, %rdi
callq 0x678a0
movq 0x30(%rsp), %rax
movq %rax, 0x968(%rsp)
movl $0x0, 0x91c(%rsp)
movl 0x91c(%rsp), %eax
cmpl 0x2138(%rsp), %eax
jge 0x13826e9
movq 0x9b8(%rsp), %rax
movq %rax, 0x2b20(%rsp)
movq 0x2b20(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x8e0(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0x9c0(%rsp), %rsi
leaq 0x8e0(%rsp), %rdx
callq 0x1453760
vmovaps %ymm0, 0x8c0(%rsp)
movq 0x968(%rsp), %rax
vmovaps 0x8c0(%rsp), %ymm0
movq %rax, 0x2cb8(%rsp)
vmovaps %ymm0, 0x2c80(%rsp)
vmovaps 0x2c80(%rsp), %ymm0
movq 0x2cb8(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x9b8(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x9b8(%rsp)
movq 0x968(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x968(%rsp)
movl 0x91c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x91c(%rsp)
jmp 0x1382615
jmp 0x13826eb
movl 0x9fc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x9fc(%rsp)
jmp 0x1381d64
movl $0x0, 0x2194(%rsp)
jmp 0x1382aba
movq 0x2180(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x138298f
movq 0x2178(%rsp), %rdi
movl 0x2148(%rsp), %esi
movl 0x2144(%rsp), %edx
movq 0x2130(%rsp), %rcx
movl 0x212c(%rsp), %r8d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x2178(%rsp), %rax
movq %rax, 0x21a0(%rsp)
movq 0x21a0(%rsp), %rcx
movq %rcx, 0x20(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x2f(%rsp)
je 0x13827af
movq 0x20(%rsp), %rax
movq %rax, 0x31b0(%rsp)
movq 0x31b0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x2f(%rsp)
movb 0x2f(%rsp), %al
testb $0x1, %al
jne 0x13827b9
jmp 0x13827c9
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x1382aba
movq 0x2188(%rsp), %rax
movq %rax, 0x24a8(%rsp)
movq 0x24a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8b8(%rsp)
movq 0x2180(%rsp), %rax
movq %rax, 0x24a0(%rsp)
movq 0x24a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8b0(%rsp)
movq 0x2178(%rsp), %rax
movq %rax, 0x2a30(%rsp)
movq 0x2a30(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8a8(%rsp)
movl $0x0, 0x8a4(%rsp)
movl 0x8a4(%rsp), %eax
cmpl 0x2144(%rsp), %eax
jge 0x138297f
movq 0x8b8(%rsp), %rax
movq %rax, 0x2b18(%rsp)
movq 0x2b18(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x880(%rsp)
movl $0x0, 0x87c(%rsp)
movl 0x87c(%rsp), %eax
cmpl 0x2148(%rsp), %eax
jge 0x1382955
movq 0x8b0(%rsp), %rax
movq %rax, 0x2b10(%rsp)
movq 0x2b10(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x840(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0x880(%rsp), %rsi
leaq 0x840(%rsp), %rdx
callq 0x1453760
vmovaps %ymm0, 0x820(%rsp)
movq 0x8a8(%rsp), %rax
vmovaps 0x820(%rsp), %ymm0
movq %rax, 0x2c78(%rsp)
vmovaps %ymm0, 0x2c40(%rsp)
vmovaps 0x2c40(%rsp), %ymm0
movq 0x2c78(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x8b0(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x8b0(%rsp)
movq 0x8a8(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x8a8(%rsp)
movl 0x87c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x87c(%rsp)
jmp 0x1382881
movq 0x8b8(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x8b8(%rsp)
movl 0x8a4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x8a4(%rsp)
jmp 0x138283d
movl $0x0, 0x2194(%rsp)
jmp 0x1382aba
movq 0x2180(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1382aa7
movq 0x2178(%rsp), %rdi
movl 0x2168(%rsp), %esi
movq 0x2150(%rsp), %rdx
movl 0x214c(%rsp), %ecx
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6be00
movq 0x2178(%rsp), %rax
movq %rax, 0x2198(%rsp)
movq 0x2198(%rsp), %rcx
movq %rcx, 0x10(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1f(%rsp)
je 0x1382a25
movq 0x10(%rsp), %rax
movq %rax, 0x31b8(%rsp)
movq 0x31b8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1f(%rsp)
movb 0x1f(%rsp), %al
testb $0x1, %al
jne 0x1382a2f
jmp 0x1382a3c
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x1382aba
movq 0x2180(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1382a82
cmpl $0x1, 0x212c(%rsp)
jne 0x1382a82
movq 0x2188(%rsp), %rdi
movq 0x2180(%rsp), %rsi
movq 0x2178(%rsp), %rdx
movq 0x2170(%rsp), %rcx
callq 0x1442d90
movl %eax, 0x2194(%rsp)
jmp 0x1382aba
movq 0x2188(%rsp), %rdi
movq 0x2180(%rsp), %rsi
movq 0x2178(%rsp), %rdx
movq 0x2170(%rsp), %rcx
callq 0x1441b80
jmp 0x1382aa9
jmp 0x1382aab
jmp 0x1382aad
jmp 0x1382aaf
movl $0x0, 0x2194(%rsp)
movl 0x2194(%rsp), %eax
movq %rbp, %rsp
popq %rbp
vzeroupper
retq
nopl (%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/build_O0/src/layer/x86/binaryop_x86_avx512.cpp
|
2,112,899
|
int ncnn::binary_op_pack8<ncnn::BinaryOp_x86_avx512_functor::binary_op_mul>(ncnn::Mat const&, ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&)
|
static int binary_op_pack8(const Mat& a, const Mat& b, Mat& c, const Option& opt)
{
Op op;
int w = a.w;
int h = a.h;
int d = a.d;
int channels = a.c;
int size = w * h * d;
size_t elemsize = a.elemsize;
int elempack = a.elempack;
int w1 = b.w;
int h1 = b.h;
int d1 = b.d;
int channels1 = b.c;
int size1 = w1 * h1 * d1;
size_t elemsize1 = b.elemsize;
int elempack1 = b.elempack;
if (a.dims == 4)
{
if (b.dims == 4)
{
// type 29
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
c.create(w, h, d, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 3)
{
// type 28
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
for (int y = 0; y < h; y++)
{
__m256 _b0 = _mm256_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _outp = op.func_pack8(_p, _b0);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
outptr += 8;
}
ptr1 += 8;
}
}
}
return 0;
}
if (b.dims == 2)
{
// type 27
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row(q);
float* outptr = c.channel(q);
for (int z = 0; z < d; z++)
{
__m256 _b0 = _mm256_loadu_ps(ptr1);
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _outp = op.func_pack8(_p, _b0);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
outptr += 8;
}
}
ptr1 += 8;
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1 && elempack1 == 1)
{
// type 25
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 26
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
__m256 _b0 = _mm256_loadu_ps((const float*)b + q * 8);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _outp = op.func_pack8(_p, _b0);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
outptr += 8;
}
}
return 0;
}
}
else if (a.dims == 3)
{
if (b.dims == 4)
{
// type 23
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
for (int y = 0; y < h1; y++)
{
__m256 _a0 = _mm256_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m256 _p = _mm256_loadu_ps(ptr1);
__m256 _outp = op.func_pack8(_a0, _p);
_mm256_storeu_ps(outptr, _outp);
ptr1 += 8;
outptr += 8;
}
ptr += 8;
}
}
}
return 0;
}
if (b.dims == 3)
{
if (w1 == 1 && h1 == 1 && channels1 == channels)
{
// special type 1
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* b0 = b.channel(q);
float* outptr = c.channel(q);
__m256 _b0 = _mm256_loadu_ps(b0);
for (int i = 0; i < size; i++)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _outp = op.func_pack8(_p, _b0);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
outptr += 8;
}
}
return 0;
}
if (w1 == w && h1 == h && channels1 == 1 && elempack1 == 1)
{
// special type 2
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b;
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _p1 = _mm256_broadcast_ss(ptr1);
__m256 _outp = op.func_pack8(_p, _p1);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
ptr1 += 1;
outptr += 8;
}
}
return 0;
}
if (w == 1 && h == 1 && channels1 == channels)
{
// special type 3
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* a0 = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
__m256 _a0 = _mm256_loadu_ps(a0);
for (int i = 0; i < size1; i++)
{
__m256 _p1 = _mm256_loadu_ps(ptr1);
__m256 _outp = op.func_pack8(_a0, _p1);
_mm256_storeu_ps(outptr, _outp);
ptr1 += 8;
outptr += 8;
}
}
return 0;
}
if (w1 == w && h1 == h && channels == 1 && elempack == 1)
{
// special type 4
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a;
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m256 _p = _mm256_broadcast_ss(ptr);
__m256 _p1 = _mm256_loadu_ps(ptr1);
__m256 _outp = op.func_pack8(_p, _p1);
_mm256_storeu_ps(outptr, _outp);
ptr += 1;
ptr1 += 8;
outptr += 8;
}
}
return 0;
}
if (w != 1 && w1 == 1 && h1 == h && channels1 == channels)
{
// special type 5
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
__m256 _p1 = _mm256_loadu_ps(ptr1 + y * 8);
for (int x = 0; x < w; x++)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _outp = op.func_pack8(_p, _p1);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
outptr += 8;
}
}
}
return 0;
}
if (w1 == w && h != 1 && h1 == 1 && channels1 == channels)
{
// special type 6
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
for (int x = 0; x < w; x++)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _p1 = _mm256_loadu_ps(ptr1 + x * 8);
__m256 _outp = op.func_pack8(_p, _p1);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
outptr += 8;
}
}
}
return 0;
}
if (w1 != 1 && w == 1 && h1 == h && channels1 == channels)
{
// special type 7
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
__m256 _p = _mm256_loadu_ps(ptr + y * 8);
for (int x = 0; x < w1; x++)
{
__m256 _p1 = _mm256_loadu_ps(ptr1);
__m256 _outp = op.func_pack8(_p, _p1);
_mm256_storeu_ps(outptr, _outp);
ptr1 += 8;
outptr += 8;
}
}
}
return 0;
}
if (w1 == w && h1 != 1 && h == 1 && channels1 == channels)
{
// special type 8
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
__m256 _p = _mm256_loadu_ps(ptr + x * 8);
__m256 _p1 = _mm256_loadu_ps(ptr1);
__m256 _outp = op.func_pack8(_p, _p1);
_mm256_storeu_ps(outptr, _outp);
ptr1 += 8;
outptr += 8;
}
}
}
return 0;
}
// type 19
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
c.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 18
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
const float* ptr1 = b.row(q);
float* outptr = c.channel(q);
for (int y = 0; y < h; y++)
{
__m256 _b0 = _mm256_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _outp = op.func_pack8(_p, _b0);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
outptr += 8;
}
ptr1 += 8;
}
}
return 0;
}
if (b.dims == 1)
{
if (b.w == 1 && elempack1 == 1)
{
// type 16
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 17
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels; q++)
{
const float* ptr = a.channel(q);
__m256 _b0 = _mm256_loadu_ps((const float*)b + q * 8);
float* outptr = c.channel(q);
for (int i = 0; i < size; i++)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _outp = op.func_pack8(_p, _b0);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
outptr += 8;
}
}
return 0;
}
}
else if (a.dims == 2)
{
if (b.dims == 4)
{
// type 22
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int z = 0; z < d1; z++)
{
__m256 _a0 = _mm256_loadu_ps(ptr);
for (int y = 0; y < h1; y++)
{
for (int x = 0; x < w1; x++)
{
__m256 _p = _mm256_loadu_ps(ptr1);
__m256 _outp = op.func_pack8(_a0, _p);
_mm256_storeu_ps(outptr, _outp);
ptr1 += 8;
outptr += 8;
}
}
ptr += 8;
}
}
return 0;
}
if (b.dims == 3)
{
// type 14
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
const float* ptr = a.row(q);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int y = 0; y < h1; y++)
{
__m256 _a0 = _mm256_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m256 _p1 = _mm256_loadu_ps(ptr1);
__m256 _outp = op.func_pack8(_a0, _p1);
_mm256_storeu_ps(outptr, _outp);
ptr1 += 8;
outptr += 8;
}
ptr += 8;
}
}
return 0;
}
c.create(w, h, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.dims == 2)
{
// type 13
return binary_op_7_13_19_29<Op>(a, b, c, opt);
}
if (b.dims == 1)
{
c.create(w, h, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1 && elempack1 == 1)
{
// type 11
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 12
const float* ptr = a;
const float* ptr1 = b;
float* outptr = c;
for (int y = 0; y < h; y++)
{
__m256 _b0 = _mm256_loadu_ps(ptr1);
for (int x = 0; x < w; x++)
{
__m256 _p = _mm256_loadu_ps(ptr);
__m256 _outp = op.func_pack8(_p, _b0);
_mm256_storeu_ps(outptr, _outp);
ptr += 8;
outptr += 8;
}
ptr1 += 8;
}
return 0;
}
}
else if (a.dims == 1)
{
if (a.w == 1 && elempack == 1)
{
// type 2 3 4 20
return binary_op_2_3_4_20<Op>(a, b, c, opt);
}
if (b.dims == 4)
{
// type 21
c.create(w1, h1, d1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
__m256 _a0 = _mm256_loadu_ps((const float*)a + q * 8);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m256 _p1 = _mm256_loadu_ps(ptr1);
__m256 _outp = op.func_pack8(_a0, _p1);
_mm256_storeu_ps(outptr, _outp);
ptr1 += 8;
outptr += 8;
}
}
return 0;
}
if (b.dims == 3)
{
// type 9
c.create(w1, h1, channels1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
#pragma omp parallel for num_threads(opt.num_threads)
for (int q = 0; q < channels1; q++)
{
__m256 _a0 = _mm256_loadu_ps((const float*)a + q * 8);
const float* ptr1 = b.channel(q);
float* outptr = c.channel(q);
for (int i = 0; i < size1; i++)
{
__m256 _p1 = _mm256_loadu_ps(ptr1);
__m256 _outp = op.func_pack8(_a0, _p1);
_mm256_storeu_ps(outptr, _outp);
ptr1 += 8;
outptr += 8;
}
}
return 0;
}
if (b.dims == 2)
{
// type 8
c.create(w1, h1, elemsize1, elempack1, opt.blob_allocator);
if (c.empty())
return -100;
const float* ptr = a;
const float* ptr1 = b;
float* outptr = c;
for (int y = 0; y < h1; y++)
{
__m256 _a0 = _mm256_loadu_ps(ptr);
for (int x = 0; x < w1; x++)
{
__m256 _p1 = _mm256_loadu_ps(ptr1);
__m256 _outp = op.func_pack8(_a0, _p1);
_mm256_storeu_ps(outptr, _outp);
ptr1 += 8;
outptr += 8;
}
ptr += 8;
}
return 0;
}
if (b.dims == 1)
{
c.create(w, elemsize, elempack, opt.blob_allocator);
if (c.empty())
return -100;
if (b.w == 1 && elempack1 == 1)
{
// type 6
return binary_op_6_11_16_25<Op>(a, b, c, opt);
}
// type 7
binary_op_7_13_19_29<Op>(a, b, c, opt);
}
}
return 0;
}
|
pushq %rbp
movq %rsp, %rbp
andq $-0x20, %rsp
subq $0x46e0, %rsp # imm = 0x46E0
movq %rdi, 0x2188(%rsp)
movq %rsi, 0x2180(%rsp)
movq %rdx, 0x2178(%rsp)
movq %rcx, 0x2170(%rsp)
movq 0x2188(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x2168(%rsp)
movq 0x2188(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x2164(%rsp)
movq 0x2188(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x2160(%rsp)
movq 0x2188(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x215c(%rsp)
movl 0x2168(%rsp), %eax
imull 0x2164(%rsp), %eax
imull 0x2160(%rsp), %eax
movl %eax, 0x2158(%rsp)
movq 0x2188(%rsp), %rax
movq 0x10(%rax), %rax
movq %rax, 0x2150(%rsp)
movq 0x2188(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x214c(%rsp)
movq 0x2180(%rsp), %rax
movl 0x2c(%rax), %eax
movl %eax, 0x2148(%rsp)
movq 0x2180(%rsp), %rax
movl 0x30(%rax), %eax
movl %eax, 0x2144(%rsp)
movq 0x2180(%rsp), %rax
movl 0x34(%rax), %eax
movl %eax, 0x2140(%rsp)
movq 0x2180(%rsp), %rax
movl 0x38(%rax), %eax
movl %eax, 0x213c(%rsp)
movl 0x2148(%rsp), %eax
imull 0x2144(%rsp), %eax
imull 0x2140(%rsp), %eax
movl %eax, 0x2138(%rsp)
movq 0x2180(%rsp), %rax
movq 0x10(%rax), %rax
movq %rax, 0x2130(%rsp)
movq 0x2180(%rsp), %rax
movl 0x18(%rax), %eax
movl %eax, 0x212c(%rsp)
movq 0x2188(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1385179
movq 0x2180(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1382c68
movq 0x2188(%rsp), %rdi
movq 0x2180(%rsp), %rsi
movq 0x2178(%rsp), %rdx
movq 0x2170(%rsp), %rcx
callq 0x1444a90
movl %eax, 0x2194(%rsp)
jmp 0x1391fba
movq 0x2178(%rsp), %rdi
movl 0x2168(%rsp), %esi
movl 0x2164(%rsp), %edx
movl 0x2160(%rsp), %ecx
movl 0x215c(%rsp), %r8d
movq 0x2150(%rsp), %r9
movl 0x214c(%rsp), %r10d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x2178(%rsp), %rax
movq %rax, 0x2228(%rsp)
movq 0x2228(%rsp), %rcx
movq %rcx, 0x810(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x81f(%rsp)
je 0x1382d18
movq 0x810(%rsp), %rax
movq %rax, 0x3128(%rsp)
movq 0x3128(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x81f(%rsp)
movb 0x81f(%rsp), %al
testb $0x1, %al
jne 0x1382d25
jmp 0x1382d35
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x1391fba
movq 0x2180(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1383c1d
movl $0x0, 0x2128(%rsp)
movl 0x2128(%rsp), %eax
cmpl 0x215c(%rsp), %eax
jge 0x1383c0d
movq 0x2188(%rsp), %rcx
movl 0x2128(%rsp), %eax
leaq 0x20d8(%rsp), %rdx
movq %rdx, 0x2498(%rsp)
movq %rcx, 0x2490(%rsp)
movl %eax, 0x248c(%rsp)
movq 0x2490(%rsp), %rax
movq %rax, 0x808(%rsp)
movb $0x0, 0x248b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x248c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x20d8(%rsp), %r10
movq %r10, 0x35e0(%rsp)
movl %r9d, 0x35dc(%rsp)
movl %r8d, 0x35d8(%rsp)
movl %edi, 0x35d4(%rsp)
movq %rsi, 0x35c8(%rsp)
movq %rdx, 0x35c0(%rsp)
movl %ecx, 0x35bc(%rsp)
movq %rax, 0x35b0(%rsp)
movq 0x35e0(%rsp), %rcx
movq %rcx, 0x800(%rsp)
movq 0x35c8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x35c0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x35bc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x35b0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x35dc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x35d8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x35d4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3cf8(%rsp)
movl $0x10, 0x3cf4(%rsp)
movq 0x3cf8(%rsp), %rax
movslq 0x3cf4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cf4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x808(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2100(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1382f22
movq 0x808(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2118(%rsp)
movb $0x1, 0x248b(%rsp)
testb $0x1, 0x248b(%rsp)
jne 0x1383063
leaq 0x20d8(%rsp), %rax
movq %rax, 0x25c0(%rsp)
movq 0x25c0(%rsp), %rax
movq %rax, 0x4398(%rsp)
movq 0x4398(%rsp), %rax
movq %rax, 0x7f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1383006
movq 0x7f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4394(%rsp) # imm = 0xFFFFFFFF
movl 0x4394(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4390(%rsp)
cmpl $0x1, 0x4390(%rsp)
jne 0x1383006
movq 0x7f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1382fd4
movq 0x7f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1382fd2
jmp 0x1383004
movq 0x7f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x43a0(%rsp)
cmpq $0x0, 0x43a0(%rsp)
je 0x1383002
movq 0x43a0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1383004
jmp 0x1383006
movq 0x7f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1383061
movq %rax, %rdi
callq 0x678a0
jmp 0x1383063
leaq 0x20d8(%rsp), %rax
movq %rax, 0x25b8(%rsp)
movq 0x25b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7e8(%rsp)
leaq 0x20d8(%rsp), %rax
movq %rax, 0x2690(%rsp)
movq 0x2690(%rsp), %rax
movq %rax, 0x41f8(%rsp)
movq 0x41f8(%rsp), %rax
movq %rax, 0x7f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1383154
movq 0x7f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41f4(%rsp) # imm = 0xFFFFFFFF
movl 0x41f4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41f0(%rsp)
cmpl $0x1, 0x41f0(%rsp)
jne 0x1383154
movq 0x7f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1383122
movq 0x7f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1383120
jmp 0x1383152
movq 0x7f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4470(%rsp)
cmpq $0x0, 0x4470(%rsp)
je 0x1383150
movq 0x4470(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1383152
jmp 0x1383154
movq 0x7f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13831af
movq %rax, %rdi
callq 0x678a0
movq 0x7e8(%rsp), %rax
movq %rax, 0x2120(%rsp)
movq 0x2180(%rsp), %rcx
movl 0x2128(%rsp), %eax
leaq 0x2088(%rsp), %rdx
movq %rdx, 0x2480(%rsp)
movq %rcx, 0x2478(%rsp)
movl %eax, 0x2474(%rsp)
movq 0x2478(%rsp), %rax
movq %rax, 0x7e0(%rsp)
movb $0x0, 0x2473(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2474(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2088(%rsp), %r10
movq %r10, 0x3618(%rsp)
movl %r9d, 0x3614(%rsp)
movl %r8d, 0x3610(%rsp)
movl %edi, 0x360c(%rsp)
movq %rsi, 0x3600(%rsp)
movq %rdx, 0x35f8(%rsp)
movl %ecx, 0x35f4(%rsp)
movq %rax, 0x35e8(%rsp)
movq 0x3618(%rsp), %rcx
movq %rcx, 0x7d8(%rsp)
movq 0x3600(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x35f8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x35f4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x35e8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3614(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3610(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x360c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ce8(%rsp)
movl $0x10, 0x3ce4(%rsp)
movq 0x3ce8(%rsp), %rax
movslq 0x3ce4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3ce4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7e0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x20b0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x138337b
movq 0x7e0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x20c8(%rsp)
movb $0x1, 0x2473(%rsp)
testb $0x1, 0x2473(%rsp)
jne 0x13834bc
leaq 0x2088(%rsp), %rax
movq %rax, 0x25c8(%rsp)
movq 0x25c8(%rsp), %rax
movq %rax, 0x4388(%rsp)
movq 0x4388(%rsp), %rax
movq %rax, 0x7d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138345f
movq 0x7d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4384(%rsp) # imm = 0xFFFFFFFF
movl 0x4384(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4380(%rsp)
cmpl $0x1, 0x4380(%rsp)
jne 0x138345f
movq 0x7d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138342d
movq 0x7d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x138342b
jmp 0x138345d
movq 0x7d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x43a8(%rsp)
cmpq $0x0, 0x43a8(%rsp)
je 0x138345b
movq 0x43a8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x138345d
jmp 0x138345f
movq 0x7d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13834ba
movq %rax, %rdi
callq 0x678a0
jmp 0x13834bc
leaq 0x2088(%rsp), %rax
movq %rax, 0x25b0(%rsp)
movq 0x25b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x7c0(%rsp)
leaq 0x2088(%rsp), %rax
movq %rax, 0x2698(%rsp)
movq 0x2698(%rsp), %rax
movq %rax, 0x41e8(%rsp)
movq 0x41e8(%rsp), %rax
movq %rax, 0x7c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13835ad
movq 0x7c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41e4(%rsp) # imm = 0xFFFFFFFF
movl 0x41e4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41e0(%rsp)
cmpl $0x1, 0x41e0(%rsp)
jne 0x13835ad
movq 0x7c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138357b
movq 0x7c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1383579
jmp 0x13835ab
movq 0x7c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4478(%rsp)
cmpq $0x0, 0x4478(%rsp)
je 0x13835a9
movq 0x4478(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13835ab
jmp 0x13835ad
movq 0x7c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1383608
movq %rax, %rdi
callq 0x678a0
movq 0x7c0(%rsp), %rax
movq %rax, 0x20d0(%rsp)
movq 0x2178(%rsp), %rcx
movl 0x2128(%rsp), %eax
leaq 0x2038(%rsp), %rdx
movq %rdx, 0x2a20(%rsp)
movq %rcx, 0x2a18(%rsp)
movl %eax, 0x2a14(%rsp)
movq 0x2a18(%rsp), %rax
movq %rax, 0x7b8(%rsp)
movb $0x0, 0x2a13(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2a14(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x2038(%rsp), %r10
movq %r10, 0x31f0(%rsp)
movl %r9d, 0x31ec(%rsp)
movl %r8d, 0x31e8(%rsp)
movl %edi, 0x31e4(%rsp)
movq %rsi, 0x31d8(%rsp)
movq %rdx, 0x31d0(%rsp)
movl %ecx, 0x31cc(%rsp)
movq %rax, 0x31c0(%rsp)
movq 0x31f0(%rsp), %rcx
movq %rcx, 0x7b0(%rsp)
movq 0x31d8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x31d0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x31cc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x31c0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x31ec(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x31e8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x31e4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3e18(%rsp)
movl $0x10, 0x3e14(%rsp)
movq 0x3e18(%rsp), %rax
movslq 0x3e14(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3e14(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x7b8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x2060(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13837d4
movq 0x7b8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x2078(%rsp)
movb $0x1, 0x2a13(%rsp)
testb $0x1, 0x2a13(%rsp)
jne 0x1383915
leaq 0x2038(%rsp), %rax
movq %rax, 0x2a28(%rsp)
movq 0x2a28(%rsp), %rax
movq %rax, 0x3e28(%rsp)
movq 0x3e28(%rsp), %rax
movq %rax, 0x7a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13838b8
movq 0x7a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e24(%rsp) # imm = 0xFFFFFFFF
movl 0x3e24(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e20(%rsp)
cmpl $0x1, 0x3e20(%rsp)
jne 0x13838b8
movq 0x7a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1383886
movq 0x7a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1383884
jmp 0x13838b6
movq 0x7a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4658(%rsp)
cmpq $0x0, 0x4658(%rsp)
je 0x13838b4
movq 0x4658(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13838b6
jmp 0x13838b8
movq 0x7a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1383913
movq %rax, %rdi
callq 0x678a0
jmp 0x1383915
leaq 0x2038(%rsp), %rax
movq %rax, 0x2ac8(%rsp)
movq 0x2ac8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x798(%rsp)
leaq 0x2038(%rsp), %rax
movq %rax, 0x26a0(%rsp)
movq 0x26a0(%rsp), %rax
movq %rax, 0x41d8(%rsp)
movq 0x41d8(%rsp), %rax
movq %rax, 0x7a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1383a06
movq 0x7a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41d4(%rsp) # imm = 0xFFFFFFFF
movl 0x41d4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41d0(%rsp)
cmpl $0x1, 0x41d0(%rsp)
jne 0x1383a06
movq 0x7a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13839d4
movq 0x7a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13839d2
jmp 0x1383a04
movq 0x7a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4480(%rsp)
cmpq $0x0, 0x4480(%rsp)
je 0x1383a02
movq 0x4480(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1383a04
jmp 0x1383a06
movq 0x7a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1383a61
movq %rax, %rdi
callq 0x678a0
movq 0x798(%rsp), %rax
movq %rax, 0x2080(%rsp)
movl $0x0, 0x2034(%rsp)
movl 0x2034(%rsp), %eax
cmpl 0x2160(%rsp), %eax
jge 0x1383bf5
movl $0x0, 0x2030(%rsp)
movl 0x2030(%rsp), %eax
cmpl 0x2164(%rsp), %eax
jge 0x1383bdd
movq 0x20d0(%rsp), %rax
movq %rax, 0x2c38(%rsp)
movq 0x2c38(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x2000(%rsp)
movl $0x0, 0x1ffc(%rsp)
movl 0x1ffc(%rsp), %eax
cmpl 0x2168(%rsp), %eax
jge 0x1383bb3
movq 0x2120(%rsp), %rax
movq %rax, 0x2c30(%rsp)
movq 0x2c30(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1fc0(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0x1fc0(%rsp), %rsi
leaq 0x2000(%rsp), %rdx
callq 0x1453880
vmovaps %ymm0, 0x1fa0(%rsp)
movq 0x2080(%rsp), %rax
vmovaps 0x1fa0(%rsp), %ymm0
movq %rax, 0x3120(%rsp)
vmovaps %ymm0, 0x3100(%rsp)
vmovaps 0x3100(%rsp), %ymm0
movq 0x3120(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x2120(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x2120(%rsp)
movq 0x2080(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x2080(%rsp)
movl 0x1ffc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1ffc(%rsp)
jmp 0x1383adf
movq 0x20d0(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x20d0(%rsp)
movl 0x2030(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x2030(%rsp)
jmp 0x1383a9b
jmp 0x1383bdf
movl 0x2034(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x2034(%rsp)
jmp 0x1383a7c
jmp 0x1383bf7
movl 0x2128(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x2128(%rsp)
jmp 0x1382d52
movl $0x0, 0x2194(%rsp)
jmp 0x1391fba
movq 0x2180(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x13846f5
movl $0x0, 0x1f9c(%rsp)
movl 0x1f9c(%rsp), %eax
cmpl 0x215c(%rsp), %eax
jge 0x13846e5
movq 0x2188(%rsp), %rcx
movl 0x1f9c(%rsp), %eax
leaq 0x1f48(%rsp), %rdx
movq %rdx, 0x2468(%rsp)
movq %rcx, 0x2460(%rsp)
movl %eax, 0x245c(%rsp)
movq 0x2460(%rsp), %rax
movq %rax, 0x790(%rsp)
movb $0x0, 0x245b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x245c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1f48(%rsp), %r10
movq %r10, 0x3650(%rsp)
movl %r9d, 0x364c(%rsp)
movl %r8d, 0x3648(%rsp)
movl %edi, 0x3644(%rsp)
movq %rsi, 0x3638(%rsp)
movq %rdx, 0x3630(%rsp)
movl %ecx, 0x362c(%rsp)
movq %rax, 0x3620(%rsp)
movq 0x3650(%rsp), %rcx
movq %rcx, 0x788(%rsp)
movq 0x3638(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3630(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x362c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3620(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x364c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3648(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3644(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3cd8(%rsp)
movl $0x10, 0x3cd4(%rsp)
movq 0x3cd8(%rsp), %rax
movslq 0x3cd4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cd4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x790(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1f70(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1383e0a
movq 0x790(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1f88(%rsp)
movb $0x1, 0x245b(%rsp)
testb $0x1, 0x245b(%rsp)
jne 0x1383f4b
leaq 0x1f48(%rsp), %rax
movq %rax, 0x25d0(%rsp)
movq 0x25d0(%rsp), %rax
movq %rax, 0x4378(%rsp)
movq 0x4378(%rsp), %rax
movq %rax, 0x780(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1383eee
movq 0x780(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4374(%rsp) # imm = 0xFFFFFFFF
movl 0x4374(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4370(%rsp)
cmpl $0x1, 0x4370(%rsp)
jne 0x1383eee
movq 0x780(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1383ebc
movq 0x780(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1383eba
jmp 0x1383eec
movq 0x780(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x43b0(%rsp)
cmpq $0x0, 0x43b0(%rsp)
je 0x1383eea
movq 0x43b0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1383eec
jmp 0x1383eee
movq 0x780(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1383f49
movq %rax, %rdi
callq 0x678a0
jmp 0x1383f4b
leaq 0x1f48(%rsp), %rax
movq %rax, 0x25a8(%rsp)
movq 0x25a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x770(%rsp)
leaq 0x1f48(%rsp), %rax
movq %rax, 0x26a8(%rsp)
movq 0x26a8(%rsp), %rax
movq %rax, 0x41c8(%rsp)
movq 0x41c8(%rsp), %rax
movq %rax, 0x778(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138403c
movq 0x778(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41c4(%rsp) # imm = 0xFFFFFFFF
movl 0x41c4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41c0(%rsp)
cmpl $0x1, 0x41c0(%rsp)
jne 0x138403c
movq 0x778(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138400a
movq 0x778(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1384008
jmp 0x138403a
movq 0x778(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4488(%rsp)
cmpq $0x0, 0x4488(%rsp)
je 0x1384038
movq 0x4488(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x138403a
jmp 0x138403c
movq 0x778(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1384097
movq %rax, %rdi
callq 0x678a0
movq 0x770(%rsp), %rax
movq %rax, 0x1f90(%rsp)
movq 0x2180(%rsp), %rcx
movl 0x1f9c(%rsp), %eax
movq %rcx, 0x2b08(%rsp)
movl %eax, 0x2b04(%rsp)
movq 0x2b08(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2b04(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x1f40(%rsp)
movq 0x2178(%rsp), %rcx
movl 0x1f9c(%rsp), %eax
leaq 0x1ef0(%rsp), %rdx
movq %rdx, 0x2a00(%rsp)
movq %rcx, 0x29f8(%rsp)
movl %eax, 0x29f4(%rsp)
movq 0x29f8(%rsp), %rax
movq %rax, 0x768(%rsp)
movb $0x0, 0x29f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x29f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1ef0(%rsp), %r10
movq %r10, 0x3228(%rsp)
movl %r9d, 0x3224(%rsp)
movl %r8d, 0x3220(%rsp)
movl %edi, 0x321c(%rsp)
movq %rsi, 0x3210(%rsp)
movq %rdx, 0x3208(%rsp)
movl %ecx, 0x3204(%rsp)
movq %rax, 0x31f8(%rsp)
movq 0x3228(%rsp), %rcx
movq %rcx, 0x760(%rsp)
movq 0x3210(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3208(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3204(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x31f8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3224(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3220(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x321c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3e08(%rsp)
movl $0x10, 0x3e04(%rsp)
movq 0x3e08(%rsp), %rax
movslq 0x3e04(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3e04(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x768(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1f18(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13842ac
movq 0x768(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1f30(%rsp)
movb $0x1, 0x29f3(%rsp)
testb $0x1, 0x29f3(%rsp)
jne 0x13843ed
leaq 0x1ef0(%rsp), %rax
movq %rax, 0x2a08(%rsp)
movq 0x2a08(%rsp), %rax
movq %rax, 0x3e38(%rsp)
movq 0x3e38(%rsp), %rax
movq %rax, 0x758(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1384390
movq 0x758(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e34(%rsp) # imm = 0xFFFFFFFF
movl 0x3e34(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e30(%rsp)
cmpl $0x1, 0x3e30(%rsp)
jne 0x1384390
movq 0x758(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138435e
movq 0x758(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x138435c
jmp 0x138438e
movq 0x758(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4650(%rsp)
cmpq $0x0, 0x4650(%rsp)
je 0x138438c
movq 0x4650(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x138438e
jmp 0x1384390
movq 0x758(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13843eb
movq %rax, %rdi
callq 0x678a0
jmp 0x13843ed
leaq 0x1ef0(%rsp), %rax
movq %rax, 0x2ac0(%rsp)
movq 0x2ac0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x748(%rsp)
leaq 0x1ef0(%rsp), %rax
movq %rax, 0x26b0(%rsp)
movq 0x26b0(%rsp), %rax
movq %rax, 0x41b8(%rsp)
movq 0x41b8(%rsp), %rax
movq %rax, 0x750(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13844de
movq 0x750(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41b4(%rsp) # imm = 0xFFFFFFFF
movl 0x41b4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41b0(%rsp)
cmpl $0x1, 0x41b0(%rsp)
jne 0x13844de
movq 0x750(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13844ac
movq 0x750(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13844aa
jmp 0x13844dc
movq 0x750(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4490(%rsp)
cmpq $0x0, 0x4490(%rsp)
je 0x13844da
movq 0x4490(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13844dc
jmp 0x13844de
movq 0x750(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1384539
movq %rax, %rdi
callq 0x678a0
movq 0x748(%rsp), %rax
movq %rax, 0x1f38(%rsp)
movl $0x0, 0x1eec(%rsp)
movl 0x1eec(%rsp), %eax
cmpl 0x2160(%rsp), %eax
jge 0x13846cd
movq 0x1f40(%rsp), %rax
movq %rax, 0x2c28(%rsp)
movq 0x2c28(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1ec0(%rsp)
movl $0x0, 0x1ebc(%rsp)
movl 0x1ebc(%rsp), %eax
cmpl 0x2164(%rsp), %eax
jge 0x13846a3
movl $0x0, 0x1eb8(%rsp)
movl 0x1eb8(%rsp), %eax
cmpl 0x2168(%rsp), %eax
jge 0x138468b
movq 0x1f90(%rsp), %rax
movq %rax, 0x2c20(%rsp)
movq 0x2c20(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1e80(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0x1e80(%rsp), %rsi
leaq 0x1ec0(%rsp), %rdx
callq 0x1453880
vmovaps %ymm0, 0x1e60(%rsp)
movq 0x1f38(%rsp), %rax
vmovaps 0x1e60(%rsp), %ymm0
movq %rax, 0x30f8(%rsp)
vmovaps %ymm0, 0x30c0(%rsp)
vmovaps 0x30c0(%rsp), %ymm0
movq 0x30f8(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x1f90(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1f90(%rsp)
movq 0x1f38(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1f38(%rsp)
movl 0x1eb8(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1eb8(%rsp)
jmp 0x13845b7
jmp 0x138468d
movl 0x1ebc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1ebc(%rsp)
jmp 0x1384598
movq 0x1f40(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1f40(%rsp)
movl 0x1eec(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1eec(%rsp)
jmp 0x1384554
jmp 0x13846cf
movl 0x1f9c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1f9c(%rsp)
jmp 0x1383c3a
movl $0x0, 0x2194(%rsp)
jmp 0x1391fba
movq 0x2180(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1385174
movq 0x2180(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1384750
cmpl $0x1, 0x212c(%rsp)
jne 0x1384750
movq 0x2188(%rsp), %rdi
movq 0x2180(%rsp), %rsi
movq 0x2178(%rsp), %rdx
movq 0x2170(%rsp), %rcx
callq 0x1445ca0
movl %eax, 0x2194(%rsp)
jmp 0x1391fba
movl $0x0, 0x1e5c(%rsp)
movl 0x1e5c(%rsp), %eax
cmpl 0x215c(%rsp), %eax
jge 0x1385164
movq 0x2188(%rsp), %rcx
movl 0x1e5c(%rsp), %eax
leaq 0x1e08(%rsp), %rdx
movq %rdx, 0x2450(%rsp)
movq %rcx, 0x2448(%rsp)
movl %eax, 0x2444(%rsp)
movq 0x2448(%rsp), %rax
movq %rax, 0x740(%rsp)
movb $0x0, 0x2443(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2444(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1e08(%rsp), %r10
movq %r10, 0x3688(%rsp)
movl %r9d, 0x3684(%rsp)
movl %r8d, 0x3680(%rsp)
movl %edi, 0x367c(%rsp)
movq %rsi, 0x3670(%rsp)
movq %rdx, 0x3668(%rsp)
movl %ecx, 0x3664(%rsp)
movq %rax, 0x3658(%rsp)
movq 0x3688(%rsp), %rcx
movq %rcx, 0x738(%rsp)
movq 0x3670(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3668(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3664(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3658(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3684(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3680(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x367c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3cc8(%rsp)
movl $0x10, 0x3cc4(%rsp)
movq 0x3cc8(%rsp), %rax
movslq 0x3cc4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cc4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x740(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1e30(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x138492b
movq 0x740(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1e48(%rsp)
movb $0x1, 0x2443(%rsp)
testb $0x1, 0x2443(%rsp)
jne 0x1384a6c
leaq 0x1e08(%rsp), %rax
movq %rax, 0x25d8(%rsp)
movq 0x25d8(%rsp), %rax
movq %rax, 0x4368(%rsp)
movq 0x4368(%rsp), %rax
movq %rax, 0x730(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1384a0f
movq 0x730(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4364(%rsp) # imm = 0xFFFFFFFF
movl 0x4364(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4360(%rsp)
cmpl $0x1, 0x4360(%rsp)
jne 0x1384a0f
movq 0x730(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13849dd
movq 0x730(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13849db
jmp 0x1384a0d
movq 0x730(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x43b8(%rsp)
cmpq $0x0, 0x43b8(%rsp)
je 0x1384a0b
movq 0x43b8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1384a0d
jmp 0x1384a0f
movq 0x730(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1384a6a
movq %rax, %rdi
callq 0x678a0
jmp 0x1384a6c
leaq 0x1e08(%rsp), %rax
movq %rax, 0x25a0(%rsp)
movq 0x25a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x720(%rsp)
leaq 0x1e08(%rsp), %rax
movq %rax, 0x26b8(%rsp)
movq 0x26b8(%rsp), %rax
movq %rax, 0x41a8(%rsp)
movq 0x41a8(%rsp), %rax
movq %rax, 0x728(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1384b5d
movq 0x728(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x41a4(%rsp) # imm = 0xFFFFFFFF
movl 0x41a4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x41a0(%rsp)
cmpl $0x1, 0x41a0(%rsp)
jne 0x1384b5d
movq 0x728(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1384b2b
movq 0x728(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1384b29
jmp 0x1384b5b
movq 0x728(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4498(%rsp)
cmpq $0x0, 0x4498(%rsp)
je 0x1384b59
movq 0x4498(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1384b5b
jmp 0x1384b5d
movq 0x728(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1384bb8
movq %rax, %rdi
callq 0x678a0
movq 0x720(%rsp), %rax
movq %rax, 0x1e50(%rsp)
movq 0x2180(%rsp), %rax
movq %rax, 0x2598(%rsp)
movq 0x2598(%rsp), %rax
movq (%rax), %rax
movl 0x1e5c(%rsp), %ecx
shll $0x3, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2c18(%rsp)
movq 0x2c18(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1de0(%rsp)
movq 0x2178(%rsp), %rcx
movl 0x1e5c(%rsp), %eax
leaq 0x1d90(%rsp), %rdx
movq %rdx, 0x29e0(%rsp)
movq %rcx, 0x29d8(%rsp)
movl %eax, 0x29d4(%rsp)
movq 0x29d8(%rsp), %rax
movq %rax, 0x718(%rsp)
movb $0x0, 0x29d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x29d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1d90(%rsp), %r10
movq %r10, 0x3260(%rsp)
movl %r9d, 0x325c(%rsp)
movl %r8d, 0x3258(%rsp)
movl %edi, 0x3254(%rsp)
movq %rsi, 0x3248(%rsp)
movq %rdx, 0x3240(%rsp)
movl %ecx, 0x323c(%rsp)
movq %rax, 0x3230(%rsp)
movq 0x3260(%rsp), %rcx
movq %rcx, 0x710(%rsp)
movq 0x3248(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3240(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x323c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3230(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x325c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3258(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3254(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3df8(%rsp)
movl $0x10, 0x3df4(%rsp)
movq 0x3df8(%rsp), %rax
movslq 0x3df4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3df4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x718(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1db8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1384dd0
movq 0x718(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1dd0(%rsp)
movb $0x1, 0x29d3(%rsp)
testb $0x1, 0x29d3(%rsp)
jne 0x1384f11
leaq 0x1d90(%rsp), %rax
movq %rax, 0x29e8(%rsp)
movq 0x29e8(%rsp), %rax
movq %rax, 0x3e48(%rsp)
movq 0x3e48(%rsp), %rax
movq %rax, 0x708(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1384eb4
movq 0x708(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e44(%rsp) # imm = 0xFFFFFFFF
movl 0x3e44(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e40(%rsp)
cmpl $0x1, 0x3e40(%rsp)
jne 0x1384eb4
movq 0x708(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1384e82
movq 0x708(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1384e80
jmp 0x1384eb2
movq 0x708(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4648(%rsp)
cmpq $0x0, 0x4648(%rsp)
je 0x1384eb0
movq 0x4648(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1384eb2
jmp 0x1384eb4
movq 0x708(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1384f0f
movq %rax, %rdi
callq 0x678a0
jmp 0x1384f11
leaq 0x1d90(%rsp), %rax
movq %rax, 0x2ab8(%rsp)
movq 0x2ab8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6f8(%rsp)
leaq 0x1d90(%rsp), %rax
movq %rax, 0x26c0(%rsp)
movq 0x26c0(%rsp), %rax
movq %rax, 0x4198(%rsp)
movq 0x4198(%rsp), %rax
movq %rax, 0x700(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1385002
movq 0x700(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4194(%rsp) # imm = 0xFFFFFFFF
movl 0x4194(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4190(%rsp)
cmpl $0x1, 0x4190(%rsp)
jne 0x1385002
movq 0x700(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1384fd0
movq 0x700(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1384fce
jmp 0x1385000
movq 0x700(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44a0(%rsp)
cmpq $0x0, 0x44a0(%rsp)
je 0x1384ffe
movq 0x44a0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1385000
jmp 0x1385002
movq 0x700(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x138505d
movq %rax, %rdi
callq 0x678a0
movq 0x6f8(%rsp), %rax
movq %rax, 0x1dd8(%rsp)
movl $0x0, 0x1d8c(%rsp)
movl 0x1d8c(%rsp), %eax
cmpl 0x2158(%rsp), %eax
jge 0x138514c
movq 0x1e50(%rsp), %rax
movq %rax, 0x2c10(%rsp)
movq 0x2c10(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1d60(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0x1d60(%rsp), %rsi
leaq 0x1de0(%rsp), %rdx
callq 0x1453880
vmovaps %ymm0, 0x1d40(%rsp)
movq 0x1dd8(%rsp), %rax
vmovaps 0x1d40(%rsp), %ymm0
movq %rax, 0x30b8(%rsp)
vmovaps %ymm0, 0x3080(%rsp)
vmovaps 0x3080(%rsp), %ymm0
movq 0x30b8(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x1e50(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1e50(%rsp)
movq 0x1dd8(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1dd8(%rsp)
movl 0x1d8c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1d8c(%rsp)
jmp 0x1385078
jmp 0x138514e
movl 0x1e5c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1e5c(%rsp)
jmp 0x138475b
movl $0x0, 0x2194(%rsp)
jmp 0x1391fba
jmp 0x1391faf
movq 0x2188(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x138eb42
movq 0x2180(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1386140
movq 0x2178(%rsp), %rdi
movl 0x2148(%rsp), %esi
movl 0x2144(%rsp), %edx
movl 0x2140(%rsp), %ecx
movl 0x213c(%rsp), %r8d
movq 0x2130(%rsp), %r9
movl 0x212c(%rsp), %r10d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x2178(%rsp), %rax
movq %rax, 0x2220(%rsp)
movq 0x2220(%rsp), %rcx
movq %rcx, 0x6e8(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x6f7(%rsp)
je 0x138524d
movq 0x6e8(%rsp), %rax
movq %rax, 0x3130(%rsp)
movq 0x3130(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x6f7(%rsp)
movb 0x6f7(%rsp), %al
testb $0x1, %al
jne 0x138525a
jmp 0x138526a
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x1391fba
movl $0x0, 0x1d3c(%rsp)
movl 0x1d3c(%rsp), %eax
cmpl 0x213c(%rsp), %eax
jge 0x1386130
movq 0x2188(%rsp), %rcx
movl 0x1d3c(%rsp), %eax
leaq 0x1ce8(%rsp), %rdx
movq %rdx, 0x2438(%rsp)
movq %rcx, 0x2430(%rsp)
movl %eax, 0x242c(%rsp)
movq 0x2430(%rsp), %rax
movq %rax, 0x6e0(%rsp)
movb $0x0, 0x242b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x242c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1ce8(%rsp), %r10
movq %r10, 0x36c0(%rsp)
movl %r9d, 0x36bc(%rsp)
movl %r8d, 0x36b8(%rsp)
movl %edi, 0x36b4(%rsp)
movq %rsi, 0x36a8(%rsp)
movq %rdx, 0x36a0(%rsp)
movl %ecx, 0x369c(%rsp)
movq %rax, 0x3690(%rsp)
movq 0x36c0(%rsp), %rcx
movq %rcx, 0x6d8(%rsp)
movq 0x36a8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x36a0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x369c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3690(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x36bc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x36b8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x36b4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3cb8(%rsp)
movl $0x10, 0x3cb4(%rsp)
movq 0x3cb8(%rsp), %rax
movslq 0x3cb4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3cb4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6e0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1d10(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1385445
movq 0x6e0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1d28(%rsp)
movb $0x1, 0x242b(%rsp)
testb $0x1, 0x242b(%rsp)
jne 0x1385586
leaq 0x1ce8(%rsp), %rax
movq %rax, 0x25e0(%rsp)
movq 0x25e0(%rsp), %rax
movq %rax, 0x4358(%rsp)
movq 0x4358(%rsp), %rax
movq %rax, 0x6d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1385529
movq 0x6d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4354(%rsp) # imm = 0xFFFFFFFF
movl 0x4354(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4350(%rsp)
cmpl $0x1, 0x4350(%rsp)
jne 0x1385529
movq 0x6d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13854f7
movq 0x6d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13854f5
jmp 0x1385527
movq 0x6d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x43c0(%rsp)
cmpq $0x0, 0x43c0(%rsp)
je 0x1385525
movq 0x43c0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1385527
jmp 0x1385529
movq 0x6d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1385584
movq %rax, %rdi
callq 0x678a0
jmp 0x1385586
leaq 0x1ce8(%rsp), %rax
movq %rax, 0x2590(%rsp)
movq 0x2590(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x6c0(%rsp)
leaq 0x1ce8(%rsp), %rax
movq %rax, 0x26c8(%rsp)
movq 0x26c8(%rsp), %rax
movq %rax, 0x4188(%rsp)
movq 0x4188(%rsp), %rax
movq %rax, 0x6c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1385677
movq 0x6c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4184(%rsp) # imm = 0xFFFFFFFF
movl 0x4184(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4180(%rsp)
cmpl $0x1, 0x4180(%rsp)
jne 0x1385677
movq 0x6c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1385645
movq 0x6c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1385643
jmp 0x1385675
movq 0x6c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44a8(%rsp)
cmpq $0x0, 0x44a8(%rsp)
je 0x1385673
movq 0x44a8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1385675
jmp 0x1385677
movq 0x6c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13856d2
movq %rax, %rdi
callq 0x678a0
movq 0x6c0(%rsp), %rax
movq %rax, 0x1d30(%rsp)
movq 0x2180(%rsp), %rcx
movl 0x1d3c(%rsp), %eax
leaq 0x1c98(%rsp), %rdx
movq %rdx, 0x2420(%rsp)
movq %rcx, 0x2418(%rsp)
movl %eax, 0x2414(%rsp)
movq 0x2418(%rsp), %rax
movq %rax, 0x6b8(%rsp)
movb $0x0, 0x2413(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2414(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1c98(%rsp), %r10
movq %r10, 0x36f8(%rsp)
movl %r9d, 0x36f4(%rsp)
movl %r8d, 0x36f0(%rsp)
movl %edi, 0x36ec(%rsp)
movq %rsi, 0x36e0(%rsp)
movq %rdx, 0x36d8(%rsp)
movl %ecx, 0x36d4(%rsp)
movq %rax, 0x36c8(%rsp)
movq 0x36f8(%rsp), %rcx
movq %rcx, 0x6b0(%rsp)
movq 0x36e0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x36d8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x36d4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x36c8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x36f4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x36f0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x36ec(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ca8(%rsp)
movl $0x10, 0x3ca4(%rsp)
movq 0x3ca8(%rsp), %rax
movslq 0x3ca4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3ca4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x6b8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1cc0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x138589e
movq 0x6b8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1cd8(%rsp)
movb $0x1, 0x2413(%rsp)
testb $0x1, 0x2413(%rsp)
jne 0x13859df
leaq 0x1c98(%rsp), %rax
movq %rax, 0x25e8(%rsp)
movq 0x25e8(%rsp), %rax
movq %rax, 0x4348(%rsp)
movq 0x4348(%rsp), %rax
movq %rax, 0x6a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1385982
movq 0x6a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4344(%rsp) # imm = 0xFFFFFFFF
movl 0x4344(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4340(%rsp)
cmpl $0x1, 0x4340(%rsp)
jne 0x1385982
movq 0x6a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1385950
movq 0x6a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x138594e
jmp 0x1385980
movq 0x6a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x43c8(%rsp)
cmpq $0x0, 0x43c8(%rsp)
je 0x138597e
movq 0x43c8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1385980
jmp 0x1385982
movq 0x6a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13859dd
movq %rax, %rdi
callq 0x678a0
jmp 0x13859df
leaq 0x1c98(%rsp), %rax
movq %rax, 0x2588(%rsp)
movq 0x2588(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x698(%rsp)
leaq 0x1c98(%rsp), %rax
movq %rax, 0x26d0(%rsp)
movq 0x26d0(%rsp), %rax
movq %rax, 0x4178(%rsp)
movq 0x4178(%rsp), %rax
movq %rax, 0x6a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1385ad0
movq 0x6a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4174(%rsp) # imm = 0xFFFFFFFF
movl 0x4174(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4170(%rsp)
cmpl $0x1, 0x4170(%rsp)
jne 0x1385ad0
movq 0x6a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1385a9e
movq 0x6a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1385a9c
jmp 0x1385ace
movq 0x6a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44b0(%rsp)
cmpq $0x0, 0x44b0(%rsp)
je 0x1385acc
movq 0x44b0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1385ace
jmp 0x1385ad0
movq 0x6a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1385b2b
movq %rax, %rdi
callq 0x678a0
movq 0x698(%rsp), %rax
movq %rax, 0x1ce0(%rsp)
movq 0x2178(%rsp), %rcx
movl 0x1d3c(%rsp), %eax
leaq 0x1c48(%rsp), %rdx
movq %rdx, 0x29c0(%rsp)
movq %rcx, 0x29b8(%rsp)
movl %eax, 0x29b4(%rsp)
movq 0x29b8(%rsp), %rax
movq %rax, 0x690(%rsp)
movb $0x0, 0x29b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x29b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1c48(%rsp), %r10
movq %r10, 0x3298(%rsp)
movl %r9d, 0x3294(%rsp)
movl %r8d, 0x3290(%rsp)
movl %edi, 0x328c(%rsp)
movq %rsi, 0x3280(%rsp)
movq %rdx, 0x3278(%rsp)
movl %ecx, 0x3274(%rsp)
movq %rax, 0x3268(%rsp)
movq 0x3298(%rsp), %rcx
movq %rcx, 0x688(%rsp)
movq 0x3280(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3278(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3274(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3268(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3294(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3290(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x328c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3de8(%rsp)
movl $0x10, 0x3de4(%rsp)
movq 0x3de8(%rsp), %rax
movslq 0x3de4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3de4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x690(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1c70(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1385cf7
movq 0x690(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1c88(%rsp)
movb $0x1, 0x29b3(%rsp)
testb $0x1, 0x29b3(%rsp)
jne 0x1385e38
leaq 0x1c48(%rsp), %rax
movq %rax, 0x29c8(%rsp)
movq 0x29c8(%rsp), %rax
movq %rax, 0x3e58(%rsp)
movq 0x3e58(%rsp), %rax
movq %rax, 0x680(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1385ddb
movq 0x680(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e54(%rsp) # imm = 0xFFFFFFFF
movl 0x3e54(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e50(%rsp)
cmpl $0x1, 0x3e50(%rsp)
jne 0x1385ddb
movq 0x680(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1385da9
movq 0x680(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1385da7
jmp 0x1385dd9
movq 0x680(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4640(%rsp)
cmpq $0x0, 0x4640(%rsp)
je 0x1385dd7
movq 0x4640(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1385dd9
jmp 0x1385ddb
movq 0x680(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1385e36
movq %rax, %rdi
callq 0x678a0
jmp 0x1385e38
leaq 0x1c48(%rsp), %rax
movq %rax, 0x2ab0(%rsp)
movq 0x2ab0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x670(%rsp)
leaq 0x1c48(%rsp), %rax
movq %rax, 0x26d8(%rsp)
movq 0x26d8(%rsp), %rax
movq %rax, 0x4168(%rsp)
movq 0x4168(%rsp), %rax
movq %rax, 0x678(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1385f29
movq 0x678(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4164(%rsp) # imm = 0xFFFFFFFF
movl 0x4164(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4160(%rsp)
cmpl $0x1, 0x4160(%rsp)
jne 0x1385f29
movq 0x678(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1385ef7
movq 0x678(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1385ef5
jmp 0x1385f27
movq 0x678(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44b8(%rsp)
cmpq $0x0, 0x44b8(%rsp)
je 0x1385f25
movq 0x44b8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1385f27
jmp 0x1385f29
movq 0x678(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1385f84
movq %rax, %rdi
callq 0x678a0
movq 0x670(%rsp), %rax
movq %rax, 0x1c90(%rsp)
movl $0x0, 0x1c44(%rsp)
movl 0x1c44(%rsp), %eax
cmpl 0x2140(%rsp), %eax
jge 0x1386118
movl $0x0, 0x1c40(%rsp)
movl 0x1c40(%rsp), %eax
cmpl 0x2144(%rsp), %eax
jge 0x1386100
movq 0x1d30(%rsp), %rax
movq %rax, 0x2c08(%rsp)
movq 0x2c08(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1c20(%rsp)
movl $0x0, 0x1c1c(%rsp)
movl 0x1c1c(%rsp), %eax
cmpl 0x2148(%rsp), %eax
jge 0x13860d6
movq 0x1ce0(%rsp), %rax
movq %rax, 0x2c00(%rsp)
movq 0x2c00(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1be0(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0x1c20(%rsp), %rsi
leaq 0x1be0(%rsp), %rdx
callq 0x1453880
vmovaps %ymm0, 0x1bc0(%rsp)
movq 0x1c90(%rsp), %rax
vmovaps 0x1bc0(%rsp), %ymm0
movq %rax, 0x3078(%rsp)
vmovaps %ymm0, 0x3040(%rsp)
vmovaps 0x3040(%rsp), %ymm0
movq 0x3078(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x1ce0(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1ce0(%rsp)
movq 0x1c90(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1c90(%rsp)
movl 0x1c1c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c1c(%rsp)
jmp 0x1386002
movq 0x1d30(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1d30(%rsp)
movl 0x1c40(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c40(%rsp)
jmp 0x1385fbe
jmp 0x1386102
movl 0x1c44(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1c44(%rsp)
jmp 0x1385f9f
jmp 0x138611a
movl 0x1d3c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1d3c(%rsp)
jmp 0x1385275
movl $0x0, 0x2194(%rsp)
jmp 0x1391fba
movq 0x2180(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x138d55d
cmpl $0x1, 0x2148(%rsp)
jne 0x1387098
cmpl $0x1, 0x2144(%rsp)
jne 0x1387098
movl 0x213c(%rsp), %eax
cmpl 0x215c(%rsp), %eax
jne 0x1387098
movq 0x2178(%rsp), %rdi
movl 0x2168(%rsp), %esi
movl 0x2164(%rsp), %edx
movl 0x215c(%rsp), %ecx
movq 0x2150(%rsp), %r8
movl 0x214c(%rsp), %r9d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2178(%rsp), %rax
movq %rax, 0x2218(%rsp)
movq 0x2218(%rsp), %rcx
movq %rcx, 0x660(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x66f(%rsp)
je 0x1386225
movq 0x660(%rsp), %rax
movq %rax, 0x3138(%rsp)
movq 0x3138(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x66f(%rsp)
movb 0x66f(%rsp), %al
testb $0x1, %al
jne 0x1386232
jmp 0x1386242
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x1391fba
movl $0x0, 0x1bbc(%rsp)
movl 0x1bbc(%rsp), %eax
cmpl 0x215c(%rsp), %eax
jge 0x1387088
movq 0x2188(%rsp), %rcx
movl 0x1bbc(%rsp), %eax
leaq 0x1b68(%rsp), %rdx
movq %rdx, 0x2408(%rsp)
movq %rcx, 0x2400(%rsp)
movl %eax, 0x23fc(%rsp)
movq 0x2400(%rsp), %rax
movq %rax, 0x658(%rsp)
movb $0x0, 0x23fb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x23fc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1b68(%rsp), %r10
movq %r10, 0x3730(%rsp)
movl %r9d, 0x372c(%rsp)
movl %r8d, 0x3728(%rsp)
movl %edi, 0x3724(%rsp)
movq %rsi, 0x3718(%rsp)
movq %rdx, 0x3710(%rsp)
movl %ecx, 0x370c(%rsp)
movq %rax, 0x3700(%rsp)
movq 0x3730(%rsp), %rcx
movq %rcx, 0x650(%rsp)
movq 0x3718(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3710(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x370c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3700(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x372c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3728(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3724(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c98(%rsp)
movl $0x10, 0x3c94(%rsp)
movq 0x3c98(%rsp), %rax
movslq 0x3c94(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c94(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x658(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1b90(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x138641d
movq 0x658(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1ba8(%rsp)
movb $0x1, 0x23fb(%rsp)
testb $0x1, 0x23fb(%rsp)
jne 0x138655e
leaq 0x1b68(%rsp), %rax
movq %rax, 0x25f0(%rsp)
movq 0x25f0(%rsp), %rax
movq %rax, 0x4338(%rsp)
movq 0x4338(%rsp), %rax
movq %rax, 0x648(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1386501
movq 0x648(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4334(%rsp) # imm = 0xFFFFFFFF
movl 0x4334(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4330(%rsp)
cmpl $0x1, 0x4330(%rsp)
jne 0x1386501
movq 0x648(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13864cf
movq 0x648(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13864cd
jmp 0x13864ff
movq 0x648(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x43d0(%rsp)
cmpq $0x0, 0x43d0(%rsp)
je 0x13864fd
movq 0x43d0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13864ff
jmp 0x1386501
movq 0x648(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x138655c
movq %rax, %rdi
callq 0x678a0
jmp 0x138655e
leaq 0x1b68(%rsp), %rax
movq %rax, 0x2580(%rsp)
movq 0x2580(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x638(%rsp)
leaq 0x1b68(%rsp), %rax
movq %rax, 0x26e0(%rsp)
movq 0x26e0(%rsp), %rax
movq %rax, 0x4158(%rsp)
movq 0x4158(%rsp), %rax
movq %rax, 0x640(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138664f
movq 0x640(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4154(%rsp) # imm = 0xFFFFFFFF
movl 0x4154(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4150(%rsp)
cmpl $0x1, 0x4150(%rsp)
jne 0x138664f
movq 0x640(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138661d
movq 0x640(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x138661b
jmp 0x138664d
movq 0x640(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44c0(%rsp)
cmpq $0x0, 0x44c0(%rsp)
je 0x138664b
movq 0x44c0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x138664d
jmp 0x138664f
movq 0x640(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13866aa
movq %rax, %rdi
callq 0x678a0
movq 0x638(%rsp), %rax
movq %rax, 0x1bb0(%rsp)
movq 0x2180(%rsp), %rcx
movl 0x1bbc(%rsp), %eax
leaq 0x1b18(%rsp), %rdx
movq %rdx, 0x23f0(%rsp)
movq %rcx, 0x23e8(%rsp)
movl %eax, 0x23e4(%rsp)
movq 0x23e8(%rsp), %rax
movq %rax, 0x630(%rsp)
movb $0x0, 0x23e3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x23e4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1b18(%rsp), %r10
movq %r10, 0x3768(%rsp)
movl %r9d, 0x3764(%rsp)
movl %r8d, 0x3760(%rsp)
movl %edi, 0x375c(%rsp)
movq %rsi, 0x3750(%rsp)
movq %rdx, 0x3748(%rsp)
movl %ecx, 0x3744(%rsp)
movq %rax, 0x3738(%rsp)
movq 0x3768(%rsp), %rcx
movq %rcx, 0x628(%rsp)
movq 0x3750(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3748(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3744(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3738(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3764(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3760(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x375c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c88(%rsp)
movl $0x10, 0x3c84(%rsp)
movq 0x3c88(%rsp), %rax
movslq 0x3c84(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c84(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x630(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1b40(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1386876
movq 0x630(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1b58(%rsp)
movb $0x1, 0x23e3(%rsp)
testb $0x1, 0x23e3(%rsp)
jne 0x13869b7
leaq 0x1b18(%rsp), %rax
movq %rax, 0x25f8(%rsp)
movq 0x25f8(%rsp), %rax
movq %rax, 0x4328(%rsp)
movq 0x4328(%rsp), %rax
movq %rax, 0x620(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138695a
movq 0x620(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4324(%rsp) # imm = 0xFFFFFFFF
movl 0x4324(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4320(%rsp)
cmpl $0x1, 0x4320(%rsp)
jne 0x138695a
movq 0x620(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1386928
movq 0x620(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1386926
jmp 0x1386958
movq 0x620(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x43d8(%rsp)
cmpq $0x0, 0x43d8(%rsp)
je 0x1386956
movq 0x43d8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1386958
jmp 0x138695a
movq 0x620(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13869b5
movq %rax, %rdi
callq 0x678a0
jmp 0x13869b7
leaq 0x1b18(%rsp), %rax
movq %rax, 0x2578(%rsp)
movq 0x2578(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x610(%rsp)
leaq 0x1b18(%rsp), %rax
movq %rax, 0x26e8(%rsp)
movq 0x26e8(%rsp), %rax
movq %rax, 0x4148(%rsp)
movq 0x4148(%rsp), %rax
movq %rax, 0x618(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1386aa8
movq 0x618(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4144(%rsp) # imm = 0xFFFFFFFF
movl 0x4144(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4140(%rsp)
cmpl $0x1, 0x4140(%rsp)
jne 0x1386aa8
movq 0x618(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1386a76
movq 0x618(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1386a74
jmp 0x1386aa6
movq 0x618(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44c8(%rsp)
cmpq $0x0, 0x44c8(%rsp)
je 0x1386aa4
movq 0x44c8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1386aa6
jmp 0x1386aa8
movq 0x618(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1386b03
movq %rax, %rdi
callq 0x678a0
movq 0x610(%rsp), %rax
movq %rax, 0x1b60(%rsp)
movq 0x2178(%rsp), %rcx
movl 0x1bbc(%rsp), %eax
leaq 0x1ac8(%rsp), %rdx
movq %rdx, 0x29a0(%rsp)
movq %rcx, 0x2998(%rsp)
movl %eax, 0x2994(%rsp)
movq 0x2998(%rsp), %rax
movq %rax, 0x608(%rsp)
movb $0x0, 0x2993(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2994(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1ac8(%rsp), %r10
movq %r10, 0x32d0(%rsp)
movl %r9d, 0x32cc(%rsp)
movl %r8d, 0x32c8(%rsp)
movl %edi, 0x32c4(%rsp)
movq %rsi, 0x32b8(%rsp)
movq %rdx, 0x32b0(%rsp)
movl %ecx, 0x32ac(%rsp)
movq %rax, 0x32a0(%rsp)
movq 0x32d0(%rsp), %rcx
movq %rcx, 0x600(%rsp)
movq 0x32b8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x32b0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x32ac(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x32a0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x32cc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x32c8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x32c4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3dd8(%rsp)
movl $0x10, 0x3dd4(%rsp)
movq 0x3dd8(%rsp), %rax
movslq 0x3dd4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3dd4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x608(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1af0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1386ccf
movq 0x608(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1b08(%rsp)
movb $0x1, 0x2993(%rsp)
testb $0x1, 0x2993(%rsp)
jne 0x1386e10
leaq 0x1ac8(%rsp), %rax
movq %rax, 0x29a8(%rsp)
movq 0x29a8(%rsp), %rax
movq %rax, 0x3e68(%rsp)
movq 0x3e68(%rsp), %rax
movq %rax, 0x5f8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1386db3
movq 0x5f8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e64(%rsp) # imm = 0xFFFFFFFF
movl 0x3e64(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e60(%rsp)
cmpl $0x1, 0x3e60(%rsp)
jne 0x1386db3
movq 0x5f8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1386d81
movq 0x5f8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1386d7f
jmp 0x1386db1
movq 0x5f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4638(%rsp)
cmpq $0x0, 0x4638(%rsp)
je 0x1386daf
movq 0x4638(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1386db1
jmp 0x1386db3
movq 0x5f8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1386e0e
movq %rax, %rdi
callq 0x678a0
jmp 0x1386e10
leaq 0x1ac8(%rsp), %rax
movq %rax, 0x2aa8(%rsp)
movq 0x2aa8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5e8(%rsp)
leaq 0x1ac8(%rsp), %rax
movq %rax, 0x26f0(%rsp)
movq 0x26f0(%rsp), %rax
movq %rax, 0x4138(%rsp)
movq 0x4138(%rsp), %rax
movq %rax, 0x5f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1386f01
movq 0x5f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4134(%rsp) # imm = 0xFFFFFFFF
movl 0x4134(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4130(%rsp)
cmpl $0x1, 0x4130(%rsp)
jne 0x1386f01
movq 0x5f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1386ecf
movq 0x5f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1386ecd
jmp 0x1386eff
movq 0x5f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44d0(%rsp)
cmpq $0x0, 0x44d0(%rsp)
je 0x1386efd
movq 0x44d0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1386eff
jmp 0x1386f01
movq 0x5f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1386f5c
movq %rax, %rdi
callq 0x678a0
movq 0x5e8(%rsp), %rax
movq %rax, 0x1b10(%rsp)
movq 0x1b60(%rsp), %rax
movq %rax, 0x2bf8(%rsp)
movq 0x2bf8(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1aa0(%rsp)
movl $0x0, 0x1a9c(%rsp)
movl 0x1a9c(%rsp), %eax
cmpl 0x2158(%rsp), %eax
jge 0x1387070
movq 0x1bb0(%rsp), %rax
movq %rax, 0x2bf0(%rsp)
movq 0x2bf0(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1a60(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0x1a60(%rsp), %rsi
leaq 0x1aa0(%rsp), %rdx
callq 0x1453880
vmovaps %ymm0, 0x1a40(%rsp)
movq 0x1b10(%rsp), %rax
vmovaps 0x1a40(%rsp), %ymm0
movq %rax, 0x3038(%rsp)
vmovaps %ymm0, 0x3000(%rsp)
vmovaps 0x3000(%rsp), %ymm0
movq 0x3038(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x1bb0(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1bb0(%rsp)
movq 0x1b10(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1b10(%rsp)
movl 0x1a9c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1a9c(%rsp)
jmp 0x1386f9c
jmp 0x1387072
movl 0x1bbc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1bbc(%rsp)
jmp 0x138624d
movl $0x0, 0x2194(%rsp)
jmp 0x1391fba
movl 0x2148(%rsp), %eax
cmpl 0x2168(%rsp), %eax
jne 0x1387bf5
movl 0x2144(%rsp), %eax
cmpl 0x2164(%rsp), %eax
jne 0x1387bf5
cmpl $0x1, 0x213c(%rsp)
jne 0x1387bf5
cmpl $0x1, 0x212c(%rsp)
jne 0x1387bf5
movq 0x2178(%rsp), %rdi
movl 0x2168(%rsp), %esi
movl 0x2164(%rsp), %edx
movl 0x215c(%rsp), %ecx
movq 0x2150(%rsp), %r8
movl 0x214c(%rsp), %r9d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2178(%rsp), %rax
movq %rax, 0x2210(%rsp)
movq 0x2210(%rsp), %rcx
movq %rcx, 0x5d8(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x5e7(%rsp)
je 0x138717f
movq 0x5d8(%rsp), %rax
movq %rax, 0x3140(%rsp)
movq 0x3140(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x5e7(%rsp)
movb 0x5e7(%rsp), %al
testb $0x1, %al
jne 0x138718c
jmp 0x138719c
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x1391fba
movl $0x0, 0x1a3c(%rsp)
movl 0x1a3c(%rsp), %eax
cmpl 0x215c(%rsp), %eax
jge 0x1387be5
movq 0x2188(%rsp), %rcx
movl 0x1a3c(%rsp), %eax
leaq 0x19e8(%rsp), %rdx
movq %rdx, 0x23d8(%rsp)
movq %rcx, 0x23d0(%rsp)
movl %eax, 0x23cc(%rsp)
movq 0x23d0(%rsp), %rax
movq %rax, 0x5d0(%rsp)
movb $0x0, 0x23cb(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x23cc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x19e8(%rsp), %r10
movq %r10, 0x37a0(%rsp)
movl %r9d, 0x379c(%rsp)
movl %r8d, 0x3798(%rsp)
movl %edi, 0x3794(%rsp)
movq %rsi, 0x3788(%rsp)
movq %rdx, 0x3780(%rsp)
movl %ecx, 0x377c(%rsp)
movq %rax, 0x3770(%rsp)
movq 0x37a0(%rsp), %rcx
movq %rcx, 0x5c8(%rsp)
movq 0x3788(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3780(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x377c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3770(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x379c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3798(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3794(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c78(%rsp)
movl $0x10, 0x3c74(%rsp)
movq 0x3c78(%rsp), %rax
movslq 0x3c74(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c74(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5d0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1a10(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1387377
movq 0x5d0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1a28(%rsp)
movb $0x1, 0x23cb(%rsp)
testb $0x1, 0x23cb(%rsp)
jne 0x13874b8
leaq 0x19e8(%rsp), %rax
movq %rax, 0x2600(%rsp)
movq 0x2600(%rsp), %rax
movq %rax, 0x4318(%rsp)
movq 0x4318(%rsp), %rax
movq %rax, 0x5c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138745b
movq 0x5c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4314(%rsp) # imm = 0xFFFFFFFF
movl 0x4314(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4310(%rsp)
cmpl $0x1, 0x4310(%rsp)
jne 0x138745b
movq 0x5c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1387429
movq 0x5c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1387427
jmp 0x1387459
movq 0x5c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x43e0(%rsp)
cmpq $0x0, 0x43e0(%rsp)
je 0x1387457
movq 0x43e0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1387459
jmp 0x138745b
movq 0x5c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13874b6
movq %rax, %rdi
callq 0x678a0
jmp 0x13874b8
leaq 0x19e8(%rsp), %rax
movq %rax, 0x2570(%rsp)
movq 0x2570(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x5b0(%rsp)
leaq 0x19e8(%rsp), %rax
movq %rax, 0x26f8(%rsp)
movq 0x26f8(%rsp), %rax
movq %rax, 0x4128(%rsp)
movq 0x4128(%rsp), %rax
movq %rax, 0x5b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13875a9
movq 0x5b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4124(%rsp) # imm = 0xFFFFFFFF
movl 0x4124(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4120(%rsp)
cmpl $0x1, 0x4120(%rsp)
jne 0x13875a9
movq 0x5b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1387577
movq 0x5b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1387575
jmp 0x13875a7
movq 0x5b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44d8(%rsp)
cmpq $0x0, 0x44d8(%rsp)
je 0x13875a5
movq 0x44d8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13875a7
jmp 0x13875a9
movq 0x5b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1387604
movq %rax, %rdi
callq 0x678a0
movq 0x5b0(%rsp), %rax
movq %rax, 0x1a30(%rsp)
movq 0x2180(%rsp), %rax
movq %rax, 0x2568(%rsp)
movq 0x2568(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x19e0(%rsp)
movq 0x2178(%rsp), %rcx
movl 0x1a3c(%rsp), %eax
leaq 0x1990(%rsp), %rdx
movq %rdx, 0x2980(%rsp)
movq %rcx, 0x2978(%rsp)
movl %eax, 0x2974(%rsp)
movq 0x2978(%rsp), %rax
movq %rax, 0x5a8(%rsp)
movb $0x0, 0x2973(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2974(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1990(%rsp), %r10
movq %r10, 0x3308(%rsp)
movl %r9d, 0x3304(%rsp)
movl %r8d, 0x3300(%rsp)
movl %edi, 0x32fc(%rsp)
movq %rsi, 0x32f0(%rsp)
movq %rdx, 0x32e8(%rsp)
movl %ecx, 0x32e4(%rsp)
movq %rax, 0x32d8(%rsp)
movq 0x3308(%rsp), %rcx
movq %rcx, 0x5a0(%rsp)
movq 0x32f0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x32e8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x32e4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x32d8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3304(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3300(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x32fc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3dc8(%rsp)
movl $0x10, 0x3dc4(%rsp)
movq 0x3dc8(%rsp), %rax
movslq 0x3dc4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3dc4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x5a8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x19b8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x13877f3
movq 0x5a8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x19d0(%rsp)
movb $0x1, 0x2973(%rsp)
testb $0x1, 0x2973(%rsp)
jne 0x1387934
leaq 0x1990(%rsp), %rax
movq %rax, 0x2988(%rsp)
movq 0x2988(%rsp), %rax
movq %rax, 0x3e78(%rsp)
movq 0x3e78(%rsp), %rax
movq %rax, 0x598(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13878d7
movq 0x598(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e74(%rsp) # imm = 0xFFFFFFFF
movl 0x3e74(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e70(%rsp)
cmpl $0x1, 0x3e70(%rsp)
jne 0x13878d7
movq 0x598(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13878a5
movq 0x598(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13878a3
jmp 0x13878d5
movq 0x598(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4630(%rsp)
cmpq $0x0, 0x4630(%rsp)
je 0x13878d3
movq 0x4630(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13878d5
jmp 0x13878d7
movq 0x598(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1387932
movq %rax, %rdi
callq 0x678a0
jmp 0x1387934
leaq 0x1990(%rsp), %rax
movq %rax, 0x2aa0(%rsp)
movq 0x2aa0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x588(%rsp)
leaq 0x1990(%rsp), %rax
movq %rax, 0x2700(%rsp)
movq 0x2700(%rsp), %rax
movq %rax, 0x4118(%rsp)
movq 0x4118(%rsp), %rax
movq %rax, 0x590(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1387a25
movq 0x590(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4114(%rsp) # imm = 0xFFFFFFFF
movl 0x4114(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4110(%rsp)
cmpl $0x1, 0x4110(%rsp)
jne 0x1387a25
movq 0x590(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13879f3
movq 0x590(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13879f1
jmp 0x1387a23
movq 0x590(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44e0(%rsp)
cmpq $0x0, 0x44e0(%rsp)
je 0x1387a21
movq 0x44e0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1387a23
jmp 0x1387a25
movq 0x590(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1387a80
movq %rax, %rdi
callq 0x678a0
movq 0x588(%rsp), %rax
movq %rax, 0x19d8(%rsp)
movl $0x0, 0x198c(%rsp)
movl 0x198c(%rsp), %eax
cmpl 0x2158(%rsp), %eax
jge 0x1387bcd
movq 0x1a30(%rsp), %rax
movq %rax, 0x2be8(%rsp)
movq 0x2be8(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1960(%rsp)
movq 0x19e0(%rsp), %rax
movq %rax, 0x46c8(%rsp)
movq 0x46c8(%rsp), %rax
vmovss (%rax), %xmm0
vmovss %xmm0, 0x46c4(%rsp)
vbroadcastss 0x46c4(%rsp), %ymm0
vmovaps %ymm0, 0x46a0(%rsp)
vmovaps 0x46a0(%rsp), %ymm0
vmovaps %ymm0, 0x1940(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0x1960(%rsp), %rsi
leaq 0x1940(%rsp), %rdx
callq 0x1453880
vmovaps %ymm0, 0x1920(%rsp)
movq 0x19d8(%rsp), %rax
vmovaps 0x1920(%rsp), %ymm0
movq %rax, 0x2ff8(%rsp)
vmovaps %ymm0, 0x2fc0(%rsp)
vmovaps 0x2fc0(%rsp), %ymm0
movq 0x2ff8(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x1a30(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1a30(%rsp)
movq 0x19e0(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x19e0(%rsp)
movq 0x19d8(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x19d8(%rsp)
movl 0x198c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x198c(%rsp)
jmp 0x1387a9b
jmp 0x1387bcf
movl 0x1a3c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1a3c(%rsp)
jmp 0x13871a7
movl $0x0, 0x2194(%rsp)
jmp 0x1391fba
cmpl $0x1, 0x2168(%rsp)
jne 0x1388b3b
cmpl $0x1, 0x2164(%rsp)
jne 0x1388b3b
movl 0x213c(%rsp), %eax
cmpl 0x215c(%rsp), %eax
jne 0x1388b3b
movq 0x2178(%rsp), %rdi
movl 0x2148(%rsp), %esi
movl 0x2144(%rsp), %edx
movl 0x213c(%rsp), %ecx
movq 0x2130(%rsp), %r8
movl 0x212c(%rsp), %r9d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2178(%rsp), %rax
movq %rax, 0x2208(%rsp)
movq 0x2208(%rsp), %rcx
movq %rcx, 0x578(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x587(%rsp)
je 0x1387cc8
movq 0x578(%rsp), %rax
movq %rax, 0x3148(%rsp)
movq 0x3148(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x587(%rsp)
movb 0x587(%rsp), %al
testb $0x1, %al
jne 0x1387cd5
jmp 0x1387ce5
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x1391fba
movl $0x0, 0x191c(%rsp)
movl 0x191c(%rsp), %eax
cmpl 0x213c(%rsp), %eax
jge 0x1388b2b
movq 0x2188(%rsp), %rcx
movl 0x191c(%rsp), %eax
leaq 0x18c8(%rsp), %rdx
movq %rdx, 0x23c0(%rsp)
movq %rcx, 0x23b8(%rsp)
movl %eax, 0x23b4(%rsp)
movq 0x23b8(%rsp), %rax
movq %rax, 0x570(%rsp)
movb $0x0, 0x23b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x23b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x18c8(%rsp), %r10
movq %r10, 0x37d8(%rsp)
movl %r9d, 0x37d4(%rsp)
movl %r8d, 0x37d0(%rsp)
movl %edi, 0x37cc(%rsp)
movq %rsi, 0x37c0(%rsp)
movq %rdx, 0x37b8(%rsp)
movl %ecx, 0x37b4(%rsp)
movq %rax, 0x37a8(%rsp)
movq 0x37d8(%rsp), %rcx
movq %rcx, 0x568(%rsp)
movq 0x37c0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x37b8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x37b4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x37a8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x37d4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x37d0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x37cc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c68(%rsp)
movl $0x10, 0x3c64(%rsp)
movq 0x3c68(%rsp), %rax
movslq 0x3c64(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c64(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x570(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x18f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1387ec0
movq 0x570(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1908(%rsp)
movb $0x1, 0x23b3(%rsp)
testb $0x1, 0x23b3(%rsp)
jne 0x1388001
leaq 0x18c8(%rsp), %rax
movq %rax, 0x2608(%rsp)
movq 0x2608(%rsp), %rax
movq %rax, 0x4308(%rsp)
movq 0x4308(%rsp), %rax
movq %rax, 0x560(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1387fa4
movq 0x560(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4304(%rsp) # imm = 0xFFFFFFFF
movl 0x4304(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4300(%rsp)
cmpl $0x1, 0x4300(%rsp)
jne 0x1387fa4
movq 0x560(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1387f72
movq 0x560(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1387f70
jmp 0x1387fa2
movq 0x560(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x43e8(%rsp)
cmpq $0x0, 0x43e8(%rsp)
je 0x1387fa0
movq 0x43e8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1387fa2
jmp 0x1387fa4
movq 0x560(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1387fff
movq %rax, %rdi
callq 0x678a0
jmp 0x1388001
leaq 0x18c8(%rsp), %rax
movq %rax, 0x2560(%rsp)
movq 0x2560(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x550(%rsp)
leaq 0x18c8(%rsp), %rax
movq %rax, 0x2708(%rsp)
movq 0x2708(%rsp), %rax
movq %rax, 0x4108(%rsp)
movq 0x4108(%rsp), %rax
movq %rax, 0x558(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13880f2
movq 0x558(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4104(%rsp) # imm = 0xFFFFFFFF
movl 0x4104(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4100(%rsp)
cmpl $0x1, 0x4100(%rsp)
jne 0x13880f2
movq 0x558(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13880c0
movq 0x558(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13880be
jmp 0x13880f0
movq 0x558(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44e8(%rsp)
cmpq $0x0, 0x44e8(%rsp)
je 0x13880ee
movq 0x44e8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13880f0
jmp 0x13880f2
movq 0x558(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x138814d
movq %rax, %rdi
callq 0x678a0
movq 0x550(%rsp), %rax
movq %rax, 0x1910(%rsp)
movq 0x2180(%rsp), %rcx
movl 0x191c(%rsp), %eax
leaq 0x1878(%rsp), %rdx
movq %rdx, 0x23a8(%rsp)
movq %rcx, 0x23a0(%rsp)
movl %eax, 0x239c(%rsp)
movq 0x23a0(%rsp), %rax
movq %rax, 0x548(%rsp)
movb $0x0, 0x239b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x239c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1878(%rsp), %r10
movq %r10, 0x3810(%rsp)
movl %r9d, 0x380c(%rsp)
movl %r8d, 0x3808(%rsp)
movl %edi, 0x3804(%rsp)
movq %rsi, 0x37f8(%rsp)
movq %rdx, 0x37f0(%rsp)
movl %ecx, 0x37ec(%rsp)
movq %rax, 0x37e0(%rsp)
movq 0x3810(%rsp), %rcx
movq %rcx, 0x540(%rsp)
movq 0x37f8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x37f0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x37ec(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x37e0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x380c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3808(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3804(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c58(%rsp)
movl $0x10, 0x3c54(%rsp)
movq 0x3c58(%rsp), %rax
movslq 0x3c54(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c54(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x548(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x18a0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1388319
movq 0x548(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x18b8(%rsp)
movb $0x1, 0x239b(%rsp)
testb $0x1, 0x239b(%rsp)
jne 0x138845a
leaq 0x1878(%rsp), %rax
movq %rax, 0x2610(%rsp)
movq 0x2610(%rsp), %rax
movq %rax, 0x42f8(%rsp)
movq 0x42f8(%rsp), %rax
movq %rax, 0x538(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13883fd
movq 0x538(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42f4(%rsp) # imm = 0xFFFFFFFF
movl 0x42f4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42f0(%rsp)
cmpl $0x1, 0x42f0(%rsp)
jne 0x13883fd
movq 0x538(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x13883cb
movq 0x538(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x13883c9
jmp 0x13883fb
movq 0x538(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x43f0(%rsp)
cmpq $0x0, 0x43f0(%rsp)
je 0x13883f9
movq 0x43f0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13883fb
jmp 0x13883fd
movq 0x538(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1388458
movq %rax, %rdi
callq 0x678a0
jmp 0x138845a
leaq 0x1878(%rsp), %rax
movq %rax, 0x2558(%rsp)
movq 0x2558(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x528(%rsp)
leaq 0x1878(%rsp), %rax
movq %rax, 0x2710(%rsp)
movq 0x2710(%rsp), %rax
movq %rax, 0x40f8(%rsp)
movq 0x40f8(%rsp), %rax
movq %rax, 0x530(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138854b
movq 0x530(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40f4(%rsp) # imm = 0xFFFFFFFF
movl 0x40f4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40f0(%rsp)
cmpl $0x1, 0x40f0(%rsp)
jne 0x138854b
movq 0x530(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1388519
movq 0x530(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1388517
jmp 0x1388549
movq 0x530(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44f0(%rsp)
cmpq $0x0, 0x44f0(%rsp)
je 0x1388547
movq 0x44f0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1388549
jmp 0x138854b
movq 0x530(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13885a6
movq %rax, %rdi
callq 0x678a0
movq 0x528(%rsp), %rax
movq %rax, 0x18c0(%rsp)
movq 0x2178(%rsp), %rcx
movl 0x191c(%rsp), %eax
leaq 0x1828(%rsp), %rdx
movq %rdx, 0x2960(%rsp)
movq %rcx, 0x2958(%rsp)
movl %eax, 0x2954(%rsp)
movq 0x2958(%rsp), %rax
movq %rax, 0x520(%rsp)
movb $0x0, 0x2953(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2954(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1828(%rsp), %r10
movq %r10, 0x3340(%rsp)
movl %r9d, 0x333c(%rsp)
movl %r8d, 0x3338(%rsp)
movl %edi, 0x3334(%rsp)
movq %rsi, 0x3328(%rsp)
movq %rdx, 0x3320(%rsp)
movl %ecx, 0x331c(%rsp)
movq %rax, 0x3310(%rsp)
movq 0x3340(%rsp), %rcx
movq %rcx, 0x518(%rsp)
movq 0x3328(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3320(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x331c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3310(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x333c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3338(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3334(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3db8(%rsp)
movl $0x10, 0x3db4(%rsp)
movq 0x3db8(%rsp), %rax
movslq 0x3db4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3db4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x520(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1850(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1388772
movq 0x520(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1868(%rsp)
movb $0x1, 0x2953(%rsp)
testb $0x1, 0x2953(%rsp)
jne 0x13888b3
leaq 0x1828(%rsp), %rax
movq %rax, 0x2968(%rsp)
movq 0x2968(%rsp), %rax
movq %rax, 0x3e88(%rsp)
movq 0x3e88(%rsp), %rax
movq %rax, 0x510(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1388856
movq 0x510(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e84(%rsp) # imm = 0xFFFFFFFF
movl 0x3e84(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e80(%rsp)
cmpl $0x1, 0x3e80(%rsp)
jne 0x1388856
movq 0x510(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1388824
movq 0x510(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1388822
jmp 0x1388854
movq 0x510(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4628(%rsp)
cmpq $0x0, 0x4628(%rsp)
je 0x1388852
movq 0x4628(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1388854
jmp 0x1388856
movq 0x510(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13888b1
movq %rax, %rdi
callq 0x678a0
jmp 0x13888b3
leaq 0x1828(%rsp), %rax
movq %rax, 0x2a98(%rsp)
movq 0x2a98(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x500(%rsp)
leaq 0x1828(%rsp), %rax
movq %rax, 0x2718(%rsp)
movq 0x2718(%rsp), %rax
movq %rax, 0x40e8(%rsp)
movq 0x40e8(%rsp), %rax
movq %rax, 0x508(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13889a4
movq 0x508(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40e4(%rsp) # imm = 0xFFFFFFFF
movl 0x40e4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40e0(%rsp)
cmpl $0x1, 0x40e0(%rsp)
jne 0x13889a4
movq 0x508(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1388972
movq 0x508(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1388970
jmp 0x13889a2
movq 0x508(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x44f8(%rsp)
cmpq $0x0, 0x44f8(%rsp)
je 0x13889a0
movq 0x44f8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13889a2
jmp 0x13889a4
movq 0x508(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13889ff
movq %rax, %rdi
callq 0x678a0
movq 0x500(%rsp), %rax
movq %rax, 0x1870(%rsp)
movq 0x1910(%rsp), %rax
movq %rax, 0x2be0(%rsp)
movq 0x2be0(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1800(%rsp)
movl $0x0, 0x17fc(%rsp)
movl 0x17fc(%rsp), %eax
cmpl 0x2138(%rsp), %eax
jge 0x1388b13
movq 0x18c0(%rsp), %rax
movq %rax, 0x2bd8(%rsp)
movq 0x2bd8(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x17c0(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0x1800(%rsp), %rsi
leaq 0x17c0(%rsp), %rdx
callq 0x1453880
vmovaps %ymm0, 0x17a0(%rsp)
movq 0x1870(%rsp), %rax
vmovaps 0x17a0(%rsp), %ymm0
movq %rax, 0x2fb8(%rsp)
vmovaps %ymm0, 0x2f80(%rsp)
vmovaps 0x2f80(%rsp), %ymm0
movq 0x2fb8(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x18c0(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x18c0(%rsp)
movq 0x1870(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1870(%rsp)
movl 0x17fc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x17fc(%rsp)
jmp 0x1388a3f
jmp 0x1388b15
movl 0x191c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x191c(%rsp)
jmp 0x1387cf0
movl $0x0, 0x2194(%rsp)
jmp 0x1391fba
movl 0x2148(%rsp), %eax
cmpl 0x2168(%rsp), %eax
jne 0x1389698
movl 0x2144(%rsp), %eax
cmpl 0x2164(%rsp), %eax
jne 0x1389698
cmpl $0x1, 0x215c(%rsp)
jne 0x1389698
cmpl $0x1, 0x214c(%rsp)
jne 0x1389698
movq 0x2178(%rsp), %rdi
movl 0x2148(%rsp), %esi
movl 0x2144(%rsp), %edx
movl 0x213c(%rsp), %ecx
movq 0x2130(%rsp), %r8
movl 0x212c(%rsp), %r9d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2178(%rsp), %rax
movq %rax, 0x2200(%rsp)
movq 0x2200(%rsp), %rcx
movq %rcx, 0x4f0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x4ff(%rsp)
je 0x1388c22
movq 0x4f0(%rsp), %rax
movq %rax, 0x3150(%rsp)
movq 0x3150(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x4ff(%rsp)
movb 0x4ff(%rsp), %al
testb $0x1, %al
jne 0x1388c2f
jmp 0x1388c3f
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x1391fba
movl $0x0, 0x179c(%rsp)
movl 0x179c(%rsp), %eax
cmpl 0x213c(%rsp), %eax
jge 0x1389688
movq 0x2188(%rsp), %rax
movq %rax, 0x2550(%rsp)
movq 0x2550(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1790(%rsp)
movq 0x2180(%rsp), %rcx
movl 0x179c(%rsp), %eax
leaq 0x1740(%rsp), %rdx
movq %rdx, 0x2390(%rsp)
movq %rcx, 0x2388(%rsp)
movl %eax, 0x2384(%rsp)
movq 0x2388(%rsp), %rax
movq %rax, 0x4e8(%rsp)
movb $0x0, 0x2383(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2384(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1740(%rsp), %r10
movq %r10, 0x3848(%rsp)
movl %r9d, 0x3844(%rsp)
movl %r8d, 0x3840(%rsp)
movl %edi, 0x383c(%rsp)
movq %rsi, 0x3830(%rsp)
movq %rdx, 0x3828(%rsp)
movl %ecx, 0x3824(%rsp)
movq %rax, 0x3818(%rsp)
movq 0x3848(%rsp), %rcx
movq %rcx, 0x4e0(%rsp)
movq 0x3830(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3828(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3824(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3818(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3844(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3840(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x383c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c48(%rsp)
movl $0x10, 0x3c44(%rsp)
movq 0x3c48(%rsp), %rax
movslq 0x3c44(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c44(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4e8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1768(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1388e3d
movq 0x4e8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1780(%rsp)
movb $0x1, 0x2383(%rsp)
testb $0x1, 0x2383(%rsp)
jne 0x1388f7e
leaq 0x1740(%rsp), %rax
movq %rax, 0x2618(%rsp)
movq 0x2618(%rsp), %rax
movq %rax, 0x42e8(%rsp)
movq 0x42e8(%rsp), %rax
movq %rax, 0x4d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1388f21
movq 0x4d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42e4(%rsp) # imm = 0xFFFFFFFF
movl 0x42e4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42e0(%rsp)
cmpl $0x1, 0x42e0(%rsp)
jne 0x1388f21
movq 0x4d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1388eef
movq 0x4d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1388eed
jmp 0x1388f1f
movq 0x4d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x43f8(%rsp)
cmpq $0x0, 0x43f8(%rsp)
je 0x1388f1d
movq 0x43f8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1388f1f
jmp 0x1388f21
movq 0x4d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1388f7c
movq %rax, %rdi
callq 0x678a0
jmp 0x1388f7e
leaq 0x1740(%rsp), %rax
movq %rax, 0x2548(%rsp)
movq 0x2548(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4c8(%rsp)
leaq 0x1740(%rsp), %rax
movq %rax, 0x2720(%rsp)
movq 0x2720(%rsp), %rax
movq %rax, 0x40d8(%rsp)
movq 0x40d8(%rsp), %rax
movq %rax, 0x4d0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138906f
movq 0x4d0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40d4(%rsp) # imm = 0xFFFFFFFF
movl 0x40d4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40d0(%rsp)
cmpl $0x1, 0x40d0(%rsp)
jne 0x138906f
movq 0x4d0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138903d
movq 0x4d0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x138903b
jmp 0x138906d
movq 0x4d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4500(%rsp)
cmpq $0x0, 0x4500(%rsp)
je 0x138906b
movq 0x4500(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x138906d
jmp 0x138906f
movq 0x4d0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13890ca
movq %rax, %rdi
callq 0x678a0
movq 0x4c8(%rsp), %rax
movq %rax, 0x1788(%rsp)
movq 0x2178(%rsp), %rcx
movl 0x179c(%rsp), %eax
leaq 0x16f0(%rsp), %rdx
movq %rdx, 0x2940(%rsp)
movq %rcx, 0x2938(%rsp)
movl %eax, 0x2934(%rsp)
movq 0x2938(%rsp), %rax
movq %rax, 0x4c0(%rsp)
movb $0x0, 0x2933(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2934(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x16f0(%rsp), %r10
movq %r10, 0x3378(%rsp)
movl %r9d, 0x3374(%rsp)
movl %r8d, 0x3370(%rsp)
movl %edi, 0x336c(%rsp)
movq %rsi, 0x3360(%rsp)
movq %rdx, 0x3358(%rsp)
movl %ecx, 0x3354(%rsp)
movq %rax, 0x3348(%rsp)
movq 0x3378(%rsp), %rcx
movq %rcx, 0x4b8(%rsp)
movq 0x3360(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3358(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3354(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3348(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3374(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3370(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x336c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3da8(%rsp)
movl $0x10, 0x3da4(%rsp)
movq 0x3da8(%rsp), %rax
movslq 0x3da4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3da4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x4c0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1718(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1389296
movq 0x4c0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1730(%rsp)
movb $0x1, 0x2933(%rsp)
testb $0x1, 0x2933(%rsp)
jne 0x13893d7
leaq 0x16f0(%rsp), %rax
movq %rax, 0x2948(%rsp)
movq 0x2948(%rsp), %rax
movq %rax, 0x3e98(%rsp)
movq 0x3e98(%rsp), %rax
movq %rax, 0x4b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138937a
movq 0x4b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3e94(%rsp) # imm = 0xFFFFFFFF
movl 0x3e94(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3e90(%rsp)
cmpl $0x1, 0x3e90(%rsp)
jne 0x138937a
movq 0x4b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1389348
movq 0x4b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1389346
jmp 0x1389378
movq 0x4b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4620(%rsp)
cmpq $0x0, 0x4620(%rsp)
je 0x1389376
movq 0x4620(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1389378
jmp 0x138937a
movq 0x4b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13893d5
movq %rax, %rdi
callq 0x678a0
jmp 0x13893d7
leaq 0x16f0(%rsp), %rax
movq %rax, 0x2a90(%rsp)
movq 0x2a90(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4a0(%rsp)
leaq 0x16f0(%rsp), %rax
movq %rax, 0x2728(%rsp)
movq 0x2728(%rsp), %rax
movq %rax, 0x40c8(%rsp)
movq 0x40c8(%rsp), %rax
movq %rax, 0x4a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x13894c8
movq 0x4a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40c4(%rsp) # imm = 0xFFFFFFFF
movl 0x40c4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40c0(%rsp)
cmpl $0x1, 0x40c0(%rsp)
jne 0x13894c8
movq 0x4a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1389496
movq 0x4a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1389494
jmp 0x13894c6
movq 0x4a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4508(%rsp)
cmpq $0x0, 0x4508(%rsp)
je 0x13894c4
movq 0x4508(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x13894c6
jmp 0x13894c8
movq 0x4a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1389523
movq %rax, %rdi
callq 0x678a0
movq 0x4a0(%rsp), %rax
movq %rax, 0x1738(%rsp)
movl $0x0, 0x16ec(%rsp)
movl 0x16ec(%rsp), %eax
cmpl 0x2138(%rsp), %eax
jge 0x1389670
movq 0x1790(%rsp), %rax
movq %rax, 0x4698(%rsp)
movq 0x4698(%rsp), %rax
vmovss (%rax), %xmm0
vmovss %xmm0, 0x4694(%rsp)
vbroadcastss 0x4694(%rsp), %ymm0
vmovaps %ymm0, 0x4660(%rsp)
vmovaps 0x4660(%rsp), %ymm0
vmovaps %ymm0, 0x16c0(%rsp)
movq 0x1788(%rsp), %rax
movq %rax, 0x2bd0(%rsp)
movq 0x2bd0(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x16a0(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0x16c0(%rsp), %rsi
leaq 0x16a0(%rsp), %rdx
callq 0x1453880
vmovaps %ymm0, 0x1680(%rsp)
movq 0x1738(%rsp), %rax
vmovaps 0x1680(%rsp), %ymm0
movq %rax, 0x2f78(%rsp)
vmovaps %ymm0, 0x2f40(%rsp)
vmovaps 0x2f40(%rsp), %ymm0
movq 0x2f78(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x1790(%rsp), %rax
addq $0x4, %rax
movq %rax, 0x1790(%rsp)
movq 0x1788(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1788(%rsp)
movq 0x1738(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1738(%rsp)
movl 0x16ec(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x16ec(%rsp)
jmp 0x138953e
jmp 0x1389672
movl 0x179c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x179c(%rsp)
jmp 0x1388c4a
movl $0x0, 0x2194(%rsp)
jmp 0x1391fba
cmpl $0x1, 0x2168(%rsp)
je 0x138a63d
cmpl $0x1, 0x2148(%rsp)
jne 0x138a63d
movl 0x2144(%rsp), %eax
cmpl 0x2164(%rsp), %eax
jne 0x138a63d
movl 0x213c(%rsp), %eax
cmpl 0x215c(%rsp), %eax
jne 0x138a63d
movq 0x2178(%rsp), %rdi
movl 0x2168(%rsp), %esi
movl 0x2164(%rsp), %edx
movl 0x215c(%rsp), %ecx
movq 0x2150(%rsp), %r8
movl 0x214c(%rsp), %r9d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2178(%rsp), %rax
movq %rax, 0x21f8(%rsp)
movq 0x21f8(%rsp), %rcx
movq %rcx, 0x490(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x49f(%rsp)
je 0x138977f
movq 0x490(%rsp), %rax
movq %rax, 0x3158(%rsp)
movq 0x3158(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x49f(%rsp)
movb 0x49f(%rsp), %al
testb $0x1, %al
jne 0x138978c
jmp 0x138979c
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x1391fba
movl $0x0, 0x167c(%rsp)
movl 0x167c(%rsp), %eax
cmpl 0x213c(%rsp), %eax
jge 0x138a62d
movq 0x2188(%rsp), %rcx
movl 0x167c(%rsp), %eax
leaq 0x1628(%rsp), %rdx
movq %rdx, 0x2378(%rsp)
movq %rcx, 0x2370(%rsp)
movl %eax, 0x236c(%rsp)
movq 0x2370(%rsp), %rax
movq %rax, 0x488(%rsp)
movb $0x0, 0x236b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x236c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1628(%rsp), %r10
movq %r10, 0x3880(%rsp)
movl %r9d, 0x387c(%rsp)
movl %r8d, 0x3878(%rsp)
movl %edi, 0x3874(%rsp)
movq %rsi, 0x3868(%rsp)
movq %rdx, 0x3860(%rsp)
movl %ecx, 0x385c(%rsp)
movq %rax, 0x3850(%rsp)
movq 0x3880(%rsp), %rcx
movq %rcx, 0x480(%rsp)
movq 0x3868(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3860(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x385c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3850(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x387c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3878(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3874(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c38(%rsp)
movl $0x10, 0x3c34(%rsp)
movq 0x3c38(%rsp), %rax
movslq 0x3c34(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c34(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x488(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1650(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1389977
movq 0x488(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1668(%rsp)
movb $0x1, 0x236b(%rsp)
testb $0x1, 0x236b(%rsp)
jne 0x1389ab8
leaq 0x1628(%rsp), %rax
movq %rax, 0x2620(%rsp)
movq 0x2620(%rsp), %rax
movq %rax, 0x42d8(%rsp)
movq 0x42d8(%rsp), %rax
movq %rax, 0x478(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1389a5b
movq 0x478(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42d4(%rsp) # imm = 0xFFFFFFFF
movl 0x42d4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42d0(%rsp)
cmpl $0x1, 0x42d0(%rsp)
jne 0x1389a5b
movq 0x478(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1389a29
movq 0x478(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1389a27
jmp 0x1389a59
movq 0x478(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4400(%rsp)
cmpq $0x0, 0x4400(%rsp)
je 0x1389a57
movq 0x4400(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1389a59
jmp 0x1389a5b
movq 0x478(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1389ab6
movq %rax, %rdi
callq 0x678a0
jmp 0x1389ab8
leaq 0x1628(%rsp), %rax
movq %rax, 0x2540(%rsp)
movq 0x2540(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x468(%rsp)
leaq 0x1628(%rsp), %rax
movq %rax, 0x2730(%rsp)
movq 0x2730(%rsp), %rax
movq %rax, 0x40b8(%rsp)
movq 0x40b8(%rsp), %rax
movq %rax, 0x470(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1389ba9
movq 0x470(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40b4(%rsp) # imm = 0xFFFFFFFF
movl 0x40b4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40b0(%rsp)
cmpl $0x1, 0x40b0(%rsp)
jne 0x1389ba9
movq 0x470(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1389b77
movq 0x470(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1389b75
jmp 0x1389ba7
movq 0x470(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4510(%rsp)
cmpq $0x0, 0x4510(%rsp)
je 0x1389ba5
movq 0x4510(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1389ba7
jmp 0x1389ba9
movq 0x470(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1389c04
movq %rax, %rdi
callq 0x678a0
movq 0x468(%rsp), %rax
movq %rax, 0x1670(%rsp)
movq 0x2180(%rsp), %rcx
movl 0x167c(%rsp), %eax
leaq 0x15d8(%rsp), %rdx
movq %rdx, 0x2360(%rsp)
movq %rcx, 0x2358(%rsp)
movl %eax, 0x2354(%rsp)
movq 0x2358(%rsp), %rax
movq %rax, 0x460(%rsp)
movb $0x0, 0x2353(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2354(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x15d8(%rsp), %r10
movq %r10, 0x38b8(%rsp)
movl %r9d, 0x38b4(%rsp)
movl %r8d, 0x38b0(%rsp)
movl %edi, 0x38ac(%rsp)
movq %rsi, 0x38a0(%rsp)
movq %rdx, 0x3898(%rsp)
movl %ecx, 0x3894(%rsp)
movq %rax, 0x3888(%rsp)
movq 0x38b8(%rsp), %rcx
movq %rcx, 0x458(%rsp)
movq 0x38a0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3898(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3894(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3888(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x38b4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x38b0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x38ac(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c28(%rsp)
movl $0x10, 0x3c24(%rsp)
movq 0x3c28(%rsp), %rax
movslq 0x3c24(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c24(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x460(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1600(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1389dd0
movq 0x460(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1618(%rsp)
movb $0x1, 0x2353(%rsp)
testb $0x1, 0x2353(%rsp)
jne 0x1389f11
leaq 0x15d8(%rsp), %rax
movq %rax, 0x2628(%rsp)
movq 0x2628(%rsp), %rax
movq %rax, 0x42c8(%rsp)
movq 0x42c8(%rsp), %rax
movq %rax, 0x450(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1389eb4
movq 0x450(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42c4(%rsp) # imm = 0xFFFFFFFF
movl 0x42c4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42c0(%rsp)
cmpl $0x1, 0x42c0(%rsp)
jne 0x1389eb4
movq 0x450(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1389e82
movq 0x450(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1389e80
jmp 0x1389eb2
movq 0x450(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4408(%rsp)
cmpq $0x0, 0x4408(%rsp)
je 0x1389eb0
movq 0x4408(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1389eb2
jmp 0x1389eb4
movq 0x450(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1389f0f
movq %rax, %rdi
callq 0x678a0
jmp 0x1389f11
leaq 0x15d8(%rsp), %rax
movq %rax, 0x2538(%rsp)
movq 0x2538(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x440(%rsp)
leaq 0x15d8(%rsp), %rax
movq %rax, 0x2738(%rsp)
movq 0x2738(%rsp), %rax
movq %rax, 0x40a8(%rsp)
movq 0x40a8(%rsp), %rax
movq %rax, 0x448(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138a002
movq 0x448(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x40a4(%rsp) # imm = 0xFFFFFFFF
movl 0x40a4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x40a0(%rsp)
cmpl $0x1, 0x40a0(%rsp)
jne 0x138a002
movq 0x448(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1389fd0
movq 0x448(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1389fce
jmp 0x138a000
movq 0x448(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4518(%rsp)
cmpq $0x0, 0x4518(%rsp)
je 0x1389ffe
movq 0x4518(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x138a000
jmp 0x138a002
movq 0x448(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x138a05d
movq %rax, %rdi
callq 0x678a0
movq 0x440(%rsp), %rax
movq %rax, 0x1620(%rsp)
movq 0x2178(%rsp), %rcx
movl 0x167c(%rsp), %eax
leaq 0x1588(%rsp), %rdx
movq %rdx, 0x2920(%rsp)
movq %rcx, 0x2918(%rsp)
movl %eax, 0x2914(%rsp)
movq 0x2918(%rsp), %rax
movq %rax, 0x438(%rsp)
movb $0x0, 0x2913(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2914(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1588(%rsp), %r10
movq %r10, 0x33b0(%rsp)
movl %r9d, 0x33ac(%rsp)
movl %r8d, 0x33a8(%rsp)
movl %edi, 0x33a4(%rsp)
movq %rsi, 0x3398(%rsp)
movq %rdx, 0x3390(%rsp)
movl %ecx, 0x338c(%rsp)
movq %rax, 0x3380(%rsp)
movq 0x33b0(%rsp), %rcx
movq %rcx, 0x430(%rsp)
movq 0x3398(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3390(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x338c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3380(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x33ac(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x33a8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x33a4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d98(%rsp)
movl $0x10, 0x3d94(%rsp)
movq 0x3d98(%rsp), %rax
movslq 0x3d94(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d94(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x438(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x15b0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x138a229
movq 0x438(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x15c8(%rsp)
movb $0x1, 0x2913(%rsp)
testb $0x1, 0x2913(%rsp)
jne 0x138a36a
leaq 0x1588(%rsp), %rax
movq %rax, 0x2928(%rsp)
movq 0x2928(%rsp), %rax
movq %rax, 0x3ea8(%rsp)
movq 0x3ea8(%rsp), %rax
movq %rax, 0x428(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138a30d
movq 0x428(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ea4(%rsp) # imm = 0xFFFFFFFF
movl 0x3ea4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ea0(%rsp)
cmpl $0x1, 0x3ea0(%rsp)
jne 0x138a30d
movq 0x428(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138a2db
movq 0x428(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x138a2d9
jmp 0x138a30b
movq 0x428(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4618(%rsp)
cmpq $0x0, 0x4618(%rsp)
je 0x138a309
movq 0x4618(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x138a30b
jmp 0x138a30d
movq 0x428(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x138a368
movq %rax, %rdi
callq 0x678a0
jmp 0x138a36a
leaq 0x1588(%rsp), %rax
movq %rax, 0x2a88(%rsp)
movq 0x2a88(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x418(%rsp)
leaq 0x1588(%rsp), %rax
movq %rax, 0x2740(%rsp)
movq 0x2740(%rsp), %rax
movq %rax, 0x4098(%rsp)
movq 0x4098(%rsp), %rax
movq %rax, 0x420(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138a45b
movq 0x420(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4094(%rsp) # imm = 0xFFFFFFFF
movl 0x4094(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4090(%rsp)
cmpl $0x1, 0x4090(%rsp)
jne 0x138a45b
movq 0x420(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138a429
movq 0x420(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x138a427
jmp 0x138a459
movq 0x420(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4520(%rsp)
cmpq $0x0, 0x4520(%rsp)
je 0x138a457
movq 0x4520(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x138a459
jmp 0x138a45b
movq 0x420(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x138a4b6
movq %rax, %rdi
callq 0x678a0
movq 0x418(%rsp), %rax
movq %rax, 0x15d0(%rsp)
movl $0x0, 0x1584(%rsp)
movl 0x1584(%rsp), %eax
cmpl 0x2164(%rsp), %eax
jge 0x138a615
movq 0x1620(%rsp), %rax
movl 0x1584(%rsp), %ecx
shll $0x3, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2bc8(%rsp)
movq 0x2bc8(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1560(%rsp)
movl $0x0, 0x155c(%rsp)
movl 0x155c(%rsp), %eax
cmpl 0x2168(%rsp), %eax
jge 0x138a5fd
movq 0x1670(%rsp), %rax
movq %rax, 0x2bc0(%rsp)
movq 0x2bc0(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1520(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0x1520(%rsp), %rsi
leaq 0x1560(%rsp), %rdx
callq 0x1453880
vmovaps %ymm0, 0x1500(%rsp)
movq 0x15d0(%rsp), %rax
vmovaps 0x1500(%rsp), %ymm0
movq %rax, 0x2f38(%rsp)
vmovaps %ymm0, 0x2f00(%rsp)
vmovaps 0x2f00(%rsp), %ymm0
movq 0x2f38(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x1670(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1670(%rsp)
movq 0x15d0(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x15d0(%rsp)
movl 0x155c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x155c(%rsp)
jmp 0x138a529
jmp 0x138a5ff
movl 0x1584(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1584(%rsp)
jmp 0x138a4d1
jmp 0x138a617
movl 0x167c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x167c(%rsp)
jmp 0x13897a7
movl $0x0, 0x2194(%rsp)
jmp 0x1391fba
movl 0x2148(%rsp), %eax
cmpl 0x2168(%rsp), %eax
jne 0x138b5e2
cmpl $0x1, 0x2164(%rsp)
je 0x138b5e2
cmpl $0x1, 0x2144(%rsp)
jne 0x138b5e2
movl 0x213c(%rsp), %eax
cmpl 0x215c(%rsp), %eax
jne 0x138b5e2
movq 0x2178(%rsp), %rdi
movl 0x2168(%rsp), %esi
movl 0x2164(%rsp), %edx
movl 0x215c(%rsp), %ecx
movq 0x2150(%rsp), %r8
movl 0x214c(%rsp), %r9d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2178(%rsp), %rax
movq %rax, 0x21f0(%rsp)
movq 0x21f0(%rsp), %rcx
movq %rcx, 0x408(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x417(%rsp)
je 0x138a724
movq 0x408(%rsp), %rax
movq %rax, 0x3160(%rsp)
movq 0x3160(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x417(%rsp)
movb 0x417(%rsp), %al
testb $0x1, %al
jne 0x138a731
jmp 0x138a741
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x1391fba
movl $0x0, 0x14fc(%rsp)
movl 0x14fc(%rsp), %eax
cmpl 0x213c(%rsp), %eax
jge 0x138b5d2
movq 0x2188(%rsp), %rcx
movl 0x14fc(%rsp), %eax
leaq 0x14a8(%rsp), %rdx
movq %rdx, 0x2348(%rsp)
movq %rcx, 0x2340(%rsp)
movl %eax, 0x233c(%rsp)
movq 0x2340(%rsp), %rax
movq %rax, 0x400(%rsp)
movb $0x0, 0x233b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x233c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x14a8(%rsp), %r10
movq %r10, 0x38f0(%rsp)
movl %r9d, 0x38ec(%rsp)
movl %r8d, 0x38e8(%rsp)
movl %edi, 0x38e4(%rsp)
movq %rsi, 0x38d8(%rsp)
movq %rdx, 0x38d0(%rsp)
movl %ecx, 0x38cc(%rsp)
movq %rax, 0x38c0(%rsp)
movq 0x38f0(%rsp), %rcx
movq %rcx, 0x3f8(%rsp)
movq 0x38d8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x38d0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x38cc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x38c0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x38ec(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x38e8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x38e4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c18(%rsp)
movl $0x10, 0x3c14(%rsp)
movq 0x3c18(%rsp), %rax
movslq 0x3c14(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c14(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x400(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x14d0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x138a91c
movq 0x400(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x14e8(%rsp)
movb $0x1, 0x233b(%rsp)
testb $0x1, 0x233b(%rsp)
jne 0x138aa5d
leaq 0x14a8(%rsp), %rax
movq %rax, 0x2630(%rsp)
movq 0x2630(%rsp), %rax
movq %rax, 0x42b8(%rsp)
movq 0x42b8(%rsp), %rax
movq %rax, 0x3f0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138aa00
movq 0x3f0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42b4(%rsp) # imm = 0xFFFFFFFF
movl 0x42b4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42b0(%rsp)
cmpl $0x1, 0x42b0(%rsp)
jne 0x138aa00
movq 0x3f0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138a9ce
movq 0x3f0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x138a9cc
jmp 0x138a9fe
movq 0x3f0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4410(%rsp)
cmpq $0x0, 0x4410(%rsp)
je 0x138a9fc
movq 0x4410(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x138a9fe
jmp 0x138aa00
movq 0x3f0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x138aa5b
movq %rax, %rdi
callq 0x678a0
jmp 0x138aa5d
leaq 0x14a8(%rsp), %rax
movq %rax, 0x2530(%rsp)
movq 0x2530(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3e0(%rsp)
leaq 0x14a8(%rsp), %rax
movq %rax, 0x2748(%rsp)
movq 0x2748(%rsp), %rax
movq %rax, 0x4088(%rsp)
movq 0x4088(%rsp), %rax
movq %rax, 0x3e8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138ab4e
movq 0x3e8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4084(%rsp) # imm = 0xFFFFFFFF
movl 0x4084(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4080(%rsp)
cmpl $0x1, 0x4080(%rsp)
jne 0x138ab4e
movq 0x3e8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138ab1c
movq 0x3e8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x138ab1a
jmp 0x138ab4c
movq 0x3e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4528(%rsp)
cmpq $0x0, 0x4528(%rsp)
je 0x138ab4a
movq 0x4528(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x138ab4c
jmp 0x138ab4e
movq 0x3e8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x138aba9
movq %rax, %rdi
callq 0x678a0
movq 0x3e0(%rsp), %rax
movq %rax, 0x14f0(%rsp)
movq 0x2180(%rsp), %rcx
movl 0x14fc(%rsp), %eax
leaq 0x1458(%rsp), %rdx
movq %rdx, 0x2330(%rsp)
movq %rcx, 0x2328(%rsp)
movl %eax, 0x2324(%rsp)
movq 0x2328(%rsp), %rax
movq %rax, 0x3d8(%rsp)
movb $0x0, 0x2323(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2324(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1458(%rsp), %r10
movq %r10, 0x3928(%rsp)
movl %r9d, 0x3924(%rsp)
movl %r8d, 0x3920(%rsp)
movl %edi, 0x391c(%rsp)
movq %rsi, 0x3910(%rsp)
movq %rdx, 0x3908(%rsp)
movl %ecx, 0x3904(%rsp)
movq %rax, 0x38f8(%rsp)
movq 0x3928(%rsp), %rcx
movq %rcx, 0x3d0(%rsp)
movq 0x3910(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3908(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3904(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x38f8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3924(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3920(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x391c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3c08(%rsp)
movl $0x10, 0x3c04(%rsp)
movq 0x3c08(%rsp), %rax
movslq 0x3c04(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3c04(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3d8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1480(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x138ad75
movq 0x3d8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1498(%rsp)
movb $0x1, 0x2323(%rsp)
testb $0x1, 0x2323(%rsp)
jne 0x138aeb6
leaq 0x1458(%rsp), %rax
movq %rax, 0x2638(%rsp)
movq 0x2638(%rsp), %rax
movq %rax, 0x42a8(%rsp)
movq 0x42a8(%rsp), %rax
movq %rax, 0x3c8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138ae59
movq 0x3c8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x42a4(%rsp) # imm = 0xFFFFFFFF
movl 0x42a4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x42a0(%rsp)
cmpl $0x1, 0x42a0(%rsp)
jne 0x138ae59
movq 0x3c8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138ae27
movq 0x3c8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x138ae25
jmp 0x138ae57
movq 0x3c8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4418(%rsp)
cmpq $0x0, 0x4418(%rsp)
je 0x138ae55
movq 0x4418(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x138ae57
jmp 0x138ae59
movq 0x3c8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x138aeb4
movq %rax, %rdi
callq 0x678a0
jmp 0x138aeb6
leaq 0x1458(%rsp), %rax
movq %rax, 0x2528(%rsp)
movq 0x2528(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x3b8(%rsp)
leaq 0x1458(%rsp), %rax
movq %rax, 0x2750(%rsp)
movq 0x2750(%rsp), %rax
movq %rax, 0x4078(%rsp)
movq 0x4078(%rsp), %rax
movq %rax, 0x3c0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138afa7
movq 0x3c0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4074(%rsp) # imm = 0xFFFFFFFF
movl 0x4074(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4070(%rsp)
cmpl $0x1, 0x4070(%rsp)
jne 0x138afa7
movq 0x3c0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138af75
movq 0x3c0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x138af73
jmp 0x138afa5
movq 0x3c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4530(%rsp)
cmpq $0x0, 0x4530(%rsp)
je 0x138afa3
movq 0x4530(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x138afa5
jmp 0x138afa7
movq 0x3c0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x138b002
movq %rax, %rdi
callq 0x678a0
movq 0x3b8(%rsp), %rax
movq %rax, 0x14a0(%rsp)
movq 0x2178(%rsp), %rcx
movl 0x14fc(%rsp), %eax
leaq 0x1408(%rsp), %rdx
movq %rdx, 0x2900(%rsp)
movq %rcx, 0x28f8(%rsp)
movl %eax, 0x28f4(%rsp)
movq 0x28f8(%rsp), %rax
movq %rax, 0x3b0(%rsp)
movb $0x0, 0x28f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x28f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1408(%rsp), %r10
movq %r10, 0x33e8(%rsp)
movl %r9d, 0x33e4(%rsp)
movl %r8d, 0x33e0(%rsp)
movl %edi, 0x33dc(%rsp)
movq %rsi, 0x33d0(%rsp)
movq %rdx, 0x33c8(%rsp)
movl %ecx, 0x33c4(%rsp)
movq %rax, 0x33b8(%rsp)
movq 0x33e8(%rsp), %rcx
movq %rcx, 0x3a8(%rsp)
movq 0x33d0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x33c8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x33c4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x33b8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x33e4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x33e0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x33dc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d88(%rsp)
movl $0x10, 0x3d84(%rsp)
movq 0x3d88(%rsp), %rax
movslq 0x3d84(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d84(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x3b0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1430(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x138b1ce
movq 0x3b0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1448(%rsp)
movb $0x1, 0x28f3(%rsp)
testb $0x1, 0x28f3(%rsp)
jne 0x138b30f
leaq 0x1408(%rsp), %rax
movq %rax, 0x2908(%rsp)
movq 0x2908(%rsp), %rax
movq %rax, 0x3eb8(%rsp)
movq 0x3eb8(%rsp), %rax
movq %rax, 0x3a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138b2b2
movq 0x3a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3eb4(%rsp) # imm = 0xFFFFFFFF
movl 0x3eb4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3eb0(%rsp)
cmpl $0x1, 0x3eb0(%rsp)
jne 0x138b2b2
movq 0x3a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138b280
movq 0x3a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x138b27e
jmp 0x138b2b0
movq 0x3a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4610(%rsp)
cmpq $0x0, 0x4610(%rsp)
je 0x138b2ae
movq 0x4610(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x138b2b0
jmp 0x138b2b2
movq 0x3a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x138b30d
movq %rax, %rdi
callq 0x678a0
jmp 0x138b30f
leaq 0x1408(%rsp), %rax
movq %rax, 0x2a80(%rsp)
movq 0x2a80(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x390(%rsp)
leaq 0x1408(%rsp), %rax
movq %rax, 0x2758(%rsp)
movq 0x2758(%rsp), %rax
movq %rax, 0x4068(%rsp)
movq 0x4068(%rsp), %rax
movq %rax, 0x398(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138b400
movq 0x398(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4064(%rsp) # imm = 0xFFFFFFFF
movl 0x4064(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4060(%rsp)
cmpl $0x1, 0x4060(%rsp)
jne 0x138b400
movq 0x398(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138b3ce
movq 0x398(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x138b3cc
jmp 0x138b3fe
movq 0x398(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4538(%rsp)
cmpq $0x0, 0x4538(%rsp)
je 0x138b3fc
movq 0x4538(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x138b3fe
jmp 0x138b400
movq 0x398(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x138b45b
movq %rax, %rdi
callq 0x678a0
movq 0x390(%rsp), %rax
movq %rax, 0x1450(%rsp)
movl $0x0, 0x1404(%rsp)
movl 0x1404(%rsp), %eax
cmpl 0x2164(%rsp), %eax
jge 0x138b5ba
movl $0x0, 0x1400(%rsp)
movl 0x1400(%rsp), %eax
cmpl 0x2168(%rsp), %eax
jge 0x138b5a2
movq 0x14f0(%rsp), %rax
movq %rax, 0x2bb8(%rsp)
movq 0x2bb8(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x13e0(%rsp)
movq 0x14a0(%rsp), %rax
movl 0x1400(%rsp), %ecx
shll $0x3, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2bb0(%rsp)
movq 0x2bb0(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x13c0(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0x13e0(%rsp), %rsi
leaq 0x13c0(%rsp), %rdx
callq 0x1453880
vmovaps %ymm0, 0x13a0(%rsp)
movq 0x1450(%rsp), %rax
vmovaps 0x13a0(%rsp), %ymm0
movq %rax, 0x2ef8(%rsp)
vmovaps %ymm0, 0x2ec0(%rsp)
vmovaps 0x2ec0(%rsp), %ymm0
movq 0x2ef8(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x14f0(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x14f0(%rsp)
movq 0x1450(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1450(%rsp)
movl 0x1400(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1400(%rsp)
jmp 0x138b495
jmp 0x138b5a4
movl 0x1404(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1404(%rsp)
jmp 0x138b476
jmp 0x138b5bc
movl 0x14fc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x14fc(%rsp)
jmp 0x138a74c
movl $0x0, 0x2194(%rsp)
jmp 0x1391fba
cmpl $0x1, 0x2148(%rsp)
je 0x138c587
cmpl $0x1, 0x2168(%rsp)
jne 0x138c587
movl 0x2144(%rsp), %eax
cmpl 0x2164(%rsp), %eax
jne 0x138c587
movl 0x213c(%rsp), %eax
cmpl 0x215c(%rsp), %eax
jne 0x138c587
movq 0x2178(%rsp), %rdi
movl 0x2148(%rsp), %esi
movl 0x2144(%rsp), %edx
movl 0x213c(%rsp), %ecx
movq 0x2130(%rsp), %r8
movl 0x212c(%rsp), %r9d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2178(%rsp), %rax
movq %rax, 0x21e8(%rsp)
movq 0x21e8(%rsp), %rcx
movq %rcx, 0x380(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x38f(%rsp)
je 0x138b6c9
movq 0x380(%rsp), %rax
movq %rax, 0x3168(%rsp)
movq 0x3168(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x38f(%rsp)
movb 0x38f(%rsp), %al
testb $0x1, %al
jne 0x138b6d6
jmp 0x138b6e6
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x1391fba
movl $0x0, 0x139c(%rsp)
movl 0x139c(%rsp), %eax
cmpl 0x213c(%rsp), %eax
jge 0x138c577
movq 0x2188(%rsp), %rcx
movl 0x139c(%rsp), %eax
leaq 0x1348(%rsp), %rdx
movq %rdx, 0x2318(%rsp)
movq %rcx, 0x2310(%rsp)
movl %eax, 0x230c(%rsp)
movq 0x2310(%rsp), %rax
movq %rax, 0x378(%rsp)
movb $0x0, 0x230b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x230c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1348(%rsp), %r10
movq %r10, 0x3960(%rsp)
movl %r9d, 0x395c(%rsp)
movl %r8d, 0x3958(%rsp)
movl %edi, 0x3954(%rsp)
movq %rsi, 0x3948(%rsp)
movq %rdx, 0x3940(%rsp)
movl %ecx, 0x393c(%rsp)
movq %rax, 0x3930(%rsp)
movq 0x3960(%rsp), %rcx
movq %rcx, 0x370(%rsp)
movq 0x3948(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3940(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x393c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3930(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x395c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3958(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3954(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3bf8(%rsp)
movl $0x10, 0x3bf4(%rsp)
movq 0x3bf8(%rsp), %rax
movslq 0x3bf4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bf4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x378(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1370(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x138b8c1
movq 0x378(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1388(%rsp)
movb $0x1, 0x230b(%rsp)
testb $0x1, 0x230b(%rsp)
jne 0x138ba02
leaq 0x1348(%rsp), %rax
movq %rax, 0x2640(%rsp)
movq 0x2640(%rsp), %rax
movq %rax, 0x4298(%rsp)
movq 0x4298(%rsp), %rax
movq %rax, 0x368(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138b9a5
movq 0x368(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4294(%rsp) # imm = 0xFFFFFFFF
movl 0x4294(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4290(%rsp)
cmpl $0x1, 0x4290(%rsp)
jne 0x138b9a5
movq 0x368(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138b973
movq 0x368(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x138b971
jmp 0x138b9a3
movq 0x368(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4420(%rsp)
cmpq $0x0, 0x4420(%rsp)
je 0x138b9a1
movq 0x4420(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x138b9a3
jmp 0x138b9a5
movq 0x368(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x138ba00
movq %rax, %rdi
callq 0x678a0
jmp 0x138ba02
leaq 0x1348(%rsp), %rax
movq %rax, 0x2520(%rsp)
movq 0x2520(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x358(%rsp)
leaq 0x1348(%rsp), %rax
movq %rax, 0x2760(%rsp)
movq 0x2760(%rsp), %rax
movq %rax, 0x4058(%rsp)
movq 0x4058(%rsp), %rax
movq %rax, 0x360(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138baf3
movq 0x360(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4054(%rsp) # imm = 0xFFFFFFFF
movl 0x4054(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4050(%rsp)
cmpl $0x1, 0x4050(%rsp)
jne 0x138baf3
movq 0x360(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138bac1
movq 0x360(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x138babf
jmp 0x138baf1
movq 0x360(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4540(%rsp)
cmpq $0x0, 0x4540(%rsp)
je 0x138baef
movq 0x4540(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x138baf1
jmp 0x138baf3
movq 0x360(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x138bb4e
movq %rax, %rdi
callq 0x678a0
movq 0x358(%rsp), %rax
movq %rax, 0x1390(%rsp)
movq 0x2180(%rsp), %rcx
movl 0x139c(%rsp), %eax
leaq 0x12f8(%rsp), %rdx
movq %rdx, 0x2300(%rsp)
movq %rcx, 0x22f8(%rsp)
movl %eax, 0x22f4(%rsp)
movq 0x22f8(%rsp), %rax
movq %rax, 0x350(%rsp)
movb $0x0, 0x22f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x12f8(%rsp), %r10
movq %r10, 0x3998(%rsp)
movl %r9d, 0x3994(%rsp)
movl %r8d, 0x3990(%rsp)
movl %edi, 0x398c(%rsp)
movq %rsi, 0x3980(%rsp)
movq %rdx, 0x3978(%rsp)
movl %ecx, 0x3974(%rsp)
movq %rax, 0x3968(%rsp)
movq 0x3998(%rsp), %rcx
movq %rcx, 0x348(%rsp)
movq 0x3980(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3978(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3974(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3968(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3994(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3990(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x398c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3be8(%rsp)
movl $0x10, 0x3be4(%rsp)
movq 0x3be8(%rsp), %rax
movslq 0x3be4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3be4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x350(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1320(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x138bd1a
movq 0x350(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1338(%rsp)
movb $0x1, 0x22f3(%rsp)
testb $0x1, 0x22f3(%rsp)
jne 0x138be5b
leaq 0x12f8(%rsp), %rax
movq %rax, 0x2648(%rsp)
movq 0x2648(%rsp), %rax
movq %rax, 0x4288(%rsp)
movq 0x4288(%rsp), %rax
movq %rax, 0x340(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138bdfe
movq 0x340(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4284(%rsp) # imm = 0xFFFFFFFF
movl 0x4284(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4280(%rsp)
cmpl $0x1, 0x4280(%rsp)
jne 0x138bdfe
movq 0x340(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138bdcc
movq 0x340(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x138bdca
jmp 0x138bdfc
movq 0x340(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4428(%rsp)
cmpq $0x0, 0x4428(%rsp)
je 0x138bdfa
movq 0x4428(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x138bdfc
jmp 0x138bdfe
movq 0x340(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x138be59
movq %rax, %rdi
callq 0x678a0
jmp 0x138be5b
leaq 0x12f8(%rsp), %rax
movq %rax, 0x2518(%rsp)
movq 0x2518(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x330(%rsp)
leaq 0x12f8(%rsp), %rax
movq %rax, 0x2768(%rsp)
movq 0x2768(%rsp), %rax
movq %rax, 0x4048(%rsp)
movq 0x4048(%rsp), %rax
movq %rax, 0x338(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138bf4c
movq 0x338(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4044(%rsp) # imm = 0xFFFFFFFF
movl 0x4044(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4040(%rsp)
cmpl $0x1, 0x4040(%rsp)
jne 0x138bf4c
movq 0x338(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138bf1a
movq 0x338(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x138bf18
jmp 0x138bf4a
movq 0x338(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4548(%rsp)
cmpq $0x0, 0x4548(%rsp)
je 0x138bf48
movq 0x4548(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x138bf4a
jmp 0x138bf4c
movq 0x338(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x138bfa7
movq %rax, %rdi
callq 0x678a0
movq 0x330(%rsp), %rax
movq %rax, 0x1340(%rsp)
movq 0x2178(%rsp), %rcx
movl 0x139c(%rsp), %eax
leaq 0x12a8(%rsp), %rdx
movq %rdx, 0x28e0(%rsp)
movq %rcx, 0x28d8(%rsp)
movl %eax, 0x28d4(%rsp)
movq 0x28d8(%rsp), %rax
movq %rax, 0x328(%rsp)
movb $0x0, 0x28d3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x28d4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x12a8(%rsp), %r10
movq %r10, 0x3420(%rsp)
movl %r9d, 0x341c(%rsp)
movl %r8d, 0x3418(%rsp)
movl %edi, 0x3414(%rsp)
movq %rsi, 0x3408(%rsp)
movq %rdx, 0x3400(%rsp)
movl %ecx, 0x33fc(%rsp)
movq %rax, 0x33f0(%rsp)
movq 0x3420(%rsp), %rcx
movq %rcx, 0x320(%rsp)
movq 0x3408(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3400(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x33fc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x33f0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x341c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3418(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3414(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d78(%rsp)
movl $0x10, 0x3d74(%rsp)
movq 0x3d78(%rsp), %rax
movslq 0x3d74(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d74(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x328(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x12d0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x138c173
movq 0x328(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x12e8(%rsp)
movb $0x1, 0x28d3(%rsp)
testb $0x1, 0x28d3(%rsp)
jne 0x138c2b4
leaq 0x12a8(%rsp), %rax
movq %rax, 0x28e8(%rsp)
movq 0x28e8(%rsp), %rax
movq %rax, 0x3ec8(%rsp)
movq 0x3ec8(%rsp), %rax
movq %rax, 0x318(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138c257
movq 0x318(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ec4(%rsp) # imm = 0xFFFFFFFF
movl 0x3ec4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ec0(%rsp)
cmpl $0x1, 0x3ec0(%rsp)
jne 0x138c257
movq 0x318(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138c225
movq 0x318(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x138c223
jmp 0x138c255
movq 0x318(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4608(%rsp)
cmpq $0x0, 0x4608(%rsp)
je 0x138c253
movq 0x4608(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x138c255
jmp 0x138c257
movq 0x318(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x138c2b2
movq %rax, %rdi
callq 0x678a0
jmp 0x138c2b4
leaq 0x12a8(%rsp), %rax
movq %rax, 0x2a78(%rsp)
movq 0x2a78(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x308(%rsp)
leaq 0x12a8(%rsp), %rax
movq %rax, 0x2770(%rsp)
movq 0x2770(%rsp), %rax
movq %rax, 0x4038(%rsp)
movq 0x4038(%rsp), %rax
movq %rax, 0x310(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138c3a5
movq 0x310(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4034(%rsp) # imm = 0xFFFFFFFF
movl 0x4034(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4030(%rsp)
cmpl $0x1, 0x4030(%rsp)
jne 0x138c3a5
movq 0x310(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138c373
movq 0x310(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x138c371
jmp 0x138c3a3
movq 0x310(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4550(%rsp)
cmpq $0x0, 0x4550(%rsp)
je 0x138c3a1
movq 0x4550(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x138c3a3
jmp 0x138c3a5
movq 0x310(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x138c400
movq %rax, %rdi
callq 0x678a0
movq 0x308(%rsp), %rax
movq %rax, 0x12f0(%rsp)
movl $0x0, 0x12a4(%rsp)
movl 0x12a4(%rsp), %eax
cmpl 0x2144(%rsp), %eax
jge 0x138c55f
movq 0x1390(%rsp), %rax
movl 0x12a4(%rsp), %ecx
shll $0x3, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2ba8(%rsp)
movq 0x2ba8(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1280(%rsp)
movl $0x0, 0x127c(%rsp)
movl 0x127c(%rsp), %eax
cmpl 0x2148(%rsp), %eax
jge 0x138c547
movq 0x1340(%rsp), %rax
movq %rax, 0x2ba0(%rsp)
movq 0x2ba0(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1240(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0x1280(%rsp), %rsi
leaq 0x1240(%rsp), %rdx
callq 0x1453880
vmovaps %ymm0, 0x1220(%rsp)
movq 0x12f0(%rsp), %rax
vmovaps 0x1220(%rsp), %ymm0
movq %rax, 0x2eb8(%rsp)
vmovaps %ymm0, 0x2e80(%rsp)
vmovaps 0x2e80(%rsp), %ymm0
movq 0x2eb8(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x1340(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1340(%rsp)
movq 0x12f0(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x12f0(%rsp)
movl 0x127c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x127c(%rsp)
jmp 0x138c473
jmp 0x138c549
movl 0x12a4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x12a4(%rsp)
jmp 0x138c41b
jmp 0x138c561
movl 0x139c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x139c(%rsp)
jmp 0x138b6f1
movl $0x0, 0x2194(%rsp)
jmp 0x1391fba
movl 0x2148(%rsp), %eax
cmpl 0x2168(%rsp), %eax
jne 0x138d52c
cmpl $0x1, 0x2144(%rsp)
je 0x138d52c
cmpl $0x1, 0x2164(%rsp)
jne 0x138d52c
movl 0x213c(%rsp), %eax
cmpl 0x215c(%rsp), %eax
jne 0x138d52c
movq 0x2178(%rsp), %rdi
movl 0x2148(%rsp), %esi
movl 0x2144(%rsp), %edx
movl 0x213c(%rsp), %ecx
movq 0x2130(%rsp), %r8
movl 0x212c(%rsp), %r9d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2178(%rsp), %rax
movq %rax, 0x21e0(%rsp)
movq 0x21e0(%rsp), %rcx
movq %rcx, 0x2f8(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x307(%rsp)
je 0x138c66e
movq 0x2f8(%rsp), %rax
movq %rax, 0x3170(%rsp)
movq 0x3170(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x307(%rsp)
movb 0x307(%rsp), %al
testb $0x1, %al
jne 0x138c67b
jmp 0x138c68b
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x1391fba
movl $0x0, 0x121c(%rsp)
movl 0x121c(%rsp), %eax
cmpl 0x213c(%rsp), %eax
jge 0x138d51c
movq 0x2188(%rsp), %rcx
movl 0x121c(%rsp), %eax
leaq 0x11c8(%rsp), %rdx
movq %rdx, 0x22e8(%rsp)
movq %rcx, 0x22e0(%rsp)
movl %eax, 0x22dc(%rsp)
movq 0x22e0(%rsp), %rax
movq %rax, 0x2f0(%rsp)
movb $0x0, 0x22db(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22dc(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x11c8(%rsp), %r10
movq %r10, 0x39d0(%rsp)
movl %r9d, 0x39cc(%rsp)
movl %r8d, 0x39c8(%rsp)
movl %edi, 0x39c4(%rsp)
movq %rsi, 0x39b8(%rsp)
movq %rdx, 0x39b0(%rsp)
movl %ecx, 0x39ac(%rsp)
movq %rax, 0x39a0(%rsp)
movq 0x39d0(%rsp), %rcx
movq %rcx, 0x2e8(%rsp)
movq 0x39b8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x39b0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x39ac(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x39a0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x39cc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x39c8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x39c4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3bd8(%rsp)
movl $0x10, 0x3bd4(%rsp)
movq 0x3bd8(%rsp), %rax
movslq 0x3bd4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bd4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2f0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x11f0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x138c866
movq 0x2f0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1208(%rsp)
movb $0x1, 0x22db(%rsp)
testb $0x1, 0x22db(%rsp)
jne 0x138c9a7
leaq 0x11c8(%rsp), %rax
movq %rax, 0x2650(%rsp)
movq 0x2650(%rsp), %rax
movq %rax, 0x4278(%rsp)
movq 0x4278(%rsp), %rax
movq %rax, 0x2e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138c94a
movq 0x2e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4274(%rsp) # imm = 0xFFFFFFFF
movl 0x4274(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4270(%rsp)
cmpl $0x1, 0x4270(%rsp)
jne 0x138c94a
movq 0x2e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138c918
movq 0x2e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x138c916
jmp 0x138c948
movq 0x2e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4430(%rsp)
cmpq $0x0, 0x4430(%rsp)
je 0x138c946
movq 0x4430(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x138c948
jmp 0x138c94a
movq 0x2e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x138c9a5
movq %rax, %rdi
callq 0x678a0
jmp 0x138c9a7
leaq 0x11c8(%rsp), %rax
movq %rax, 0x2510(%rsp)
movq 0x2510(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2d0(%rsp)
leaq 0x11c8(%rsp), %rax
movq %rax, 0x2778(%rsp)
movq 0x2778(%rsp), %rax
movq %rax, 0x4028(%rsp)
movq 0x4028(%rsp), %rax
movq %rax, 0x2d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138ca98
movq 0x2d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4024(%rsp) # imm = 0xFFFFFFFF
movl 0x4024(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4020(%rsp)
cmpl $0x1, 0x4020(%rsp)
jne 0x138ca98
movq 0x2d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138ca66
movq 0x2d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x138ca64
jmp 0x138ca96
movq 0x2d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4558(%rsp)
cmpq $0x0, 0x4558(%rsp)
je 0x138ca94
movq 0x4558(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x138ca96
jmp 0x138ca98
movq 0x2d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x138caf3
movq %rax, %rdi
callq 0x678a0
movq 0x2d0(%rsp), %rax
movq %rax, 0x1210(%rsp)
movq 0x2180(%rsp), %rcx
movl 0x121c(%rsp), %eax
leaq 0x1178(%rsp), %rdx
movq %rdx, 0x22d0(%rsp)
movq %rcx, 0x22c8(%rsp)
movl %eax, 0x22c4(%rsp)
movq 0x22c8(%rsp), %rax
movq %rax, 0x2c8(%rsp)
movb $0x0, 0x22c3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22c4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1178(%rsp), %r10
movq %r10, 0x3a08(%rsp)
movl %r9d, 0x3a04(%rsp)
movl %r8d, 0x3a00(%rsp)
movl %edi, 0x39fc(%rsp)
movq %rsi, 0x39f0(%rsp)
movq %rdx, 0x39e8(%rsp)
movl %ecx, 0x39e4(%rsp)
movq %rax, 0x39d8(%rsp)
movq 0x3a08(%rsp), %rcx
movq %rcx, 0x2c0(%rsp)
movq 0x39f0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x39e8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x39e4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x39d8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3a04(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3a00(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x39fc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3bc8(%rsp)
movl $0x10, 0x3bc4(%rsp)
movq 0x3bc8(%rsp), %rax
movslq 0x3bc4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bc4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2c8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x11a0(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x138ccbf
movq 0x2c8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x11b8(%rsp)
movb $0x1, 0x22c3(%rsp)
testb $0x1, 0x22c3(%rsp)
jne 0x138ce00
leaq 0x1178(%rsp), %rax
movq %rax, 0x2658(%rsp)
movq 0x2658(%rsp), %rax
movq %rax, 0x4268(%rsp)
movq 0x4268(%rsp), %rax
movq %rax, 0x2b8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138cda3
movq 0x2b8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4264(%rsp) # imm = 0xFFFFFFFF
movl 0x4264(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4260(%rsp)
cmpl $0x1, 0x4260(%rsp)
jne 0x138cda3
movq 0x2b8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138cd71
movq 0x2b8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x138cd6f
jmp 0x138cda1
movq 0x2b8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4438(%rsp)
cmpq $0x0, 0x4438(%rsp)
je 0x138cd9f
movq 0x4438(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x138cda1
jmp 0x138cda3
movq 0x2b8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x138cdfe
movq %rax, %rdi
callq 0x678a0
jmp 0x138ce00
leaq 0x1178(%rsp), %rax
movq %rax, 0x2508(%rsp)
movq 0x2508(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x2a8(%rsp)
leaq 0x1178(%rsp), %rax
movq %rax, 0x2780(%rsp)
movq 0x2780(%rsp), %rax
movq %rax, 0x4018(%rsp)
movq 0x4018(%rsp), %rax
movq %rax, 0x2b0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138cef1
movq 0x2b0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4014(%rsp) # imm = 0xFFFFFFFF
movl 0x4014(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4010(%rsp)
cmpl $0x1, 0x4010(%rsp)
jne 0x138cef1
movq 0x2b0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138cebf
movq 0x2b0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x138cebd
jmp 0x138ceef
movq 0x2b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4560(%rsp)
cmpq $0x0, 0x4560(%rsp)
je 0x138ceed
movq 0x4560(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x138ceef
jmp 0x138cef1
movq 0x2b0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x138cf4c
movq %rax, %rdi
callq 0x678a0
movq 0x2a8(%rsp), %rax
movq %rax, 0x11c0(%rsp)
movq 0x2178(%rsp), %rcx
movl 0x121c(%rsp), %eax
leaq 0x1128(%rsp), %rdx
movq %rdx, 0x28c0(%rsp)
movq %rcx, 0x28b8(%rsp)
movl %eax, 0x28b4(%rsp)
movq 0x28b8(%rsp), %rax
movq %rax, 0x2a0(%rsp)
movb $0x0, 0x28b3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x28b4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1128(%rsp), %r10
movq %r10, 0x3458(%rsp)
movl %r9d, 0x3454(%rsp)
movl %r8d, 0x3450(%rsp)
movl %edi, 0x344c(%rsp)
movq %rsi, 0x3440(%rsp)
movq %rdx, 0x3438(%rsp)
movl %ecx, 0x3434(%rsp)
movq %rax, 0x3428(%rsp)
movq 0x3458(%rsp), %rcx
movq %rcx, 0x298(%rsp)
movq 0x3440(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3438(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3434(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3428(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3454(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3450(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x344c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d68(%rsp)
movl $0x10, 0x3d64(%rsp)
movq 0x3d68(%rsp), %rax
movslq 0x3d64(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d64(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x2a0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1150(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x138d118
movq 0x2a0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1168(%rsp)
movb $0x1, 0x28b3(%rsp)
testb $0x1, 0x28b3(%rsp)
jne 0x138d259
leaq 0x1128(%rsp), %rax
movq %rax, 0x28c8(%rsp)
movq 0x28c8(%rsp), %rax
movq %rax, 0x3ed8(%rsp)
movq 0x3ed8(%rsp), %rax
movq %rax, 0x290(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138d1fc
movq 0x290(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ed4(%rsp) # imm = 0xFFFFFFFF
movl 0x3ed4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ed0(%rsp)
cmpl $0x1, 0x3ed0(%rsp)
jne 0x138d1fc
movq 0x290(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138d1ca
movq 0x290(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x138d1c8
jmp 0x138d1fa
movq 0x290(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4600(%rsp)
cmpq $0x0, 0x4600(%rsp)
je 0x138d1f8
movq 0x4600(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x138d1fa
jmp 0x138d1fc
movq 0x290(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x138d257
movq %rax, %rdi
callq 0x678a0
jmp 0x138d259
leaq 0x1128(%rsp), %rax
movq %rax, 0x2a70(%rsp)
movq 0x2a70(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x280(%rsp)
leaq 0x1128(%rsp), %rax
movq %rax, 0x2788(%rsp)
movq 0x2788(%rsp), %rax
movq %rax, 0x4008(%rsp)
movq 0x4008(%rsp), %rax
movq %rax, 0x288(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138d34a
movq 0x288(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4004(%rsp) # imm = 0xFFFFFFFF
movl 0x4004(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4000(%rsp)
cmpl $0x1, 0x4000(%rsp)
jne 0x138d34a
movq 0x288(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138d318
movq 0x288(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x138d316
jmp 0x138d348
movq 0x288(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4568(%rsp)
cmpq $0x0, 0x4568(%rsp)
je 0x138d346
movq 0x4568(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x138d348
jmp 0x138d34a
movq 0x288(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x138d3a5
movq %rax, %rdi
callq 0x678a0
movq 0x280(%rsp), %rax
movq %rax, 0x1170(%rsp)
movl $0x0, 0x1124(%rsp)
movl 0x1124(%rsp), %eax
cmpl 0x2144(%rsp), %eax
jge 0x138d504
movl $0x0, 0x1120(%rsp)
movl 0x1120(%rsp), %eax
cmpl 0x2148(%rsp), %eax
jge 0x138d4ec
movq 0x1210(%rsp), %rax
movl 0x1120(%rsp), %ecx
shll $0x3, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2b98(%rsp)
movq 0x2b98(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x1100(%rsp)
movq 0x11c0(%rsp), %rax
movq %rax, 0x2b90(%rsp)
movq 0x2b90(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x10e0(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0x1100(%rsp), %rsi
leaq 0x10e0(%rsp), %rdx
callq 0x1453880
vmovaps %ymm0, 0x10c0(%rsp)
movq 0x1170(%rsp), %rax
vmovaps 0x10c0(%rsp), %ymm0
movq %rax, 0x2e78(%rsp)
vmovaps %ymm0, 0x2e40(%rsp)
vmovaps 0x2e40(%rsp), %ymm0
movq 0x2e78(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x11c0(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x11c0(%rsp)
movq 0x1170(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1170(%rsp)
movl 0x1120(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1120(%rsp)
jmp 0x138d3df
jmp 0x138d4ee
movl 0x1124(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x1124(%rsp)
jmp 0x138d3c0
jmp 0x138d506
movl 0x121c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x121c(%rsp)
jmp 0x138c696
movl $0x0, 0x2194(%rsp)
jmp 0x1391fba
movq 0x2188(%rsp), %rdi
movq 0x2180(%rsp), %rsi
movq 0x2178(%rsp), %rdx
movq 0x2170(%rsp), %rcx
callq 0x1444a90
movl %eax, 0x2194(%rsp)
jmp 0x1391fba
movq 0x2178(%rsp), %rdi
movl 0x2168(%rsp), %esi
movl 0x2164(%rsp), %edx
movl 0x215c(%rsp), %ecx
movq 0x2150(%rsp), %r8
movl 0x214c(%rsp), %r9d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2178(%rsp), %rax
movq %rax, 0x21d8(%rsp)
movq 0x21d8(%rsp), %rcx
movq %rcx, 0x270(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x27f(%rsp)
je 0x138d600
movq 0x270(%rsp), %rax
movq %rax, 0x3178(%rsp)
movq 0x3178(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x27f(%rsp)
movb 0x27f(%rsp), %al
testb $0x1, %al
jne 0x138d60d
jmp 0x138d61d
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x1391fba
movq 0x2180(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x138e0be
movl $0x0, 0x10bc(%rsp)
movl 0x10bc(%rsp), %eax
cmpl 0x215c(%rsp), %eax
jge 0x138e0ae
movq 0x2188(%rsp), %rcx
movl 0x10bc(%rsp), %eax
leaq 0x1068(%rsp), %rdx
movq %rdx, 0x22b8(%rsp)
movq %rcx, 0x22b0(%rsp)
movl %eax, 0x22ac(%rsp)
movq 0x22b0(%rsp), %rax
movq %rax, 0x268(%rsp)
movb $0x0, 0x22ab(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x22ac(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1068(%rsp), %r10
movq %r10, 0x3a40(%rsp)
movl %r9d, 0x3a3c(%rsp)
movl %r8d, 0x3a38(%rsp)
movl %edi, 0x3a34(%rsp)
movq %rsi, 0x3a28(%rsp)
movq %rdx, 0x3a20(%rsp)
movl %ecx, 0x3a1c(%rsp)
movq %rax, 0x3a10(%rsp)
movq 0x3a40(%rsp), %rcx
movq %rcx, 0x260(%rsp)
movq 0x3a28(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3a20(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3a1c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3a10(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3a3c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3a38(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3a34(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3bb8(%rsp)
movl $0x10, 0x3bb4(%rsp)
movq 0x3bb8(%rsp), %rax
movslq 0x3bb4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3bb4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x268(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1090(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x138d80a
movq 0x268(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x10a8(%rsp)
movb $0x1, 0x22ab(%rsp)
testb $0x1, 0x22ab(%rsp)
jne 0x138d94b
leaq 0x1068(%rsp), %rax
movq %rax, 0x2660(%rsp)
movq 0x2660(%rsp), %rax
movq %rax, 0x4258(%rsp)
movq 0x4258(%rsp), %rax
movq %rax, 0x258(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138d8ee
movq 0x258(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4254(%rsp) # imm = 0xFFFFFFFF
movl 0x4254(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4250(%rsp)
cmpl $0x1, 0x4250(%rsp)
jne 0x138d8ee
movq 0x258(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138d8bc
movq 0x258(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x138d8ba
jmp 0x138d8ec
movq 0x258(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4440(%rsp)
cmpq $0x0, 0x4440(%rsp)
je 0x138d8ea
movq 0x4440(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x138d8ec
jmp 0x138d8ee
movq 0x258(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x138d949
movq %rax, %rdi
callq 0x678a0
jmp 0x138d94b
leaq 0x1068(%rsp), %rax
movq %rax, 0x2500(%rsp)
movq 0x2500(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x248(%rsp)
leaq 0x1068(%rsp), %rax
movq %rax, 0x2790(%rsp)
movq 0x2790(%rsp), %rax
movq %rax, 0x3ff8(%rsp)
movq 0x3ff8(%rsp), %rax
movq %rax, 0x250(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138da3c
movq 0x250(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ff4(%rsp) # imm = 0xFFFFFFFF
movl 0x3ff4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ff0(%rsp)
cmpl $0x1, 0x3ff0(%rsp)
jne 0x138da3c
movq 0x250(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138da0a
movq 0x250(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x138da08
jmp 0x138da3a
movq 0x250(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4570(%rsp)
cmpq $0x0, 0x4570(%rsp)
je 0x138da38
movq 0x4570(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x138da3a
jmp 0x138da3c
movq 0x250(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x138da97
movq %rax, %rdi
callq 0x678a0
movq 0x248(%rsp), %rax
movq %rax, 0x10b0(%rsp)
movq 0x2180(%rsp), %rcx
movl 0x10bc(%rsp), %eax
movq %rcx, 0x2af8(%rsp)
movl %eax, 0x2af4(%rsp)
movq 0x2af8(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2af4(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0x1060(%rsp)
movq 0x2178(%rsp), %rcx
movl 0x10bc(%rsp), %eax
leaq 0x1010(%rsp), %rdx
movq %rdx, 0x28a0(%rsp)
movq %rcx, 0x2898(%rsp)
movl %eax, 0x2894(%rsp)
movq 0x2898(%rsp), %rax
movq %rax, 0x240(%rsp)
movb $0x0, 0x2893(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2894(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x1010(%rsp), %r10
movq %r10, 0x3490(%rsp)
movl %r9d, 0x348c(%rsp)
movl %r8d, 0x3488(%rsp)
movl %edi, 0x3484(%rsp)
movq %rsi, 0x3478(%rsp)
movq %rdx, 0x3470(%rsp)
movl %ecx, 0x346c(%rsp)
movq %rax, 0x3460(%rsp)
movq 0x3490(%rsp), %rcx
movq %rcx, 0x238(%rsp)
movq 0x3478(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3470(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x346c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3460(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x348c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3488(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3484(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d58(%rsp)
movl $0x10, 0x3d54(%rsp)
movq 0x3d58(%rsp), %rax
movslq 0x3d54(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d54(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x240(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x1038(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x138dcac
movq 0x240(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x1050(%rsp)
movb $0x1, 0x2893(%rsp)
testb $0x1, 0x2893(%rsp)
jne 0x138dded
leaq 0x1010(%rsp), %rax
movq %rax, 0x28a8(%rsp)
movq 0x28a8(%rsp), %rax
movq %rax, 0x3ee8(%rsp)
movq 0x3ee8(%rsp), %rax
movq %rax, 0x230(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138dd90
movq 0x230(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ee4(%rsp) # imm = 0xFFFFFFFF
movl 0x3ee4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ee0(%rsp)
cmpl $0x1, 0x3ee0(%rsp)
jne 0x138dd90
movq 0x230(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138dd5e
movq 0x230(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x138dd5c
jmp 0x138dd8e
movq 0x230(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45f8(%rsp)
cmpq $0x0, 0x45f8(%rsp)
je 0x138dd8c
movq 0x45f8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x138dd8e
jmp 0x138dd90
movq 0x230(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x138ddeb
movq %rax, %rdi
callq 0x678a0
jmp 0x138dded
leaq 0x1010(%rsp), %rax
movq %rax, 0x2a68(%rsp)
movq 0x2a68(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x220(%rsp)
leaq 0x1010(%rsp), %rax
movq %rax, 0x2798(%rsp)
movq 0x2798(%rsp), %rax
movq %rax, 0x3fe8(%rsp)
movq 0x3fe8(%rsp), %rax
movq %rax, 0x228(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138dede
movq 0x228(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fe4(%rsp) # imm = 0xFFFFFFFF
movl 0x3fe4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fe0(%rsp)
cmpl $0x1, 0x3fe0(%rsp)
jne 0x138dede
movq 0x228(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138deac
movq 0x228(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x138deaa
jmp 0x138dedc
movq 0x228(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4578(%rsp)
cmpq $0x0, 0x4578(%rsp)
je 0x138deda
movq 0x4578(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x138dedc
jmp 0x138dede
movq 0x228(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x138df39
movq %rax, %rdi
callq 0x678a0
movq 0x220(%rsp), %rax
movq %rax, 0x1058(%rsp)
movl $0x0, 0x100c(%rsp)
movl 0x100c(%rsp), %eax
cmpl 0x2164(%rsp), %eax
jge 0x138e096
movq 0x1060(%rsp), %rax
movq %rax, 0x2b88(%rsp)
movq 0x2b88(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0xfe0(%rsp)
movl $0x0, 0xfdc(%rsp)
movl 0xfdc(%rsp), %eax
cmpl 0x2168(%rsp), %eax
jge 0x138e06c
movq 0x10b0(%rsp), %rax
movq %rax, 0x2b80(%rsp)
movq 0x2b80(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0xfa0(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0xfa0(%rsp), %rsi
leaq 0xfe0(%rsp), %rdx
callq 0x1453880
vmovaps %ymm0, 0xf80(%rsp)
movq 0x1058(%rsp), %rax
vmovaps 0xf80(%rsp), %ymm0
movq %rax, 0x2e38(%rsp)
vmovaps %ymm0, 0x2e00(%rsp)
vmovaps 0x2e00(%rsp), %ymm0
movq 0x2e38(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x10b0(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x10b0(%rsp)
movq 0x1058(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1058(%rsp)
movl 0xfdc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xfdc(%rsp)
jmp 0x138df98
movq 0x1060(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x1060(%rsp)
movl 0x100c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x100c(%rsp)
jmp 0x138df54
jmp 0x138e098
movl 0x10bc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x10bc(%rsp)
jmp 0x138d63a
movl $0x0, 0x2194(%rsp)
jmp 0x1391fba
movq 0x2180(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x138eb3d
movq 0x2180(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x138e119
cmpl $0x1, 0x212c(%rsp)
jne 0x138e119
movq 0x2188(%rsp), %rdi
movq 0x2180(%rsp), %rsi
movq 0x2178(%rsp), %rdx
movq 0x2170(%rsp), %rcx
callq 0x1445ca0
movl %eax, 0x2194(%rsp)
jmp 0x1391fba
movl $0x0, 0xf7c(%rsp)
movl 0xf7c(%rsp), %eax
cmpl 0x215c(%rsp), %eax
jge 0x138eb2d
movq 0x2188(%rsp), %rcx
movl 0xf7c(%rsp), %eax
leaq 0xf28(%rsp), %rdx
movq %rdx, 0x22a0(%rsp)
movq %rcx, 0x2298(%rsp)
movl %eax, 0x2294(%rsp)
movq 0x2298(%rsp), %rax
movq %rax, 0x218(%rsp)
movb $0x0, 0x2293(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2294(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xf28(%rsp), %r10
movq %r10, 0x3a78(%rsp)
movl %r9d, 0x3a74(%rsp)
movl %r8d, 0x3a70(%rsp)
movl %edi, 0x3a6c(%rsp)
movq %rsi, 0x3a60(%rsp)
movq %rdx, 0x3a58(%rsp)
movl %ecx, 0x3a54(%rsp)
movq %rax, 0x3a48(%rsp)
movq 0x3a78(%rsp), %rcx
movq %rcx, 0x210(%rsp)
movq 0x3a60(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3a58(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3a54(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3a48(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3a74(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3a70(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3a6c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3ba8(%rsp)
movl $0x10, 0x3ba4(%rsp)
movq 0x3ba8(%rsp), %rax
movslq 0x3ba4(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3ba4(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x218(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xf50(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x138e2f4
movq 0x218(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xf68(%rsp)
movb $0x1, 0x2293(%rsp)
testb $0x1, 0x2293(%rsp)
jne 0x138e435
leaq 0xf28(%rsp), %rax
movq %rax, 0x2668(%rsp)
movq 0x2668(%rsp), %rax
movq %rax, 0x4248(%rsp)
movq 0x4248(%rsp), %rax
movq %rax, 0x208(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138e3d8
movq 0x208(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4244(%rsp) # imm = 0xFFFFFFFF
movl 0x4244(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4240(%rsp)
cmpl $0x1, 0x4240(%rsp)
jne 0x138e3d8
movq 0x208(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138e3a6
movq 0x208(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x138e3a4
jmp 0x138e3d6
movq 0x208(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4448(%rsp)
cmpq $0x0, 0x4448(%rsp)
je 0x138e3d4
movq 0x4448(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x138e3d6
jmp 0x138e3d8
movq 0x208(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x138e433
movq %rax, %rdi
callq 0x678a0
jmp 0x138e435
leaq 0xf28(%rsp), %rax
movq %rax, 0x24f8(%rsp)
movq 0x24f8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1f8(%rsp)
leaq 0xf28(%rsp), %rax
movq %rax, 0x27a0(%rsp)
movq 0x27a0(%rsp), %rax
movq %rax, 0x3fd8(%rsp)
movq 0x3fd8(%rsp), %rax
movq %rax, 0x200(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138e526
movq 0x200(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fd4(%rsp) # imm = 0xFFFFFFFF
movl 0x3fd4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fd0(%rsp)
cmpl $0x1, 0x3fd0(%rsp)
jne 0x138e526
movq 0x200(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138e4f4
movq 0x200(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x138e4f2
jmp 0x138e524
movq 0x200(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4580(%rsp)
cmpq $0x0, 0x4580(%rsp)
je 0x138e522
movq 0x4580(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x138e524
jmp 0x138e526
movq 0x200(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x138e581
movq %rax, %rdi
callq 0x678a0
movq 0x1f8(%rsp), %rax
movq %rax, 0xf70(%rsp)
movq 0x2180(%rsp), %rax
movq %rax, 0x24f0(%rsp)
movq 0x24f0(%rsp), %rax
movq (%rax), %rax
movl 0xf7c(%rsp), %ecx
shll $0x3, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2b78(%rsp)
movq 0x2b78(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0xf00(%rsp)
movq 0x2178(%rsp), %rcx
movl 0xf7c(%rsp), %eax
leaq 0xeb0(%rsp), %rdx
movq %rdx, 0x2880(%rsp)
movq %rcx, 0x2878(%rsp)
movl %eax, 0x2874(%rsp)
movq 0x2878(%rsp), %rax
movq %rax, 0x1f0(%rsp)
movb $0x0, 0x2873(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2874(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xeb0(%rsp), %r10
movq %r10, 0x34c8(%rsp)
movl %r9d, 0x34c4(%rsp)
movl %r8d, 0x34c0(%rsp)
movl %edi, 0x34bc(%rsp)
movq %rsi, 0x34b0(%rsp)
movq %rdx, 0x34a8(%rsp)
movl %ecx, 0x34a4(%rsp)
movq %rax, 0x3498(%rsp)
movq 0x34c8(%rsp), %rcx
movq %rcx, 0x1e8(%rsp)
movq 0x34b0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x34a8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x34a4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3498(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x34c4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x34c0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x34bc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d48(%rsp)
movl $0x10, 0x3d44(%rsp)
movq 0x3d48(%rsp), %rax
movslq 0x3d44(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d44(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x1f0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xed8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x138e799
movq 0x1f0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xef0(%rsp)
movb $0x1, 0x2873(%rsp)
testb $0x1, 0x2873(%rsp)
jne 0x138e8da
leaq 0xeb0(%rsp), %rax
movq %rax, 0x2888(%rsp)
movq 0x2888(%rsp), %rax
movq %rax, 0x3ef8(%rsp)
movq 0x3ef8(%rsp), %rax
movq %rax, 0x1e0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138e87d
movq 0x1e0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3ef4(%rsp) # imm = 0xFFFFFFFF
movl 0x3ef4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3ef0(%rsp)
cmpl $0x1, 0x3ef0(%rsp)
jne 0x138e87d
movq 0x1e0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138e84b
movq 0x1e0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x138e849
jmp 0x138e87b
movq 0x1e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45f0(%rsp)
cmpq $0x0, 0x45f0(%rsp)
je 0x138e879
movq 0x45f0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x138e87b
jmp 0x138e87d
movq 0x1e0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x138e8d8
movq %rax, %rdi
callq 0x678a0
jmp 0x138e8da
leaq 0xeb0(%rsp), %rax
movq %rax, 0x2a60(%rsp)
movq 0x2a60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x1d0(%rsp)
leaq 0xeb0(%rsp), %rax
movq %rax, 0x27a8(%rsp)
movq 0x27a8(%rsp), %rax
movq %rax, 0x3fc8(%rsp)
movq 0x3fc8(%rsp), %rax
movq %rax, 0x1d8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138e9cb
movq 0x1d8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fc4(%rsp) # imm = 0xFFFFFFFF
movl 0x3fc4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fc0(%rsp)
cmpl $0x1, 0x3fc0(%rsp)
jne 0x138e9cb
movq 0x1d8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138e999
movq 0x1d8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x138e997
jmp 0x138e9c9
movq 0x1d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4588(%rsp)
cmpq $0x0, 0x4588(%rsp)
je 0x138e9c7
movq 0x4588(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x138e9c9
jmp 0x138e9cb
movq 0x1d8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x138ea26
movq %rax, %rdi
callq 0x678a0
movq 0x1d0(%rsp), %rax
movq %rax, 0xef8(%rsp)
movl $0x0, 0xeac(%rsp)
movl 0xeac(%rsp), %eax
cmpl 0x2158(%rsp), %eax
jge 0x138eb15
movq 0xf70(%rsp), %rax
movq %rax, 0x2b70(%rsp)
movq 0x2b70(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0xe80(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0xe80(%rsp), %rsi
leaq 0xf00(%rsp), %rdx
callq 0x1453880
vmovaps %ymm0, 0xe60(%rsp)
movq 0xef8(%rsp), %rax
vmovaps 0xe60(%rsp), %ymm0
movq %rax, 0x2df8(%rsp)
vmovaps %ymm0, 0x2dc0(%rsp)
vmovaps 0x2dc0(%rsp), %ymm0
movq 0x2df8(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0xf70(%rsp), %rax
addq $0x20, %rax
movq %rax, 0xf70(%rsp)
movq 0xef8(%rsp), %rax
addq $0x20, %rax
movq %rax, 0xef8(%rsp)
movl 0xeac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xeac(%rsp)
jmp 0x138ea41
jmp 0x138eb17
movl 0xf7c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xf7c(%rsp)
jmp 0x138e124
movl $0x0, 0x2194(%rsp)
jmp 0x1391fba
jmp 0x1391fad
movq 0x2188(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1390629
movq 0x2180(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x138f6f9
movq 0x2178(%rsp), %rdi
movl 0x2148(%rsp), %esi
movl 0x2144(%rsp), %edx
movl 0x2140(%rsp), %ecx
movl 0x213c(%rsp), %r8d
movq 0x2130(%rsp), %r9
movl 0x212c(%rsp), %r10d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x2178(%rsp), %rax
movq %rax, 0x21d0(%rsp)
movq 0x21d0(%rsp), %rcx
movq %rcx, 0x1c0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1cf(%rsp)
je 0x138ec16
movq 0x1c0(%rsp), %rax
movq %rax, 0x3180(%rsp)
movq 0x3180(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1cf(%rsp)
movb 0x1cf(%rsp), %al
testb $0x1, %al
jne 0x138ec23
jmp 0x138ec33
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x1391fba
movl $0x0, 0xe5c(%rsp)
movl 0xe5c(%rsp), %eax
cmpl 0x213c(%rsp), %eax
jge 0x138f6e9
movq 0x2188(%rsp), %rcx
movl 0xe5c(%rsp), %eax
movq %rcx, 0x2ae8(%rsp)
movl %eax, 0x2ae4(%rsp)
movq 0x2ae8(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2ae4(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xe50(%rsp)
movq 0x2180(%rsp), %rcx
movl 0xe5c(%rsp), %eax
leaq 0xe00(%rsp), %rdx
movq %rdx, 0x2288(%rsp)
movq %rcx, 0x2280(%rsp)
movl %eax, 0x227c(%rsp)
movq 0x2280(%rsp), %rax
movq %rax, 0x1b8(%rsp)
movb $0x0, 0x227b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x227c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xe00(%rsp), %r10
movq %r10, 0x3ab0(%rsp)
movl %r9d, 0x3aac(%rsp)
movl %r8d, 0x3aa8(%rsp)
movl %edi, 0x3aa4(%rsp)
movq %rsi, 0x3a98(%rsp)
movq %rdx, 0x3a90(%rsp)
movl %ecx, 0x3a8c(%rsp)
movq %rax, 0x3a80(%rsp)
movq 0x3ab0(%rsp), %rcx
movq %rcx, 0x1b0(%rsp)
movq 0x3a98(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3a90(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3a8c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3a80(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3aac(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3aa8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3aa4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b98(%rsp)
movl $0x10, 0x3b94(%rsp)
movq 0x3b98(%rsp), %rax
movslq 0x3b94(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b94(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x1b8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xe28(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x138ee57
movq 0x1b8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xe40(%rsp)
movb $0x1, 0x227b(%rsp)
testb $0x1, 0x227b(%rsp)
jne 0x138ef98
leaq 0xe00(%rsp), %rax
movq %rax, 0x2670(%rsp)
movq 0x2670(%rsp), %rax
movq %rax, 0x4238(%rsp)
movq 0x4238(%rsp), %rax
movq %rax, 0x1a8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138ef3b
movq 0x1a8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4234(%rsp) # imm = 0xFFFFFFFF
movl 0x4234(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4230(%rsp)
cmpl $0x1, 0x4230(%rsp)
jne 0x138ef3b
movq 0x1a8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138ef09
movq 0x1a8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x138ef07
jmp 0x138ef39
movq 0x1a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4450(%rsp)
cmpq $0x0, 0x4450(%rsp)
je 0x138ef37
movq 0x4450(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x138ef39
jmp 0x138ef3b
movq 0x1a8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x138ef96
movq %rax, %rdi
callq 0x678a0
jmp 0x138ef98
leaq 0xe00(%rsp), %rax
movq %rax, 0x24e8(%rsp)
movq 0x24e8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x198(%rsp)
leaq 0xe00(%rsp), %rax
movq %rax, 0x27b0(%rsp)
movq 0x27b0(%rsp), %rax
movq %rax, 0x3fb8(%rsp)
movq 0x3fb8(%rsp), %rax
movq %rax, 0x1a0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138f089
movq 0x1a0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fb4(%rsp) # imm = 0xFFFFFFFF
movl 0x3fb4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fb0(%rsp)
cmpl $0x1, 0x3fb0(%rsp)
jne 0x138f089
movq 0x1a0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138f057
movq 0x1a0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x138f055
jmp 0x138f087
movq 0x1a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4590(%rsp)
cmpq $0x0, 0x4590(%rsp)
je 0x138f085
movq 0x4590(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x138f087
jmp 0x138f089
movq 0x1a0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x138f0e4
movq %rax, %rdi
callq 0x678a0
movq 0x198(%rsp), %rax
movq %rax, 0xe48(%rsp)
movq 0x2178(%rsp), %rcx
movl 0xe5c(%rsp), %eax
leaq 0xdb0(%rsp), %rdx
movq %rdx, 0x2860(%rsp)
movq %rcx, 0x2858(%rsp)
movl %eax, 0x2854(%rsp)
movq 0x2858(%rsp), %rax
movq %rax, 0x190(%rsp)
movb $0x0, 0x2853(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2854(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xdb0(%rsp), %r10
movq %r10, 0x3500(%rsp)
movl %r9d, 0x34fc(%rsp)
movl %r8d, 0x34f8(%rsp)
movl %edi, 0x34f4(%rsp)
movq %rsi, 0x34e8(%rsp)
movq %rdx, 0x34e0(%rsp)
movl %ecx, 0x34dc(%rsp)
movq %rax, 0x34d0(%rsp)
movq 0x3500(%rsp), %rcx
movq %rcx, 0x188(%rsp)
movq 0x34e8(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x34e0(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x34dc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x34d0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x34fc(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x34f8(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x34f4(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d38(%rsp)
movl $0x10, 0x3d34(%rsp)
movq 0x3d38(%rsp), %rax
movslq 0x3d34(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d34(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x190(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xdd8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x138f2b0
movq 0x190(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xdf0(%rsp)
movb $0x1, 0x2853(%rsp)
testb $0x1, 0x2853(%rsp)
jne 0x138f3f1
leaq 0xdb0(%rsp), %rax
movq %rax, 0x2868(%rsp)
movq 0x2868(%rsp), %rax
movq %rax, 0x3f08(%rsp)
movq 0x3f08(%rsp), %rax
movq %rax, 0x180(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138f394
movq 0x180(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f04(%rsp) # imm = 0xFFFFFFFF
movl 0x3f04(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f00(%rsp)
cmpl $0x1, 0x3f00(%rsp)
jne 0x138f394
movq 0x180(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138f362
movq 0x180(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x138f360
jmp 0x138f392
movq 0x180(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45e8(%rsp)
cmpq $0x0, 0x45e8(%rsp)
je 0x138f390
movq 0x45e8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x138f392
jmp 0x138f394
movq 0x180(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x138f3ef
movq %rax, %rdi
callq 0x678a0
jmp 0x138f3f1
leaq 0xdb0(%rsp), %rax
movq %rax, 0x2a58(%rsp)
movq 0x2a58(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x170(%rsp)
leaq 0xdb0(%rsp), %rax
movq %rax, 0x27b8(%rsp)
movq 0x27b8(%rsp), %rax
movq %rax, 0x3fa8(%rsp)
movq 0x3fa8(%rsp), %rax
movq %rax, 0x178(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138f4e2
movq 0x178(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3fa4(%rsp) # imm = 0xFFFFFFFF
movl 0x3fa4(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3fa0(%rsp)
cmpl $0x1, 0x3fa0(%rsp)
jne 0x138f4e2
movq 0x178(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138f4b0
movq 0x178(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x138f4ae
jmp 0x138f4e0
movq 0x178(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4598(%rsp)
cmpq $0x0, 0x4598(%rsp)
je 0x138f4de
movq 0x4598(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x138f4e0
jmp 0x138f4e2
movq 0x178(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x138f53d
movq %rax, %rdi
callq 0x678a0
movq 0x170(%rsp), %rax
movq %rax, 0xdf8(%rsp)
movl $0x0, 0xdac(%rsp)
movl 0xdac(%rsp), %eax
cmpl 0x2140(%rsp), %eax
jge 0x138f6d1
movq 0xe50(%rsp), %rax
movq %rax, 0x2b68(%rsp)
movq 0x2b68(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0xd80(%rsp)
movl $0x0, 0xd7c(%rsp)
movl 0xd7c(%rsp), %eax
cmpl 0x2144(%rsp), %eax
jge 0x138f6a7
movl $0x0, 0xd78(%rsp)
movl 0xd78(%rsp), %eax
cmpl 0x2148(%rsp), %eax
jge 0x138f68f
movq 0xe48(%rsp), %rax
movq %rax, 0x2b60(%rsp)
movq 0x2b60(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0xd40(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0xd80(%rsp), %rsi
leaq 0xd40(%rsp), %rdx
callq 0x1453880
vmovaps %ymm0, 0xd20(%rsp)
movq 0xdf8(%rsp), %rax
vmovaps 0xd20(%rsp), %ymm0
movq %rax, 0x2db8(%rsp)
vmovaps %ymm0, 0x2d80(%rsp)
vmovaps 0x2d80(%rsp), %ymm0
movq 0x2db8(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0xe48(%rsp), %rax
addq $0x20, %rax
movq %rax, 0xe48(%rsp)
movq 0xdf8(%rsp), %rax
addq $0x20, %rax
movq %rax, 0xdf8(%rsp)
movl 0xd78(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xd78(%rsp)
jmp 0x138f5bb
jmp 0x138f691
movl 0xd7c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xd7c(%rsp)
jmp 0x138f59c
movq 0xe50(%rsp), %rax
addq $0x20, %rax
movq %rax, 0xe50(%rsp)
movl 0xdac(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xdac(%rsp)
jmp 0x138f558
jmp 0x138f6d3
movl 0xe5c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xe5c(%rsp)
jmp 0x138ec3e
movl $0x0, 0x2194(%rsp)
jmp 0x1391fba
movq 0x2180(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x139025a
movq 0x2178(%rsp), %rdi
movl 0x2148(%rsp), %esi
movl 0x2144(%rsp), %edx
movl 0x213c(%rsp), %ecx
movq 0x2130(%rsp), %r8
movl 0x212c(%rsp), %r9d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2178(%rsp), %rax
movq %rax, 0x21c8(%rsp)
movq 0x21c8(%rsp), %rcx
movq %rcx, 0x160(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x16f(%rsp)
je 0x138f7ae
movq 0x160(%rsp), %rax
movq %rax, 0x3188(%rsp)
movq 0x3188(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x16f(%rsp)
movb 0x16f(%rsp), %al
testb $0x1, %al
jne 0x138f7bb
jmp 0x138f7cb
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x1391fba
movl $0x0, 0xd1c(%rsp)
movl 0xd1c(%rsp), %eax
cmpl 0x213c(%rsp), %eax
jge 0x139024a
movq 0x2188(%rsp), %rcx
movl 0xd1c(%rsp), %eax
movq %rcx, 0x2ad8(%rsp)
movl %eax, 0x2ad4(%rsp)
movq 0x2ad8(%rsp), %rdx
movq (%rdx), %rax
movslq 0x2c(%rdx), %rcx
movslq 0x2ad4(%rsp), %rsi
imulq %rsi, %rcx
imulq 0x10(%rdx), %rcx
addq %rcx, %rax
movq %rax, 0xd10(%rsp)
movq 0x2180(%rsp), %rcx
movl 0xd1c(%rsp), %eax
leaq 0xcc0(%rsp), %rdx
movq %rdx, 0x2270(%rsp)
movq %rcx, 0x2268(%rsp)
movl %eax, 0x2264(%rsp)
movq 0x2268(%rsp), %rax
movq %rax, 0x158(%rsp)
movb $0x0, 0x2263(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2264(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xcc0(%rsp), %r10
movq %r10, 0x3ae8(%rsp)
movl %r9d, 0x3ae4(%rsp)
movl %r8d, 0x3ae0(%rsp)
movl %edi, 0x3adc(%rsp)
movq %rsi, 0x3ad0(%rsp)
movq %rdx, 0x3ac8(%rsp)
movl %ecx, 0x3ac4(%rsp)
movq %rax, 0x3ab8(%rsp)
movq 0x3ae8(%rsp), %rcx
movq %rcx, 0x150(%rsp)
movq 0x3ad0(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3ac8(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3ac4(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3ab8(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3ae4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3ae0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3adc(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b88(%rsp)
movl $0x10, 0x3b84(%rsp)
movq 0x3b88(%rsp), %rax
movslq 0x3b84(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b84(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x158(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xce8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x138f9ef
movq 0x158(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xd00(%rsp)
movb $0x1, 0x2263(%rsp)
testb $0x1, 0x2263(%rsp)
jne 0x138fb30
leaq 0xcc0(%rsp), %rax
movq %rax, 0x2678(%rsp)
movq 0x2678(%rsp), %rax
movq %rax, 0x4228(%rsp)
movq 0x4228(%rsp), %rax
movq %rax, 0x148(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138fad3
movq 0x148(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4224(%rsp) # imm = 0xFFFFFFFF
movl 0x4224(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4220(%rsp)
cmpl $0x1, 0x4220(%rsp)
jne 0x138fad3
movq 0x148(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138faa1
movq 0x148(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x138fa9f
jmp 0x138fad1
movq 0x148(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4458(%rsp)
cmpq $0x0, 0x4458(%rsp)
je 0x138facf
movq 0x4458(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x138fad1
jmp 0x138fad3
movq 0x148(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x138fb2e
movq %rax, %rdi
callq 0x678a0
jmp 0x138fb30
leaq 0xcc0(%rsp), %rax
movq %rax, 0x24e0(%rsp)
movq 0x24e0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x138(%rsp)
leaq 0xcc0(%rsp), %rax
movq %rax, 0x27c0(%rsp)
movq 0x27c0(%rsp), %rax
movq %rax, 0x3f98(%rsp)
movq 0x3f98(%rsp), %rax
movq %rax, 0x140(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138fc21
movq 0x140(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f94(%rsp) # imm = 0xFFFFFFFF
movl 0x3f94(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f90(%rsp)
cmpl $0x1, 0x3f90(%rsp)
jne 0x138fc21
movq 0x140(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138fbef
movq 0x140(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x138fbed
jmp 0x138fc1f
movq 0x140(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45a0(%rsp)
cmpq $0x0, 0x45a0(%rsp)
je 0x138fc1d
movq 0x45a0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x138fc1f
jmp 0x138fc21
movq 0x140(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x138fc7c
movq %rax, %rdi
callq 0x678a0
movq 0x138(%rsp), %rax
movq %rax, 0xd08(%rsp)
movq 0x2178(%rsp), %rcx
movl 0xd1c(%rsp), %eax
leaq 0xc70(%rsp), %rdx
movq %rdx, 0x2840(%rsp)
movq %rcx, 0x2838(%rsp)
movl %eax, 0x2834(%rsp)
movq 0x2838(%rsp), %rax
movq %rax, 0x130(%rsp)
movb $0x0, 0x2833(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2834(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xc70(%rsp), %r10
movq %r10, 0x3538(%rsp)
movl %r9d, 0x3534(%rsp)
movl %r8d, 0x3530(%rsp)
movl %edi, 0x352c(%rsp)
movq %rsi, 0x3520(%rsp)
movq %rdx, 0x3518(%rsp)
movl %ecx, 0x3514(%rsp)
movq %rax, 0x3508(%rsp)
movq 0x3538(%rsp), %rcx
movq %rcx, 0x128(%rsp)
movq 0x3520(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3518(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3514(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3508(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3534(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3530(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x352c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d28(%rsp)
movl $0x10, 0x3d24(%rsp)
movq 0x3d28(%rsp), %rax
movslq 0x3d24(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d24(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x130(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xc98(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x138fe48
movq 0x130(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xcb0(%rsp)
movb $0x1, 0x2833(%rsp)
testb $0x1, 0x2833(%rsp)
jne 0x138ff89
leaq 0xc70(%rsp), %rax
movq %rax, 0x2848(%rsp)
movq 0x2848(%rsp), %rax
movq %rax, 0x3f18(%rsp)
movq 0x3f18(%rsp), %rax
movq %rax, 0x120(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x138ff2c
movq 0x120(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f14(%rsp) # imm = 0xFFFFFFFF
movl 0x3f14(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f10(%rsp)
cmpl $0x1, 0x3f10(%rsp)
jne 0x138ff2c
movq 0x120(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x138fefa
movq 0x120(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x138fef8
jmp 0x138ff2a
movq 0x120(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45e0(%rsp)
cmpq $0x0, 0x45e0(%rsp)
je 0x138ff28
movq 0x45e0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x138ff2a
jmp 0x138ff2c
movq 0x120(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x138ff87
movq %rax, %rdi
callq 0x678a0
jmp 0x138ff89
leaq 0xc70(%rsp), %rax
movq %rax, 0x2a50(%rsp)
movq 0x2a50(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x110(%rsp)
leaq 0xc70(%rsp), %rax
movq %rax, 0x27c8(%rsp)
movq 0x27c8(%rsp), %rax
movq %rax, 0x3f88(%rsp)
movq 0x3f88(%rsp), %rax
movq %rax, 0x118(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x139007a
movq 0x118(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f84(%rsp) # imm = 0xFFFFFFFF
movl 0x3f84(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f80(%rsp)
cmpl $0x1, 0x3f80(%rsp)
jne 0x139007a
movq 0x118(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1390048
movq 0x118(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1390046
jmp 0x1390078
movq 0x118(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45a8(%rsp)
cmpq $0x0, 0x45a8(%rsp)
je 0x1390076
movq 0x45a8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1390078
jmp 0x139007a
movq 0x118(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13900d5
movq %rax, %rdi
callq 0x678a0
movq 0x110(%rsp), %rax
movq %rax, 0xcb8(%rsp)
movl $0x0, 0xc6c(%rsp)
movl 0xc6c(%rsp), %eax
cmpl 0x2144(%rsp), %eax
jge 0x1390232
movq 0xd10(%rsp), %rax
movq %rax, 0x2b58(%rsp)
movq 0x2b58(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0xc40(%rsp)
movl $0x0, 0xc3c(%rsp)
movl 0xc3c(%rsp), %eax
cmpl 0x2148(%rsp), %eax
jge 0x1390208
movq 0xd08(%rsp), %rax
movq %rax, 0x2b50(%rsp)
movq 0x2b50(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0xc00(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0xc40(%rsp), %rsi
leaq 0xc00(%rsp), %rdx
callq 0x1453880
vmovaps %ymm0, 0xbe0(%rsp)
movq 0xcb8(%rsp), %rax
vmovaps 0xbe0(%rsp), %ymm0
movq %rax, 0x2d78(%rsp)
vmovaps %ymm0, 0x2d40(%rsp)
vmovaps 0x2d40(%rsp), %ymm0
movq 0x2d78(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0xd08(%rsp), %rax
addq $0x20, %rax
movq %rax, 0xd08(%rsp)
movq 0xcb8(%rsp), %rax
addq $0x20, %rax
movq %rax, 0xcb8(%rsp)
movl 0xc3c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xc3c(%rsp)
jmp 0x1390134
movq 0xd10(%rsp), %rax
addq $0x20, %rax
movq %rax, 0xd10(%rsp)
movl 0xc6c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xc6c(%rsp)
jmp 0x13900f0
jmp 0x1390234
movl 0xd1c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xd1c(%rsp)
jmp 0x138f7d6
movl $0x0, 0x2194(%rsp)
jmp 0x1391fba
movq 0x2178(%rsp), %rdi
movl 0x2168(%rsp), %esi
movl 0x2164(%rsp), %edx
movq 0x2150(%rsp), %rcx
movl 0x214c(%rsp), %r8d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x2178(%rsp), %rax
movq %rax, 0x21c0(%rsp)
movq 0x21c0(%rsp), %rcx
movq %rcx, 0x100(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x10f(%rsp)
je 0x13902f2
movq 0x100(%rsp), %rax
movq %rax, 0x3190(%rsp)
movq 0x3190(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x10f(%rsp)
movb 0x10f(%rsp), %al
testb $0x1, %al
jne 0x13902ff
jmp 0x139030f
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x1391fba
movq 0x2180(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x139034e
movq 0x2188(%rsp), %rdi
movq 0x2180(%rsp), %rsi
movq 0x2178(%rsp), %rdx
movq 0x2170(%rsp), %rcx
callq 0x1444a90
movl %eax, 0x2194(%rsp)
jmp 0x1391fba
movq 0x2180(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1390624
movq 0x2178(%rsp), %rdi
movl 0x2168(%rsp), %esi
movl 0x2164(%rsp), %edx
movq 0x2150(%rsp), %rcx
movl 0x214c(%rsp), %r8d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x2178(%rsp), %rax
movq %rax, 0x21b8(%rsp)
movq 0x21b8(%rsp), %rcx
movq %rcx, 0xf0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xff(%rsp)
je 0x13903f8
movq 0xf0(%rsp), %rax
movq %rax, 0x3198(%rsp)
movq 0x3198(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xff(%rsp)
movb 0xff(%rsp), %al
testb $0x1, %al
jne 0x1390405
jmp 0x1390415
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x1391fba
movq 0x2180(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x139045e
cmpl $0x1, 0x212c(%rsp)
jne 0x139045e
movq 0x2188(%rsp), %rdi
movq 0x2180(%rsp), %rsi
movq 0x2178(%rsp), %rdx
movq 0x2170(%rsp), %rcx
callq 0x1445ca0
movl %eax, 0x2194(%rsp)
jmp 0x1391fba
movq 0x2188(%rsp), %rax
movq %rax, 0x24d8(%rsp)
movq 0x24d8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xbd8(%rsp)
movq 0x2180(%rsp), %rax
movq %rax, 0x24d0(%rsp)
movq 0x24d0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xbd0(%rsp)
movq 0x2178(%rsp), %rax
movq %rax, 0x2a48(%rsp)
movq 0x2a48(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xbc8(%rsp)
movl $0x0, 0xbc4(%rsp)
movl 0xbc4(%rsp), %eax
cmpl 0x2164(%rsp), %eax
jge 0x1390614
movq 0xbd0(%rsp), %rax
movq %rax, 0x2b48(%rsp)
movq 0x2b48(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0xba0(%rsp)
movl $0x0, 0xb9c(%rsp)
movl 0xb9c(%rsp), %eax
cmpl 0x2168(%rsp), %eax
jge 0x13905ea
movq 0xbd8(%rsp), %rax
movq %rax, 0x2b40(%rsp)
movq 0x2b40(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0xb60(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0xb60(%rsp), %rsi
leaq 0xba0(%rsp), %rdx
callq 0x1453880
vmovaps %ymm0, 0xb40(%rsp)
movq 0xbc8(%rsp), %rax
vmovaps 0xb40(%rsp), %ymm0
movq %rax, 0x2d38(%rsp)
vmovaps %ymm0, 0x2d00(%rsp)
vmovaps 0x2d00(%rsp), %ymm0
movq 0x2d38(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0xbd8(%rsp), %rax
addq $0x20, %rax
movq %rax, 0xbd8(%rsp)
movq 0xbc8(%rsp), %rax
addq $0x20, %rax
movq %rax, 0xbc8(%rsp)
movl 0xb9c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xb9c(%rsp)
jmp 0x1390516
movq 0xbd0(%rsp), %rax
addq $0x20, %rax
movq %rax, 0xbd0(%rsp)
movl 0xbc4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xbc4(%rsp)
jmp 0x13904d2
movl $0x0, 0x2194(%rsp)
jmp 0x1391fba
jmp 0x1391fab
movq 0x2188(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1391fa9
movq 0x2188(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1390684
cmpl $0x1, 0x214c(%rsp)
jne 0x1390684
movq 0x2188(%rsp), %rdi
movq 0x2180(%rsp), %rsi
movq 0x2178(%rsp), %rdx
movq 0x2170(%rsp), %rcx
callq 0x1446b20
movl %eax, 0x2194(%rsp)
jmp 0x1391fba
movq 0x2180(%rsp), %rax
cmpl $0x4, 0x28(%rax)
jne 0x1391187
movq 0x2178(%rsp), %rdi
movl 0x2148(%rsp), %esi
movl 0x2144(%rsp), %edx
movl 0x2140(%rsp), %ecx
movl 0x213c(%rsp), %r8d
movq 0x2130(%rsp), %r9
movl 0x212c(%rsp), %r10d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movl %r10d, (%rsp)
movq %rax, 0x8(%rsp)
callq 0x6c650
movq 0x2178(%rsp), %rax
movq %rax, 0x21b0(%rsp)
movq 0x21b0(%rsp), %rcx
movq %rcx, 0xe0(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0xef(%rsp)
je 0x1390746
movq 0xe0(%rsp), %rax
movq %rax, 0x31a0(%rsp)
movq 0x31a0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0xef(%rsp)
movb 0xef(%rsp), %al
testb $0x1, %al
jne 0x1390753
jmp 0x1390763
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x1391fba
movl $0x0, 0xb3c(%rsp)
movl 0xb3c(%rsp), %eax
cmpl 0x213c(%rsp), %eax
jge 0x1391177
movq 0x2188(%rsp), %rax
movq %rax, 0x24c8(%rsp)
movq 0x24c8(%rsp), %rax
movq (%rax), %rax
movl 0xb3c(%rsp), %ecx
shll $0x3, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2b38(%rsp)
movq 0x2b38(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0xb00(%rsp)
movq 0x2180(%rsp), %rcx
movl 0xb3c(%rsp), %eax
leaq 0xab0(%rsp), %rdx
movq %rdx, 0x2258(%rsp)
movq %rcx, 0x2250(%rsp)
movl %eax, 0x224c(%rsp)
movq 0x2250(%rsp), %rax
movq %rax, 0xd8(%rsp)
movb $0x0, 0x224b(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x224c(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xab0(%rsp), %r10
movq %r10, 0x3b20(%rsp)
movl %r9d, 0x3b1c(%rsp)
movl %r8d, 0x3b18(%rsp)
movl %edi, 0x3b14(%rsp)
movq %rsi, 0x3b08(%rsp)
movq %rdx, 0x3b00(%rsp)
movl %ecx, 0x3afc(%rsp)
movq %rax, 0x3af0(%rsp)
movq 0x3b20(%rsp), %rcx
movq %rcx, 0xd0(%rsp)
movq 0x3b08(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3b00(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3afc(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3af0(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3b1c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3b18(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3b14(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b78(%rsp)
movl $0x10, 0x3b74(%rsp)
movq 0x3b78(%rsp), %rax
movslq 0x3b74(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b74(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xd8(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xad8(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x139098a
movq 0xd8(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xaf0(%rsp)
movb $0x1, 0x224b(%rsp)
testb $0x1, 0x224b(%rsp)
jne 0x1390acb
leaq 0xab0(%rsp), %rax
movq %rax, 0x2680(%rsp)
movq 0x2680(%rsp), %rax
movq %rax, 0x4218(%rsp)
movq 0x4218(%rsp), %rax
movq %rax, 0xc8(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1390a6e
movq 0xc8(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4214(%rsp) # imm = 0xFFFFFFFF
movl 0x4214(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4210(%rsp)
cmpl $0x1, 0x4210(%rsp)
jne 0x1390a6e
movq 0xc8(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1390a3c
movq 0xc8(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1390a3a
jmp 0x1390a6c
movq 0xc8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4460(%rsp)
cmpq $0x0, 0x4460(%rsp)
je 0x1390a6a
movq 0x4460(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1390a6c
jmp 0x1390a6e
movq 0xc8(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1390ac9
movq %rax, %rdi
callq 0x678a0
jmp 0x1390acb
leaq 0xab0(%rsp), %rax
movq %rax, 0x24c0(%rsp)
movq 0x24c0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0xb8(%rsp)
leaq 0xab0(%rsp), %rax
movq %rax, 0x27d0(%rsp)
movq 0x27d0(%rsp), %rax
movq %rax, 0x3f78(%rsp)
movq 0x3f78(%rsp), %rax
movq %rax, 0xc0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1390bbc
movq 0xc0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f74(%rsp) # imm = 0xFFFFFFFF
movl 0x3f74(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f70(%rsp)
cmpl $0x1, 0x3f70(%rsp)
jne 0x1390bbc
movq 0xc0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1390b8a
movq 0xc0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1390b88
jmp 0x1390bba
movq 0xc0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45b0(%rsp)
cmpq $0x0, 0x45b0(%rsp)
je 0x1390bb8
movq 0x45b0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1390bba
jmp 0x1390bbc
movq 0xc0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1390c17
movq %rax, %rdi
callq 0x678a0
movq 0xb8(%rsp), %rax
movq %rax, 0xaf8(%rsp)
movq 0x2178(%rsp), %rcx
movl 0xb3c(%rsp), %eax
leaq 0xa60(%rsp), %rdx
movq %rdx, 0x2820(%rsp)
movq %rcx, 0x2818(%rsp)
movl %eax, 0x2814(%rsp)
movq 0x2818(%rsp), %rax
movq %rax, 0xb0(%rsp)
movb $0x0, 0x2813(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2814(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0xa60(%rsp), %r10
movq %r10, 0x3570(%rsp)
movl %r9d, 0x356c(%rsp)
movl %r8d, 0x3568(%rsp)
movl %edi, 0x3564(%rsp)
movq %rsi, 0x3558(%rsp)
movq %rdx, 0x3550(%rsp)
movl %ecx, 0x354c(%rsp)
movq %rax, 0x3540(%rsp)
movq 0x3570(%rsp), %rcx
movq %rcx, 0xa8(%rsp)
movq 0x3558(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3550(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x354c(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3540(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x356c(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3568(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3564(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d18(%rsp)
movl $0x10, 0x3d14(%rsp)
movq 0x3d18(%rsp), %rax
movslq 0x3d14(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d14(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0xb0(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0xa88(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1390de3
movq 0xb0(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0xaa0(%rsp)
movb $0x1, 0x2813(%rsp)
testb $0x1, 0x2813(%rsp)
jne 0x1390f24
leaq 0xa60(%rsp), %rax
movq %rax, 0x2828(%rsp)
movq 0x2828(%rsp), %rax
movq %rax, 0x3f28(%rsp)
movq 0x3f28(%rsp), %rax
movq %rax, 0xa0(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1390ec7
movq 0xa0(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f24(%rsp) # imm = 0xFFFFFFFF
movl 0x3f24(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f20(%rsp)
cmpl $0x1, 0x3f20(%rsp)
jne 0x1390ec7
movq 0xa0(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1390e95
movq 0xa0(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1390e93
jmp 0x1390ec5
movq 0xa0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45d8(%rsp)
cmpq $0x0, 0x45d8(%rsp)
je 0x1390ec3
movq 0x45d8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1390ec5
jmp 0x1390ec7
movq 0xa0(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1390f22
movq %rax, %rdi
callq 0x678a0
jmp 0x1390f24
leaq 0xa60(%rsp), %rax
movq %rax, 0x2a40(%rsp)
movq 0x2a40(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x90(%rsp)
leaq 0xa60(%rsp), %rax
movq %rax, 0x27d8(%rsp)
movq 0x27d8(%rsp), %rax
movq %rax, 0x3f68(%rsp)
movq 0x3f68(%rsp), %rax
movq %rax, 0x98(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1391015
movq 0x98(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f64(%rsp) # imm = 0xFFFFFFFF
movl 0x3f64(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f60(%rsp)
cmpl $0x1, 0x3f60(%rsp)
jne 0x1391015
movq 0x98(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1390fe3
movq 0x98(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1390fe1
jmp 0x1391013
movq 0x98(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45b8(%rsp)
cmpq $0x0, 0x45b8(%rsp)
je 0x1391011
movq 0x45b8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1391013
jmp 0x1391015
movq 0x98(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1391070
movq %rax, %rdi
callq 0x678a0
movq 0x90(%rsp), %rax
movq %rax, 0xaa8(%rsp)
movl $0x0, 0xa5c(%rsp)
movl 0xa5c(%rsp), %eax
cmpl 0x2138(%rsp), %eax
jge 0x139115f
movq 0xaf8(%rsp), %rax
movq %rax, 0x2b30(%rsp)
movq 0x2b30(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0xa20(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0xb00(%rsp), %rsi
leaq 0xa20(%rsp), %rdx
callq 0x1453880
vmovaps %ymm0, 0xa00(%rsp)
movq 0xaa8(%rsp), %rax
vmovaps 0xa00(%rsp), %ymm0
movq %rax, 0x2cf8(%rsp)
vmovaps %ymm0, 0x2cc0(%rsp)
vmovaps 0x2cc0(%rsp), %ymm0
movq 0x2cf8(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0xaf8(%rsp), %rax
addq $0x20, %rax
movq %rax, 0xaf8(%rsp)
movq 0xaa8(%rsp), %rax
addq $0x20, %rax
movq %rax, 0xaa8(%rsp)
movl 0xa5c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xa5c(%rsp)
jmp 0x139108b
jmp 0x1391161
movl 0xb3c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0xb3c(%rsp)
jmp 0x139076e
movl $0x0, 0x2194(%rsp)
jmp 0x1391fba
movq 0x2180(%rsp), %rax
cmpl $0x3, 0x28(%rax)
jne 0x1391c11
movq 0x2178(%rsp), %rdi
movl 0x2148(%rsp), %esi
movl 0x2144(%rsp), %edx
movl 0x213c(%rsp), %ecx
movq 0x2130(%rsp), %r8
movl 0x212c(%rsp), %r9d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %rax
movq %rax, (%rsp)
callq 0x6c340
movq 0x2178(%rsp), %rax
movq %rax, 0x21a8(%rsp)
movq 0x21a8(%rsp), %rcx
movq %rcx, 0x80(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x8f(%rsp)
je 0x139123c
movq 0x80(%rsp), %rax
movq %rax, 0x31a8(%rsp)
movq 0x31a8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x8f(%rsp)
movb 0x8f(%rsp), %al
testb $0x1, %al
jne 0x1391249
jmp 0x1391259
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x1391fba
movl $0x0, 0x9fc(%rsp)
movl 0x9fc(%rsp), %eax
cmpl 0x213c(%rsp), %eax
jge 0x1391c01
movq 0x2188(%rsp), %rax
movq %rax, 0x24b8(%rsp)
movq 0x24b8(%rsp), %rax
movq (%rax), %rax
movl 0x9fc(%rsp), %ecx
shll $0x3, %ecx
movslq %ecx, %rcx
shlq $0x2, %rcx
addq %rcx, %rax
movq %rax, 0x2b28(%rsp)
movq 0x2b28(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x9c0(%rsp)
movq 0x2180(%rsp), %rcx
movl 0x9fc(%rsp), %eax
leaq 0x970(%rsp), %rdx
movq %rdx, 0x2240(%rsp)
movq %rcx, 0x2238(%rsp)
movl %eax, 0x2234(%rsp)
movq 0x2238(%rsp), %rax
movq %rax, 0x78(%rsp)
movb $0x0, 0x2233(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x2234(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x970(%rsp), %r10
movq %r10, 0x3b58(%rsp)
movl %r9d, 0x3b54(%rsp)
movl %r8d, 0x3b50(%rsp)
movl %edi, 0x3b4c(%rsp)
movq %rsi, 0x3b40(%rsp)
movq %rdx, 0x3b38(%rsp)
movl %ecx, 0x3b34(%rsp)
movq %rax, 0x3b28(%rsp)
movq 0x3b58(%rsp), %rcx
movq %rcx, 0x70(%rsp)
movq 0x3b40(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3b38(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3b34(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3b28(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x3b54(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x3b50(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x3b4c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3b68(%rsp)
movl $0x10, 0x3b64(%rsp)
movq 0x3b68(%rsp), %rax
movslq 0x3b64(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3b64(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x78(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x998(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1391474
movq 0x78(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x9b0(%rsp)
movb $0x1, 0x2233(%rsp)
testb $0x1, 0x2233(%rsp)
jne 0x13915a3
leaq 0x970(%rsp), %rax
movq %rax, 0x2688(%rsp)
movq 0x2688(%rsp), %rax
movq %rax, 0x4208(%rsp)
movq 0x4208(%rsp), %rax
movq %rax, 0x68(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1391549
movq 0x68(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x4204(%rsp) # imm = 0xFFFFFFFF
movl 0x4204(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x4200(%rsp)
cmpl $0x1, 0x4200(%rsp)
jne 0x1391549
movq 0x68(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x139151a
movq 0x68(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1391518
jmp 0x1391547
movq 0x68(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x4468(%rsp)
cmpq $0x0, 0x4468(%rsp)
je 0x1391545
movq 0x4468(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1391547
jmp 0x1391549
movq 0x68(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13915a1
movq %rax, %rdi
callq 0x678a0
jmp 0x13915a3
leaq 0x970(%rsp), %rax
movq %rax, 0x24b0(%rsp)
movq 0x24b0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x58(%rsp)
leaq 0x970(%rsp), %rax
movq %rax, 0x27e0(%rsp)
movq 0x27e0(%rsp), %rax
movq %rax, 0x3f58(%rsp)
movq 0x3f58(%rsp), %rax
movq %rax, 0x60(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1391682
movq 0x60(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f54(%rsp) # imm = 0xFFFFFFFF
movl 0x3f54(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f50(%rsp)
cmpl $0x1, 0x3f50(%rsp)
jne 0x1391682
movq 0x60(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1391653
movq 0x60(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1391651
jmp 0x1391680
movq 0x60(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45c0(%rsp)
cmpq $0x0, 0x45c0(%rsp)
je 0x139167e
movq 0x45c0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1391680
jmp 0x1391682
movq 0x60(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13916da
movq %rax, %rdi
callq 0x678a0
movq 0x58(%rsp), %rax
movq %rax, 0x9b8(%rsp)
movq 0x2178(%rsp), %rcx
movl 0x9fc(%rsp), %eax
leaq 0x920(%rsp), %rdx
movq %rdx, 0x2800(%rsp)
movq %rcx, 0x27f8(%rsp)
movl %eax, 0x27f4(%rsp)
movq 0x27f8(%rsp), %rax
movq %rax, 0x50(%rsp)
movb $0x0, 0x27f3(%rsp)
movl 0x2c(%rax), %r9d
movl 0x30(%rax), %r8d
movl 0x34(%rax), %edi
movq (%rax), %rsi
movq 0x40(%rax), %rcx
movslq 0x27f4(%rsp), %rdx
imulq %rdx, %rcx
imulq 0x10(%rax), %rcx
addq %rcx, %rsi
movq 0x10(%rax), %rdx
movl 0x18(%rax), %ecx
movq 0x20(%rax), %rax
leaq 0x920(%rsp), %r10
movq %r10, 0x35a8(%rsp)
movl %r9d, 0x35a4(%rsp)
movl %r8d, 0x35a0(%rsp)
movl %edi, 0x359c(%rsp)
movq %rsi, 0x3590(%rsp)
movq %rdx, 0x3588(%rsp)
movl %ecx, 0x3584(%rsp)
movq %rax, 0x3578(%rsp)
movq 0x35a8(%rsp), %rcx
movq %rcx, 0x48(%rsp)
movq 0x3590(%rsp), %rax
movq %rax, (%rcx)
movq $0x0, 0x8(%rcx)
movq 0x3588(%rsp), %rax
movq %rax, 0x10(%rcx)
movl 0x3584(%rsp), %eax
movl %eax, 0x18(%rcx)
movq 0x3578(%rsp), %rax
movq %rax, 0x20(%rcx)
movl $0x3, 0x28(%rcx)
movl 0x35a4(%rsp), %eax
movl %eax, 0x2c(%rcx)
movl 0x35a0(%rsp), %eax
movl %eax, 0x30(%rcx)
movl $0x1, 0x34(%rcx)
movl 0x359c(%rsp), %eax
movl %eax, 0x38(%rcx)
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rdx
imulq %rdx, %rax
imulq 0x10(%rcx), %rax
movq %rax, 0x3d08(%rsp)
movl $0x10, 0x3d04(%rsp)
movq 0x3d08(%rsp), %rax
movslq 0x3d04(%rsp), %rdx
addq %rdx, %rax
subq $0x1, %rax
xorl %edx, %edx
subl 0x3d04(%rsp), %edx
movslq %edx, %rdx
andq %rdx, %rax
xorl %edx, %edx
divq 0x10(%rcx)
movq %rax, %rdx
movq 0x50(%rsp), %rax
movq %rdx, 0x40(%rcx)
movl 0x28(%rax), %ecx
subl $0x1, %ecx
movl %ecx, 0x948(%rsp)
cmpl $0x4, 0x28(%rax)
jne 0x1391897
movq 0x50(%rsp), %rcx
movslq 0x2c(%rcx), %rax
movslq 0x30(%rcx), %rcx
imulq %rcx, %rax
movq %rax, 0x960(%rsp)
movb $0x1, 0x27f3(%rsp)
testb $0x1, 0x27f3(%rsp)
jne 0x13919c6
leaq 0x920(%rsp), %rax
movq %rax, 0x2808(%rsp)
movq 0x2808(%rsp), %rax
movq %rax, 0x3f38(%rsp)
movq 0x3f38(%rsp), %rax
movq %rax, 0x40(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x139196c
movq 0x40(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f34(%rsp) # imm = 0xFFFFFFFF
movl 0x3f34(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f30(%rsp)
cmpl $0x1, 0x3f30(%rsp)
jne 0x139196c
movq 0x40(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x139193d
movq 0x40(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x139193b
jmp 0x139196a
movq 0x40(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45d0(%rsp)
cmpq $0x0, 0x45d0(%rsp)
je 0x1391968
movq 0x45d0(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x139196a
jmp 0x139196c
movq 0x40(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x13919c4
movq %rax, %rdi
callq 0x678a0
jmp 0x13919c6
leaq 0x920(%rsp), %rax
movq %rax, 0x2a38(%rsp)
movq 0x2a38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x30(%rsp)
leaq 0x920(%rsp), %rax
movq %rax, 0x27e8(%rsp)
movq 0x27e8(%rsp), %rax
movq %rax, 0x3f48(%rsp)
movq 0x3f48(%rsp), %rax
movq %rax, 0x38(%rsp)
cmpq $0x0, 0x8(%rax)
je 0x1391aa5
movq 0x38(%rsp), %rax
movq 0x8(%rax), %rcx
movl $0xffffffff, 0x3f44(%rsp) # imm = 0xFFFFFFFF
movl 0x3f44(%rsp), %eax
lock
xaddl %eax, (%rcx)
movl %eax, 0x3f40(%rsp)
cmpl $0x1, 0x3f40(%rsp)
jne 0x1391aa5
movq 0x38(%rsp), %rax
cmpq $0x0, 0x20(%rax)
je 0x1391a76
movq 0x38(%rsp), %rax
movq (%rax), %rsi
movq 0x20(%rax), %rdi
movq (%rdi), %rax
movq 0x18(%rax), %rax
vzeroupper
callq *%rax
jmp 0x1391a74
jmp 0x1391aa3
movq 0x38(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x45c8(%rsp)
cmpq $0x0, 0x45c8(%rsp)
je 0x1391aa1
movq 0x45c8(%rsp), %rdi
vzeroupper
callq 0x5f480
jmp 0x1391aa3
jmp 0x1391aa5
movq 0x38(%rsp), %rax
movq $0x0, (%rax)
movq $0x0, 0x10(%rax)
movl $0x0, 0x18(%rax)
movl $0x0, 0x28(%rax)
movl $0x0, 0x2c(%rax)
movl $0x0, 0x30(%rax)
movl $0x0, 0x34(%rax)
movl $0x0, 0x38(%rax)
movq $0x0, 0x40(%rax)
movq $0x0, 0x8(%rax)
jmp 0x1391afd
movq %rax, %rdi
callq 0x678a0
movq 0x30(%rsp), %rax
movq %rax, 0x968(%rsp)
movl $0x0, 0x91c(%rsp)
movl 0x91c(%rsp), %eax
cmpl 0x2138(%rsp), %eax
jge 0x1391be9
movq 0x9b8(%rsp), %rax
movq %rax, 0x2b20(%rsp)
movq 0x2b20(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x8e0(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0x9c0(%rsp), %rsi
leaq 0x8e0(%rsp), %rdx
callq 0x1453880
vmovaps %ymm0, 0x8c0(%rsp)
movq 0x968(%rsp), %rax
vmovaps 0x8c0(%rsp), %ymm0
movq %rax, 0x2cb8(%rsp)
vmovaps %ymm0, 0x2c80(%rsp)
vmovaps 0x2c80(%rsp), %ymm0
movq 0x2cb8(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x9b8(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x9b8(%rsp)
movq 0x968(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x968(%rsp)
movl 0x91c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x91c(%rsp)
jmp 0x1391b15
jmp 0x1391beb
movl 0x9fc(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x9fc(%rsp)
jmp 0x1391264
movl $0x0, 0x2194(%rsp)
jmp 0x1391fba
movq 0x2180(%rsp), %rax
cmpl $0x2, 0x28(%rax)
jne 0x1391e8f
movq 0x2178(%rsp), %rdi
movl 0x2148(%rsp), %esi
movl 0x2144(%rsp), %edx
movq 0x2130(%rsp), %rcx
movl 0x212c(%rsp), %r8d
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %r9
callq 0x6c090
movq 0x2178(%rsp), %rax
movq %rax, 0x21a0(%rsp)
movq 0x21a0(%rsp), %rcx
movq %rcx, 0x20(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x2f(%rsp)
je 0x1391caf
movq 0x20(%rsp), %rax
movq %rax, 0x31b0(%rsp)
movq 0x31b0(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x2f(%rsp)
movb 0x2f(%rsp), %al
testb $0x1, %al
jne 0x1391cb9
jmp 0x1391cc9
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x1391fba
movq 0x2188(%rsp), %rax
movq %rax, 0x24a8(%rsp)
movq 0x24a8(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8b8(%rsp)
movq 0x2180(%rsp), %rax
movq %rax, 0x24a0(%rsp)
movq 0x24a0(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8b0(%rsp)
movq 0x2178(%rsp), %rax
movq %rax, 0x2a30(%rsp)
movq 0x2a30(%rsp), %rax
movq (%rax), %rax
movq %rax, 0x8a8(%rsp)
movl $0x0, 0x8a4(%rsp)
movl 0x8a4(%rsp), %eax
cmpl 0x2144(%rsp), %eax
jge 0x1391e7f
movq 0x8b8(%rsp), %rax
movq %rax, 0x2b18(%rsp)
movq 0x2b18(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x880(%rsp)
movl $0x0, 0x87c(%rsp)
movl 0x87c(%rsp), %eax
cmpl 0x2148(%rsp), %eax
jge 0x1391e55
movq 0x8b0(%rsp), %rax
movq %rax, 0x2b10(%rsp)
movq 0x2b10(%rsp), %rax
vmovups (%rax), %ymm0
vmovaps %ymm0, 0x840(%rsp)
leaq 0x216f(%rsp), %rdi
leaq 0x880(%rsp), %rsi
leaq 0x840(%rsp), %rdx
callq 0x1453880
vmovaps %ymm0, 0x820(%rsp)
movq 0x8a8(%rsp), %rax
vmovaps 0x820(%rsp), %ymm0
movq %rax, 0x2c78(%rsp)
vmovaps %ymm0, 0x2c40(%rsp)
vmovaps 0x2c40(%rsp), %ymm0
movq 0x2c78(%rsp), %rax
vmovups %ymm0, (%rax)
movq 0x8b0(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x8b0(%rsp)
movq 0x8a8(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x8a8(%rsp)
movl 0x87c(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x87c(%rsp)
jmp 0x1391d81
movq 0x8b8(%rsp), %rax
addq $0x20, %rax
movq %rax, 0x8b8(%rsp)
movl 0x8a4(%rsp), %eax
addl $0x1, %eax
movl %eax, 0x8a4(%rsp)
jmp 0x1391d3d
movl $0x0, 0x2194(%rsp)
jmp 0x1391fba
movq 0x2180(%rsp), %rax
cmpl $0x1, 0x28(%rax)
jne 0x1391fa7
movq 0x2178(%rsp), %rdi
movl 0x2168(%rsp), %esi
movq 0x2150(%rsp), %rdx
movl 0x214c(%rsp), %ecx
movq 0x2170(%rsp), %rax
movq 0x8(%rax), %r8
callq 0x6be00
movq 0x2178(%rsp), %rax
movq %rax, 0x2198(%rsp)
movq 0x2198(%rsp), %rcx
movq %rcx, 0x10(%rsp)
movb $0x1, %al
cmpq $0x0, (%rcx)
movb %al, 0x1f(%rsp)
je 0x1391f25
movq 0x10(%rsp), %rax
movq %rax, 0x31b8(%rsp)
movq 0x31b8(%rsp), %rcx
movq 0x40(%rcx), %rax
movslq 0x38(%rcx), %rcx
imulq %rcx, %rax
cmpq $0x0, %rax
sete %al
movb %al, 0x1f(%rsp)
movb 0x1f(%rsp), %al
testb $0x1, %al
jne 0x1391f2f
jmp 0x1391f3c
movl $0xffffff9c, 0x2194(%rsp) # imm = 0xFFFFFF9C
jmp 0x1391fba
movq 0x2180(%rsp), %rax
cmpl $0x1, 0x2c(%rax)
jne 0x1391f82
cmpl $0x1, 0x212c(%rsp)
jne 0x1391f82
movq 0x2188(%rsp), %rdi
movq 0x2180(%rsp), %rsi
movq 0x2178(%rsp), %rdx
movq 0x2170(%rsp), %rcx
callq 0x1445ca0
movl %eax, 0x2194(%rsp)
jmp 0x1391fba
movq 0x2188(%rsp), %rdi
movq 0x2180(%rsp), %rsi
movq 0x2178(%rsp), %rdx
movq 0x2170(%rsp), %rcx
callq 0x1444a90
jmp 0x1391fa9
jmp 0x1391fab
jmp 0x1391fad
jmp 0x1391faf
movl $0x0, 0x2194(%rsp)
movl 0x2194(%rsp), %eax
movq %rbp, %rsp
popq %rbp
vzeroupper
retq
nopl (%rax)
|
ysh329[P]ncnn[P]build_O0[P]examples[P]scrfd.asm_src.json
|
O0
|
ysh329[P]ncnn/build_O0/src/layer/x86/binaryop_x86_avx512.cpp
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.